CancelJobResponse schema
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-device-management/refs/heads/main/json-schema/iot-device-management-cancel-job-response-schema.json", "title": "CancelJobResponse", "description": "CancelJobResponse schema", "type": "object", "properties": { "jobArn": { "allOf": [ { "$ref": "#/components/schemas/JobArn" }, { "description": "The job ARN." } ] }, "jobId": { "allOf": [ { "$ref": "#/components/schemas/JobId" }, { "description": "The unique identifier you assigned to this job when it was created." } ] }, "description": { "allOf": [ { "$ref": "#/components/schemas/JobDescription" }, { "description": "A short text description of the job." } ] } } }