L3 ARTIFACT BUNDLE // SOLV-TAX-001
Title-to-Role Mapping Rules
The core governance rules used to automate Solventum Buying Committee identification. These rules ensure that STAR's media and outreach are directed at the correct functional roles within the healthcare organization.
1. Committee Role Taxonomy
2. Role-Based Seniority Thresholds
3. Mapping Master Regex
Use these expressions for automated CRM cleaning and DSP audience mapping jobs.
// Growth & Demand Mapping
const REGEX_GROWTH = /(Demand|Growth|Pipeline|Performance|RevOps)/i;// Compliance & Trust Mapping
const REGEX_TRUST = /(Legal|Clinical|Regulatory|Compliance|Privacy|Counsel)/i;// Field Sales Mapping
const REGEX_SALES = /(Sales|Account Executive|AE|Field|Enablement)/i;4. Functional Dept. Schema
Departmental mapping for "Missing Role Detection" logic.
{
"department_map": {
"Healthcare_Ops": ["Clinical", "MedAffairs", "Regulatory"],
"Revenue_Growth": ["Demand", "Growth", "Pipeline"],
"Field_Execution": ["Sales", "Enablement", "Events"]
},
"min_viable_committee": {
"required": ["Healthcare_Ops", "Revenue_Growth"],
"optional": ["Finance", "Field_Execution"]
}
}