Rapid7 · Schema

ScopeConstraint

SecurityVulnerability ManagementSIEMXDRCloud SecuritySOARApplication Security

Properties

Name Type Description
url string
method string
match_criteria string
exclusion string
http_parameter_list array
View JSON Schema on GitHub

JSON Schema

rapid7-scopeconstraint-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ScopeConstraint",
  "title": "ScopeConstraint",
  "properties": {
    "url": {
      "type": "string"
    },
    "method": {
      "type": "string",
      "enum": [
        "ALL",
        "GET",
        "POST",
        "HEAD",
        "PUT",
        "PATCH",
        "DELETE",
        "TRACE",
        "CONNECT",
        "OPTIONS"
      ]
    },
    "match_criteria": {
      "type": "string",
      "enum": [
        "LITERAL",
        "WILDCARD",
        "REGEX"
      ]
    },
    "exclusion": {
      "type": "string",
      "enum": [
        "INCLUDE",
        "EXCLUDE"
      ]
    },
    "http_parameter_list": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/HttpParameter"
      }
    }
  }
}