Microsoft Purview · Schema
WorkflowRun
ComplianceData CatalogData ClassificationData GovernanceData Loss PreventionInformation Protection
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| workflowId | string | |
| startTime | string | |
| requestor | string | |
| userRequestId | string | |
| runPayload | object | |
| status | string | |
| endTime | string | |
| cancelTime | string | |
| cancelComment | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/WorkflowRun",
"title": "WorkflowRun",
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid"
},
"workflowId": {
"type": "string",
"format": "uuid"
},
"startTime": {
"type": "string",
"format": "date-time"
},
"requestor": {
"type": "string",
"format": "uuid"
},
"userRequestId": {
"type": "string",
"format": "uuid"
},
"runPayload": {
"type": "object"
},
"status": {
"type": "string",
"enum": [
"InProgress",
"Completed",
"Canceling",
"CancellationFailed",
"Cancelled",
"Failed",
"NotStarted"
]
},
"endTime": {
"type": "string",
"format": "date-time"
},
"cancelTime": {
"type": "string",
"format": "date-time"
},
"cancelComment": {
"type": "string"
}
}
}