{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/FormMethodFilter", "title": "FormMethodFilter", "type": "object", "properties": { "field": { "type": "string", "enum": [ "method" ] }, "method": { "type": "string", "enum": [ "form" ] }, "filter": { "description": "Optional filter on a specific list of form ids", "$ref": "#/components/schemas/InStringArrayFilter", "nullable": true } }, "required": [ "field", "method" ] }