"""Metadata and keyword fields.""" STORE_BLOCKED_FIELDS = { 'artist_name', 'artist_names', 'track_artist_names' } # According to blacklist_reasons table # 'Store-Blocked Artist' Reason ID = 1 # 'Potential Store-Blocked Artist' Reason ID = 2 # 'Spotify Watchlist Artist' Reason ID = 27 STORE_BLOCKED_REASON_IDS = {1,2,27} SPOTIFY_WATCHLIST_REASON_IDS = {27} # Unique reason ID for 'Store-Blocked Artist' so its matches can be # isolated from the other store-blocked reasons in validation results. STORE_BLOCKED_ARTIST_REASON_ID = 1