LANGUAGES = ["English", "German", "Spanish"] COUNTRIES = ["USA", "Japan", "Mexico"] TERRITORIES = ["North America", "South America"] + COUNTRIES GENRES = {"Alternative": {"values": ["Emo", "Grunge", "Indie Rock", "Pop Punk"]}} PERFORMER_ROLES = [ "Electronics - Sampler", "Guitar - Acoustic Guitar", "Vocals - Backing Vocals", "Vocals - Lead Vocals", ] PARTICIPANT_ROLES = [ "Mixing Engineer", "Mixer", "Production Secretary", "Production Manager", ] TRACK_CONTRIBUTOR_ROLES = { "Primary Artist": {"values": ["Primary Artist"]}, "Featuring Artist": {"values": ["Featuring Artist"]}, "Remixer": {"values": ["Remixer"]}, "Songwriter": {"values": ["Songwriter"]}, "Producer": {"values": ["Producer"]}, "Composer": {"values": ["Composer"]}, "Primary Performer": {"values": PERFORMER_ROLES}, "Featured Performer": {"values": PERFORMER_ROLES}, "Non-Featured Performer": {"values": PERFORMER_ROLES}, "Studio Personnel": {"values": PARTICIPANT_ROLES}, "Label Personnel": {"values": PARTICIPANT_ROLES}, "Compositional": {"values": PARTICIPANT_ROLES}, } VALIDATION_ENUMS = { "meta_languages": LANGUAGES, "lyric_languages": LANGUAGES, "explicit": ["Yes", "No", "Clean"], "format": ["Album", "EP", "Single"], "yes_no": ["Yes", "No"], "itunes_preorder_options": [ "No Pre-order", "Specific Date", ], "pricing_categories": [ "Back", "Budget 1", "Budget 2", "Deluxe Four", "Deluxe One", "Deluxe Three", "Deluxe Two", "Digital 45 (4 Tracks Max)", "EP (10 Track Max)", "Front 1", "Front Plus", "Front 2", "Mid", "Mid/Front", "Mini Album One", "Mini Album Two", "Mini EP (7 Tracks Max)", ], "track_pricing": [ "Front", "Mid", "Back", ], "product_contributor_roles": [ "Primary Artist", "Remixer", "Composer", "Featuring Artist", "Producer", "Lyricist", ], "localization_languages": LANGUAGES, "product_localization_fields": [ "Product Version", "Primary Artist", "Remixer", "Composer", "Featuring Artist", "Producer", ], "track_localization_fields": [ "Track Version", "Primary Artist", "Composer", "Featuring Artist", "Remixer", "Producer", ], "ownership_of_sound_recording": [ "I am the original master copyright owner", "I have acquired the master rights", "I am the exclusive licensee (not the owner)", "I am a non-exclusive licensee (not the owner)", "I have no master rights", ], "us_publishing_obligation": [ "100% controlled or administered by my label", "Less than 100% controlled (at least partially administered by 3rd party)", "Public Domain in the US, or non-music", ], "countries": COUNTRIES, "territories": TERRITORIES, "carveout_territories_for_vendor": [], "carveout_territories_for_subaccounts": {}, "genres": GENRES, "track_contributor_roles": TRACK_CONTRIBUTOR_ROLES, }