Rapid7 · Schema

EngineGroup

SecurityVulnerability ManagementSIEMXDRCloud SecuritySOARApplication Security

Properties

Name Type Description
id string The ID of the Engine Group
name string The name of the Engine Group
description string The description of the Engine Group
View JSON Schema on GitHub

JSON Schema

rapid7-enginegroup-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EngineGroup",
  "title": "EngineGroup",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "description": "The ID of the Engine Group",
      "readOnly": true
    },
    "name": {
      "type": "string",
      "description": "The name of the Engine Group",
      "maxLength": 200,
      "minLength": 1
    },
    "description": {
      "type": "string",
      "description": "The description of the Engine Group",
      "maxLength": 2000,
      "minLength": 0
    }
  },
  "required": [
    "name"
  ]
}