{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PayerCompany", "title": "PayerCompany", "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" }, "ein": { "type": "string", "description": "Employer Identification Number" }, "address": { "type": "object", "properties": { "line1": { "type": "string" }, "city": { "type": "string" }, "state": { "type": "string" }, "postalCode": { "type": "string" } } }, "contactName": { "type": "string" }, "contactPhone": { "type": "string" }, "contactEmail": { "type": "string", "format": "email" } } }