Alteryx · Schema
UserDetail
Detailed representation of a user account
AnalyticsAutomationData EngineeringData PreparationData ScienceETLMachine LearningPredictive Analytics
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique user identifier |
| firstName | string | User's first name |
| lastName | string | User's last name |
| string | User's email address | |
| role | string | User role |
| dateCreated | string | Date the user was created |
| defaultWorkerTag | string | Default worker tag |
| canScheduleJobs | boolean | |
| canPrioritizeJobs | boolean | |
| canAssignJobs | boolean | |
| canCreateCollections | boolean | |
| isApiEnabled | boolean | |
| defaultCredentialId | string | |
| isAccountLocked | boolean | |
| isActive | boolean | |
| isValidated | boolean | |
| timeZone | string | |
| language | string | |
| canCreateAndUpdateDcm | boolean | |
| canShareForExecutionDcm | boolean | |
| canShareForCollaborationDcm | boolean | |
| canManageGenericVaultsDcm | boolean |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "UserDetail",
"type": "object",
"description": "Detailed representation of a user account",
"properties": {
"id": {
"type": "string",
"description": "Unique user identifier"
},
"firstName": {
"type": "string",
"description": "User's first name"
},
"lastName": {
"type": "string",
"description": "User's last name"
},
"email": {
"type": "string",
"description": "User's email address"
},
"role": {
"type": "string",
"description": "User role"
},
"dateCreated": {
"type": "string",
"description": "Date the user was created"
},
"defaultWorkerTag": {
"type": "string",
"description": "Default worker tag"
},
"canScheduleJobs": {
"type": "boolean"
},
"canPrioritizeJobs": {
"type": "boolean"
},
"canAssignJobs": {
"type": "boolean"
},
"canCreateCollections": {
"type": "boolean"
},
"isApiEnabled": {
"type": "boolean"
},
"defaultCredentialId": {
"type": "string"
},
"isAccountLocked": {
"type": "boolean"
},
"isActive": {
"type": "boolean"
},
"isValidated": {
"type": "boolean"
},
"timeZone": {
"type": "string"
},
"language": {
"type": "string"
},
"canCreateAndUpdateDcm": {
"type": "boolean"
},
"canShareForExecutionDcm": {
"type": "boolean"
},
"canShareForCollaborationDcm": {
"type": "boolean"
},
"canManageGenericVaultsDcm": {
"type": "boolean"
}
}
}