ARGUS Enterprise · Schema
User
User schema from ARGUS Enterprise API
Altus GroupAsset ManagementCash Flow ModelingCommercial Real EstatePortfolio ManagementValuation
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique user identifier |
| username | string | Username |
| string | User email address | |
| firstName | string | First name |
| lastName | string | Last name |
| role | string | User role |
| lastLogin | string | Last login timestamp |
| active | boolean | Whether the user account is active |
| createdAt | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/argus-enterprise/refs/heads/main/json-schema/argus-enterprise-user-schema.json",
"title": "User",
"description": "User schema from ARGUS Enterprise API",
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid",
"description": "Unique user identifier"
},
"username": {
"type": "string",
"description": "Username"
},
"email": {
"type": "string",
"format": "email",
"description": "User email address"
},
"firstName": {
"type": "string",
"description": "First name"
},
"lastName": {
"type": "string",
"description": "Last name"
},
"role": {
"type": "string",
"enum": [
"Admin",
"Analyst",
"Viewer"
],
"description": "User role"
},
"lastLogin": {
"type": "string",
"format": "date-time",
"description": "Last login timestamp"
},
"active": {
"type": "boolean",
"description": "Whether the user account is active"
},
"createdAt": {
"type": "string",
"format": "date-time"
}
}
}