Dataiku · Schema

GovernUser

AnalyticsArtificial IntelligenceData PlatformData ScienceMachine Learning

Properties

Name Type Description
login string User login
displayName string Display name
email string Email address
roles array Assigned role IDs
View JSON Schema on GitHub

JSON Schema

dataiku-governuser-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GovernUser",
  "title": "GovernUser",
  "type": "object",
  "properties": {
    "login": {
      "type": "string",
      "description": "User login"
    },
    "displayName": {
      "type": "string",
      "description": "Display name"
    },
    "email": {
      "type": "string",
      "format": "email",
      "description": "Email address"
    },
    "roles": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Assigned role IDs"
    }
  }
}