{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/JobListResponse",
"title": "JobListResponse",
"type": "object",
"required": [
"items"
],
"properties": {
"items": {
"type": "array",
"items": {
"$ref": "#/components/schemas/StartJobResponse"
},
"description": "Lists all jobs for the customer in order of most recent one to oldest one irrespective of its status."
}
}
}