Keboola · Schema

AddMaintainerAdministratorRequest

Data PlatformETLELTData PipelinesData StorageTransformationsOrchestrationData OperationsCloud DataSnowflakeBigQuery

Properties

Name Type Description
id integer User ID.
email string User email.
View JSON Schema on GitHub

JSON Schema

keboola-addmaintaineradministratorrequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "AddMaintainerAdministratorRequest",
  "properties": {
    "id": {
      "description": "User ID.",
      "type": "integer",
      "example": 7234,
      "nullable": true
    },
    "email": {
      "description": "User email.",
      "type": "string",
      "format": "email",
      "example": "[email protected]",
      "nullable": true
    }
  },
  "type": "object",
  "example": {
    "email": "[email protected]"
  }
}