Properties
| Name | Type | Description |
|---|---|---|
| links | object | Links related to the response data |
| meta | object | Metadata about the response |
| data | array | The (potentially) expanded data for Zaps that matched the request |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ExpandedZapsResponse",
"title": "ExpandedZapsResponse",
"type": "object",
"description": "A page of returned Zaps.",
"properties": {
"links": {
"type": "object",
"additionalProperties": {
"type": "string",
"nullable": true
},
"readOnly": true,
"description": "Links related to the response data",
"example": {}
},
"meta": {
"type": "object",
"additionalProperties": {},
"readOnly": true,
"description": "Metadata about the response",
"example": {}
},
"data": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ExpandedZap"
},
"description": "The (potentially) expanded data for Zaps that matched the request",
"example": [
{}
]
}
},
"required": [
"data",
"links",
"meta"
]
}