{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/GetLogResponseContent", "title": "GetLogResponseContent", "type": "object", "additionalProperties": true, "properties": { "date": { "$ref": "#/components/schemas/LogDate" }, "type": { "type": "string", "description": "Type of event.", "default": "sapi" }, "description": { "type": [ "string", "null" ], "description": "Description of this event." }, "connection": { "type": "string", "description": "Name of the connection the event relates to." }, "connection_id": { "type": "string", "description": "ID of the connection the event relates to." }, "client_id": { "type": "string", "description": "ID of the client (application).", "default": "AaiyAPdpYdesoKnqjj8HJqRn4T5titww" }, "client_name": { "type": "string", "description": "Name of the client (application).", "default": "My application Name" }, "ip": { "type": "string", "description": "IP address of the log event source.", "default": "190.257.209.19" }, "hostname": { "type": "string", "description": "Hostname the event applies to.", "default": "190.257.209.19" }, "user_id": { "type": "string", "description": "ID of the user involved in the event.", "default": "auth0|56c75c4e42b6359e98374bc2" }, "user_name": { "type": "string", "description": "Name of the user involved in the event." }, "audience": { "type": "string", "description": "API audience the event applies to." }, "scope": { "type": "string", "description": "Scope permissions applied to the event.", "default": "" }, "strategy": { "type": "string", "description": "Name of the strategy involved in the event." }, "strategy_type": { "type": "string", "description": "Type of strategy involved in the event." }, "log_id": { "type": "string", "description": "Unique ID of the event." }, "isMobile": { "type": "boolean", "description": "Whether the client was a mobile device (true) or desktop/laptop/server (false)." }, "details": { "$ref": "#/components/schemas/LogDetails" }, "user_agent": { "type": "string", "description": "User agent string from the client device that caused the event." }, "security_context": { "$ref": "#/components/schemas/LogSecurityContext" }, "location_info": { "$ref": "#/components/schemas/LogLocationInfo" } } }