WorkOS · Schema

UpdateJwtTemplateDto

AuthenticationIdentity ProviderSSOSAMLOIDCSCIMDirectory SyncAuthorizationFGAAudit LogsMFAB2B SaaSAgentsMCP

Properties

Name Type Description
content string The JWT template content as a Liquid template string.
View JSON Schema on GitHub

JSON Schema

workos-updatejwttemplatedto-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateJwtTemplateDto",
  "title": "UpdateJwtTemplateDto",
  "type": "object",
  "properties": {
    "content": {
      "type": "string",
      "description": "The JWT template content as a Liquid template string.",
      "example": "{\"urn:myapp:full_name\": \"{{user.first_name}} {{user.last_name}}\", \"urn:myapp:email\": \"{{user.email}}\"}"
    }
  },
  "required": [
    "content"
  ]
}