{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/aws-healthlake/main/json-schema/StartFHIRImportJobResponse.json", "title": "StartFHIRImportJobResponse", "description": "AWS HealthLake StartFHIRImportJobResponse", "type": "object", "properties": { "JobId": { "type": "string", "minLength": 1, "maxLength": 32, "pattern": "^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-%@]*)$" }, "JobStatus": { "type": "string", "enum": [ "SUBMITTED", "IN_PROGRESS", "COMPLETED_WITH_ERRORS", "COMPLETED", "FAILED", "CANCEL_SUBMITTED", "CANCEL_IN_PROGRESS", "CANCEL_COMPLETED", "CANCEL_FAILED" ] }, "DatastoreId": { "type": "string", "minLength": 1, "maxLength": 32, "pattern": "^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-%@]*)$" } }, "required": [ "JobId", "JobStatus" ] }