{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PluginLogEntry", "title": "PluginLogEntry", "type": "object", "properties": { "id": { "type": "string", "format": "uuid" }, "team_id": { "type": "integer" }, "plugin_id": { "type": "integer" }, "plugin_config_id": { "type": "integer" }, "timestamp": { "type": "string", "format": "date-time" }, "source": { "$ref": "#/components/schemas/PluginLogEntrySourceEnum" }, "type": { "$ref": "#/components/schemas/PluginLogEntryTypeEnum" }, "message": { "type": "string" }, "instance_id": { "type": "string", "format": "uuid" } }, "required": [ "id", "instance_id", "message", "plugin_config_id", "plugin_id", "source", "team_id", "timestamp", "type" ] }