ARGUS Enterprise · JSON Structure

Argus Enterprise Event List Structure

EventList schema from ARGUS Enterprise API

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

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

Properties

data pagination

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-event-list-structure.json",
  "name": "EventList",
  "description": "EventList schema from ARGUS Enterprise API",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Event"
      }
    },
    "pagination": {
      "type": "object",
      "properties": {
        "page": {
          "type": "int32"
        },
        "pageSize": {
          "type": "int32"
        },
        "totalItems": {
          "type": "int32"
        },
        "totalPages": {
          "type": "int32"
        }
      }
    }
  }
}