Information about a filter.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-robomaker/refs/heads/main/json-schema/amazon-robomaker-openapi-filter-schema.json", "title": "Filter", "description": "Information about a filter.", "type": "object", "properties": { "name": { "allOf": [ { "$ref": "#/components/schemas/Name" }, { "description": "The name of the filter." } ] }, "values": { "allOf": [ { "$ref": "#/components/schemas/FilterValues" }, { "description": "A list of values." } ] } } }