{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/api-shield_validation_default_mitigation_action", "title": "api-shield_validation_default_mitigation_action", "description": "The default mitigation action used when there is no mitigation action defined on the operation\n\nMitigation actions are as follows:\n\n * `log` - log request when request does not conform to schema\n * `block` - deny access to the site when request does not conform to schema\n\nA special value of of `none` will skip running schema validation entirely for the request when there is no mitigation action defined on the operation\n", "enum": [ "none", "log", "block" ], "example": "block", "type": "string" }