ARGUS Enterprise · JSON Structure

Argus Enterprise Subscription Structure

Subscription schema from ARGUS Enterprise API

Type: object Properties: 9
Altus GroupAsset ManagementCash Flow ModelingCommercial Real EstatePortfolio ManagementValuation

Subscription is a JSON Structure definition published by ARGUS Enterprise, describing 9 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id url eventTypes status secret description retryPolicy createdAt updatedAt

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-subscription-structure.json",
  "name": "Subscription",
  "description": "Subscription schema from ARGUS Enterprise API",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "description": "Unique subscription identifier"
    },
    "url": {
      "type": "uri",
      "description": "HTTPS endpoint URL for webhook delivery"
    },
    "eventTypes": {
      "type": "array",
      "items": {
        "type": "string",
        "enum": [
          "property.created",
          "property.updated",
          "property.deleted",
          "valuation.created",
          "valuation.updated",
          "lease.created",
          "lease.updated",
          "lease.expired",
          "portfolio.created",
          "portfolio.updated",
          "portfolio.deleted",
          "report.completed",
          "report.failed",
          "cashflow.updated",
          "tenant.created",
          "tenant.updated"
        ]
      },
      "description": "Event types this subscription receives"
    },
    "status": {
      "type": "string",
      "enum": [
        "Active",
        "Paused",
        "Disabled"
      ],
      "description": "Current subscription status"
    },
    "secret": {
      "type": "string",
      "description": "Shared secret for HMAC-SHA256 signature verification of webhook payloads (only returned on creation)"
    },
    "description": {
      "type": "string",
      "description": "Human-readable description of the subscription"
    },
    "retryPolicy": {
      "$ref": "#/components/schemas/RetryPolicy"
    },
    "createdAt": {
      "type": "datetime"
    },
    "updatedAt": {
      "type": "datetime"
    }
  }
}