enrich_company
Enhance company profiles by adding crucial data such as social media links, stock tickers, and website details. Input company name, website, profiles, or ticker for comprehensive enrichment.
Instructions
Enrich a company profile with additional data
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | No | Name of the company | |
profile | No | Social media profile URLs of the company | |
ticker | No | Stock ticker symbol of the company | |
website | No | Website of the company |
Input Schema (JSON Schema)
{
"anyOf": [
{
"required": [
"name"
]
},
{
"required": [
"website"
]
},
{
"required": [
"profile"
]
},
{
"required": [
"ticker"
]
}
],
"properties": {
"name": {
"description": "Name of the company",
"type": "string"
},
"profile": {
"description": "Social media profile URLs of the company",
"items": {
"type": "string"
},
"type": "array"
},
"ticker": {
"description": "Stock ticker symbol of the company",
"type": "string"
},
"website": {
"description": "Website of the company",
"type": "string"
}
},
"type": "object"
}