rum_create-rule-request

APIs.ioEngineeringPlatform

Properties

Name Type Description
host string
inclusive boolean Whether the rule includes or excludes traffic from being measured.
is_paused boolean Whether the rule is paused or not.
paths array
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-rum-create-rule-request-schema.json Raw ↑
{
  "$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"
}