{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-healthimaging/refs/heads/main/json-schema/healthimaging-start-dicom-import-job-response-schema.json", "name": "StartDICOMImportJobResponse", "type": "object", "required": [ "datastoreId", "jobId", "jobStatus", "submittedAt" ], "properties": { "datastoreId": { "allOf": [ { "$ref": "#/components/schemas/DatastoreId" }, { "description": "The data store identifier." } ] }, "jobId": { "allOf": [ { "$ref": "#/components/schemas/JobId" }, { "description": "The import job identifier." } ] }, "jobStatus": { "allOf": [ { "$ref": "#/components/schemas/JobStatus" }, { "description": "The import job status." } ] }, "submittedAt": { "allOf": [ { "$ref": "#/components/schemas/Date" }, { "description": "The timestamp when the import job was submitted." } ] } } }