Keboola · Schema

SettingPatch

One setting key-value pair.

Data PlatformETLELTData PipelinesData StorageTransformationsOrchestrationData OperationsCloud DataSnowflakeBigQuery

Properties

Name Type Description
key string Key path.
value object A new key value. Use null to reset the value to the default value.
View JSON Schema on GitHub

JSON Schema

keboola-settingpatch.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "SettingPatch",
  "type": "object",
  "properties": {
    "key": {
      "type": "string",
      "description": "Key path.",
      "example": "some.service.limit",
      "minLength": 1
    },
    "value": {
      "description": "A new key value. Use null to reset the value to the default value.",
      "example": "1m20s"
    }
  },
  "description": "One setting key-value pair.",
  "example": {
    "key": "some.service.limit",
    "value": "1m20s"
  },
  "required": [
    "key"
  ]
}