"""Maps participations role to GraphQL role values.""" PARTICIPANT_ROLE_MAP = { 'PRIMARY_ARTIST': 'performer', 'FEATURED_ARTIST': 'featuring', 'FEATURE_TO_PRIMARY': 'feature_to_primary', 'REMIXER': 'remixer', 'PRODUCER': 'producer', 'COMPOSER': 'composer', 'CONDUCTOR': 'conductor', 'ENSEMBLE': 'ensemble', 'ORCHESTRA': 'orchestra', } LOCALIZATION_ROLE_MAP = { 'PRIMARY_ARTIST': 'primary_artist', 'FEATURED_ARTIST': 'featuring', 'FEATURE_TO_PRIMARY': 'feature_to_primary', 'REMIXER': 'remixer', 'PRODUCER': 'producer', 'COMPOSER': 'composer', 'CONDUCTOR': 'conductor', 'ENSEMBLE': 'ensemble', 'ORCHESTRA': 'orchestra', } TRACK_LOCALIZATION_ROLE_MAP = { 'MainArtist': 'performer', 'Artist': 'performer', 'Band': 'performer', 'FeaturedArtist': 'featuring', 'FeaturetoPrimary': 'feature_to_primary', 'ReMixer': 'remixer', 'Remixer': 'remixer', 'Producer': 'producer', 'Composer': 'composer', 'Conductor': 'conductor', 'Ensemble': 'ensemble', 'Orchestra': 'orchestra', }