Rapid7 · Schema

Assignee

SecurityVulnerability ManagementSIEMXDRCloud SecuritySOARApplication Security

Properties

Name Type Description
name string The name of the assigned user.
email string The email of the assigned user.
View JSON Schema on GitHub

JSON Schema

rapid7-assignee-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Assignee",
  "title": "Assignee",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the assigned user.",
      "example": "Ellen Example"
    },
    "email": {
      "type": "string",
      "description": "The email of the assigned user.",
      "example": "[email protected]"
    }
  },
  "required": [
    "email",
    "name"
  ]
}