ARGUS Enterprise · JSON Structure

Argus Enterprise Valuation Input Structure

ValuationInput schema from ARGUS Enterprise API

Type: object Properties: 11 Required: 2
Altus GroupAsset ManagementCash Flow ModelingCommercial Real EstatePortfolio ManagementValuation

ValuationInput is a JSON Structure definition published by ARGUS Enterprise, describing 11 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

valuationDate methodology marketValue capRate discountRate terminalCapRate analysisStartDate analysisEndDate netOperatingIncome currency notes

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-valuation-input-structure.json",
  "name": "ValuationInput",
  "description": "ValuationInput schema from ARGUS Enterprise API",
  "type": "object",
  "properties": {
    "valuationDate": {
      "type": "date"
    },
    "methodology": {
      "type": "string",
      "enum": [
        "DCF",
        "DirectCapitalization",
        "ComparableSales"
      ]
    },
    "marketValue": {
      "type": "double"
    },
    "capRate": {
      "type": "double"
    },
    "discountRate": {
      "type": "double"
    },
    "terminalCapRate": {
      "type": "double"
    },
    "analysisStartDate": {
      "type": "date"
    },
    "analysisEndDate": {
      "type": "date"
    },
    "netOperatingIncome": {
      "type": "double"
    },
    "currency": {
      "type": "string",
      "default": "USD"
    },
    "notes": {
      "type": "string"
    }
  },
  "required": [
    "valuationDate",
    "methodology"
  ]
}