Klaviyo · Schema
GetSegmentMemberResponseCollection
MarketingEmailSMSCustomer DataEcommerceAutomation
Properties
| Name | Type | Description |
|---|---|---|
| data | array | |
| links | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/GetSegmentMemberResponseCollection",
"title": "GetSegmentMemberResponseCollection",
"type": "object",
"properties": {
"data": {
"type": "array",
"items": {
"allOf": [
{
"properties": {
"type": {
"$ref": "#/components/schemas/ProfileEnum"
},
"attributes": {
"properties": {
"subscriptions": {
"$ref": "#/components/schemas/Subscriptions",
"nullable": true
},
"predictive_analytics": {
"$ref": "#/components/schemas/PredictiveAnalytics",
"nullable": true
}
}
}
}
},
{
"$ref": "#/components/schemas/SegmentMemberResponseObjectResource"
}
]
}
},
"links": {
"$ref": "#/components/schemas/CollectionLinks"
}
},
"required": [
"data"
]
}