Oracle GoldenGate · Schema
Pipeline
CDCData IntegrationData SynchronizationDatabaseEnterpriseReal-Time Replication
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Pipeline unique identifier |
| name | string | Pipeline display name |
| description | string | |
| status | string | Current pipeline status |
| createdBy | string | |
| createdAt | string | |
| updatedAt | string | |
| sources | array | |
| targets | array | |
| stages | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Pipeline",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Pipeline unique identifier"
},
"name": {
"type": "string",
"description": "Pipeline display name"
},
"description": {
"type": "string"
},
"status": {
"type": "string",
"description": "Current pipeline status"
},
"createdBy": {
"type": "string"
},
"createdAt": {
"type": "string"
},
"updatedAt": {
"type": "string"
},
"sources": {
"type": "array"
},
"targets": {
"type": "array"
},
"stages": {
"type": "array"
}
}
}