{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/LogEvent", "title": "LogEvent", "type": "object", "properties": { "actor": { "$ref": "#/components/schemas/LogActor" }, "authenticationContext": { "$ref": "#/components/schemas/LogAuthenticationContext" }, "client": { "$ref": "#/components/schemas/LogClient" }, "debugContext": { "$ref": "#/components/schemas/LogDebugContext" }, "displayMessage": { "type": "string", "readOnly": true }, "eventType": { "type": "string", "readOnly": true }, "legacyEventType": { "type": "string", "readOnly": true }, "outcome": { "$ref": "#/components/schemas/LogOutcome" }, "published": { "type": "string", "format": "date-time", "readOnly": true }, "request": { "$ref": "#/components/schemas/LogRequest" }, "securityContext": { "$ref": "#/components/schemas/LogSecurityContext" }, "severity": { "$ref": "#/components/schemas/LogSeverity" }, "target": { "type": "array", "readOnly": true, "items": { "$ref": "#/components/schemas/LogTarget" } }, "transaction": { "$ref": "#/components/schemas/LogTransaction" }, "uuid": { "type": "string", "readOnly": true }, "version": { "type": "string", "readOnly": true } }, "x-okta-tags": [ "Log" ] }