{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ContactDetails", "title": "ContactDetails", "properties": { "address": { "description": "The address of the account holder.", "$ref": "#/components/schemas/Address" }, "email": { "description": "The email address of the account holder.", "type": "string" }, "phone": { "description": "The phone number of the account holder.", "$ref": "#/components/schemas/Phone" }, "webAddress": { "description": "The URL of the account holder's website.", "type": "string" } }, "required": [ "email", "phone", "address" ], "type": "object" }