Keboola · Schema

ConfigurationRowDiffResponse

Three-way diff of a single configuration row. Each side is a row version snapshot, or null when the row does not exist on that side. When there is no conflict all three sides are equal.

Data PlatformETLELTData PipelinesData StorageTransformationsOrchestrationData OperationsCloud DataSnowflakeBigQuery

Properties

Name Type Description
base object
ours object
theirs object
View JSON Schema on GitHub

JSON Schema

keboola-configurationrowdiffresponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ConfigurationRowDiffResponse",
  "description": "Three-way diff of a single configuration row. Each side is a row version snapshot, or null when the row does not exist on that side. When there is no conflict all three sides are equal.",
  "required": [
    "base",
    "ours",
    "theirs"
  ],
  "properties": {
    "base": {
      "oneOf": [
        {
          "$ref": "#/components/schemas/ConfigurationRowVersionResponse"
        }
      ],
      "nullable": true
    },
    "ours": {
      "oneOf": [
        {
          "$ref": "#/components/schemas/ConfigurationRowVersionResponse"
        }
      ],
      "nullable": true
    },
    "theirs": {
      "oneOf": [
        {
          "$ref": "#/components/schemas/ConfigurationRowVersionResponse"
        }
      ],
      "nullable": true
    }
  },
  "type": "object"
}