AWS HealthLake · Schema

ErrorCause

AWS HealthLake ErrorCause

HealthcareFHIRHealth DataClinical DataHIPAAInteroperabilityNLPMedicalHL7

Properties

Name Type Description
ErrorMessage string
ErrorCategory string
View JSON Schema on GitHub

JSON Schema

ErrorCause.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aws-healthlake/main/json-schema/ErrorCause.json",
  "title": "ErrorCause",
  "description": "AWS HealthLake ErrorCause",
  "type": "object",
  "properties": {
    "ErrorMessage": {
      "type": "string",
      "minLength": 1,
      "maxLength": 4096
    },
    "ErrorCategory": {
      "type": "string",
      "enum": [
        "RETRYABLE_ERROR",
        "NON_RETRYABLE_ERROR"
      ]
    }
  }
}