Keboola · Schema

ObjectListResponse

Data PlatformETLELTData PipelinesData StorageTransformationsOrchestrationData OperationsCloud DataSnowflakeBigQuery

Properties

Name Type Description
name string Name of the object in the workspace.
type string Type of the object.
View JSON Schema on GitHub

JSON Schema

keboola-objectlistresponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ObjectListResponse",
  "required": [
    "name",
    "type"
  ],
  "properties": {
    "name": {
      "description": "Name of the object in the workspace.",
      "type": "string"
    },
    "type": {
      "description": "Type of the object.",
      "type": "string",
      "enum": [
        "table",
        "view"
      ]
    }
  },
  "type": "object"
}