A filter for a sequence store.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-healthomics/refs/heads/main/json-schema/healthomics-sequence-store-filter-schema.json", "title": "SequenceStoreFilter", "type": "object", "properties": { "name": { "allOf": [ { "$ref": "#/components/schemas/SequenceStoreName" }, { "description": "A name 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": "A filter for a sequence store." }