Amazon HealthOmics · JSON Structure

Healthomics Start Read Set Export Job Response Structure

Type: object Properties: 5 Required: 5
BioinformaticsGenomicsHealthcareLife SciencesCloud Computing

StartReadSetExportJobResponse is a JSON Structure definition published by Amazon HealthOmics, describing 5 properties, of which 5 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id sequenceStoreId destination status creationTime

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-healthomics/refs/heads/main/json-schema/healthomics-start-read-set-export-job-response-schema.json",
  "name": "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."
        }
      ]
    }
  }
}