ARGUS Enterprise · JSON Structure

Argus Enterprise Property Input Structure

PropertyInput schema from ARGUS Enterprise API

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

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

Properties

name propertyType status address grossArea netLeasableArea yearBuilt numberOfUnits purchasePrice purchaseDate portfolioId

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-property-input-structure.json",
  "name": "PropertyInput",
  "description": "PropertyInput schema from ARGUS Enterprise API",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Property name"
    },
    "propertyType": {
      "type": "string",
      "enum": [
        "Office",
        "Retail",
        "Industrial",
        "Multifamily",
        "Mixed-Use",
        "Hotel",
        "Land",
        "Other"
      ]
    },
    "status": {
      "type": "string",
      "enum": [
        "Active",
        "Pending",
        "Archived"
      ],
      "default": "Active"
    },
    "address": {
      "$ref": "#/components/schemas/Address"
    },
    "grossArea": {
      "type": "double"
    },
    "netLeasableArea": {
      "type": "double"
    },
    "yearBuilt": {
      "type": "int32"
    },
    "numberOfUnits": {
      "type": "int32"
    },
    "purchasePrice": {
      "type": "double"
    },
    "purchaseDate": {
      "type": "date"
    },
    "portfolioId": {
      "type": "string",
      "format": "uuid"
    }
  },
  "required": [
    "name",
    "propertyType",
    "address"
  ]
}