Keboola · Schema

ConfigurationMergeRequest

Request to describe differences between a configuration in two branches. The base branch configuration may not exist (for newly created configurations).

Data PlatformETLELTData PipelinesData StorageTransformationsOrchestrationData OperationsCloud DataSnowflakeBigQuery

Properties

Name Type Description
componentId string ID of the component
configId string ID of the configuration
baseBranchId string ID of the base branch (e.g., main branch)
currentBranchId string ID of the working branch
View JSON Schema on GitHub

JSON Schema

keboola-configurationmergerequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ConfigurationMergeRequest",
  "type": "object",
  "description": "Request to describe differences between a configuration in two branches.\nThe base branch configuration may not exist (for newly created configurations).\n",
  "required": [
    "componentId",
    "configId",
    "baseBranchId",
    "currentBranchId"
  ],
  "properties": {
    "componentId": {
      "type": "string",
      "description": "ID of the component"
    },
    "configId": {
      "type": "string",
      "description": "ID of the configuration"
    },
    "baseBranchId": {
      "type": "string",
      "description": "ID of the base branch (e.g., main branch)"
    },
    "currentBranchId": {
      "type": "string",
      "description": "ID of the working branch"
    }
  }
}