Informatica · Schema
ActivityLogEntry
An entry in the activity log representing the execution status of a job.
Address VerificationB2B GatewayCloud ServicesData GovernanceData IntegrationData ProfilingData QualityEnterprise SoftwareETLIDMCIICSMaster Data ManagementReference Data Management
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The activity log entry ID. |
| type | string | The type of activity. |
| objectId | string | The ID of the task or object. |
| objectName | string | The name of the task or object. |
| runId | integer | The job run ID. |
| agentId | string | The Secure Agent that ran the job. |
| runtimeEnvironmentId | string | The runtime environment used. |
| startTime | string | The time the job started. |
| endTime | string | The time the job completed. |
| state | integer | The job execution state. Common values are 1 (success), 2 (warning), 3 (error). |
| failedSourceRows | integer | The number of source rows that failed. |
| successSourceRows | integer | The number of source rows processed successfully. |
| failedTargetRows | integer | The number of target rows that failed. |
| successTargetRows | integer | The number of target rows written successfully. |
| totalSuccessRows | integer | The total number of rows processed successfully. |
| totalErrorRows | integer | The total number of rows that encountered errors. |
| errorMsg | string | The error message if the job failed. |
| startedBy | string | The user who started the job. |
| runContextType | string | The context in which the job was run (e.g., API, SCHEDULER, UI). |
| entries | array | Sub-entries for multi-step jobs. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ActivityLogEntry",
"title": "ActivityLogEntry",
"type": "object",
"description": "An entry in the activity log representing the execution status of a job.",
"properties": {
"id": {
"type": "string",
"description": "The activity log entry ID.",
"example": "abc123"
},
"type": {
"type": "string",
"description": "The type of activity.",
"example": "example_value"
},
"objectId": {
"type": "string",
"description": "The ID of the task or object.",
"example": "500123"
},
"objectName": {
"type": "string",
"description": "The name of the task or object.",
"example": "example_value"
},
"runId": {
"type": "integer",
"format": "int64",
"description": "The job run ID.",
"example": "500123"
},
"agentId": {
"type": "string",
"description": "The Secure Agent that ran the job.",
"example": "500123"
},
"runtimeEnvironmentId": {
"type": "string",
"description": "The runtime environment used.",
"example": "500123"
},
"startTime": {
"type": "string",
"format": "date-time",
"description": "The time the job started.",
"example": "2026-01-15T10:30:00Z"
},
"endTime": {
"type": "string",
"format": "date-time",
"description": "The time the job completed.",
"example": "2026-01-15T10:30:00Z"
},
"state": {
"type": "integer",
"description": "The job execution state. Common values are 1 (success), 2 (warning), 3 (error).",
"example": 10
},
"failedSourceRows": {
"type": "integer",
"format": "int64",
"description": "The number of source rows that failed.",
"example": 10
},
"successSourceRows": {
"type": "integer",
"format": "int64",
"description": "The number of source rows processed successfully.",
"example": 10
},
"failedTargetRows": {
"type": "integer",
"format": "int64",
"description": "The number of target rows that failed.",
"example": 10
},
"successTargetRows": {
"type": "integer",
"format": "int64",
"description": "The number of target rows written successfully.",
"example": 10
},
"totalSuccessRows": {
"type": "integer",
"format": "int64",
"description": "The total number of rows processed successfully.",
"example": 10
},
"totalErrorRows": {
"type": "integer",
"format": "int64",
"description": "The total number of rows that encountered errors.",
"example": 10
},
"errorMsg": {
"type": "string",
"description": "The error message if the job failed.",
"example": "example_value"
},
"startedBy": {
"type": "string",
"description": "The user who started the job.",
"example": "example_value"
},
"runContextType": {
"type": "string",
"description": "The context in which the job was run (e.g., API, SCHEDULER, UI).",
"example": "example_value"
},
"entries": {
"type": "array",
"description": "Sub-entries for multi-step jobs.",
"items": {
"type": "object"
},
"example": []
}
}
}