ARGUS Enterprise · Schema
ValuationInput
ValuationInput schema from ARGUS Enterprise API
Altus GroupAsset ManagementCash Flow ModelingCommercial Real EstatePortfolio ManagementValuation
Properties
| Name | Type | Description |
|---|---|---|
| valuationDate | string | |
| methodology | string | |
| marketValue | number | |
| capRate | number | |
| discountRate | number | |
| terminalCapRate | number | |
| analysisStartDate | string | |
| analysisEndDate | string | |
| netOperatingIncome | number | |
| currency | string | |
| notes | 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-valuation-input-schema.json",
"title": "ValuationInput",
"description": "ValuationInput schema from ARGUS Enterprise API",
"type": "object",
"properties": {
"valuationDate": {
"type": "string",
"format": "date"
},
"methodology": {
"type": "string",
"enum": [
"DCF",
"DirectCapitalization",
"ComparableSales"
]
},
"marketValue": {
"type": "number",
"format": "double"
},
"capRate": {
"type": "number",
"format": "double"
},
"discountRate": {
"type": "number",
"format": "double"
},
"terminalCapRate": {
"type": "number",
"format": "double"
},
"analysisStartDate": {
"type": "string",
"format": "date"
},
"analysisEndDate": {
"type": "string",
"format": "date"
},
"netOperatingIncome": {
"type": "number",
"format": "double"
},
"currency": {
"type": "string",
"default": "USD"
},
"notes": {
"type": "string"
}
},
"required": [
"valuationDate",
"methodology"
]
}