Dataiku · Schema
CreateUserRequest
AnalyticsArtificial IntelligenceData PlatformData ScienceMachine Learning
Properties
| Name | Type | Description |
|---|---|---|
| login | string | User login name |
| password | string | Initial password |
| displayName | string | Display name |
| string | Email address | |
| groups | array | Groups to assign |
| userProfile | string | User profile |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CreateUserRequest",
"title": "CreateUserRequest",
"type": "object",
"required": [
"login",
"password"
],
"properties": {
"login": {
"type": "string",
"description": "User login name"
},
"password": {
"type": "string",
"description": "Initial password"
},
"displayName": {
"type": "string",
"description": "Display name"
},
"email": {
"type": "string",
"format": "email",
"description": "Email address"
},
"groups": {
"type": "array",
"items": {
"type": "string"
},
"description": "Groups to assign"
},
"userProfile": {
"type": "string",
"description": "User profile"
}
}
}