Rapid7 · Schema

SearchRequest

SecurityVulnerability ManagementSIEMXDRCloud SecuritySOARApplication Security

Properties

Name Type Description
type string The type of resource to Search
query string The query for the Search
View JSON Schema on GitHub

JSON Schema

rapid7-searchrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SearchRequest",
  "title": "SearchRequest",
  "properties": {
    "type": {
      "type": "string",
      "description": "The type of resource to Search",
      "enum": [
        "APP",
        "SCAN",
        "SCAN_CONFIG",
        "VULNERABILITY",
        "VULNERABILITY_DISCOVERY",
        "ATTACK_TEMPLATE",
        "TARGET",
        "ENGINE",
        "ENGINE_GROUP",
        "SCHEDULE",
        "BLACKOUT",
        "FILE",
        "TAG",
        "REPORT"
      ]
    },
    "query": {
      "type": "string",
      "description": "The query for the Search"
    }
  },
  "required": [
    "query",
    "type"
  ]
}