An object that describes the details of a string filter.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-inspector/refs/heads/main/json-schema/inspector-string-filter-schema.json", "title": "StringFilter", "description": "An object that describes the details of a string filter.", "type": "object", "properties": { "comparison": { "allOf": [ { "$ref": "#/components/schemas/StringComparison" }, { "description": "The operator to use when comparing values in the filter." } ] }, "value": { "allOf": [ { "$ref": "#/components/schemas/StringInput" }, { "description": "The value to filter on." } ] } }, "required": [ "comparison", "value" ] }