Klaviyo · Schema
GetListRetrieveResponseCompoundDocument
MarketingEmailSMSCustomer DataEcommerceAutomation
Properties
| Name | Type | Description |
|---|---|---|
| data | object | |
| included | array | |
| links | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/GetListRetrieveResponseCompoundDocument",
"title": "GetListRetrieveResponseCompoundDocument",
"type": "object",
"properties": {
"data": {
"allOf": [
{
"properties": {
"type": {
"$ref": "#/components/schemas/ListEnum"
},
"attributes": {
"properties": {
"profile_count": {
"type": "integer",
"nullable": true
}
}
}
}
},
{
"$ref": "#/components/schemas/ListRetrieveResponseObjectResource"
}
]
},
"included": {
"type": "array",
"items": {
"oneOf": [
{
"$ref": "#/components/schemas/TagResponseObjectResource"
},
{
"$ref": "#/components/schemas/FlowResponseObjectResource"
}
]
}
},
"links": {
"$ref": "#/components/schemas/ObjectLinks"
}
},
"required": [
"data"
]
}