Rapid7 · Schema

AddCollectorResponse

Response from creating a collector

SecurityVulnerability ManagementSIEMXDRCloud SecuritySOARApplication Security

Properties

Name Type Description
id string The identifier for this collector.
rrn object
name string The name of this collector.
View JSON Schema on GitHub

JSON Schema

rapid7-addcollectorresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AddCollectorResponse",
  "title": "AddCollectorResponse",
  "required": [
    "id",
    "name",
    "rrn"
  ],
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The identifier for this collector.",
      "example": "ae1d4845-8ce8-4072-b4d5-77171387fb6a"
    },
    "rrn": {
      "$ref": "#/components/schemas/RRN1"
    },
    "name": {
      "type": "string",
      "description": "The name of this collector.",
      "example": "My Collector"
    }
  },
  "description": "Response from creating a collector"
}