Keboola · Schema

MetadataCreateRequest

Data PlatformETLELTData PipelinesData StorageTransformationsOrchestrationData OperationsCloud DataSnowflakeBigQuery

Properties

Name Type Description
metadata array List of metadata items to create or update
View JSON Schema on GitHub

JSON Schema

keboola-metadatacreaterequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "MetadataCreateRequest",
  "required": [
    "metadata"
  ],
  "properties": {
    "metadata": {
      "description": "List of metadata items to create or update",
      "type": "array",
      "items": {
        "properties": {
          "key": {
            "description": "Metadata key",
            "type": "string"
          },
          "value": {
            "description": "Metadata value",
            "type": "string",
            "nullable": true
          }
        },
        "type": "object"
      }
    }
  },
  "type": "object"
}