Data Policy Templates
Data Policy Templates allow teams to define reusable rule configurations that can be applied when creating Data Quality or other reliability policies. A template may contain:
A set of predefined rule items
Conditions or expressions
Standard thresholds
Business logic reusable across multiple policies
This functionality is often used when teams want standardized rule logic across many policies (e.g., shared DQ checks for all PII tables).
Available Endpoints
Action | Endpoint |
|---|---|
Create Template |
|
List Template |
|
Get Template by ID |
|
Update Template |
|
Delete Template |
|
Get Template Items |
|
Path Parameter (GET Template)
Name | Type | Required | Description |
|---|---|---|---|
id | string | Yes | Template ID |
Sample Requests
Create Policy Template
curl -X POST "https://{{HOST}}/catalog-server/api/policy-templates" \
-H "Content-Type: application/json" \
-d '{ "name": "basic_null_checks", "items": [...] }'
List Policy Template
curl -X GET "https://{{HOST}}/catalog-server/api/policy-templates"
Get Templates
curl -X GET "https://{{HOST}}/catalog-server/api/policy-templates/42"
Update Policy Template
curl -X PUT "https://{{HOST}}/catalog-server/api/policy-templates/42" \
-H "Content-Type: application/json" \
-d '{ "description": "Updated explanation" }'
Delete Policy Template
curl -X DELETE "https://{{HOST}}/catalog-server/api/policy-templates/42"

Send a comment