Microsoft Graph · Schema

microsoft.graph.identityGovernance.workflowTemplate

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphidentitygovernanceworkflowtemplate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.identityGovernance.workflowTemplate",
  "title": "microsoft.graph.identityGovernance.workflowTemplate",
  "allOf": [
    {
      "$ref": "#/components/schemas/microsoft.graph.entity"
    },
    {
      "title": "workflowTemplate",
      "required": [
        "@odata.type"
      ],
      "type": "object",
      "properties": {
        "category": {
          "$ref": "#/components/schemas/microsoft.graph.identityGovernance.lifecycleWorkflowCategory"
        },
        "description": {
          "type": "string",
          "description": "The description of the workflowTemplate.",
          "nullable": true
        },
        "displayName": {
          "type": "string",
          "description": "The display name of the workflowTemplate.Supports $filter(eq, ne) and $orderby."
        },
        "executionConditions": {
          "anyOf": [
            {
              "$ref": "#/components/schemas/microsoft.graph.identityGovernance.workflowExecutionConditions"
            },
            {
              "type": "object",
              "nullable": true
            }
          ],
          "description": "Conditions describing when to execute the workflow and the criteria to identify in-scope subject set."
        },
        "tasks": {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/microsoft.graph.identityGovernance.task"
          },
          "description": "Represents the configured tasks to execute and their execution sequence within a workflow. This relationship is expanded by default.",
          "x-ms-navigationProperty": true
        },
        "@odata.type": {
          "type": "string"
        }
      }
    }
  ],
  "x-ms-discriminator-value": "#microsoft.graph.identityGovernance.workflowTemplate"
}