Amazon HealthOmics · Schema

ListReferenceStoresResponse

BioinformaticsGenomicsHealthcareLife SciencesCloud Computing

Properties

Name Type Description
nextToken object
referenceStores object
View JSON Schema on GitHub

JSON Schema

healthomics-list-reference-stores-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-healthomics/refs/heads/main/json-schema/healthomics-list-reference-stores-response-schema.json",
  "title": "ListReferenceStoresResponse",
  "type": "object",
  "required": [
    "referenceStores"
  ],
  "properties": {
    "nextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NextToken"
        },
        {
          "description": "A pagination token that's included if more results are available."
        }
      ]
    },
    "referenceStores": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ReferenceStoreDetailList"
        },
        {
          "description": "A list of reference stores."
        }
      ]
    }
  }
}