The search filter.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-healthimaging/refs/heads/main/json-schema/healthimaging-search-filter-schema.json", "title": "SearchFilter", "type": "object", "required": [ "values", "operator" ], "properties": { "values": { "allOf": [ { "$ref": "#/components/schemas/SearchFilterValuesList" }, { "description": "The search filter values." } ] }, "operator": { "allOf": [ { "$ref": "#/components/schemas/Operator" }, { "description": "The search filter operator for <code>imageSetDateTime</code>." } ] } }, "description": "The search filter." }