{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/contact_name_address", "title": "Contact Information", "type": "object", "description": "The contact information of the user. Includes name and address.", "allOf": [ { "$ref": "#/components/schemas/business_name" }, { "properties": { "name": { "$ref": "#/components/schemas/name", "description": "The first and Last name of the recipient." }, "address": { "$ref": "#/components/schemas/address_portable", "description": "The address of the recipient." } } } ] }