{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/MonitoringMessageList", "title": "MonitoringMessageList", "type": "object", "properties": { "messages": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "integer" }, "timestamp": { "type": "string", "format": "date-time" }, "process": { "type": "string" }, "severity": { "type": "string" }, "message": { "type": "string" } } }, "example": [] } } }