Zapier · Schema
ChoiceResponse
A successful response for getting the requested Input Fields.
IntegrationsiPaaS
Properties
| Name | Type | Description |
|---|---|---|
| data | array | A list of Choices matching the given request |
| links | object | The links object returned in paginated response bodies. |
| meta | object | The meta object returned in paginated response bodies. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "ChoiceResponse",
"description": "A successful response for getting the requested Input Fields.",
"$id": "https://raw.githubusercontent.com/api-evangelist/zapier/refs/heads/main/json-schema/partner-api-choice-response-schema.json",
"type": "object",
"properties": {
"data": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Choice"
},
"description": "A list of Choices matching the given request",
"example": [
{}
]
},
"links": {
"allOf": [
{
"$ref": "#/components/schemas/Links"
}
],
"description": "The links object returned in paginated response bodies.",
"example": "example-value"
},
"meta": {
"allOf": [
{
"$ref": "#/components/schemas/Meta"
}
],
"description": "The meta object returned in paginated response bodies.",
"example": "example-value"
}
},
"required": [
"links",
"meta"
]
}