{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-healthomics/refs/heads/main/json-schema/healthomics-sequence-information-schema.json", "name": "SequenceInformation", "type": "object", "properties": { "totalReadCount": { "allOf": [ { "$ref": "#/components/schemas/Long" }, { "description": "The sequence's total read count." } ] }, "totalBaseCount": { "allOf": [ { "$ref": "#/components/schemas/Long" }, { "description": "The sequence's total base count." } ] }, "generatedFrom": { "allOf": [ { "$ref": "#/components/schemas/GeneratedFrom" }, { "description": "Where the sequence originated." } ] }, "alignment": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "The sequence's alignment setting." } ] } }, "description": "Details about a sequence." }