Amazon HealthOmics · JSON Structure

Healthomics Read Set Batch Error Structure

An error from a batch read set operation.

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

ReadSetBatchError 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

id code message

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-read-set-batch-error-schema.json",
  "name": "ReadSetBatchError",
  "type": "object",
  "required": [
    "id",
    "code",
    "message"
  ],
  "properties": {
    "id": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ReadSetId"
        },
        {
          "description": "The error's ID."
        }
      ]
    },
    "code": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The error's code."
        }
      ]
    },
    "message": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The error's message."
        }
      ]
    }
  },
  "description": "An error from a batch read set operation."
}