Amazon HealthImaging · JSON Structure

Healthimaging Start Dicom Import Job Response Structure

Type: object Properties: 4 Required: 4
HealthcareHIPAAMachine LearningMedical ImagingDICOM

StartDICOMImportJobResponse is a JSON Structure definition published by Amazon HealthImaging, describing 4 properties, of which 4 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

datastoreId jobId jobStatus submittedAt

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$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."
        }
      ]
    }
  }
}