CreateJobResponse schema
{ "$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-create-job-response-schema.json", "title": "CreateJobResponse", "description": "CreateJobResponse 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." } ] }, "description": { "allOf": [ { "$ref": "#/components/schemas/JobDescription" }, { "description": "The job description." } ] } } }