ARGUS Enterprise · JSON Structure

Argus Enterprise Tenant Input Structure

TenantInput schema from ARGUS Enterprise API

Type: object Properties: 7 Required: 1
Altus GroupAsset ManagementCash Flow ModelingCommercial Real EstatePortfolio ManagementValuation

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

Properties

name industry creditRating contactName contactEmail contactPhone address

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-tenant-input-structure.json",
  "name": "TenantInput",
  "description": "TenantInput schema from ARGUS Enterprise API",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "industry": {
      "type": "string"
    },
    "creditRating": {
      "type": "string"
    },
    "contactName": {
      "type": "string"
    },
    "contactEmail": {
      "type": "string",
      "format": "email"
    },
    "contactPhone": {
      "type": "string"
    },
    "address": {
      "$ref": "#/components/schemas/Address"
    }
  },
  "required": [
    "name"
  ]
}