| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) Channel | Channel | ChannelModule | YouTubeCom |
| (2) DailyVideoMetric | DailyVideoMetric | PlaylistModule | YouTubeCom |
| (3) Playlist | Playlist | PlaylistModule | YouTubeCom |
| (4) PlaylistVideo | PlaylistVideo | PlaylistModule | YouTubeCom |
| (5) User | User | UserModule | YouTubeCom |
| (6) UserProfile | UserProfile | PlaylistModule | YouTubeCom |
| (7) Video | Video | VideoModule | YouTubeCom |
| DailyVideoMetric | PlaylistModule | YouTubeCom |
| Property | Type | Entity | Reference | Module |
| (1) CommentCount | LONG | DailyVideoMetric | ||
| (2) Date | DATE | DailyVideoMetric | ||
| (3) DislikeCount | LONG | DailyVideoMetric | ||
| (4) LikeCount | LONG | DailyVideoMetric | ||
| (5) RevenueMicros | LONG | DailyVideoMetric | ||
| (6) ShareCount | LONG | DailyVideoMetric | ||
| (7) UniqueViewerCountApprox | LONG | DailyVideoMetric | ||
| (8) Video | LONG | DailyVideoMetric | Video | VideoModule |
| (9) ViewCount | LONG | DailyVideoMetric | ||
| (10) WatchTimeSeconds | LONG | DailyVideoMetric |
Example:
final DailyVideoMetric dailyvideometric = (DailyVideoMetric) invokeModule(PLAYLIST_MODULE + "/dailyvideometric/" + id, DailyVideoMetric.class);| Playlist | PlaylistModule | 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(PLAYLIST_MODULE + "/playlist/" + id, Playlist.class);| PlaylistVideo | PlaylistModule | YouTubeCom |
| Property | Type | Entity | Reference | Module |
| (1) AddedAt | DATE | PlaylistVideo | ||
| (2) AddedByUser | LONG | PlaylistVideo | User | UserModule |
| (3) Playlist | LONG | PlaylistVideo | Playlist | PlaylistModule |
| (4) Position | LONG | PlaylistVideo | ||
| (5) Video | LONG | PlaylistVideo | Video | VideoModule |
Example:
final PlaylistVideo playlistvideo = (PlaylistVideo) invokeModule(PLAYLIST_MODULE + "/playlistvideo/" + id, PlaylistVideo.class);| UserProfile | PlaylistModule | YouTubeCom |
| Property | Type | Entity | Reference | Module |
| (1) AdditionalSettingsJson | STRING | UserProfile | ||
| (2) BannerImageUrl | STRING | UserProfile | ||
| (3) Bio | STRING | UserProfile | ||
| (4) Birthdate | DATE | UserProfile | ||
| (5) CreatedAt | DATE | UserProfile | ||
| (6) Gender | STRING | UserProfile | ||
| (7) LinksJson | STRING | UserProfile | ||
| (8) UpdatedAt | DATE | UserProfile | ||
| (9) User | LONG | UserProfile | User | UserModule |
Example:
final UserProfile userprofile = (UserProfile) invokeModule(PLAYLIST_MODULE + "/userprofile/" + id, UserProfile.class);| Contact | Donate | Imprint |