ARGUS Enterprise · Schema

Argus Enterprise Portfolio

Represents a commercial real estate portfolio in the ARGUS Enterprise platform, used to organize and manage groups of properties under a unified investment strategy.

Altus GroupAsset ManagementCash Flow ModelingCommercial Real EstatePortfolio ManagementValuation

Properties

Name Type Description
id string Unique portfolio identifier
name string Portfolio name
description string Portfolio description
strategy string Investment strategy classification
totalProperties integer Number of properties in the portfolio
totalMarketValue number Aggregate market value of all properties
currency string Currency code (ISO 4217)
createdAt string Record creation timestamp
updatedAt string Record last update timestamp
View JSON Schema on GitHub

JSON Schema

argus-enterprise-portfolio-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.argusenterprise.com/schemas/argus-enterprise/portfolio.json",
  "title": "Argus Enterprise Portfolio",
  "description": "Represents a commercial real estate portfolio in the ARGUS Enterprise platform, used to organize and manage groups of properties under a unified investment strategy.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "description": "Unique portfolio identifier"
    },
    "name": {
      "type": "string",
      "description": "Portfolio name"
    },
    "description": {
      "type": "string",
      "description": "Portfolio description"
    },
    "strategy": {
      "type": "string",
      "enum": ["Core", "CorePlus", "ValueAdd", "Opportunistic"],
      "description": "Investment strategy classification"
    },
    "totalProperties": {
      "type": "integer",
      "description": "Number of properties in the portfolio"
    },
    "totalMarketValue": {
      "type": "number",
      "description": "Aggregate market value of all properties"
    },
    "currency": {
      "type": "string",
      "description": "Currency code (ISO 4217)",
      "default": "USD"
    },
    "createdAt": {
      "type": "string",
      "format": "date-time",
      "description": "Record creation timestamp"
    },
    "updatedAt": {
      "type": "string",
      "format": "date-time",
      "description": "Record last update timestamp"
    }
  },
  "required": ["name"]
}