Rapid7 · Schema

Creator

SecurityVulnerability ManagementSIEMXDRCloud SecuritySOARApplication Security

Properties

Name Type Description
type string A type that denotes who or what created a resource.
name string The name of who or what created a resource.
View JSON Schema on GitHub

JSON Schema

rapid7-creator-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Creator",
  "title": "Creator",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "description": "A type that denotes who or what created a resource.",
      "enum": [
        "USER",
        "ORG_API_KEY",
        "SYSTEM"
      ],
      "example": "USER"
    },
    "name": {
      "type": "string",
      "description": "The name of who or what created a resource.",
      "example": "John Doe"
    }
  },
  "required": [
    "name",
    "type"
  ]
}