Amazon HealthOmics · Schema

FormatOptions

Formatting options for a file.

BioinformaticsGenomicsHealthcareLife SciencesCloud Computing

Properties

Name Type Description
tsvOptions object
vcfOptions object
View JSON Schema on GitHub

JSON Schema

healthomics-format-options-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-format-options-schema.json",
  "title": "FormatOptions",
  "type": "object",
  "properties": {
    "tsvOptions": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TsvOptions"
        },
        {
          "description": "Options for a TSV file."
        }
      ]
    },
    "vcfOptions": {
      "allOf": [
        {
          "$ref": "#/components/schemas/VcfOptions"
        },
        {
          "description": "Options for a VCF file."
        }
      ]
    }
  },
  "description": "Formatting options for a file."
}