Rapid7 · Schema

EngineAssignment

The engine assignment that the Scan should use

SecurityVulnerability ManagementSIEMXDRCloud SecuritySOARApplication Security

Properties

Name Type Description
type string The type of engine assignment
id string The ID of the assignment
environment string The environment of the assignment
View JSON Schema on GitHub

JSON Schema

rapid7-engineassignment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EngineAssignment",
  "title": "EngineAssignment",
  "description": "The engine assignment that the Scan should use",
  "properties": {
    "type": {
      "type": "string",
      "description": "The type of engine assignment",
      "enum": [
        "ENGINE_GROUP"
      ]
    },
    "id": {
      "type": "string",
      "format": "uuid",
      "description": "The ID of the assignment"
    },
    "environment": {
      "type": "string",
      "description": "The environment of the assignment",
      "enum": [
        "CLOUD",
        "ON_PREMISE"
      ]
    }
  },
  "required": [
    "environment"
  ]
}