Amazon HealthOmics · Schema

ImportReadSetJobItem

An import read set job.

BioinformaticsGenomicsHealthcareLife SciencesCloud Computing

Properties

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

JSON Schema

healthomics-import-read-set-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-read-set-job-item-schema.json",
  "title": "ImportReadSetJobItem",
  "type": "object",
  "required": [
    "id",
    "sequenceStoreId",
    "roleArn",
    "status",
    "creationTime"
  ],
  "properties": {
    "id": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ImportJobId"
        },
        {
          "description": "The job's ID."
        }
      ]
    },
    "sequenceStoreId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SequenceStoreId"
        },
        {
          "description": "The job's sequence store ID."
        }
      ]
    },
    "roleArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RoleArn"
        },
        {
          "description": "The job's service role ARN."
        }
      ]
    },
    "status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ReadSetImportJobStatus"
        },
        {
          "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 read set job."
}