Rapid7 · Schema

DomRestrictions

SecurityVulnerability ManagementSIEMXDRCloud SecuritySOARApplication Security

Properties

Name Type Description
enabled boolean
name string
initial_state string
dom_element_restriction_list array
scope_constraint_list array
View JSON Schema on GitHub

JSON Schema

rapid7-domrestrictions-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DomRestrictions",
  "title": "DomRestrictions",
  "properties": {
    "enabled": {
      "type": "boolean"
    },
    "name": {
      "type": "string"
    },
    "initial_state": {
      "type": "string",
      "enum": [
        "INCLUDE",
        "EXCLUDE"
      ]
    },
    "dom_element_restriction_list": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/DomElementRestriction"
      }
    },
    "scope_constraint_list": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ScopeConstraint"
      }
    }
  }
}