WorkOS · Schema

AuditLogEventContextDto

AuthenticationIdentity ProviderSSOSAMLOIDCSCIMDirectory SyncAuthorizationFGAAudit LogsMFAB2B SaaSAgentsMCP

Properties

Name Type Description
location string IP Address or some other geolocation identifier.
user_agent string User agent string.
View JSON Schema on GitHub

JSON Schema

workos-auditlogeventcontextdto-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AuditLogEventContextDto",
  "title": "AuditLogEventContextDto",
  "type": "object",
  "properties": {
    "location": {
      "type": "string",
      "description": "IP Address or some other geolocation identifier.",
      "example": "123.123.123.123"
    },
    "user_agent": {
      "type": "string",
      "description": "User agent string.",
      "example": "Chrome/104.0.0.0"
    }
  },
  "required": [
    "location"
  ]
}