All data in Optimizely Data Platform (ODP) is stored within collections called Objects (what many think of as a database table).
Objects are composed of Fields. Fields link objects together via Relations.
Objects
{
"name": "object_name",
"display_name": "Display Name",
"alias": "object_alias",
"fields": [],
"relations": []
}
property | description |
---|---|
name | plural name for the object |
display_name | user-friendly name shown within ODP |
alias | singular name for the object |
fields | collection of Field objects constituting the Object |
relations | collection of Relation objects |