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