ARGUS Enterprise · JSON Structure

Argus Enterprise Retry Policy Structure

RetryPolicy schema from ARGUS Enterprise API

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

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

Properties

maxRetries retryIntervalSeconds backoffMultiplier

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-retry-policy-structure.json",
  "name": "RetryPolicy",
  "description": "RetryPolicy schema from ARGUS Enterprise API",
  "type": "object",
  "properties": {
    "maxRetries": {
      "type": "int32",
      "minimum": 0,
      "maximum": 10,
      "default": 5,
      "description": "Maximum number of delivery retry attempts"
    },
    "retryIntervalSeconds": {
      "type": "int32",
      "minimum": 10,
      "maximum": 3600,
      "default": 60,
      "description": "Initial interval between retries in seconds"
    },
    "backoffMultiplier": {
      "type": "double",
      "minimum": 1.0,
      "maximum": 5.0,
      "default": 2.0,
      "description": "Exponential backoff multiplier"
    }
  }
}