| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) AudienceMetric | AudienceMetric | ChannelModule | YouTubeCom |
| (2) Channel | Channel | ChannelModule | YouTubeCom |
| (3) ChannelMember | ChannelMember | UserModule | YouTubeCom |
| (4) ChannelSetting | ChannelSetting | ChannelModule | YouTubeCom |
| (5) LiveStream | LiveStream | LiveStreamModule | YouTubeCom |
| (6) Playlist | Playlist | PlaylistModule | YouTubeCom |
| (7) Subscription | Subscription | ChannelModule | YouTubeCom |
| (8) User | User | UserModule | YouTubeCom |
| (9) UserFeedItem | UserFeedItem | ChannelModule | YouTubeCom |
| (10) Video | Video | VideoModule | YouTubeCom |
| AudienceMetric | ChannelModule | YouTubeCom |
| Property | Type | Entity | Reference | Module |
| (1) AgeGroup | STRING | AudienceMetric | ||
| (2) Channel | LONG | AudienceMetric | Channel | ChannelModule |
| (3) Country | STRING | AudienceMetric | ||
| (4) Date | DATE | AudienceMetric | ||
| (5) Gender | STRING | AudienceMetric | ||
| (6) ViewerCount | LONG | AudienceMetric | ||
| (7) WatchTimeSeconds | LONG | AudienceMetric |
Example:
final AudienceMetric audiencemetric = (AudienceMetric) invokeModule(CHANNEL_MODULE + "/audiencemetric/" + id, AudienceMetric.class);| Channel | ChannelModule | YouTubeCom |
| Property | Type | Entity | Reference | Module |
| (1) AvatarUrl | STRING | Channel | ||
| (2) BannerImageUrl | STRING | Channel | ||
| (3) Country | STRING | Channel | ||
| (4) CreatedAt | DATE | Channel | ||
| (5) CustomUrl | STRING | Channel | ||
| (6) Description | STRING | Channel | ||
| (7) Handle | STRING | Channel | ||
| (8) IsVerified | BOOL | Channel | ||
| (9) Language | STRING | Channel | ||
| (10) Name | STRING | Channel | ||
| (11) OwnerUser | LONG | Channel | User | UserModule |
| (12) Status | STRING | Channel | ||
| (13) UpdatedAt | DATE | Channel |
Example:
final Channel channel = (Channel) invokeModule(CHANNEL_MODULE + "/channel/" + id, Channel.class);| ChannelSetting | ChannelModule | YouTubeCom |
| Property | Type | Entity | Reference | Module |
| (1) Channel | LONG | ChannelSetting | Channel | ChannelModule |
| (2) CreatedAt | DATE | ChannelSetting | ||
| (3) SettingKey | STRING | ChannelSetting | ||
| (4) SettingValue | STRING | ChannelSetting | ||
| (5) UpdatedAt | DATE | ChannelSetting |
Example:
final ChannelSetting channelsetting = (ChannelSetting) invokeModule(CHANNEL_MODULE + "/channelsetting/" + id, ChannelSetting.class);| Subscription | ChannelModule | YouTubeCom |
| Property | Type | Entity | Reference | Module |
| (1) Channel | LONG | Subscription | Channel | ChannelModule |
| (2) CreatedAt | DATE | Subscription | ||
| (3) IsActive | BOOL | Subscription | ||
| (4) NotificationsLevel | STRING | Subscription | ||
| (5) SubscriberUser | LONG | Subscription | User | UserModule |
Example:
final Subscription subscription = (Subscription) invokeModule(CHANNEL_MODULE + "/subscription/" + id, Subscription.class);| UserFeedItem | ChannelModule | YouTubeCom |
| Property | Type | Entity | Reference | Module |
| (1) Channel | LONG | UserFeedItem | Channel | ChannelModule |
| (2) ClickedAt | DATE | UserFeedItem | ||
| (3) ItemType | STRING | UserFeedItem | ||
| (4) RankScore | DOUBLE | UserFeedItem | ||
| (5) ShownAt | DATE | UserFeedItem | ||
| (6) User | LONG | UserFeedItem | User | UserModule |
| (7) Video | LONG | UserFeedItem | Video | VideoModule |
Example:
final UserFeedItem userfeeditem = (UserFeedItem) invokeModule(CHANNEL_MODULE + "/userfeeditem/" + id, UserFeedItem.class);| Contact | Donate | Imprint |