---
title: "UnmatchedProprietorDto"
url: "https://developer.pexa.co.uk/apis/workspace-v1-v1/versions/32819e5a-6411-493b-abe8-00b7c7ca6c77/schemas/UnmatchedProprietorDto"
---

> Full API specification: https://developer.pexa.co.uk/apis/workspace-v1-v1/versions/32819e5a-6411-493b-abe8-00b7c7ca6c77.md

# UnmatchedProprietorDto

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Workspace
  version: v1.3.0
servers:
  - url: https://api.pexa.co.uk
    description: API Gateway URL
components:
  schemas:
    UnmatchedProprietorDto:
      type: object
      required:
        - proprietorId
        - type
      properties:
        proprietorId:
          type: string
          format: uuid
          description: Unique identifier for the proprietor from title
        type:
          type: string
          pattern: ^(INDIVIDUAL|ORGANISATION)$
          example: INDIVIDUAL
          description: |
            Type of party or proprietor.
            Allowed values: [`INDIVIDUAL`, `ORGANISATION`]
        proprietorDetails:
          type: object
          description: Proprietor details - either individual or organisation
          properties:
            forenames:
              type: string
              description: Forenames for INDIVIDUAL type proprietor
              example: John
            surname:
              type: string
              description: Surname for INDIVIDUAL type proprietor
              example: Doe
            organisationName:
              type: string
              description: Organisation name for ORGANISATION type proprietor
              example: Corp Ltd
            registrationNumber:
              type: string
              description: Registration number for ORGANISATION type proprietor
```
