ARGUS Enterprise · JSON Structure

Argus Enterprise User Structure

User schema from ARGUS Enterprise API

Type: object Properties: 9
Altus GroupAsset ManagementCash Flow ModelingCommercial Real EstatePortfolio ManagementValuation

User is a JSON Structure definition published by ARGUS Enterprise, describing 9 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id username email firstName lastName role lastLogin active createdAt

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/argus-enterprise/refs/heads/main/json-structure/argus-enterprise-user-structure.json",
  "name": "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": "datetime",
      "description": "Last login timestamp"
    },
    "active": {
      "type": "boolean",
      "description": "Whether the user account is active"
    },
    "createdAt": {
      "type": "datetime"
    }
  }
}