Amazon HealthOmics · JSON Structure

Healthomics Get Annotation Import Response Structure

Type: object Properties: 12 Required: 11
BioinformaticsGenomicsHealthcareLife SciencesCloud Computing

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

Properties

id destinationName roleArn status statusMessage creationTime updateTime completionTime items runLeftNormalization formatOptions annotationFields

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-healthomics/refs/heads/main/json-schema/healthomics-get-annotation-import-response-schema.json",
  "name": "GetAnnotationImportResponse",
  "type": "object",
  "required": [
    "id",
    "destinationName",
    "roleArn",
    "status",
    "statusMessage",
    "creationTime",
    "updateTime",
    "completionTime",
    "items",
    "runLeftNormalization",
    "formatOptions"
  ],
  "properties": {
    "id": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResourceId"
        },
        {
          "description": "The job's ID."
        }
      ]
    },
    "destinationName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/StoreName"
        },
        {
          "description": "The job's destination annotation store."
        }
      ]
    },
    "roleArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Arn"
        },
        {
          "description": "The job's service role ARN."
        }
      ]
    },
    "status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/JobStatus"
        },
        {
          "description": "The job's status."
        }
      ]
    },
    "statusMessage": {
      "allOf": [
        {
          "$ref": "#/components/schemas/JobStatusMsg"
        },
        {
          "description": "The job's status message."
        }
      ]
    },
    "creationTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CreationTime"
        },
        {
          "description": "When the job was created."
        }
      ]
    },
    "updateTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/UpdateTime"
        },
        {
          "description": "When the job was updated."
        }
      ]
    },
    "completionTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CompletionTime"
        },
        {
          "description": "When the job completed."
        }
      ]
    },
    "items": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AnnotationImportItemDetails"
        },
        {
          "description": "The job's imported items."
        }
      ]
    },
    "runLeftNormalization": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RunLeftNormalization"
        },
        {
          "description": "The job's left normalization setting."
        }
      ]
    },
    "formatOptions": {
      "$ref": "#/components/schemas/FormatOptions"
    },
    "annotationFields": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AnnotationFieldMap"
        },
        {
          "description": " The annotation schema generated by the parsed annotation data. "
        }
      ]
    }
  }
}