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.
View JSON Schema on GitHub

JSON Schema

zapier-choiceresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ChoiceResponse",
  "title": "ChoiceResponse",
  "type": "object",
  "description": "A successful response for getting the requested Input Fields.",
  "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"
  ]
}