WorkOS · Schema

AuditLogSchemaActorDto

AuthenticationIdentity ProviderSSOSAMLOIDCSCIMDirectory SyncAuthorizationFGAAudit LogsMFAB2B SaaSAgentsMCP

Properties

Name Type Description
metadata object JSON schema for actor metadata.
View JSON Schema on GitHub

JSON Schema

workos-auditlogschemaactordto-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AuditLogSchemaActorDto",
  "title": "AuditLogSchemaActorDto",
  "type": "object",
  "properties": {
    "metadata": {
      "type": "object",
      "description": "JSON schema for actor metadata.",
      "example": {
        "type": "object",
        "properties": {
          "role": {
            "type": "string"
          }
        }
      }
    }
  },
  "required": [
    "metadata"
  ]
}