Amazon HealthOmics · Schema

ActivateReadSetFilter

A read set activation job filter.

BioinformaticsGenomicsHealthcareLife SciencesCloud Computing

Properties

Name Type Description
status object
createdAfter object
createdBefore object
View JSON Schema on GitHub

JSON Schema

healthomics-activate-read-set-filter-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-activate-read-set-filter-schema.json",
  "title": "ActivateReadSetFilter",
  "type": "object",
  "properties": {
    "status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ReadSetActivationJobStatus"
        },
        {
          "description": "The filter's status."
        }
      ]
    },
    "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": "A read set activation job filter."
}