{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-sitewise/refs/heads/main/json-schema/iot-sitewise-create-bulk-import-job-response-schema.json", "title": "CreateBulkImportJobResponse", "description": "CreateBulkImportJobResponse schema", "type": "object", "properties": { "jobId": { "allOf": [ { "$ref": "#/components/schemas/ID" }, { "description": "The ID of the job." } ] }, "jobName": { "allOf": [ { "$ref": "#/components/schemas/Name" }, { "description": "The unique name that helps identify the job request." } ] }, "jobStatus": { "allOf": [ { "$ref": "#/components/schemas/JobStatus" }, { "description": "

The status of the bulk import job can be one of following values.

" } ] } }, "required": [ "jobId", "jobName", "jobStatus" ] }