Workday Studio · Schema
IntegrationEvent
A record of an integration execution, tracking the run status, timing, and processing statistics of an integration system run.
CloudDevelopmentEnterpriseFinanceHRIDEIntegration
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The unique Workday identifier for the integration event |
| descriptor | string | The display name of the integration event |
| integrationSystem | object | |
| status | string | The execution status of the integration |
| startDateTime | string | The date and time the integration started |
| endDateTime | stringnull | The date and time the integration completed |
| recordsProcessed | integer | The number of records successfully processed |
| recordsFailed | integer | The number of records that failed processing |
| initiatedBy | object | |
| errorMessage | string | Summary error message if the integration failed |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/IntegrationEvent",
"title": "IntegrationEvent",
"type": "object",
"description": "A record of an integration execution, tracking the run status, timing, and processing statistics of an integration system run.",
"properties": {
"id": {
"type": "string",
"description": "The unique Workday identifier for the integration event"
},
"descriptor": {
"type": "string",
"description": "The display name of the integration event"
},
"integrationSystem": {
"$ref": "#/components/schemas/ResourceReference"
},
"status": {
"type": "string",
"enum": [
"Completed",
"Failed",
"In_Progress",
"Cancelled"
],
"description": "The execution status of the integration"
},
"startDateTime": {
"type": "string",
"format": "date-time",
"description": "The date and time the integration started"
},
"endDateTime": {
"type": [
"string",
"null"
],
"format": "date-time",
"description": "The date and time the integration completed"
},
"recordsProcessed": {
"type": "integer",
"description": "The number of records successfully processed"
},
"recordsFailed": {
"type": "integer",
"description": "The number of records that failed processing"
},
"initiatedBy": {
"$ref": "#/components/schemas/ResourceReference"
},
"errorMessage": {
"type": "string",
"description": "Summary error message if the integration failed"
}
}
}