SD_IDENTITY
Your Identity Model is the foundation of your Simon instance. You may have one live identity model and one draft identity model at a time, but you will be able to see historical versions both in the Simon platform and in your Snowflake under the SD_IDENTITY schema.
For each draft identity model, we create one view: SD_IDENTITY_MODEL_<DRAFT_ID>_<DRAFT_NAME>
For each promoted identity model, we create one view: SD_IDENTITY_MODEL_<MODEL_ID>_<MODEL_VERSION>_<MODEL_NAME>
Some things to keep in mind:
- The version that’s live in your account will be named
default
.- If the name of your identity table exceeds 255 characters, it will be truncated.
In order to add SIMON_ID
to each of your contacts, we create a view on top of your live identity model called CONTACT_TABLE_IDENTIFIED
. This view is what is connected to the Simon platform in the Schema Builder.
SD_IDENTITY_NATIVE_KEYS_VIEW
is the object representation of your live identity model, which is used to power your flows.
Updated 8 days ago