Amazon HealthOmics · JSON Structure

Healthomics Get Read Set Metadata Response Structure

Type: object Properties: 15 Required: 6
BioinformaticsGenomicsHealthcareLife SciencesCloud Computing

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

Properties

id arn sequenceStoreId subjectId sampleId status name description fileType creationTime sequenceInformation referenceArn files statusMessage creationType

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-get-read-set-metadata-response-schema.json",
  "name": "GetReadSetMetadataResponse",
  "type": "object",
  "required": [
    "id",
    "arn",
    "sequenceStoreId",
    "status",
    "fileType",
    "creationTime"
  ],
  "properties": {
    "id": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ReadSetId"
        },
        {
          "description": "The read set's ID."
        }
      ]
    },
    "arn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ReadSetArn"
        },
        {
          "description": "The read set's ARN."
        }
      ]
    },
    "sequenceStoreId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SequenceStoreId"
        },
        {
          "description": "The read set's sequence store ID."
        }
      ]
    },
    "subjectId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SubjectId"
        },
        {
          "description": "The read set's subject ID."
        }
      ]
    },
    "sampleId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SampleId"
        },
        {
          "description": "The read set's sample ID."
        }
      ]
    },
    "status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ReadSetStatus"
        },
        {
          "description": "The read set's status."
        }
      ]
    },
    "name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ReadSetName"
        },
        {
          "description": "The read set's name."
        }
      ]
    },
    "description": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ReadSetDescription"
        },
        {
          "description": "The read set's description."
        }
      ]
    },
    "fileType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/FileType"
        },
        {
          "description": "The read set's file type."
        }
      ]
    },
    "creationTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SyntheticTimestamp_date_time"
        },
        {
          "description": "When the read set was created."
        }
      ]
    },
    "sequenceInformation": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SequenceInformation"
        },
        {
          "description": "The read set's sequence information."
        }
      ]
    },
    "referenceArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ReferenceArn"
        },
        {
          "description": "The read set's genome reference ARN."
        }
      ]
    },
    "files": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ReadSetFiles"
        },
        {
          "description": "The read set's files."
        }
      ]
    },
    "statusMessage": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ReadSetStatusMessage"
        },
        {
          "description": " The status message for a read set. It provides more detail as to why the read set has a status. "
        }
      ]
    },
    "creationType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CreationType"
        },
        {
          "description": " The creation type of the read set. "
        }
      ]
    }
  }
}