Amazon HealthOmics · Schema

StartReadSetExportJobResponse

BioinformaticsGenomicsHealthcareLife SciencesCloud Computing

Properties

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

JSON Schema

healthomics-start-read-set-export-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-start-read-set-export-job-response-schema.json",
  "title": "StartReadSetExportJobResponse",
  "type": "object",
  "required": [
    "id",
    "sequenceStoreId",
    "destination",
    "status",
    "creationTime"
  ],
  "properties": {
    "id": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ExportJobId"
        },
        {
          "description": "The job's ID."
        }
      ]
    },
    "sequenceStoreId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SequenceStoreId"
        },
        {
          "description": "The read set's sequence store ID."
        }
      ]
    },
    "destination": {
      "allOf": [
        {
          "$ref": "#/components/schemas/S3Destination"
        },
        {
          "description": "The job's output location."
        }
      ]
    },
    "status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ReadSetExportJobStatus"
        },
        {
          "description": "The job's status."
        }
      ]
    },
    "creationTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SyntheticTimestamp_date_time"
        },
        {
          "description": "When the job was created."
        }
      ]
    }
  }
}