AWS HealthLake · Schema

StartFHIRExportJobResponse

AWS HealthLake StartFHIRExportJobResponse

HealthcareFHIRHealth DataClinical DataHIPAAInteroperabilityNLPMedicalHL7

Properties

Name Type Description
JobId string
JobStatus string
DatastoreId string
View JSON Schema on GitHub

JSON Schema

StartFHIRExportJobResponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aws-healthlake/main/json-schema/StartFHIRExportJobResponse.json",
  "title": "StartFHIRExportJobResponse",
  "description": "AWS HealthLake StartFHIRExportJobResponse",
  "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"
  ]
}