{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SetRulesConfigResponseContent", "title": "SetRulesConfigResponseContent", "type": "object", "additionalProperties": true, "required": [ "key", "value" ], "properties": { "key": { "type": "string", "description": "Key for a rules config variable.", "default": "MY_RULES_CONFIG_KEY", "minLength": 1, "maxLength": 127, "pattern": "^[A-Za-z0-9_\\-@*+:]*$" }, "value": { "type": "string", "description": "Value for a rules config variable.", "default": "MY_RULES_CONFIG_VALUE" } } }