Microsoft Graph · Schema
microsoft.graph.identityGovernance.task
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.identityGovernance.task",
"title": "microsoft.graph.identityGovernance.task",
"allOf": [
{
"$ref": "#/components/schemas/microsoft.graph.entity"
},
{
"title": "task",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"arguments": {
"type": "array",
"items": {
"$ref": "#/components/schemas/microsoft.graph.keyValuePair"
},
"description": "Arguments included within the task. For guidance to configure this property, see Configure the arguments for built-in Lifecycle Workflow tasks. Required."
},
"category": {
"$ref": "#/components/schemas/microsoft.graph.identityGovernance.lifecycleTaskCategory"
},
"continueOnError": {
"type": "boolean",
"description": "A Boolean value that specifies whether, if this task fails, the workflow stops, and subsequent tasks aren't run. Optional."
},
"description": {
"type": "string",
"description": "A string that describes the purpose of the task for administrative use. Optional.",
"nullable": true
},
"displayName": {
"type": "string",
"description": "A unique string that identifies the task. Required.Supports $filter(eq, ne) and orderBy."
},
"executionSequence": {
"maximum": 2147483647,
"minimum": -2147483648,
"type": "number",
"description": "An integer that states in what order the task runs in a workflow.Supports $orderby.",
"format": "int32"
},
"isEnabled": {
"type": "boolean",
"description": "A Boolean value that denotes whether the task is set to run or not. Optional.Supports $filter(eq, ne) and orderBy."
},
"taskDefinitionId": {
"type": "string",
"description": "A unique template identifier for the task. For more information about the tasks that Lifecycle Workflows currently supports and their unique identifiers, see Configure the arguments for built-in Lifecycle Workflow tasks. Required.Supports $filter(eq, ne)."
},
"taskProcessingResults": {
"type": "array",
"items": {
"$ref": "#/components/schemas/microsoft.graph.identityGovernance.taskProcessingResult"
},
"description": "The result of processing the task.",
"x-ms-navigationProperty": true
},
"@odata.type": {
"type": "string"
}
}
}
],
"x-ms-discriminator-value": "#microsoft.graph.identityGovernance.task"
}