{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/rum_create-rule-request", "title": "rum_create-rule-request", "properties": { "host": { "example": "example.com", "type": "string" }, "inclusive": { "description": "Whether the rule includes or excludes traffic from being measured.", "example": true, "type": "boolean" }, "is_paused": { "description": "Whether the rule is paused or not.", "example": false, "type": "boolean" }, "paths": { "example": [ "*" ], "items": { "type": "string" }, "type": "array" } }, "type": "object" }