Rapid7 · Schema

ProxyConfig

SecurityVulnerability ManagementSIEMXDRCloud SecuritySOARApplication Security

Properties

Name Type Description
type string
http_host string
http_port integer
https_host string
https_port integer
pac_file string
username string
password string
proxy_exclusions_list array
View JSON Schema on GitHub

JSON Schema

rapid7-proxyconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProxyConfig",
  "title": "ProxyConfig",
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "NO_PROXY",
        "INTERNET_EXPLORER_SETTINGS",
        "MANUAL_CONFIG",
        "PAC_FILE"
      ]
    },
    "http_host": {
      "type": "string"
    },
    "http_port": {
      "type": "integer",
      "format": "int64"
    },
    "https_host": {
      "type": "string"
    },
    "https_port": {
      "type": "integer",
      "format": "int64"
    },
    "pac_file": {
      "type": "string"
    },
    "username": {
      "type": "string"
    },
    "password": {
      "type": "string"
    },
    "proxy_exclusions_list": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ProxyExclusions"
      }
    }
  }
}