{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CompanyInitializationModel", "title": "CompanyInitializationModel", "type": "object", "required": [ "name", "companyCode", "taxpayerIdNumber", "line1", "city", "region", "postalCode", "country" ], "properties": { "name": { "type": "string" }, "companyCode": { "type": "string" }, "taxpayerIdNumber": { "type": "string" }, "line1": { "type": "string" }, "line2": { "type": "string" }, "line3": { "type": "string" }, "city": { "type": "string" }, "region": { "type": "string" }, "postalCode": { "type": "string" }, "country": { "type": "string" }, "firstName": { "type": "string" }, "lastName": { "type": "string" }, "title": { "type": "string" }, "email": { "type": "string" }, "phoneNumber": { "type": "string" }, "mobileNumber": { "type": "string" } } }