{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CallbackDetails",
"title": "CallbackDetails",
"description": "Details for a callback task.",
"type": "object",
"required": [
"callbackOrigin",
"callbackType"
],
"properties": {
"callbackOrigin": {
"type": "string",
"description": "The source of callback request. The supported value is ```web```.",
"example": "web"
},
"callbackType": {
"type": "string",
"description": "The type of callback. The supported value is ```immediate```.",
"example": "immediate"
}
}
}