{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-core/refs/heads/main/json-schema/iot-core-list-jobs-response-schema.json",
"title": "ListJobsResponse",
"description": "ListJobsResponse schema",
"type": "object",
"properties": {
"jobs": {
"allOf": [
{
"$ref": "#/components/schemas/JobSummaryList"
},
{
"description": "A list of jobs."
}
]
},
"nextToken": {
"allOf": [
{
"$ref": "#/components/schemas/NextToken"
},
{
"description": "The token for the next set of results, or <b>null</b> if there are no additional results."
}
]
}
}
}