Keboola · Schema

StreamUpdateSourceRequestBody

Data PlatformETLELTData PipelinesData StorageTransformationsOrchestrationData OperationsCloud DataSnowflakeBigQuery

Properties

Name Type Description
changeDescription string Description of the modification, description of the version.
description string Description of the source.
name string Human readable name of the source.
type string
View JSON Schema on GitHub

JSON Schema

keboola-streamupdatesourcerequestbody.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "StreamUpdateSourceRequestBody",
  "type": "object",
  "properties": {
    "changeDescription": {
      "type": "string",
      "description": "Description of the modification, description of the version.",
      "example": "Renamed."
    },
    "description": {
      "type": "string",
      "description": "Description of the source.",
      "example": "The source receives events from Github.",
      "maxLength": 4096
    },
    "name": {
      "type": "string",
      "description": "Human readable name of the source.",
      "example": "Github Webhook Source",
      "minLength": 1,
      "maxLength": 40
    },
    "type": {
      "type": "string",
      "example": "http",
      "enum": [
        "http",
        "otlp"
      ]
    }
  },
  "example": {
    "changeDescription": "Renamed.",
    "type": "http",
    "name": "Github Webhook Source",
    "description": "The source receives events from Github."
  }
}