{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-healthomics/refs/heads/main/json-schema/healthomics-create-variant-store-request-schema.json", "name": "CreateVariantStoreRequest", "type": "object", "required": [ "reference" ], "properties": { "reference": { "allOf": [ { "$ref": "#/components/schemas/ReferenceItem" }, { "description": "The genome reference for the store's variants." } ] }, "name": { "allOf": [ { "$ref": "#/components/schemas/CreateVariantStoreRequestNameString" }, { "description": "A name for the store." } ] }, "description": { "allOf": [ { "$ref": "#/components/schemas/StoreDescription" }, { "description": "A description for the store." } ] }, "tags": { "allOf": [ { "$ref": "#/components/schemas/TagMap" }, { "description": "Tags for the store." } ] }, "sseConfig": { "allOf": [ { "$ref": "#/components/schemas/SseConfig" }, { "description": "Server-side encryption (SSE) settings for the store." } ] } } }