| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) Caption | Caption | CommentModule | YouTubeCom |
| (2) Comment | Comment | CommentModule | YouTubeCom |
| (3) CommentLike | CommentLike | CommentModule | YouTubeCom |
| (4) CommentReport | CommentReport | UserModule | YouTubeCom |
| (5) Thumbnail | Thumbnail | CommentModule | YouTubeCom |
| (6) User | User | UserModule | YouTubeCom |
| (7) Video | Video | VideoModule | YouTubeCom |
| Caption | CommentModule | YouTubeCom |
| Property | Type | Entity | Reference | Module |
| (1) CreatedAt | DATE | Caption | ||
| (2) Format | STRING | Caption | ||
| (3) IsAutoGenerated | BOOL | Caption | ||
| (4) Language | STRING | Caption | ||
| (5) Name | STRING | Caption | ||
| (6) StorageKey | STRING | Caption | ||
| (7) UpdatedAt | DATE | Caption | ||
| (8) Video | LONG | Caption | Video | VideoModule |
Example:
final Caption caption = (Caption) invokeModule(COMMENT_MODULE + "/caption/" + id, Caption.class);| Comment | CommentModule | YouTubeCom |
| Property | Type | Entity | Reference | Module |
| (1) CreatedAt | DATE | Comment | ||
| (2) IsEdited | BOOL | Comment | ||
| (3) IsPinned | BOOL | Comment | ||
| (4) LikeCountCached | LONG | Comment | ||
| (5) ParentComment | LONG | Comment | ||
| (6) Status | STRING | Comment | ||
| (7) Text | STRING | Comment | ||
| (8) UpdatedAt | DATE | Comment | ||
| (9) User | LONG | Comment | User | UserModule |
| (10) Video | LONG | Comment | Video | VideoModule |
Example:
final Comment comment = (Comment) invokeModule(COMMENT_MODULE + "/comment/" + id, Comment.class);| CommentLike | CommentModule | YouTubeCom |
| Property | Type | Entity | Reference | Module |
| (1) Comment | LONG | CommentLike | Comment | CommentModule |
| (2) CreatedAt | DATE | CommentLike | ||
| (3) Type | STRING | CommentLike | ||
| (4) User | LONG | CommentLike | User | UserModule |
Example:
final CommentLike commentlike = (CommentLike) invokeModule(COMMENT_MODULE + "/commentlike/" + id, CommentLike.class);| Thumbnail | CommentModule | YouTubeCom |
| Property | Type | Entity | Reference | Module |
| (1) CreatedAt | DATE | Thumbnail | ||
| (2) Height | LONG | Thumbnail | ||
| (3) QualityLabel | STRING | Thumbnail | ||
| (4) Url | STRING | Thumbnail | ||
| (5) Video | LONG | Thumbnail | Video | VideoModule |
| (6) Width | LONG | Thumbnail |
Example:
final Thumbnail thumbnail = (Thumbnail) invokeModule(COMMENT_MODULE + "/thumbnail/" + id, Thumbnail.class);| Contact | Donate | Imprint |