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",
"public_read": false,
"alias": "object_alias",
"fields": [],
"relations": []
}
property | description |
---|---|
name | plural name for the object |
display_name | user-friendly name shows within ODP |
public_read | optional property for enabling access with the API public key. The default value is false. |
alias | singular name for the object |
fields | collection of Field objects constituting the Object |
relations | collection of Relation objects |