Keboola · Schema

InputMappingLoadDryRunResponse

Data PlatformETLELTData PipelinesData StorageTransformationsOrchestrationData OperationsCloud DataSnowflakeBigQuery

Properties

Name Type Description
dryRun boolean
operationName string
input array
View JSON Schema on GitHub

JSON Schema

keboola-inputmappingloaddryrunresponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "InputMappingLoadDryRunResponse",
  "required": [
    "dryRun",
    "operationName",
    "input"
  ],
  "properties": {
    "dryRun": {
      "type": "boolean"
    },
    "operationName": {
      "type": "string"
    },
    "input": {
      "type": "array",
      "items": {
        "required": [
          "source",
          "destination",
          "loadType",
          "possibleLoadTypes"
        ],
        "properties": {
          "source": {
            "type": "string"
          },
          "destination": {
            "type": "string"
          },
          "loadType": {
            "type": "string",
            "enum": [
              "COPY",
              "CLONE",
              "VIEW"
            ]
          },
          "possibleLoadTypes": {
            "type": "array",
            "items": {
              "type": "string",
              "enum": [
                "COPY",
                "CLONE",
                "VIEW"
              ]
            }
          }
        },
        "type": "object"
      }
    }
  },
  "type": "object"
}