{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/argus-enterprise/refs/heads/main/json-structure/argus-enterprise-report-request-structure.json", "name": "ReportRequest", "description": "ReportRequest schema from ARGUS Enterprise API", "type": "object", "properties": { "reportType": { "type": "string", "enum": [ "PropertySummary", "PortfolioSummary", "CashFlowAnalysis", "ValuationSummary", "LeaseExpiry", "TenantRoll", "CapitalExpenditure" ] }, "name": { "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": "date" }, "endDate": { "type": "date" }, "outputFormat": { "type": "string", "enum": [ "PDF", "Excel", "CSV" ], "default": "PDF" } }, "required": [ "reportType" ] }