Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.omni.co/llms.txt

Use this file to discover all available pages before exploring further.

Syntax

<dimension_name>:
  label: <display_label>

Properties

dimension_name
object
The name of the dimension. Dimension names must:
  • Be unique within the view
  • Start with a letter
  • Contain only alphanumeric characters and underscores

Examples

Custom label
full_user_name:
  label: Full Name
Calculated field with label
full_name:
  sql: CONCAT(INITCAP(${users.first_name}), ' ', INITCAP(${users.last_name}))
  label: Full Name