Amazon HealthOmics · JSON Structure

Healthomics Complete Read Set Upload Part List Item Structure

Part of the response to the CompleteReadSetUpload API, including metadata.

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

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

Properties

partNumber partSource checksum

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-complete-read-set-upload-part-list-item-schema.json",
  "name": "CompleteReadSetUploadPartListItem",
  "type": "object",
  "required": [
    "partNumber",
    "partSource",
    "checksum"
  ],
  "properties": {
    "partNumber": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CompleteReadSetUploadPartListItemPartNumberInteger"
        },
        {
          "description": " A number identifying the part in a read set upload. "
        }
      ]
    },
    "partSource": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ReadSetPartSource"
        },
        {
          "description": " The source file of the part being uploaded. "
        }
      ]
    },
    "checksum": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": " A unique identifier used to confirm that parts are being added to the correct upload. "
        }
      ]
    }
  },
  "description": " Part of the response to the CompleteReadSetUpload API, including metadata. "
}