{ "$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." } } }