Microsoft Purview · Schema

Workflow

A workflow definition

ComplianceData CatalogData ClassificationData GovernanceData Loss PreventionInformation Protection

Properties

Name Type Description
id string
triggers array
name string
isEnabled boolean
description string
actionDag object The directed acyclic graph of actions
View JSON Schema on GitHub

JSON Schema

microsoft-purview-workflow-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Workflow",
  "title": "Workflow",
  "type": "object",
  "description": "A workflow definition",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid"
    },
    "triggers": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/WorkflowTrigger"
      }
    },
    "name": {
      "type": "string"
    },
    "isEnabled": {
      "type": "boolean"
    },
    "description": {
      "type": "string"
    },
    "actionDag": {
      "type": "object",
      "description": "The directed acyclic graph of actions"
    }
  }
}