Rapid7 · Schema

EntityModelApp

SecurityVulnerability ManagementSIEMXDRCloud SecuritySOARApplication Security

Properties

Name Type Description
id string The ID of the App
name string The name of the App
description string The description of the App
links array
View JSON Schema on GitHub

JSON Schema

rapid7-entitymodelapp-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EntityModelApp",
  "title": "EntityModelApp",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "description": "The ID of the App",
      "readOnly": true
    },
    "name": {
      "type": "string",
      "description": "The name of the App",
      "maxLength": 200,
      "minLength": 1
    },
    "description": {
      "type": "string",
      "description": "The description of the App",
      "maxLength": 2000,
      "minLength": 0
    },
    "links": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Link"
      },
      "readOnly": true
    }
  },
  "required": [
    "name"
  ]
}