Models
OpenSearch Company Mappings
Below is the comprehensive OpenSearch field mapping for company data.
Employ this mapping while formulating OpenSearch queries within the Company Search API to precisely refine your search results.
{
"mappings": {
"dynamic": "false",
"properties": {
"company_info": {
"properties": {
"canonical_name": {
"type": "keyword",
"normalizer": "lowercase_trim_normalizer"
},
"created_at": {
"type": "date"
},
"data_updated_at": {
"type": "date"
},
"founded": {
"type": "date"
},
"id": {
"type": "keyword"
},
"industry": {
"type": "keyword",
"normalizer": "lowercase_acsiifold_normalizer"
},
"linkedin_slugs": {
"type": "keyword",
"normalizer": "lowercase_trim_normalizer"
},
"locations": {
"type": "nested",
"properties": {
"country": {
"type": "keyword",
"normalizer": "lowercase_acsiifold_normalizer"
},
"headquarter": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"name": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
}
}
},
"name": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"size": {
"properties": {
"class": {
"type": "keyword"
},
"class_sort": {
"type": "integer"
}
}
},
"updated_at": {
"type": "date"
},
"website": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
}
}
},
"funding_data": {
"properties": {
"total_funding_amount_usd": {
"type": "integer"
},
"last_round_type": {
"type": "keyword"
},
"last_round_amount_usd": {
"type": "integer"
},
"last_round_date": {
"type": "date"
},
"last_round_investors": {
"type": "nested",
"properties": {
"id": {
"type": "keyword"
},
"kind": {
"type": "keyword"
},
"name": {
"type": "text"
},
"crunchbase_id": {
"type": "keyword"
},
"crunchbase_slug": {
"type": "keyword"
}
}
},
"rounds": {
"type": "nested",
"properties": {
"type": {
"type": "keyword"
},
"amount_usd": {
"type": "integer"
},
"date": {
"type": "date"
},
"investors": {
"type": "nested",
"properties": {
"id": {
"type": "keyword"
},
"kind": {
"type": "keyword"
},
"name": {
"type": "text"
},
"crunchbase_id": {
"type": "keyword"
},
"crunchbase_slug": {
"type": "keyword"
}
}
}
}
}
}
},
"investor_data": {
"properties": {
"check_size": {
"type": "keyword"
},
"geography_focus": {
"type": "keyword"
},
"industry_focus": {
"type": "keyword"
},
"portfolio_companies": {
"type": "nested",
"properties": {
"company_id": {
"type": "keyword"
}
}
},
"stage_focus": {
"type": "keyword"
},
"type": {
"type": "keyword"
}
}
},
"text_search": {
"type": "text"
},
"updated_at": {
"type": "date"
}
}
}
}
Assistant
Responses are generated using AI and may contain mistakes.