Zapier · JSON Structure

Partner Api Choice Response Structure

A successful response for getting the requested Input Fields.

Type: object Properties: 3 Required: 2
IntegrationsiPaaS

ChoiceResponse is a JSON Structure definition published by Zapier, describing 3 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

data links meta

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/zapier/refs/heads/main/json-structure/partner-api-choice-response-structure.json",
  "name": "ChoiceResponse",
  "description": "A successful response for getting the requested Input Fields.",
  "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"
  ]
}