Zapier · Schema

ChoiceParams

A Choice as to be provided to the /choices endpoint

IntegrationsiPaaS

Properties

Name Type Description
authentication stringnull The Authentication ID for this Choice, if present/required
inputs objectnull The Inputs for this Choice, if present/required
View JSON Schema on GitHub

JSON Schema

partner-api-choice-params-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ChoiceParams",
  "description": "A Choice as to be provided to the /choices endpoint",
  "$id": "https://raw.githubusercontent.com/api-evangelist/zapier/refs/heads/main/json-schema/partner-api-choice-params-schema.json",
  "type": "object",
  "properties": {
    "authentication": {
      "type": [
        "string",
        "null"
      ],
      "description": "The Authentication ID for this Choice, if present/required",
      "example": "example-value"
    },
    "inputs": {
      "type": [
        "object",
        "null"
      ],
      "additionalProperties": {},
      "description": "The Inputs for this Choice, if present/required",
      "example": {}
    }
  },
  "required": [
    "authentication",
    "inputs"
  ]
}