Keboola · Schema

Vendor

Data PlatformETLELTData PipelinesData StorageTransformationsOrchestrationData OperationsCloud DataSnowflakeBigQuery

Properties

Name Type Description
id string
name string
address string
email string
isPublic boolean
isApproved boolean
View JSON Schema on GitHub

JSON Schema

keboola-vendor.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Vendor",
  "type": "object",
  "additionalProperties": true,
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "address": {
      "type": "string"
    },
    "email": {
      "type": "string",
      "format": "email"
    },
    "isPublic": {
      "type": "boolean"
    },
    "isApproved": {
      "type": "boolean"
    }
  }
}