Microsoft Purview · Schema

Trigger

A scan trigger for scheduling automated scans

ComplianceData CatalogData ClassificationData GovernanceData Loss PreventionInformation Protection

Properties

Name Type Description
id string
name string
properties object
View JSON Schema on GitHub

JSON Schema

microsoft-purview-trigger-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Trigger",
  "title": "Trigger",
  "type": "object",
  "description": "A scan trigger for scheduling automated scans",
  "properties": {
    "id": {
      "type": "string",
      "readOnly": true
    },
    "name": {
      "type": "string"
    },
    "properties": {
      "type": "object",
      "properties": {
        "recurrence": {
          "$ref": "#/components/schemas/TriggerRecurrence"
        },
        "recurrenceInterval": {
          "type": "string"
        },
        "createdAt": {
          "type": "string",
          "format": "date-time"
        },
        "lastModifiedAt": {
          "type": "string",
          "format": "date-time"
        },
        "lastScheduled": {
          "type": "string",
          "format": "date-time"
        },
        "scanLevel": {
          "type": "string",
          "enum": [
            "Full",
            "Incremental"
          ]
        },
        "incrementalScanStartTime": {
          "type": "string",
          "format": "date-time"
        }
      }
    }
  }
}