{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/LongTask",
"title": "LongTask",
"required": [
"id",
"links"
],
"type": "object",
"properties": {
"ari": {
"type": "string",
"description": "the ARI for the long task, based on its ID",
"example": "example_value"
},
"id": {
"type": "string",
"description": "a unique identifier for the long task",
"example": "abc123"
},
"links": {
"type": "object",
"additionalProperties": true,
"properties": {
"status": {
"type": "string",
"description": "The URL to retrive status of long task."
}
},
"example": "example_value"
}
}
}