{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/networkTestResults", "title": "networkTestResults", "type": "object", "properties": { "triggerType": { "type": "string", "example": "Periodic", "description": "Type of trigger for the test." }, "results": { "type": "array", "items": { "$ref": "#/components/schemas/singleNetworkTestResult" }, "description": "List of individual network test results." } } }