{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UpdateContactRequest", "title": "UpdateContactRequest", "type": "object", "properties": { "contact": { "type": "object", "properties": { "name": { "type": "string" }, "email": { "type": "string" }, "telephone": { "type": "string" }, "address": { "$ref": "#/components/schemas/AddressInput" } } } } }