Rapid7 · Schema

Schedule

The frequency describes how (and if) the Schedule should repeat. Should not be included if a rrule has been provided.

SecurityVulnerability ManagementSIEMXDRCloud SecuritySOARApplication Security

Properties

Name Type Description
id string The ID of the Schedule
name string The name of the Schedule
enabled boolean The enabled property of the Schedule
scan_config object
first_start string The first start date and time of the Schedule
last_start string The last start date and time of the Schedule
rrule string The rrule describes how (and if) the schedule should repeat. Should not be included if a frequency has been provided.
View JSON Schema on GitHub

JSON Schema

rapid7-frequency-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/frequency",
  "title": "Schedule",
  "description": "The frequency describes how (and if) the Schedule should repeat. Should not be included if a rrule has been provided.",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "description": "The ID of the Schedule",
      "readOnly": true
    },
    "name": {
      "type": "string",
      "description": "The name of the Schedule",
      "maxLength": 200,
      "minLength": 1
    },
    "enabled": {
      "type": "boolean",
      "description": "The enabled property of the Schedule"
    },
    "scan_config": {
      "$ref": "#/components/schemas/RequiredIdResource"
    },
    "first_start": {
      "type": "string",
      "format": "date-time",
      "description": "The first start date and time of the Schedule"
    },
    "last_start": {
      "type": "string",
      "format": "date-time",
      "description": "The last start date and time of the Schedule"
    },
    "rrule": {
      "type": "string",
      "description": "The rrule describes how (and if) the schedule should repeat. Should not be included if a frequency has been provided."
    }
  },
  "required": [
    "enabled",
    "first_start",
    "name",
    "scan_config"
  ]
}