Dataiku · Schema

Group

AnalyticsArtificial IntelligenceData PlatformData ScienceMachine Learning

Properties

Name Type Description
name string Group name
description string Group description
admin boolean Whether this is an admin group
sourceType string Group source type (LOCAL, LDAP)
View JSON Schema on GitHub

JSON Schema

dataiku-group-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Group",
  "title": "Group",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Group name"
    },
    "description": {
      "type": "string",
      "description": "Group description"
    },
    "admin": {
      "type": "boolean",
      "description": "Whether this is an admin group"
    },
    "sourceType": {
      "type": "string",
      "description": "Group source type (LOCAL, LDAP)"
    }
  }
}