| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) DownloadLicense | DownloadLicense | SeasonModule | AmazonPrimeVideo |
| (2) Episode | Episode | EpisodeModule | AmazonPrimeVideo |
| (3) PlaybackSession | PlaybackSession | EpisodeModule | AmazonPrimeVideo |
| (4) Profile | Profile | ProfileModule | AmazonPrimeVideo |
| (5) Season | Season | SeasonModule | AmazonPrimeVideo |
| (6) Title | Title | TitleModule | AmazonPrimeVideo |
| (7) User | User | UserModule | AmazonPrimeVideo |
| (8) UserRating | UserRating | VideoFormatModule | AmazonPrimeVideo |
| (9) WatchHistory | WatchHistory | ProfileModule | AmazonPrimeVideo |
| (10) WatchlistItem | WatchlistItem | ProfileModule | AmazonPrimeVideo |
| Profile | ProfileModule | AmazonPrimeVideo |
| Property | Type | Entity | Reference | Module |
| (1) AvatarUrl | STRING | Profile | ||
| (2) CreatedAt | STRING | Profile | ||
| (3) IsKidsProfile | BOOL | Profile | ||
| (4) Name | STRING | Profile | ||
| (5) User | LONG | Profile | User | UserModule |
Example:
final Profile profile = (Profile) invokeModule(PROFILE_MODULE + "/profile/" + id, Profile.class);| WatchHistory | ProfileModule | AmazonPrimeVideo |
| Property | Type | Entity | Reference | Module |
| (1) CompletedAt | STRING | WatchHistory | ||
| (2) Episode | LONG | WatchHistory | Episode | EpisodeModule |
| (3) LastPositionSeconds | LONG | WatchHistory | ||
| (4) Profile | LONG | WatchHistory | Profile | ProfileModule |
| (5) ProgressPercent | STRING | WatchHistory | ||
| (6) Season | LONG | WatchHistory | Season | SeasonModule |
| (7) StartedAt | STRING | WatchHistory | ||
| (8) Title | LONG | WatchHistory | Title | TitleModule |
Example:
final WatchHistory watchhistory = (WatchHistory) invokeModule(PROFILE_MODULE + "/watchhistory/" + id, WatchHistory.class);| WatchlistItem | ProfileModule | AmazonPrimeVideo |
| Property | Type | Entity | Reference | Module |
| (1) AddedAt | STRING | WatchlistItem | ||
| (2) Profile | LONG | WatchlistItem | Profile | ProfileModule |
| (3) Title | LONG | WatchlistItem | Title | TitleModule |
Example:
final WatchlistItem watchlistitem = (WatchlistItem) invokeModule(PROFILE_MODULE + "/watchlistitem/" + id, WatchlistItem.class);| Contact | Donate | Imprint |