Keboola · Schema
ConfigurationRowVersionResponse
Data PlatformETLELTData PipelinesData StorageTransformationsOrchestrationData OperationsCloud DataSnowflakeBigQuery
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| name | string | |
| description | string | |
| isDisabled | boolean | |
| version | integer | |
| created | string | |
| creatorToken | object | |
| changeDescription | string | |
| versionIdentifier | string | |
| configuration | object |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "ConfigurationRowVersionResponse",
"required": [
"id",
"name",
"description",
"isDisabled",
"version",
"created",
"creatorToken",
"changeDescription",
"versionIdentifier",
"configuration"
],
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"isDisabled": {
"type": "boolean"
},
"version": {
"type": "integer"
},
"created": {
"type": "string"
},
"creatorToken": {
"required": [
"id",
"description"
],
"properties": {
"id": {
"type": "integer"
},
"description": {
"type": "string",
"nullable": true
}
},
"type": "object"
},
"changeDescription": {
"type": "string",
"nullable": true
},
"versionIdentifier": {
"type": "string",
"nullable": true
},
"configuration": {
"type": "object"
}
},
"type": "object"
}