Keboola · Schema
UiAppsRegistrationResponse
Data PlatformETLELTData PipelinesData StorageTransformationsOrchestrationData OperationsCloud DataSnowflakeBigQuery
Properties
| Name | Type | Description |
|---|---|---|
| app | object | |
| version | object |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "UiAppsRegistrationResponse",
"required": [
"app",
"version"
],
"properties": {
"app": {
"properties": {
"id": {
"description": "Application identifier.",
"type": "string"
},
"stringId": {
"description": "Unique application string identifier.",
"type": "string"
},
"name": {
"description": "Application name.",
"type": "string"
},
"created": {
"description": "Application creation time. Formatted as `YYYY-MM-DD HH:MM:SS` (no timezone).",
"type": "string",
"example": "2024-04-21 13:42:11"
}
},
"type": "object"
},
"version": {
"properties": {
"id": {
"description": "Version identifier.",
"type": "string"
},
"version": {
"description": "Version number.",
"type": "string"
},
"isActive": {
"description": "Flag indicating whether the version is active.",
"type": "boolean"
},
"isCritical": {
"description": "Whether the version is marked as critical.",
"type": "boolean"
},
"commitSha": {
"description": "Git commit SHA that produced this build.",
"type": "string",
"nullable": true
}
},
"type": "object"
}
},
"type": "object"
}