{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SessionDeviceMetadata", "title": "SessionDeviceMetadata", "type": "object", "description": "Metadata related to the device used in the session", "additionalProperties": true, "properties": { "initial_user_agent": { "type": "string", "description": "First user agent of the device from which this user logged in" }, "initial_ip": { "$ref": "#/components/schemas/SessionIp" }, "initial_asn": { "type": "string", "description": "First autonomous system number associated with this session" }, "last_user_agent": { "type": "string", "description": "Last user agent of the device from which this user logged in" }, "last_ip": { "$ref": "#/components/schemas/SessionIp" }, "last_asn": { "type": "string", "description": "Last autonomous system number from which this user logged in" } } }