A read set activation job filter.
{ "$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." }