Skip to content

profile

The profile parent type covers entity profile pages: people, organizations, places, product profiles, and portfolios. It captures structured identity and biographical data that agents use for entity resolution and knowledge graph construction.

SubtypeQualified TypeDescription
personprofile.personIndividual person profile
organizationprofile.organizationCompany, institution, or group profile
placeprofile.placeLocation or venue profile
product_profileprofile.product_profileProduct landing page or profile
portfolioprofile.portfolioPortfolio or collection showcase
FieldTypeRequiredDescription
entity_namestringYesCanonical name of the profiled entity
entity_typestringYesType of entity (person, organization, place, product, portfolio)
biostringNoBiography or description
affiliationsarray<string>NoAssociated organizations, groups, or institutions
social_linksarray<object>NoSocial media and web presence links
achievementsarray<string>NoNotable achievements, awards, or milestones
profile type_data
{
"type_data": {
"entity_name": "Dr. Fei-Fei Li",
"entity_type": "person",
"bio": "Computer scientist and professor at Stanford University, known for pioneering work in computer vision and artificial intelligence. Co-director of the Stanford Human-Centered AI Institute (HAI).",
"affiliations": [
"Stanford University",
"Stanford HAI",
"ImageNet"
],
"social_links": [
{
"platform": "twitter",
"url": "https://twitter.com/drfeifei"
},
{
"platform": "google_scholar",
"url": "https://scholar.google.com/citations?user=rDfyQnIAAAAJ"
},
{
"platform": "website",
"url": "https://profiles.stanford.edu/fei-fei-li"
}
],
"achievements": [
"Created ImageNet dataset and challenge",
"Fellow of the American Academy of Arts and Sciences",
"Named one of TIME 100 Most Influential People"
]
}
}
FieldTypeDescription
platformstringPlatform name (twitter, linkedin, github, website, etc.)
urlstringURL of the profile on that platform
  • entity_name is the canonical name, which may differ from the page title. Use the most common and recognizable form.
  • entity_type mirrors the subtype but is explicit in the type_data for ease of consumption.
  • bio is a concise summary, not the full profile text. The complete content is in sections.
  • affiliations lists current affiliations. Historical affiliations should be captured in sections or entities.
  • social_links captures links found on the profile page. The platform field is normalized to lowercase identifiers.
  • For organizational profiles with product listings, use aspects: ["commerce.product"] if the page also functions as a product page.