---
title: "ContactFuzzySearchResponse"
url: "https://apipartners.mosaicinsurance.com/apis/trident-ap-is-beta/versions/018fd555-bac2-494f-872b-ac47b74f1e75/schemas/ContactFuzzySearchResponse"
---

> Full API specification: https://apipartners.mosaicinsurance.com/apis/trident-ap-is-beta/versions/018fd555-bac2-494f-872b-ac47b74f1e75.md

# ContactFuzzySearchResponse

Response returned by the /lookup/contacts endpoint. Wraps XFI's `_count`/`_links.item[].summary` payload as `total`/`item`.

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Trident APIs
  version: uat
servers:
  - url: https://apinonprod.mosaicinsurance.com
    description: Generated server url
components:
  schemas:
    ContactFuzzySearchItem:
      type: object
      description: A single contact entry returned by the /lookup/contacts endpoint,
        passed through from XFI's `summary` object verbatim. Backing Java type
        is `Map<String, Object>` — keys are not fixed/known in advance (XFI may
        return any of `contactKey`, `contactReference`, `code`, `roleCode`,
        `mainrole`, `email`, `mailingAddress1`, `mailingAddress2`,
        `mailingAddressCity`, `country`, or others), so no fixed property list
        is declared here.
      additionalProperties: true
    ContactFuzzySearchResponse:
      type: object
      description: Response returned by the /lookup/contacts endpoint. Wraps XFI's
        `_count`/`_links.item[].summary` payload as `total`/`item`.
      required:
        - total
        - item
      properties:
        total:
          type: integer
          format: int32
          description: Total number of matching contacts reported by XFI (`_count`).
        item:
          type: array
          items:
            $ref: "#/components/schemas/ContactFuzzySearchItem"
          description: Flattened contact entries (`_links.item[].summary`), verbatim. Each
            entry is a free-form map (`Map<String, Object>`) — properties below
            are the common ones; XFI may include additional attributes.
```
