Keboola · Schema

UserResponse

Data PlatformETLELTData PipelinesData StorageTransformationsOrchestrationData OperationsCloud DataSnowflakeBigQuery

Properties

Name Type Description
id integer User identifier.
name string User full name.
email string User email address.
mfaEnabled boolean Whether MFA is enabled for the user.
features array List of assigned features.
canAccessLogs boolean Whether the user can access logs.
isSuperAdmin boolean Whether the user has super admin privileges.
View JSON Schema on GitHub

JSON Schema

keboola-userresponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "UserResponse",
  "required": [
    "id",
    "name",
    "email",
    "mfaEnabled",
    "features",
    "canAccessLogs",
    "isSuperAdmin"
  ],
  "properties": {
    "id": {
      "description": "User identifier.",
      "type": "integer",
      "example": 2
    },
    "name": {
      "description": "User full name.",
      "type": "string",
      "example": "Martin"
    },
    "email": {
      "description": "User email address.",
      "type": "string",
      "example": "[email protected]"
    },
    "mfaEnabled": {
      "description": "Whether MFA is enabled for the user.",
      "type": "boolean",
      "example": true
    },
    "features": {
      "description": "List of assigned features.",
      "type": "array",
      "items": {
        "type": "string"
      },
      "example": [
        "inline-manual"
      ]
    },
    "canAccessLogs": {
      "description": "Whether the user can access logs.",
      "type": "boolean",
      "example": true
    },
    "isSuperAdmin": {
      "description": "Whether the user has super admin privileges.",
      "type": "boolean",
      "example": true
    }
  },
  "type": "object",
  "example": {
    "id": 2,
    "name": "Martin",
    "email": "[email protected]",
    "mfaEnabled": true,
    "features": [
      "inline-manual"
    ],
    "canAccessLogs": true,
    "isSuperAdmin": true
  }
}