{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/BandwidthTest", "title": "BandwidthTest", "type": "object", "properties": { "type": { "type": "string", "example": "BandwidthTest", "description": "The type of test result." }, "results": { "type": "array", "items": { "anyOf": [ { "$ref": "#/components/schemas/ServiceTypeResult4" }, { "$ref": "#/components/schemas/ServiceTypeResult2" } ] }, "description": "Test Results from different services." } } }