Auth0 · Schema

SessionDeviceMetadata

Metadata related to the device used in the session

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
initial_user_agent string First user agent of the device from which this user logged in
initial_ip object
initial_asn string First autonomous system number associated with this session
last_user_agent string Last user agent of the device from which this user logged in
last_ip object
last_asn string Last autonomous system number from which this user logged in
View JSON Schema on GitHub

JSON Schema

auth0-sessiondevicemetadata-schema.json Raw ↑
{
  "$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"
    }
  }
}