{ "$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" ] }