ARGUS Enterprise · Schema

TestResult

TestResult schema from ARGUS Enterprise API

Altus GroupAsset ManagementCash Flow ModelingCommercial Real EstatePortfolio ManagementValuation

Properties

Name Type Description
success boolean Whether the test event was delivered successfully
responseCode integer HTTP response code from the endpoint
responseTime integer Response time in milliseconds
errorMessage string Error details if the test failed
View JSON Schema on GitHub

JSON Schema

argus-enterprise-test-result-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-test-result-schema.json",
  "title": "TestResult",
  "description": "TestResult schema from ARGUS Enterprise API",
  "type": "object",
  "properties": {
    "success": {
      "type": "boolean",
      "description": "Whether the test event was delivered successfully"
    },
    "responseCode": {
      "type": "integer",
      "description": "HTTP response code from the endpoint"
    },
    "responseTime": {
      "type": "integer",
      "description": "Response time in milliseconds"
    },
    "errorMessage": {
      "type": "string",
      "description": "Error details if the test failed"
    }
  }
}