{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UpdateSessionResponseContent", "title": "UpdateSessionResponseContent", "type": "object", "additionalProperties": true, "properties": { "id": { "type": "string", "description": "The ID of the session" }, "user_id": { "type": "string", "description": "ID of the user which can be used when interacting with other APIs." }, "created_at": { "$ref": "#/components/schemas/SessionDate" }, "updated_at": { "$ref": "#/components/schemas/SessionDate" }, "authenticated_at": { "$ref": "#/components/schemas/SessionDate" }, "idle_expires_at": { "$ref": "#/components/schemas/SessionDate" }, "expires_at": { "$ref": "#/components/schemas/SessionDate" }, "last_interacted_at": { "$ref": "#/components/schemas/SessionDate" }, "device": { "$ref": "#/components/schemas/SessionDeviceMetadata" }, "clients": { "type": "array", "description": "List of client details for the session", "items": { "$ref": "#/components/schemas/SessionClientMetadata" } }, "authentication": { "$ref": "#/components/schemas/SessionAuthenticationSignals" }, "cookie": { "$ref": "#/components/schemas/SessionCookieMetadata" }, "session_metadata": { "$ref": "#/components/schemas/SessionMetadata" } } }