ARGUS Enterprise · Schema

TenantInput

TenantInput schema from ARGUS Enterprise API

Altus GroupAsset ManagementCash Flow ModelingCommercial Real EstatePortfolio-ManagementValuation

Properties

Name Type Description
name string
industry string
creditRating string
contactName string
contactEmail string
contactPhone string
address object
View JSON Schema on GitHub

JSON Schema

argus-enterprise-tenant-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-tenant-input-schema.json",
  "title": "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"
  ]
}