| Services | Contact | Donate | About | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) Category | Category | CategoryModule | YouTubeCom |
| (2) Channel | Channel | ChannelModule | YouTubeCom |
| (3) Notification | Notification | CategoryModule | YouTubeCom |
| (4) Playlist | Playlist | CategoryModule | YouTubeCom |
| (5) PlaylistVideo | PlaylistVideo | CategoryModule | YouTubeCom |
| (6) User | User | UserModule | YouTubeCom |
| (7) Video | Video | VideoModule | YouTubeCom |
| Category | CategoryModule | YouTubeCom |
| Property | Type | Entity | Reference | Module |
| (1) Description | STRING | Category | ||
| (2) IsActive | BOOL | Category | ||
| (3) Name | STRING | Category |
Example:
final Category category = (Category) invokeModule(CATEGORY_MODULE + "/category/" + id, Category.class);| Notification | CategoryModule | YouTubeCom |
| Property | Type | Entity | Reference | Module |
| (1) CreatedAt | DATE | Notification | ||
| (2) IsRead | BOOL | Notification | ||
| (3) PayloadJson | STRING | Notification | ||
| (4) Type | STRING | Notification | ||
| (5) User | LONG | Notification | User | UserModule |
Example:
final Notification notification = (Notification) invokeModule(CATEGORY_MODULE + "/notification/" + id, Notification.class);| Playlist | CategoryModule | YouTubeCom |
| Property | Type | Entity | Reference | Module |
| (1) Channel | LONG | Playlist | Channel | ChannelModule |
| (2) CreatedAt | DATE | Playlist | ||
| (3) Description | STRING | Playlist | ||
| (4) IsSystemGenerated | BOOL | Playlist | ||
| (5) PrivacyStatus | STRING | Playlist | ||
| (6) Title | STRING | Playlist | ||
| (7) UpdatedAt | DATE | Playlist |
Example:
final Playlist playlist = (Playlist) invokeModule(CATEGORY_MODULE + "/playlist/" + id, Playlist.class);| PlaylistVideo | CategoryModule | YouTubeCom |
| Property | Type | Entity | Reference | Module |
| (1) AddedAt | DATE | PlaylistVideo | ||
| (2) AddedByUser | LONG | PlaylistVideo | User | UserModule |
| (3) Playlist | LONG | PlaylistVideo | Playlist | CategoryModule |
| (4) Position | LONG | PlaylistVideo | ||
| (5) Video | LONG | PlaylistVideo | Video | VideoModule |
Example:
final PlaylistVideo playlistvideo = (PlaylistVideo) invokeModule(CATEGORY_MODULE + "/playlistvideo/" + id, PlaylistVideo.class);| Services | Contact | Donate | About | Imprint |