| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) AdCampaign | AdCampaign | ReelModule | |
| (2) AdPlacement | AdPlacement | StoryModule | |
| (3) ArchiveItem | ArchiveItem | StoryModule | |
| (4) Comment | Comment | StoryModule | |
| (5) CommentLike | CommentLike | UserAccountModule | |
| (6) DirectMessage | DirectMessage | DirectThreadModule | |
| (7) Notification | Notification | ReelModule | |
| (8) Post | Post | UserAccountModule | |
| (9) Reel | Reel | ReelModule | |
| (10) Report | Report | StoryModule | |
| (11) Story | Story | StoryModule | |
| (12) StoryMedia | StoryMedia | StoryModule | |
| (13) StoryView | StoryView | FeatureFlagModule | |
| (14) UserAccount | UserAccount | UserAccountModule |
| AdPlacement | StoryModule |
| Property | Type | Entity | Reference | Module |
| (1) AdCampaign | LONG | AdPlacement | AdCampaign | ReelModule |
| (2) Clicks | LONG | AdPlacement | ||
| (3) CreatedAt | DATE | AdPlacement | ||
| (4) Impressions | LONG | AdPlacement | ||
| (5) PlacementType | STRING | AdPlacement | ||
| (6) Post | LONG | AdPlacement | Post | UserAccountModule |
| (7) Reel | LONG | AdPlacement | Reel | ReelModule |
| (8) Story | LONG | AdPlacement | Story | StoryModule |
Example:
final AdPlacement adplacement = (AdPlacement) invokeModule(STORY_MODULE + "/adplacement/" + id, AdPlacement.class);| ArchiveItem | StoryModule |
| Property | Type | Entity | Reference | Module |
| (1) ArchivedAt | DATE | ArchiveItem | ||
| (2) ItemType | STRING | ArchiveItem | ||
| (3) Post | LONG | ArchiveItem | Post | UserAccountModule |
| (4) Reel | LONG | ArchiveItem | Reel | ReelModule |
| (5) Story | LONG | ArchiveItem | Story | StoryModule |
| (6) UserAccount | LONG | ArchiveItem | UserAccount | UserAccountModule |
Example:
final ArchiveItem archiveitem = (ArchiveItem) invokeModule(STORY_MODULE + "/archiveitem/" + id, ArchiveItem.class);| Comment | StoryModule |
| Property | Type | Entity | Reference | Module |
| (1) CreatedAt | DATE | Comment | ||
| (2) IsDeleted | BOOL | Comment | ||
| (3) IsPinned | BOOL | Comment | ||
| (4) ParentComment | LONG | Comment | ||
| (5) Post | LONG | Comment | Post | UserAccountModule |
| (6) Text | STRING | Comment | ||
| (7) UpdatedAt | DATE | Comment | ||
| (8) UserAccount | LONG | Comment | UserAccount | UserAccountModule |
Example:
final Comment comment = (Comment) invokeModule(STORY_MODULE + "/comment/" + id, Comment.class);| Report | StoryModule |
| Property | Type | Entity | Reference | Module |
| (1) Comment | LONG | Report | Comment | StoryModule |
| (2) CreatedAt | DATE | Report | ||
| (3) Details | STRING | Report | ||
| (4) Post | LONG | Report | Post | UserAccountModule |
| (5) Reason | STRING | Report | ||
| (6) Reel | LONG | Report | Reel | ReelModule |
| (7) ReportedUser | LONG | Report | UserAccount | UserAccountModule |
| (8) Reporter | LONG | Report | UserAccount | UserAccountModule |
| (9) Status | STRING | Report | ||
| (10) Story | LONG | Report | Story | StoryModule |
| (11) UpdatedAt | DATE | Report |
Example:
final Report report = (Report) invokeModule(STORY_MODULE + "/report/" + id, Report.class);| Story | StoryModule |
| Property | Type | Entity | Reference | Module |
| (1) Caption | STRING | Story | ||
| (2) CreatedAt | DATE | Story | ||
| (3) ExpiresAt | DATE | Story | ||
| (4) HighlightTitle | STRING | Story | ||
| (5) IsCloseFriendsOnly | BOOL | Story | ||
| (6) IsHighlight | BOOL | Story | ||
| (7) UserAccount | LONG | Story | UserAccount | UserAccountModule |
Example:
final Story story = (Story) invokeModule(STORY_MODULE + "/story/" + id, Story.class);| StoryMedia | StoryModule |
| Property | Type | Entity | Reference | Module |
| (1) CreatedAt | DATE | StoryMedia | ||
| (2) DurationSeconds | LONG | StoryMedia | ||
| (3) FilterName | STRING | StoryMedia | ||
| (4) MediaOrder | LONG | StoryMedia | ||
| (5) MediaType | STRING | StoryMedia | ||
| (6) Story | LONG | StoryMedia | Story | StoryModule |
| (7) ThumbnailUrl | STRING | StoryMedia | ||
| (8) Url | STRING | StoryMedia |
Example:
final StoryMedia storymedia = (StoryMedia) invokeModule(STORY_MODULE + "/storymedia/" + id, StoryMedia.class);| Contact | Donate | Imprint |