Amazon HealthOmics · JSON Structure

Healthomics Create Variant Store Request Structure

Type: object Properties: 5 Required: 1
BioinformaticsGenomicsHealthcareLife SciencesCloud Computing

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

Properties

reference name description tags sseConfig

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-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."
        }
      ]
    }
  }
}