{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/GetSegmentRetrieveResponseCompoundDocument", "title": "GetSegmentRetrieveResponseCompoundDocument", "type": "object", "properties": { "data": { "allOf": [ { "properties": { "type": { "$ref": "#/components/schemas/SegmentEnum" }, "attributes": { "properties": { "profile_count": { "type": "integer", "nullable": true } } } } }, { "$ref": "#/components/schemas/SegmentRetrieveResponseObjectResource" } ] }, "included": { "type": "array", "items": { "oneOf": [ { "$ref": "#/components/schemas/TagResponseObjectResource" }, { "$ref": "#/components/schemas/FlowResponseObjectResource" } ] } }, "links": { "$ref": "#/components/schemas/ObjectLinks" } }, "required": [ "data" ] }