Amazon HealthOmics · Schema

ImportReferenceJobItem

An import reference job.

BioinformaticsGenomicsHealthcareLife SciencesCloud Computing

Properties

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

JSON Schema

healthomics-import-reference-job-item-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-import-reference-job-item-schema.json",
  "title": "ImportReferenceJobItem",
  "type": "object",
  "required": [
    "id",
    "referenceStoreId",
    "roleArn",
    "status",
    "creationTime"
  ],
  "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."
        }
      ]
    },
    "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."
        }
      ]
    }
  },
  "description": "An import reference job."
}