Auth0 · Schema

GetSessionResponseContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
id string The ID of the session
user_id string ID of the user which can be used when interacting with other APIs.
created_at object
updated_at object
authenticated_at object
idle_expires_at object
expires_at object
last_interacted_at object
device object
clients array List of client details for the session
authentication object
cookie object
session_metadata object
View JSON Schema on GitHub

JSON Schema

auth0-getsessionresponsecontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GetSessionResponseContent",
  "title": "GetSessionResponseContent",
  "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"
    }
  }
}