{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Company", "title": "Company", "type": "object", "properties": { "id": { "type": "integer", "format": "int64" }, "name": { "type": "string" }, "website": { "type": "string", "format": "uri" }, "domain": { "type": "string" }, "industry": { "type": "string" }, "type": { "type": "string" }, "founded": { "type": "integer" }, "size": { "type": "string" }, "employees_count": { "type": "integer" }, "followers_count": { "type": "integer" }, "description": { "type": "string" }, "headquarters": { "type": "string" }, "country": { "type": "string" }, "region": { "type": "string" }, "locality": { "type": "string" }, "specialities": { "type": "array", "items": { "type": "string" } }, "technologies": { "type": "array", "items": { "type": "string" } }, "funding_total_amount": { "type": "number" }, "last_funding_round": { "type": "object" }, "linkedin_url": { "type": "string" }, "twitter_url": { "type": "string" }, "facebook_url": { "type": "string" }, "crunchbase_url": { "type": "string" }, "last_updated": { "type": "string", "format": "date-time" } } }