| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) Acquisition | Acquisition | PlaylistModule | Spotify |
| (2) CreatorTool | CreatorTool | PlaylistModule | Spotify |
| (3) CreatorToolUsage | CreatorToolUsage | TrackModule | Spotify |
| (4) Playlist | Playlist | PlaylistModule | Spotify |
| (5) PlaylistItem | PlaylistItem | PlaylistModule | Spotify |
| (6) PodcastEpisode | PodcastEpisode | TrackModule | Spotify |
| (7) Track | Track | TrackModule | Spotify |
| Acquisition | PlaylistModule | Spotify |
| Property | Type | Entity | Reference | Module |
| (1) Acquirer | LONG | Acquisition | ||
| (2) AnnouncedOn | DATE | Acquisition | ||
| (3) ClosedOn | DATE | Acquisition | ||
| (4) Description | STRING | Acquisition | ||
| (5) IntegratedInto | LONG | Acquisition | ||
| (6) PriceEur | DOUBLE | Acquisition | ||
| (7) TargetCountry | LONG | Acquisition | ||
| (8) TargetName | STRING | Acquisition |
Example:
final Acquisition acquisition = (Acquisition) invokeModule(PLAYLIST_MODULE + "/acquisition/" + id, Acquisition.class);| CreatorTool | PlaylistModule | Spotify |
| Property | Type | Entity | Reference | Module |
| (1) Description | STRING | CreatorTool | ||
| (2) IsOwnedBySpotify | BOOL | CreatorTool | ||
| (3) Name | STRING | CreatorTool |
Example:
final CreatorTool creatortool = (CreatorTool) invokeModule(PLAYLIST_MODULE + "/creatortool/" + id, CreatorTool.class);| Playlist | PlaylistModule | Spotify |
| Property | Type | Entity | Reference | Module |
| (1) CreatedAt | DATE | Playlist | ||
| (2) Description | STRING | Playlist | ||
| (3) IsAlgorithmic | BOOL | Playlist | ||
| (4) IsCollaborative | BOOL | Playlist | ||
| (5) IsEditorial | BOOL | Playlist | ||
| (6) OwnerUser | LONG | Playlist | ||
| (7) Title | STRING | Playlist |
Example:
final Playlist playlist = (Playlist) invokeModule(PLAYLIST_MODULE + "/playlist/" + id, Playlist.class);| PlaylistItem | PlaylistModule | Spotify |
| Property | Type | Entity | Reference | Module |
| (1) AddedAt | DATE | PlaylistItem | ||
| (2) AddedByUser | LONG | PlaylistItem | ||
| (3) Playlist | LONG | PlaylistItem | Playlist | PlaylistModule |
| (4) PodcastEpisode | LONG | PlaylistItem | PodcastEpisode | TrackModule |
| (5) SortOrder | LONG | PlaylistItem | ||
| (6) Track | LONG | PlaylistItem | Track | TrackModule |
Example:
final PlaylistItem playlistitem = (PlaylistItem) invokeModule(PLAYLIST_MODULE + "/playlistitem/" + id, PlaylistItem.class);| Contact | Donate | Imprint |