Keboola · Schema

User

Data PlatformETLELTData PipelinesData StorageTransformationsOrchestrationData OperationsCloud DataSnowflakeBigQuery

Properties

Name Type Description
name string
email string
vendors array
isAdmin boolean
View JSON Schema on GitHub

JSON Schema

keboola-user.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "User",
  "type": "object",
  "additionalProperties": true,
  "properties": {
    "name": {
      "type": "string"
    },
    "email": {
      "type": "string",
      "format": "email"
    },
    "vendors": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "isAdmin": {
      "type": "boolean"
    }
  }
}