{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ConditionalBranchAction", "title": "ConditionalBranchAction", "type": "object", "properties": { "id": { "description": "The real ID of an action. Not allowed on create.", "type": "string", "example": "123", "nullable": true }, "temporary_id": { "description": "A temporary ID to use only during a create operation. Existing actions should use the id field.", "type": "string", "example": "action-1", "nullable": true, "writeOnly": true }, "type": { "type": "string", "enum": [ "conditional-split" ] }, "links": { "$ref": "#/components/schemas/BooleanBranchLinks", "nullable": true }, "data": { "$ref": "#/components/schemas/ConditionalBranchActionData", "nullable": true } }, "required": [ "type" ] }