datopy.models.media.SpotifyAlbum#

pydantic model SpotifyAlbum[source]#

Bases: BaseModel

Data model for processed Spotify metadata. Raw data schema reference: ‘datopy/output/spotify_album_schema.json’

Show JSON schema
{
   "title": "SpotifyAlbum",
   "description": "Data model for processed Spotify metadata.\nRaw data schema reference: 'datopy/output/spotify_album_schema.json'",
   "type": "object",
   "properties": {
      "title": {
         "title": "Title",
         "type": "string"
      },
      "album_type": {
         "title": "Album Type",
         "type": "string"
      }
   },
   "required": [
      "title",
      "album_type"
   ]
}