# The Ownership Match object ## Attributes - `id` (string) Unique identifier for the object. - `object` (string) String representing the object’s type. Objects of the same type share the same value. - `created` (timestamp) Time at which the object was created. Measured in seconds since the Unix epoch. - `customer` (string, nullable) The id of the customer that was matched against. - `financial_connections_account` (string) The id of the Financial Connections account which was requested to match against. - `owner_information` (object) The owner information that was matched against. - `owner_information.address` (object, nullable) The address of the owner. - `owner_information.address.city` (string) The city of the address. - `owner_information.address.country` (string) The country of the address. - `owner_information.address.line1` (string) The first line of the address. - `owner_information.address.line2` (string, nullable) The second line of the address. - `owner_information.address.postal_code` (string) The postal code of the address. - `owner_information.address.state` (string) The state of the address. - `owner_information.email` (string, nullable) The email address of the owner. - `owner_information.name` (string, nullable) The full name of the owner. - `owner_information.phone` (string, nullable) The phone number of the owner. - `ownership` (string) The id of the ownership that was matched against. - `results` (object) The computed match scores for each ownership field. - `results.address` (object, nullable) The match result for address. - `results.address.match_score` (integer, nullable) Match score in a 0-100 range. Only `null` if ownership data is missing. - `results.address.missing_data` (boolean, nullable) Whether ownership data is missing. - `results.email` (object, nullable) The match result for email. - `results.email.match_score` (integer, nullable) Match score in a 0-100 range. Only `null` if ownership data is missing. - `results.email.missing_data` (boolean, nullable) Whether ownership data is missing. - `results.name` (object, nullable) The match result for name. - `results.name.match_score` (integer, nullable) Match score in a 0-100 range. Only `null` if ownership data is missing. - `results.name.missing_data` (boolean, nullable) Whether ownership data is missing. - `results.phone` (object, nullable) The match result for phone. - `results.phone.match_score` (integer, nullable) Match score in a 0-100 range. Only `null` if ownership data is missing. - `results.phone.missing_data` (boolean, nullable) Whether ownership data is missing. - `type` (enum) The source of ownership data that was matched against. Possible enum values: - `customer` Customer object ownership information. - `owner_information` User-specified ownership information. ### The Ownership Match object ```json { "id": "fcom_1NtI9uBHO5VeT9SUKLJU5suZ", "object": "financial_connections.ownership_match", "created": 1745858181, "financial_connections_account": "fca_1MwVK82eZvKYlo2Cjw8FMxXf", "type": "owner_information", "owner_information": { "name": "Jenny Rosen", "address": { "line1": "354 Oyster Point Blvd", "line2": null, "city": "South San Francisco", "state": "CA", "postal_code": "94080", "country": "US" }, "email": "jennyrosen@example.com", "phone": "+1 212-555-5555" }, "customer": null, "ownership": "fcaowns_1NtI9uBHO5VeT9SUSRe21lqt", "results": { "name": { "match_score": 85, "missing_data": false }, "address": { "match_score": 100, "missing_data": false }, "email": { "match_score": 65, "missing_data": false }, "phone": { "match_score": null, "missing_data": true } } } ```