Object schema
All data in Optimizely Data Platform (ODP) is stored in collections calledobjects (what many think of as a database table).
Objects are composed offields. Fields link objects together usingrelations.
Objects definition
{ "name": "object_name", "display_name": "Display Name", "public_read": false, "alias": "object_alias", "fields": [], "relations": []}| Property | Description |
|---|---|
| name | Plural name for the object. |
| display_name | User-friendly name that displays in ODP. |
| public_read | (Optional) Enable access with the API public key. The default value isfalse. |
| alias | Singular name for the object. |
| fields | Collection ofField objects constituting theObject. |
| relations | Collection ofRelation objects. |