{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ContactCreate", "title": "ContactCreate", "type": "object", "required": [ "FirstName", "LastName" ], "properties": { "FirstName": { "type": "string" }, "LastName": { "type": "string" }, "JobTitle": { "type": "string" }, "EmailAddress": { "type": "string", "format": "email" }, "WorkPhoneNumber": { "type": "string" }, "MobilePhoneNumber": { "type": "string" }, "AccountPartyNumber": { "type": "string" } } }