Amazon HealthOmics · Schema

GetVariantImportResponse

BioinformaticsGenomicsHealthcareLife SciencesCloud Computing

Properties

Name Type Description
id object
destinationName object
roleArn object
status object
statusMessage object
creationTime object
updateTime object
completionTime object
items object
runLeftNormalization object
annotationFields object
View JSON Schema on GitHub

JSON Schema

healthomics-get-variant-import-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-healthomics/refs/heads/main/json-schema/healthomics-get-variant-import-response-schema.json",
  "title": "GetVariantImportResponse",
  "type": "object",
  "required": [
    "id",
    "destinationName",
    "roleArn",
    "status",
    "statusMessage",
    "creationTime",
    "updateTime",
    "items",
    "runLeftNormalization"
  ],
  "properties": {
    "id": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResourceId"
        },
        {
          "description": "The job's ID."
        }
      ]
    },
    "destinationName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/StoreName"
        },
        {
          "description": "The job's destination variant 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/VariantImportItemDetails"
        },
        {
          "description": "The job's items."
        }
      ]
    },
    "runLeftNormalization": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RunLeftNormalization"
        },
        {
          "description": "The job's left normalization setting."
        }
      ]
    },
    "annotationFields": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AnnotationFieldMap"
        },
        {
          "description": " The annotation schema generated by the parsed annotation data. "
        }
      ]
    }
  }
}