addedInput schema / properties / conditions
Added value: +{
+ "description": "Replacement conditions",
+ "items": {
+ "properties": {
+ "excludes": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "items": {
+ "type": "string"
+ },
+ "minItems": 1,
+ "type": "array"
+ }
+ ],
+ "description": "Values to exclude"
+ },
+ "key": {
+ "description": "Match key such as api_key, virtual_key, provider, config, prompt, model, endpoint_type, mcp_server, mcp_tool, workspace_id, or metadata.*",
+ "minLength": 1,
+ "type": "string"
+ },
+ "value": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "items": {
+ "type": "string"
+ },
+ "minItems": 1,
+ "type": "array"
+ }
+ ],
+ "description": "One value or several OR-matched values; use * for wildcard matching"
+ }
+ },
+ "required": [
+ "key",
+ "value"
+ ],
+ "type": "object"
+ },
+ "minItems": 1,
+ "type": "array"
+}
changedInput schema / properties / id / description
Previous value: -"The unique identifier of the rate limit"New value: +"Rate-limit policy UUID"
addedInput schema / properties / id / minLength
Added value: +1
changedInput schema / properties / name / description
Previous value: -"New name for the rate limit"New value: +"Replacement display name"
changedInput schema / properties / unit / description
Previous value: -"New time unit: 'rpm' (per minute), 'rph' (per hour), or 'rpd' (per day)"New value: +"Replacement reset interval"
changedInput schema / properties / unit / enum
Previous value: -[
- "rpm",
- "rph",
- "rpd"
-]New value: +[
+ "rpm",
+ "rph",
+ "rpd",
+ "rpw"
+]
changedInput schema / properties / value / description
Previous value: -"New maximum allowed value per unit"New value: +"Replacement maximum"
removedInput schema / properties / value / exclusiveMinimum
Removed value: -0
addedInput schema / properties / value / minimum
Added value: +0