Amazon HealthOmics · JSON Structure

Healthomics Export Read Set Filter Structure

An read set export job filter.

Type: object Properties: 3
BioinformaticsGenomicsHealthcareLife SciencesCloud Computing

ExportReadSetFilter is a JSON Structure definition published by Amazon HealthOmics, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

status createdAfter createdBefore

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-export-read-set-filter-schema.json",
  "name": "ExportReadSetFilter",
  "type": "object",
  "properties": {
    "status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ReadSetExportJobStatus"
        },
        {
          "description": "A status to filter on."
        }
      ]
    },
    "createdAfter": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SyntheticTimestamp_date_time"
        },
        {
          "description": "The filter's start date."
        }
      ]
    },
    "createdBefore": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SyntheticTimestamp_date_time"
        },
        {
          "description": "The filter's end date."
        }
      ]
    }
  },
  "description": "An read set export job filter."
}