Rapid7 · Schema

ScanSubmitter

The submitter of the Scan

SecurityVulnerability ManagementSIEMXDRCloud SecuritySOARApplication Security

Properties

Name Type Description
type string The type of submitter
id string The ID of the submitter
View JSON Schema on GitHub

JSON Schema

rapid7-scansubmitter-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ScanSubmitter",
  "title": "ScanSubmitter",
  "description": "The submitter of the Scan",
  "properties": {
    "type": {
      "type": "string",
      "description": "The type of submitter",
      "enum": [
        "USER",
        "SCHEDULE",
        "ORGANIZATION"
      ],
      "readOnly": true
    },
    "id": {
      "type": "string",
      "format": "uuid",
      "description": "The ID of the submitter",
      "readOnly": true
    }
  },
  "readOnly": true
}