{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/StandardEntityRulePutInput", "title": "StandardEntityRulePutInput", "type": "object", "properties": { "is_active": { "type": "boolean" }, "inbound_action": { "$ref": "#/components/schemas/StandardEntityRulePutInputInboundAction", "description": "* `BLOCK` - BLOCK\n* `REDACT` - REDACT\n* `LOG` - LOG\n* `NONE` - NONE" }, "outbound_action": { "$ref": "#/components/schemas/StandardEntityRulePutInputOutboundAction", "description": "* `BLOCK` - BLOCK\n* `REDACT` - REDACT\n* `LOG` - LOG\n* `NONE` - NONE" } }, "required": [ "is_active", "inbound_action", "outbound_action" ], "description": "Input serializer for PUT /standard-entity-rules//. All fields required." }