Rapid7 · Schema

UserV2

The list of data that matches the pagination parameters. If no results match this will be an empty list.

SecurityVulnerability ManagementSIEMXDRCloud SecuritySOARApplication Security

Properties

Name Type Description
rrn string The unique identifier for this user.
first_name string The first name of this user, if known.
last_name string The last name of this user, if known.
name string The name of this user.
domain string The domain this user is associated with.
View JSON Schema on GitHub

JSON Schema

rapid7-userv2-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UserV2",
  "title": "UserV2",
  "required": [
    "domain",
    "name",
    "rrn"
  ],
  "type": "object",
  "properties": {
    "rrn": {
      "type": "string",
      "description": "The unique identifier for this user.",
      "example": "rrn:uba:us:6bcf6c5b-552d-49a4-a3f5-259e0514585f:user:83002c85d7c6"
    },
    "first_name": {
      "type": "string",
      "description": "The first name of this user, if known.",
      "example": "John"
    },
    "last_name": {
      "type": "string",
      "description": "The last name of this user, if known.",
      "example": "Doe"
    },
    "name": {
      "type": "string",
      "description": "The name of this user.",
      "example": "John Doe"
    },
    "domain": {
      "type": "string",
      "description": "The domain this user is associated with.",
      "example": "tor.acme.com"
    }
  },
  "description": "The list of data that matches the pagination parameters. If no results match this will be an empty list."
}