{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AuditEvent", "title": "AuditEvent", "type": "object", "properties": { "eventId": { "type": "integer" }, "userName": { "type": "string" }, "taskName": { "type": "string" }, "state": { "type": "string" }, "timestamp": { "type": "string", "format": "date-time" }, "details": { "type": "string" } } }