Microsoft Purview · Schema

TriggerRecurrence

ComplianceData CatalogData ClassificationData GovernanceData Loss PreventionInformation Protection

Properties

Name Type Description
frequency string
interval integer
startTime string
endTime string
schedule object
timeZone string
View JSON Schema on GitHub

JSON Schema

microsoft-purview-triggerrecurrence-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TriggerRecurrence",
  "title": "TriggerRecurrence",
  "type": "object",
  "properties": {
    "frequency": {
      "type": "string",
      "enum": [
        "Week",
        "Month",
        "Day"
      ]
    },
    "interval": {
      "type": "integer",
      "format": "int32"
    },
    "startTime": {
      "type": "string",
      "format": "date-time"
    },
    "endTime": {
      "type": "string",
      "format": "date-time"
    },
    "schedule": {
      "$ref": "#/components/schemas/RecurrenceSchedule"
    },
    "timeZone": {
      "type": "string"
    }
  }
}