{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CompanyBasic", "title": "CompanyBasic", "type": "object", "description": "Company information for the IP owner", "properties": { "name": { "type": "string", "description": "Company name", "example": "Google LLC" }, "domain": { "type": "string", "description": "Company domain", "example": "google.com" }, "type": { "type": "string", "description": "Company type", "example": "hosting" } } }