- Class represents your schema and contains field names and types.
- Record represents data you put into your schema.
_id, user_id, parent_id, created_at, and updated_at.
Allowed data types: Integer (or Array of Integer); String (or Array of String); Float (or Array of Float); Boolean (or Array of Boolean); Location (Array of [<longitude>, <latitude>]); File; Date.
For example, you want to store a simple calendar that stores the event title and event date. In this case, you can create a Calendar class with following fields: event_title and event_date.
Calendar records will have the following structure:
Calendar data will look like: