Add event table request
The configuration of a new event table.
Name of the event table in the data warehouse.
eventsSchema of the event table in the data warehouse.
publicName of the column holding the event timestamp.
event_timeName of the column holding the user identifier.
user_idOptional name of the column holding the event name. Leave unset for single-event tables (the whole table represents one event).
event_nameOptional name of the date partition column used to prune scanned partitions.
dateOptional list of column names to ignore during indexing.
["internal_debug_column"]foreign_keys object
Optional mapping of entity name to the foreign-key column that references it. The
entity must already exist in the project. The user entity is configured via
user_id_field and does not need to be repeated here.
Whether indexing is disabled for the event table. Defaults to false.
falseOptional prefix prepended to event display names from this table.
web_{
"table_name": "events",
"table_schema": "public",
"event_time_field": "event_time",
"user_id_field": "user_id",
"event_name_field": "event_name",
"date_partition_field": "date",
"ignored_fields": [
"internal_debug_column"
],
"foreign_keys": {
"group": "group_id"
},
"disabled": false,
"display_name_prefix": "web_"
}