{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/TestHogResponse", "title": "TestHogResponse", "type": "object", "properties": { "results": { "type": "array", "items": { "$ref": "#/components/schemas/TestHogResultItem" } }, "message": { "type": "string", "description": "Optional message, e.g. when no recent events were found." } }, "required": [ "results" ] }