Properties
| Name | Type | Description |
|---|---|---|
| delete_rules | array | A list of rule identifiers to delete. |
| rules | array | A list of rules to create or update. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/rum_modify-rules-request",
"title": "rum_modify-rules-request",
"properties": {
"delete_rules": {
"description": "A list of rule identifiers to delete.",
"items": {
"$ref": "#/components/schemas/rum_rule_identifier"
},
"type": "array"
},
"rules": {
"description": "A list of rules to create or update.",
"items": {
"properties": {
"host": {
"example": "example.com",
"type": "string"
},
"id": {
"$ref": "#/components/schemas/rum_rule_identifier"
},
"inclusive": {
"example": true,
"type": "boolean"
},
"is_paused": {
"example": false,
"type": "boolean"
},
"paths": {
"example": [
"*"
],
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}