Rapid7 · Schema

MacroFile

SecurityVulnerability ManagementSIEMXDRCloud SecuritySOARApplication Security

Properties

Name Type Description
macro_file_name string
java_script_engine string
replay_speed number
extra_delay_after_macro integer
attack_as_sequence boolean
sequence_config object
View JSON Schema on GitHub

JSON Schema

rapid7-macrofile-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MacroFile",
  "title": "MacroFile",
  "properties": {
    "macro_file_name": {
      "type": "string"
    },
    "java_script_engine": {
      "type": "string",
      "enum": [
        "DEFAULT",
        "INTERNET_EXPLORER",
        "CHROME",
        "CHROMIUM"
      ]
    },
    "replay_speed": {
      "type": "number",
      "format": "double"
    },
    "extra_delay_after_macro": {
      "type": "integer",
      "format": "int64"
    },
    "attack_as_sequence": {
      "type": "boolean"
    },
    "sequence_config": {
      "$ref": "#/components/schemas/SequenceConfig"
    }
  }
}