CoverageMapFilterList schema
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-inspector/refs/heads/main/json-schema/inspector-coverage-map-filter-list-schema.json", "title": "CoverageMapFilterList", "description": "CoverageMapFilterList schema", "type": "array", "items": { "type": "object", "required": [ "comparison", "key" ], "properties": { "comparison": { "allOf": [ { "$ref": "#/components/schemas/CoverageMapComparison" }, { "description": "The operator to compare coverage on." } ] }, "key": { "allOf": [ { "$ref": "#/components/schemas/NonEmptyString" }, { "description": "The tag key associated with the coverage map filter." } ] }, "value": { "allOf": [ { "$ref": "#/components/schemas/NonEmptyString" }, { "description": "The tag value associated with the coverage map filter." } ] } }, "description": "Contains details of a coverage map filter." } }