Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| descriptor | string | |
| targetTable | object | |
| status | string | |
| operation | string | |
| createdDateTime | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/DataChangeTask",
"title": "DataChangeTask",
"type": "object",
"properties": {
"id": {
"type": "string"
},
"descriptor": {
"type": "string"
},
"targetTable": {
"$ref": "#/components/schemas/ResourceReference"
},
"status": {
"type": "string",
"enum": [
"Processing",
"Completed",
"Failed"
]
},
"operation": {
"type": "string",
"enum": [
"TruncateAndInsert",
"Insert",
"Update",
"Upsert",
"Delete"
]
},
"createdDateTime": {
"type": "string",
"format": "date-time"
}
}
}