# Data governanceData governanceData governance is the set of policies, roles, and processes that ensure data is accurate, secure, well-defined, and used responsibly across an organization.View full definition → roles across maisons and licensing partners
A customer buys a fragrance at an airport duty-free counter, licensed and manufactured by a beauty group, then visits the maison's flagship boutique in Paris, run directly by the brand, then browses the same maison's app, operated by a regional joint venture. Three legal entities now hold pieces of that customer's data. None of them fully agrees on who is allowed to email her next. This is not a hypothetical: it is the daily operating reality for maisons like Dior, Armani, or Burberry, whose fragrance and beauty lines are frequently licensed to groups such as L'Oréal or Coty, while e-commerce in China or the Middle East often runs through joint ventures (JVs) with local partners.
Luxury groups rarely manufacture and sell everything themselves. Fragrance and cosmetics are commonly licensed: the maison owns the brand and trademark, but a licensee (often a beauty conglomerate) manufactures, markets, and sells the product, sometimes for a decade or more under a renewable contract.
This matters for data because the licensee, not the maison, usually:
So the maison's core leather goods or ready-to-wear CRMCRMCustomer Relationship Management: software and strategy to manage and analyse customer interactions throughout their lifecycle.View full definition → and the fragrance CRMCRMCustomer Relationship Management: software and strategy to manage and analyse customer interactions throughout their lifecycle.View full definition → can be entirely separate systems, owned by separate legal entities, sometimes with separate consent records for the same person.
Add a second twist: in many regions, especially China, the brand's official e-commerce operation is run through a JV with a local partner (a common structure given China's regulatory environment and the need for local platform access, such as Tmall or WeChat mini-programs).
That JV entity:
Result: headquarters may see aggregated sales figures but not the underlying, individually identifiable customer records from that JV market.
Data governanceData governanceData governance is the set of policies, roles, and processes that ensure data is accurate, secure, well-defined, and used responsibly across an organization.View full definition → frameworks generally separate three roles, and in a maison-plus-licensee-plus-JV structure, each can sit in a different company:
1. Data owner: decides what data is collected and for what business purpose. In fragrance, this is typically the licensee's brand marketing team, operating under a governance charter agreed with the maison.
2. Data controller (GDPR term): the legal entity accountable for compliance, consent validity, and responding to regulators. This can be the licensee for fragrance sales in the EU, the JV for e-commerce in Asia, and the maison itself for direct boutique and website sales in its home market.
3. Data processor (GDPR term): a company that processes data on the controller's behalf under contract, without deciding the purpose (for example, a CRMCRMCustomer Relationship Management: software and strategy to manage and analyse customer interactions throughout their lifecycle.View full definition → software vendor or a logistics partner scanning loyalty cards).
Confusion happens when people assume the maison is always the controller. Often it is not, and that changes who a regulator like France's CNIL (Commission Nationale de l'Informatique et des Libertés) or Italy's Garante would actually investigate first.
The practical, contract-level question: if the maison wants to suppress a customer record globally (say, after a data subject access or deletion request under GDPR's Article 17, "right to erasure"), can it force the licensee and the JV to comply?
This depends entirely on the license and JV agreements, specifically:
Well-drafted agreements specify a joint controller arrangement (a formal GDPR concept, Article 26, where two entities jointly determine purposes and means, and must define by contract who handles which obligations). Poorly drafted ones leave this ambiguous, which becomes a real problem the moment a regulator asks "who is responsible."
A basic RACI-style table (Responsible, Accountable, Consulted, Informed, a standard governance tool) for a fragrance line under license might look like this:
| Data activity | Maison | Licensee | JV (e-commerce) |
|---|---|---|---|
| Sets brand data standards | Accountable | Consulted | Informed |
| Owns fragrance POS/CRMCRMCustomer Relationship Management: software and strategy to manage and analyse customer interactions throughout their lifecycle.View full definition → data | Informed | Accountable | Informed |
| Handles EU consent records | Informed | Accountable | n/a |
| Handles China e-commerce consent | Informed | n/a | Accountable |
| Approves global marketing use of data | Accountable | Consulted | Consulted |
| Responds to a GDPR access request (EU customer) | Consulted | Accountable | n/a |
| Responds to a PIPL request (China customer) | Informed | n/a | Accountable |
This table itself is a governance deliverable maisons should require licensees and JVs to produce and keep current, ideally reviewed annually or on any material contract renewal.
Knowledge check
1. In a typical fragrance licensing arrangement, why does the maison often NOT control the CRM data for its own perfume line?
2. Why does the customer scenario (duty-free, boutique, app) result in three separate data records rather than one unified customer profile?
3. Why do maisons commonly use a joint venture (JV) structure for e-commerce in markets like China rather than operating directly?
4. Select ALL correct answers about the consequences of licensing and JV structures on customer data.
Select all the correct answers.
5. Select ALL correct answers about what a fragrance licensee (such as a beauty conglomerate) typically controls under a licensing agreement.
Select all the correct answers.
For learners moving into brand-side or licensor-side data roles, four concrete checks matter most:
1. Consent lineage audit: trace a sample customer record from point of collection (boutique tablet, e-commerce checkout, loyalty scan) through every system it touches. Confirm consent language matches actual downstream use. Mismatches (data collected for "order fulfillment" but used for cross-brand marketing) are a common GDPR exposure point.
2. Cross-border transfer mapping: list every instance where customer data moves between the JV, the licensee, and headquarters. Confirm a legal transfer mechanism exists (standard contractual clauses under GDPR, or PIPL-compliant mechanisms for China). Free reference: the European Data Protection Board guidance publishes updated guidelines on international transfers.
3. Access and deletion request response time: test how long it actually takes the licensee or JV to locate and act on a request. GDPR sets a one-month default response window (extendable to three in complex cases). Contract SLAs (service-level agreements) with licensees should be equal to or tighter than this.
4. Breach notification drill: confirm the licensee or JV is contractually bound to notify the maison within a set number of hours of discovering a breach, well before the regulator's own 72-hour notification clock (GDPR Article 33) expires for the maison's own reporting duty, if it is a joint controller.
A minimal Python-style check a data team might run internally to flag records missing a valid legal basis before a campaign send:
# Flag customer records lacking valid marketing consent before licensee campaign export
def flag_invalid_consent(records):
flagged = []
for r in records:
if r["marketing_consent"] != True or r["consent_date"] is None:
flagged.append(r["customer_id"])
return flaggedSimple, but this is exactly the type of pre-export gate that should sit between a licensee's CRMCRMCustomer Relationship Management: software and strategy to manage and analyse customer interactions throughout their lifecycle.View full definition → and any global marketing use.
🎬 [VIDEO: "GDPR Explained in 5 Minutes" - youtube.com - a concise primer on controller, processor, and consent concepts referenced throughout this lesson]