Amazon HealthOmics · Schema

ListReferencesResponse

BioinformaticsGenomicsHealthcareLife SciencesCloud Computing

Properties

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

JSON Schema

healthomics-list-references-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-references-response-schema.json",
  "title": "ListReferencesResponse",
  "type": "object",
  "required": [
    "references"
  ],
  "properties": {
    "nextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NextToken"
        },
        {
          "description": "A pagination token that's included if more results are available."
        }
      ]
    },
    "references": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ReferenceList"
        },
        {
          "description": "A list of references."
        }
      ]
    }
  }
}