Skip to content

Entity Types

LMIF supports four entity types, each with different verification requirements and use cases.

TypeDescriptionVerificationExample
INDIVIDUALPerson claims their own identityStripe IdentityKim Kardashian claims herself
ESTATERepresents a deceased personLegal documentationEstate of Prince
CORPORATIONOwns character/brand IPLegal documentationWarner Bros owns “John Wick”
AGENCYRepresents multiple creatorsDelegated authorityCAA claims on behalf of roster

The most common entity type. A real person claiming their own identity.

  1. Submit government ID via Stripe Identity
  2. Complete liveness check (selfie)
  3. Identity matched to public records
  • Your personal likeness
  • Your professional persona
  • Your stage name (with documentation)
  • Celebrities protecting their likeness
  • Influencers controlling AI avatars
  • Regular people preventing impersonation
{
"entityType": "INDIVIDUAL",
"claim": {
"name": "Taylor Swift",
"variations": ["T. Swift", "Taylor Alison Swift"],
"type": "PERSONAL"
}
}

For protecting the identity of deceased individuals.

  1. Provide death certificate
  2. Submit proof of estate authority (will, court order, etc.)
  3. Verify authorized representative identity
  • Deceased person’s likeness
  • Historical figures (with legal standing)
  • Legacy performers
  • Music estates protecting artist likeness
  • Family estates preventing unauthorized AI use
  • Historical figure representation
{
"entityType": "ESTATE",
"claim": {
"name": "Prince",
"variations": ["Prince Rogers Nelson", "The Artist"],
"type": "ESTATE",
"representative": {
"name": "Estate of Prince Rogers Nelson",
"authority": "court_appointed_executor"
}
}
}

For companies owning intellectual property (characters, mascots, brands).

  1. Submit business registration documents
  2. Provide proof of IP ownership (trademarks, copyrights)
  3. Verify authorized corporate representative
  • Fictional characters
  • Brand mascots
  • Virtual influencers
  • Game characters
  • Studios protecting character IP (Disney, Warner Bros)
  • Game companies protecting characters (Nintendo)
  • Brands protecting mascots (McDonald’s)
{
"entityType": "CORPORATION",
"claim": {
"name": "John Wick",
"variations": ["Jonathan Wick", "Baba Yaga"],
"type": "IP_ASSET",
"owner": {
"name": "Lions Gate Entertainment",
"registrationNumber": "xxx",
"ipDocumentation": ["trademark_cert.pdf", "copyright_reg.pdf"]
}
}
}

For talent agencies and management companies representing multiple creators.

  1. Submit business registration
  2. Provide representation agreements for each client
  3. Verify authorized agency representative
  • Client identities (with their consent)
  • Collective roster protection
  • Delegated management
  • CAA protecting their entire roster
  • Music labels managing artist identities
  • Sports agencies protecting athlete likenesses
{
"entityType": "AGENCY",
"claim": {
"agencyName": "Creative Artists Agency",
"clients": [
{
"name": "Client A",
"consentDocument": "consent_a.pdf",
"scope": "full_likeness"
},
{
"name": "Client B",
"consentDocument": "consent_b.pdf",
"scope": "commercial_only"
}
]
}
}

When checking an identity, the entity type is included in the response:

{
"isBoxed": true,
"boxId": "box_abc123",
"claimId": "claim_xyz789",
"entityType": "CORPORATION",
"policy": "LICENSE",
"owner": {
"name": "Warner Bros Entertainment",
"type": "CORPORATION"
}
}
ConsiderationINDIVIDUALESTATECORPORATIONAGENCY
Verification timeMinutesDaysDaysDays
Can transfer claimNoYesYesN/A
Multiple identitiesNoNoYesYes
Revenue distributionDirectTo estateTo companyTo individuals