Rapid7 · Schema

EntityModelTag

SecurityVulnerability ManagementSIEMXDRCloud SecuritySOARApplication Security

Properties

Name Type Description
id string The ID of the Tag
name string The name of the Tag
creator object
create_time string The time the Tag was created
links array
View JSON Schema on GitHub

JSON Schema

rapid7-entitymodeltag-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EntityModelTag",
  "title": "EntityModelTag",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "description": "The ID of the Tag",
      "readOnly": true
    },
    "name": {
      "type": "string",
      "description": "The name of the Tag",
      "maxLength": 100,
      "minLength": 1
    },
    "creator": {
      "$ref": "#/components/schemas/ReadOnlyIdResource"
    },
    "create_time": {
      "type": "string",
      "description": "The time the Tag was created",
      "example": "2021-08-03T14:07:37",
      "readOnly": true
    },
    "links": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Link"
      },
      "readOnly": true
    }
  },
  "required": [
    "name"
  ]
}