{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CallbackScheduleUpdateRequest", "title": "CallbackScheduleUpdateRequest", "allOf": [ { "type": "object", "properties": { "id": { "type": "string", "format": "uuid", "description": "Unique identifier for the scheduled callback.", "example": "123e4567-e89b-12d3-a456-426614174000" } }, "required": [ "id" ] }, { "$ref": "#/components/schemas/ScheduleCallbackRequest" } ] }