Amazon HealthImaging · JSON Structure

Healthimaging Image Sets Metadata Summary Structure

Summary of the image set metadata.

Type: object Properties: 5 Required: 1
HealthcareHIPAAMachine LearningMedical ImagingDICOM

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

Properties

imageSetId version createdAt updatedAt DICOMTags

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-image-sets-metadata-summary-schema.json",
  "name": "ImageSetsMetadataSummary",
  "type": "object",
  "required": [
    "imageSetId"
  ],
  "properties": {
    "imageSetId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ImageSetId"
        },
        {
          "description": "The image set identifier."
        }
      ]
    },
    "version": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Integer"
        },
        {
          "description": "The image set version."
        }
      ]
    },
    "createdAt": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Date"
        },
        {
          "description": "The time an image set is created in AWS HealthImaging. Sample creation date is provided in <code>1985-04-12T23:20:50.52Z</code> format."
        }
      ]
    },
    "updatedAt": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Date"
        },
        {
          "description": "The time when an image was last updated in AWS HealthImaging."
        }
      ]
    },
    "DICOMTags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DICOMTags"
        },
        {
          "description": "The DICOM tags associated with the image set."
        }
      ]
    }
  },
  "description": "Summary of the image set metadata."
}