ARGUS Enterprise · Schema

DeliveryAttempt

DeliveryAttempt schema from ARGUS Enterprise API

Altus GroupAsset ManagementCash Flow ModelingCommercial Real EstatePortfolio ManagementValuation

Properties

Name Type Description
attemptNumber integer Sequential attempt number
timestamp string When the delivery was attempted
responseCode integer HTTP response status code from the endpoint
responseTime integer Response time in milliseconds
success boolean Whether the delivery was successful
errorMessage string Error message if delivery failed
View JSON Schema on GitHub

JSON Schema

argus-enterprise-delivery-attempt-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-delivery-attempt-schema.json",
  "title": "DeliveryAttempt",
  "description": "DeliveryAttempt schema from ARGUS Enterprise API",
  "type": "object",
  "properties": {
    "attemptNumber": {
      "type": "integer",
      "description": "Sequential attempt number"
    },
    "timestamp": {
      "type": "string",
      "format": "date-time",
      "description": "When the delivery was attempted"
    },
    "responseCode": {
      "type": "integer",
      "description": "HTTP response status code from the endpoint"
    },
    "responseTime": {
      "type": "integer",
      "description": "Response time in milliseconds"
    },
    "success": {
      "type": "boolean",
      "description": "Whether the delivery was successful"
    },
    "errorMessage": {
      "type": "string",
      "description": "Error message if delivery failed"
    }
  }
}