{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Company", "title": "Company", "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" }, "trade": { "type": "string" }, "addressLine1": { "type": "string" }, "addressLine2": { "type": "string" }, "city": { "type": "string" }, "stateOrProvince": { "type": "string" }, "postalCode": { "type": "string" }, "country": { "type": "string" }, "phone": { "type": "string" }, "websiteUrl": { "type": "string", "format": "uri" }, "description": { "type": "string" }, "erp_id": { "type": "string" }, "tax_id": { "type": "string" } } }