ARGUS Enterprise · Schema

PortfolioInput

PortfolioInput schema from ARGUS Enterprise API

Altus GroupAsset ManagementCash Flow ModelingCommercial Real EstatePortfolio-ManagementValuation

Properties

Name Type Description
name string
description string
strategy string
currency string
View JSON Schema on GitHub

JSON Schema

argus-enterprise-portfolio-input-schema.json Raw ↑
{
  "$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-portfolio-input-schema.json",
  "title": "PortfolioInput",
  "description": "PortfolioInput schema from ARGUS Enterprise API",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "strategy": {
      "type": "string",
      "enum": [
        "Core",
        "CorePlus",
        "ValueAdd",
        "Opportunistic"
      ]
    },
    "currency": {
      "type": "string",
      "default": "USD"
    }
  },
  "required": [
    "name"
  ]
}