Rapid7 · Schema

ModuleMetadata

SecurityVulnerability ManagementSIEMXDRCloud SecuritySOARApplication Security

Properties

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

JSON Schema

rapid7-modulemetadata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ModuleMetadata",
  "title": "ModuleMetadata",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "description": "The ID of the module",
      "readOnly": true
    },
    "name": {
      "type": "string",
      "description": "The name of the module",
      "readOnly": true
    },
    "description": {
      "type": "string",
      "description": "The description of the module",
      "readOnly": true
    }
  }
}