Palo Alto Networks · JSON Structure

Autonomous Dem Api Test Result Structure

TestResult schema from Palo Alto Networks Autonomous DEM API

Type: object Properties: 11
Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR

TestResult is a JSON Structure definition published by Palo Alto Networks, describing 11 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

timestamp test_id agent_id user_id status latency_ms dns_time_ms tcp_connect_ms ttfb_ms http_status_code error_message

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/palo-alto-networks/refs/heads/main/json-structure/autonomous-dem-api-test-result-structure.json",
  "name": "TestResult",
  "description": "TestResult schema from Palo Alto Networks Autonomous DEM API",
  "type": "object",
  "properties": {
    "timestamp": {
      "type": "datetime",
      "description": "Timestamp of the test execution."
    },
    "test_id": {
      "type": "string",
      "description": "Synthetic test identifier."
    },
    "agent_id": {
      "type": "string",
      "description": "Agent that ran the test."
    },
    "user_id": {
      "type": "string",
      "description": "User associated with the agent."
    },
    "status": {
      "type": "string",
      "description": "Test execution result status.",
      "enum": [
        "success",
        "failure",
        "timeout"
      ]
    },
    "latency_ms": {
      "type": "double",
      "description": "Total response latency in milliseconds."
    },
    "dns_time_ms": {
      "type": "double",
      "description": "DNS resolution time in milliseconds."
    },
    "tcp_connect_ms": {
      "type": "double",
      "description": "TCP connection establishment time in milliseconds."
    },
    "ttfb_ms": {
      "type": "double",
      "description": "Time to first byte for HTTP tests in milliseconds."
    },
    "http_status_code": {
      "type": "int32",
      "description": "HTTP response status code for HTTP type tests."
    },
    "error_message": {
      "type": "string",
      "description": "Error message if the test failed."
    }
  }
}