| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) Device | Device | EpisodeModule | AmazonPrimeVideo |
| (2) DownloadLicense | DownloadLicense | SeasonModule | AmazonPrimeVideo |
| (3) Episode | Episode | EpisodeModule | AmazonPrimeVideo |
| (4) PlaybackSession | PlaybackSession | EpisodeModule | AmazonPrimeVideo |
| (5) Profile | Profile | ProfileModule | AmazonPrimeVideo |
| (6) Season | Season | SeasonModule | AmazonPrimeVideo |
| (7) Title | Title | TitleModule | AmazonPrimeVideo |
| (8) User | User | UserModule | AmazonPrimeVideo |
| (9) WatchHistory | WatchHistory | ProfileModule | AmazonPrimeVideo |
| Device | EpisodeModule | AmazonPrimeVideo |
| Property | Type | Entity | Reference | Module |
| (1) AppVersion | STRING | Device | ||
| (2) DeviceType | STRING | Device | ||
| (3) LastActiveAt | STRING | Device | ||
| (4) Manufacturer | STRING | Device | ||
| (5) Model | STRING | Device | ||
| (6) OsName | STRING | Device | ||
| (7) OsVersion | STRING | Device | ||
| (8) RegisteredAt | STRING | Device | ||
| (9) User | LONG | Device | User | UserModule |
Example:
final Device device = (Device) invokeModule(EPISODE_MODULE + "/device/" + id, Device.class);| Episode | EpisodeModule | AmazonPrimeVideo |
| Property | Type | Entity | Reference | Module |
| (1) EpisodeNumber | LONG | Episode | ||
| (2) Name | STRING | Episode | ||
| (3) ReleaseDate | DATE | Episode | ||
| (4) RuntimeMinutes | LONG | Episode | ||
| (5) Season | LONG | Episode | Season | SeasonModule |
| (6) Synopsis | STRING | Episode | ||
| (7) Title | LONG | Episode | Title | TitleModule |
Example:
final Episode episode = (Episode) invokeModule(EPISODE_MODULE + "/episode/" + id, Episode.class);| PlaybackSession | EpisodeModule | AmazonPrimeVideo |
| Property | Type | Entity | Reference | Module |
| (1) Device | LONG | PlaybackSession | Device | EpisodeModule |
| (2) EndedAt | STRING | PlaybackSession | ||
| (3) Episode | LONG | PlaybackSession | Episode | EpisodeModule |
| (4) IsLive | BOOL | PlaybackSession | ||
| (5) PlaybackType | STRING | PlaybackSession | ||
| (6) Profile | LONG | PlaybackSession | Profile | ProfileModule |
| (7) Season | LONG | PlaybackSession | Season | SeasonModule |
| (8) StartedAt | STRING | PlaybackSession | ||
| (9) Title | LONG | PlaybackSession | Title | TitleModule |
Example:
final PlaybackSession playbacksession = (PlaybackSession) invokeModule(EPISODE_MODULE + "/playbacksession/" + id, PlaybackSession.class);| Contact | Donate | Imprint |