Amazon HealthOmics · Schema

GetReferenceImportJobResponse

BioinformaticsGenomicsHealthcareLife SciencesCloud Computing

Properties

Name Type Description
id object
referenceStoreId object
roleArn object
status object
statusMessage object
creationTime object
completionTime object
sources object
View JSON Schema on GitHub

JSON Schema

healthomics-get-reference-import-job-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-reference-import-job-response-schema.json",
  "title": "GetReferenceImportJobResponse",
  "type": "object",
  "required": [
    "id",
    "referenceStoreId",
    "roleArn",
    "status",
    "creationTime",
    "sources"
  ],
  "properties": {
    "id": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ImportJobId"
        },
        {
          "description": "The job's ID."
        }
      ]
    },
    "referenceStoreId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ReferenceStoreId"
        },
        {
          "description": "The job's reference store ID."
        }
      ]
    },
    "roleArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RoleArn"
        },
        {
          "description": "The job's service role ARN."
        }
      ]
    },
    "status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ReferenceImportJobStatus"
        },
        {
          "description": "The job's status."
        }
      ]
    },
    "statusMessage": {
      "allOf": [
        {
          "$ref": "#/components/schemas/JobStatusMessage"
        },
        {
          "description": "The job's status message."
        }
      ]
    },
    "creationTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SyntheticTimestamp_date_time"
        },
        {
          "description": "When the job was created."
        }
      ]
    },
    "completionTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SyntheticTimestamp_date_time"
        },
        {
          "description": "When the job completed."
        }
      ]
    },
    "sources": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ImportReferenceSourceList"
        },
        {
          "description": "The job's source files."
        }
      ]
    }
  }
}