{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PayerInfo", "title": "PayerInfo", "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" }, "address": { "type": "object", "properties": { "address1": { "type": "string" }, "city": { "type": "string" }, "state": { "type": "string" }, "postalCode": { "type": "string" } } } } }