Represents a summary of a single pipeline as returned in the paginated list of pipelines. Includes the pipeline identifier, its display name, the source asset paths, the user who last modified the pipeline, the modification timestamp, whether the pipeline currently has validation errors, and the number of configured input steps.
Parameters
| Property | Description |
|---|---|
id |
The unique identifier of the pipeline. |
name |
The display name of the pipeline as shown in the pipeline list. |
sourceAssetTypePath |
The bracket-delimited type path of the pipeline's primary source asset. |
sourceAssetNamePath |
The bracket-delimited name path of the pipeline's primary source asset. |
lastModifiedBy |
The email address or identifier of the user who last modified the pipeline. |
lastModifiedDate |
The ISO 8601 timestamp of the most recent modification to the pipeline. |
error |
Indicates whether the pipeline currently has configuration or validation errors. When true, the pipeline cannot be executed until the errors are resolved. |
validationStatus |
Indicates whether the pipeline has passed its last validation check. When false, the pipeline configuration may be incomplete or incompatible. |
inputStepCount |
The number of input steps configured in the pipeline. |
JSON Example
{
"id": "68f0decb6f0a4a39a1c8ef33",
"name": "Quality Pipeline Daily Run",
"sourceAssetTypePath": "warehouse/sales/orders",
"sourceAssetNamePath": "warehouse/sales/orders",
"lastModifiedBy": "api.user@precisely.com",
"lastModifiedDate": "2026-07-15T10:30:00Z",
"error": true,
"validationStatus": true,
"inputStepCount": 1
}