{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateContactRequest", "title": "CreateContactRequest", "type": "object", "properties": { "contacts": { "type": "array", "description": "Array of contact attributes, max 10 contacts per request", "items": { "type": "object", "required": [ "contactAttributes" ], "properties": { "contactAttributes": { "type": "array", "description": "Array of field mapping field name & value pairs.", "items": { "type": "object", "properties": { "fieldName": { "type": "string", "description": "Field name" }, "value": { "type": "string", "description": "Field value" } }, "example": { "fieldName": "FirstName", "value": "John" } }, "example": [ { "fieldName": "FirstName", "value": "John" }, { "fieldName": "LastName", "value": "Doe" }, { "fieldName": "AccountStatus", "value": "Active" } ] } } } } } }