ARGUS Enterprise · Schema
ReportRequest
ReportRequest schema from ARGUS Enterprise API
Altus GroupAsset ManagementCash Flow ModelingCommercial Real EstatePortfolio ManagementValuation
Properties
| Name | Type | Description |
|---|---|---|
| reportType | string | |
| title | string | |
| propertyIds | array | Properties to include in the report |
| portfolioIds | array | Portfolios to include in the report |
| startDate | string | |
| endDate | string | |
| outputFormat | 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-report-request-schema.json",
"title": "ReportRequest",
"description": "ReportRequest schema from ARGUS Enterprise API",
"type": "object",
"properties": {
"reportType": {
"type": "string",
"enum": [
"PropertySummary",
"PortfolioSummary",
"CashFlowAnalysis",
"ValuationSummary",
"LeaseExpiry",
"TenantRoll",
"CapitalExpenditure"
]
},
"title": {
"type": "string"
},
"propertyIds": {
"type": "array",
"items": {
"type": "string",
"format": "uuid"
},
"description": "Properties to include in the report"
},
"portfolioIds": {
"type": "array",
"items": {
"type": "string",
"format": "uuid"
},
"description": "Portfolios to include in the report"
},
"startDate": {
"type": "string",
"format": "date"
},
"endDate": {
"type": "string",
"format": "date"
},
"outputFormat": {
"type": "string",
"enum": [
"PDF",
"Excel",
"CSV"
],
"default": "PDF"
}
},
"required": [
"reportType"
]
}