{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/singleNetworkTestResult", "title": "singleNetworkTestResult", "type": "object", "properties": { "timestamp": { "type": "string", "format": "date-time", "example": "2024-01-15T10:15:30Z", "description": "Timestamp when the test was triggered" }, "type": { "type": "string", "example": "HTTPConnectivityTest", "description": "Type of network test." }, "results": { "type": "array", "items": { "$ref": "#/components/schemas/serviceTestResults" }, "description": "List of service test results." } } }