> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tic.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Get beneficial owners for a company

> Returns the Bolagsverket beneficial-owner notifications for the company, with owners, representatives, govern codes, and any flagged suspect notifications. Pro tier has personal identity numbers masked.

<Badge color="green" size="sm">Pro+ tier</Badge>


## OpenAPI

````yaml get /companies/{id}/beneficial-owners
openapi: 3.1.1
info:
  title: TIC Lens API
  description: "The TIC Lens API provides programmatic access to company, person, property, vehicle, and order data.\r\n\r\n## Authentication\r\n\r\nAll requests require an API key passed via the `x-api-key` header:\r\n\r\n```bash\r\ncurl -H \"x-api-key: YOUR_API_KEY\" https://lens-api.tic.io/companies/123\r\n```\r\n\r\nAPI keys are managed through the TIC Lens web application under **Settings → API Keys**.\r\n\r\n## Base URL\r\n\r\n| Environment | URL |\r\n|-------------|-----|\r\n| Production  | `https://lens-api.tic.io` |\r\n\r\n## Feature Access\r\n\r\nEndpoints are gated by your subscription plan. If your plan does not include a feature, the endpoint will return `403 Forbidden`.\r\n\r\n## Rate Limits\r\n\r\nRate limits are applied per API key. If you exceed the limit, requests will return `429 Too Many Requests`.\r\n\r\n## Response Format\r\n\r\nAll responses are JSON. Null values are omitted from responses.\r\n"
  version: v1
servers:
  - url: https://lens-api.tic.io
security:
  - ApiKey: []
tags:
  - name: Addresses
  - name: Bolagsverket
  - name: Brf
  - name: Companies
  - name: Documents
  - name: FlightImages
  - name: Free
  - name: Orders
  - name: OrdersExports
  - name: PaymentControl
  - name: PaymentControlImport
  - name: Persons
  - name: Properties
  - name: PublicSearch
  - name: SearchAutocomplete
  - name: Sentinel
  - name: ServingPermits
  - name: Team
  - name: Teams
  - name: Transportstyrelsen
  - name: Vehicles
  - name: WatchList
paths:
  /companies/{id}/beneficial-owners:
    get:
      tags:
        - Companies
      summary: Get beneficial owners for a company
      description: >-
        Returns the Bolagsverket beneficial-owner notifications for the company,
        with owners, representatives, govern codes, and any flagged suspect
        notifications. Pro tier has personal identity numbers masked.
      operationId: GetCompanyBeneficialOwners
      parameters:
        - name: id
          in: path
          description: Internal company ID
          required: true
          schema:
            type: integer
            format: int32
      responses:
        '200':
          description: List of beneficial-owner notifications
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: >-
                    #/components/schemas/Ormeo_Library_Dtos_Bolagsverket_BeneficialOwnerNotification_Dto
        '404':
          description: Company not found or not accessible
components:
  schemas:
    Ormeo_Library_Dtos_Bolagsverket_BeneficialOwnerNotification_Dto:
      type: object
      properties:
        bolagsverket_BeneficialOwnerNotificationId:
          type: integer
          format: int32
        registration:
          type:
            - 'null'
            - string
          format: uuid
        notificationDate:
          type:
            - 'null'
            - string
          format: date-time
        fromDate:
          type:
            - 'null'
            - string
          format: date-time
        caseNumber:
          type:
            - 'null'
            - integer
          format: int32
        caseYear:
          type:
            - 'null'
            - integer
          format: int32
        registrationNumber:
          type:
            - 'null'
            - string
        companyName:
          type:
            - 'null'
            - string
        companyCode:
          type:
            - 'null'
            - string
        companyCodeDescription:
          type:
            - 'null'
            - string
        statusCode:
          type:
            - 'null'
            - string
        statusDescription:
          type:
            - 'null'
            - string
        lastUpdatedAtUtc:
          type: string
          format: date-time
        bolagsverket_BeneficialOwnerSuspectNotificationId:
          type:
            - 'null'
            - integer
          format: int32
        companyId:
          type:
            - 'null'
            - integer
          format: int32
        bolagsverket_BeneficialOwner:
          type:
            - 'null'
            - array
          items:
            $ref: >-
              #/components/schemas/Ormeo_Library_Dtos_Bolagsverket_BeneficialOwner_Dto
        bolagsverket_BeneficialOwnerRepresentative:
          type:
            - 'null'
            - array
          items:
            $ref: >-
              #/components/schemas/Ormeo_Library_Dtos_Bolagsverket_BeneficialOwnerRepresentative_Dto
        bolagsverket_BeneficialOwnerSuspectNotification:
          $ref: >-
            #/components/schemas/Ormeo_Library_Dtos_Bolagsverket_BeneficialOwnerSuspectNotification_Dto
      additionalProperties: false
    Ormeo_Library_Dtos_Bolagsverket_BeneficialOwner_Dto:
      type: object
      properties:
        bolagsverket_BeneficialOwnerId:
          type: integer
          format: int32
        bolagsverket_BeneficialOwnerNotificationId:
          type: integer
          format: int32
        personId:
          type:
            - 'null'
            - integer
          format: int32
        personalIdentityNumber:
          type:
            - 'null'
            - string
        fallbackPersonalIdentityNumber:
          type:
            - 'null'
            - string
          readOnly: true
        firstName:
          type:
            - 'null'
            - string
        middleName:
          type:
            - 'null'
            - string
        lastName:
          type:
            - 'null'
            - string
        fallbackName:
          type:
            - 'null'
            - string
          readOnly: true
        citizenshipCountryCode:
          type:
            - 'null'
            - string
        countryOfResidenceCode:
          type:
            - 'null'
            - string
        extentCode:
          type:
            - 'null'
            - string
        extentDescription:
          type:
            - 'null'
            - string
        bolagsverket_BeneficialOwnerGovern:
          type:
            - 'null'
            - array
          items:
            $ref: >-
              #/components/schemas/Ormeo_Library_Dtos_Bolagsverket_BeneficialOwnerGovern_Dto
        person:
          $ref: '#/components/schemas/Ormeo_Library_Dtos_Person_Dto'
      additionalProperties: false
    Ormeo_Library_Dtos_Bolagsverket_BeneficialOwnerRepresentative_Dto:
      type: object
      properties:
        bolagsverket_BeneficialOwnerRepresentativeId:
          type: integer
          format: int32
        bolagsverket_BeneficialOwnerNotificationId:
          type: integer
          format: int32
        personId:
          type:
            - 'null'
            - integer
          format: int32
        personalIdentityNumber:
          type:
            - 'null'
            - string
        firstName:
          type:
            - 'null'
            - string
        middleName:
          type:
            - 'null'
            - string
        lastName:
          type:
            - 'null'
            - string
        citizenshipCountryCode:
          type:
            - 'null'
            - string
        countryOfResidenceCode:
          type:
            - 'null'
            - string
      additionalProperties: false
    Ormeo_Library_Dtos_Bolagsverket_BeneficialOwnerSuspectNotification_Dto:
      type: object
      properties:
        bolagsverket_BeneficialOwnerSuspectNotificationId:
          type: integer
          format: int32
        registrationDate:
          type:
            - 'null'
            - string
          format: date-time
        caseNumber:
          type:
            - 'null'
            - integer
          format: int32
        caseYear:
          type:
            - 'null'
            - integer
          format: int32
        originCaseNumber:
          type:
            - 'null'
            - integer
          format: int32
        originCaseYear:
          type:
            - 'null'
            - integer
          format: int32
        suspectCode:
          type:
            - 'null'
            - integer
          format: int32
        lastUpdatedAtUtc:
          type: string
          format: date-time
      additionalProperties: false
    Ormeo_Library_Dtos_Bolagsverket_BeneficialOwnerGovern_Dto:
      type: object
      properties:
        bolagsverket_BeneficialOwnerGovernId:
          type: integer
          format: int32
        bolagsverket_BeneficialOwnerId:
          type: integer
          format: int32
        governCode:
          type:
            - 'null'
            - string
        governDescription:
          type:
            - 'null'
            - string
        name:
          type:
            - 'null'
            - string
        registrationNumber:
          type:
            - 'null'
            - string
        companyId:
          type:
            - 'null'
            - integer
          format: int32
      additionalProperties: false
    Ormeo_Library_Dtos_Person_Dto:
      type: object
      properties:
        personId:
          type: integer
          format: int32
        nationalityCountryCodeAlpha2:
          type:
            - 'null'
            - string
        personalIdentityNumber:
          type:
            - 'null'
            - string
        givenName:
          type:
            - 'null'
            - string
        firstName:
          type:
            - 'null'
            - string
        middleName:
          type:
            - 'null'
            - string
        lastName:
          type:
            - 'null'
            - string
        fullName:
          type:
            - 'null'
            - string
        isProtected:
          type:
            - 'null'
            - boolean
        citizenshipCountryCode:
          type:
            - 'null'
            - string
        countryOfResidenceCode:
          type:
            - 'null'
            - string
        fallbackName:
          type:
            - 'null'
            - string
          readOnly: true
        fallbackPersonalIdentityNumber:
          type:
            - 'null'
            - string
          readOnly: true
        isMarried:
          type:
            - 'null'
            - boolean
        sex:
          $ref: '#/components/schemas/Ormeo_Library_Entities_PersonSexType'
        isCoordinationNumber:
          type:
            - 'null'
            - boolean
        birthday:
          type:
            - 'null'
            - string
        age:
          type:
            - 'null'
            - integer
          format: int32
          readOnly: true
        kivraUpdatedAt:
          type:
            - 'null'
            - string
          format: date-time
        kivra:
          type:
            - 'null'
            - boolean
        personAddress:
          type:
            - 'null'
            - array
          items:
            $ref: '#/components/schemas/Ormeo_Library_Dtos_PersonAddress_Dto'
        personEvent:
          type:
            - 'null'
            - array
          items:
            $ref: '#/components/schemas/Ormeo_Library_Dtos_PersonEvent_Dto'
        personBanPursueBusiness:
          type:
            - 'null'
            - array
          items:
            $ref: >-
              #/components/schemas/Ormeo_Library_Dtos_PersonBanPursueBusiness_Dto
        personCreditQuestion:
          type:
            - 'null'
            - array
          items:
            $ref: '#/components/schemas/Ormeo_Library_Dtos_PersonCreditQuestion_Dto'
        personIdentityNumber:
          type:
            - 'null'
            - array
          items:
            $ref: '#/components/schemas/Ormeo_Library_Dtos_PersonIdentityNumber_Dto'
      additionalProperties: false
    Ormeo_Library_Entities_PersonSexType:
      enum:
        - male
        - female
      type: string
    Ormeo_Library_Dtos_PersonAddress_Dto:
      type: object
      properties:
        personAddressId:
          type: integer
          format: int32
        personId:
          type: integer
          format: int32
        addressType:
          $ref: '#/components/schemas/Ormeo_Library_Entities_PersonAddressType'
        addressTypeDescription:
          type:
            - 'null'
            - string
          readOnly: true
        label:
          type:
            - 'null'
            - string
        houseNumber:
          type:
            - 'null'
            - string
        co:
          type:
            - 'null'
            - string
        street:
          type:
            - 'null'
            - string
        postalCode:
          type:
            - 'null'
            - string
        city:
          type:
            - 'null'
            - string
        state:
          type:
            - 'null'
            - string
        county:
          type:
            - 'null'
            - string
        district:
          type:
            - 'null'
            - string
        countryName:
          type:
            - 'null'
            - string
        countryCodeAlpha3:
          type:
            - 'null'
            - string
        locality:
          type:
            - 'null'
            - string
        localityType:
          type:
            - 'null'
            - string
        position:
          $ref: '#/components/schemas/NetTopologySuite_Geometries_Geometry'
        lastUpdatedAtUtc:
          type: string
          format: date-time
        foundAtUtc:
          type: string
          format: date-time
        companyDataSourceType:
          $ref: '#/components/schemas/Ormeo_Library_Entities_CompanyDataSourceType'
        companyDataSourceTypeDescription:
          type:
            - 'null'
            - string
          readOnly: true
        countryLocalized:
          type:
            - 'null'
            - string
          readOnly: true
        orginalLabel:
          type:
            - 'null'
            - string
        fileId:
          type:
            - 'null'
            - integer
          format: int64
        orginalAddressHash:
          type:
            - 'null'
            - string
        externalId:
          type:
            - 'null'
            - integer
          format: int32
        externalOrigin:
          $ref: '#/components/schemas/Ormeo_Library_Entities_ExternalOrigin'
        countyCode:
          type:
            - 'null'
            - string
        municipalityCode:
          type:
            - 'null'
            - string
        belagenhetsadressObjektIdentitet:
          type:
            - 'null'
            - string
          format: uuid
        lastSeenAtUtc:
          type:
            - 'null'
            - string
          format: date-time
        addressId:
          type:
            - 'null'
            - integer
          format: int32
        addressIntelligence:
          type:
            - 'null'
            - array
          items:
            $ref: '#/components/schemas/Ormeo_Library_Dtos_AddressIntelligence_Dto'
      additionalProperties: false
    Ormeo_Library_Dtos_PersonEvent_Dto:
      type: object
      properties:
        personEventId:
          type: integer
          format: int32
        personId:
          type: integer
          format: int32
        eventDate:
          type:
            - 'null'
            - string
          format: date-time
        eventType:
          $ref: '#/components/schemas/Ormeo_Library_Entities_PersonEventType'
        eventDescription:
          type:
            - 'null'
            - string
          readOnly: true
        eventMetadata:
          type:
            - 'null'
            - string
        externalId:
          type:
            - 'null'
            - integer
          format: int32
        externalOrigin:
          $ref: '#/components/schemas/Ormeo_Library_Entities_ExternalOrigin'
        lastUpdatedAtUtc:
          type: string
          format: date-time
      additionalProperties: false
    Ormeo_Library_Dtos_PersonBanPursueBusiness_Dto:
      type: object
      properties:
        personBanPursueBusinessId:
          type: integer
          format: int32
        personId:
          type: integer
          format: int32
        banCode:
          type:
            - 'null'
            - string
        courtCode:
          type:
            - 'null'
            - integer
          format: int32
        decisionDate:
          type:
            - 'null'
            - string
          format: date-time
        typeOfDecision:
          type:
            - 'null'
            - string
        decisionDateForTemporaryBan:
          type:
            - 'null'
            - string
          format: date-time
        followUpDate:
          type:
            - 'null'
            - string
          format: date-time
        banFromDate:
          type:
            - 'null'
            - string
          format: date-time
        banToDate:
          type:
            - 'null'
            - string
          format: date-time
        windedUpOperationsUntilDate:
          type:
            - 'null'
            - string
          format: date-time
        exemptionFromDate:
          type:
            - 'null'
            - string
          format: date-time
        exemptionToDate:
          type:
            - 'null'
            - string
          format: date-time
        recalledExemptionDate:
          type:
            - 'null'
            - string
          format: date-time
        repealedDate:
          type:
            - 'null'
            - string
          format: date-time
        hasCeasedDueToDeceased:
          type:
            - 'null'
            - boolean
        notes:
          type:
            - 'null'
            - string
        isRemoved:
          type:
            - 'null'
            - boolean
        companyDataSourceType:
          $ref: '#/components/schemas/Ormeo_Library_Entities_CompanyDataSourceType'
        firstSeenAtUtc:
          type:
            - 'null'
            - string
          format: date-time
        lastUpdatedAtUtc:
          type: string
          format: date-time
        fileId:
          type:
            - 'null'
            - integer
          format: int64
        externalId:
          type:
            - 'null'
            - integer
          format: int32
        externalOrigin:
          $ref: '#/components/schemas/Ormeo_Library_Entities_ExternalOrigin'
      additionalProperties: false
    Ormeo_Library_Dtos_PersonCreditQuestion_Dto:
      type: object
      properties:
        personCreditQuestionId:
          type: integer
          format: int32
        personId:
          type: integer
          format: int32
        questioner:
          type:
            - 'null'
            - string
        amount:
          type:
            - 'null'
            - number
          format: double
        iso4217CurrencyCode3:
          type:
            - 'null'
            - string
        externalId:
          type:
            - 'null'
            - integer
          format: int32
        externalOrigin:
          $ref: '#/components/schemas/Ormeo_Library_Entities_ExternalOrigin'
        firstSeenAtUtc:
          type:
            - 'null'
            - string
          format: date-time
        lastUpdatedAtUtc:
          type:
            - 'null'
            - string
          format: date-time
      additionalProperties: false
    Ormeo_Library_Dtos_PersonIdentityNumber_Dto:
      type: object
      properties:
        personIdentityNumberId:
          type: integer
          format: int32
        personId:
          type: integer
          format: int32
        personIdentityNumberType:
          $ref: '#/components/schemas/Ormeo_Library_Entities_PersonIdentityNumberType'
        personIdentityNumberTypeDescription:
          type:
            - 'null'
            - string
          readOnly: true
        personalIdentityNumber:
          type:
            - 'null'
            - string
        isBlocked:
          type:
            - 'null'
            - boolean
        companyDataSourceType:
          $ref: '#/components/schemas/Ormeo_Library_Entities_CompanyDataSourceType'
        firstSeenAtUtc:
          type:
            - 'null'
            - string
          format: date-time
        lastUpdatedAtUtc:
          type: string
          format: date-time
        fileId:
          type:
            - 'null'
            - integer
          format: int64
        externalId:
          type:
            - 'null'
            - integer
          format: int32
        externalOrigin:
          $ref: '#/components/schemas/Ormeo_Library_Entities_ExternalOrigin'
        spar_NotificationRecordId:
          type:
            - 'null'
            - integer
          format: int32
        blockedByReason:
          type:
            - 'null'
            - string
        blockedByReasonDescription:
          type:
            - 'null'
            - string
          readOnly: true
      additionalProperties: false
    Ormeo_Library_Entities_PersonAddressType:
      enum:
        - populationRegisterAddress
        - contactAddress
        - internationalAddress
        - particularAddress
        - particularInternationalAddress
        - contactInternationalAddress
      type: string
    NetTopologySuite_Geometries_Geometry:
      type: object
      properties:
        factory:
          $ref: '#/components/schemas/NetTopologySuite_Geometries_GeometryFactory'
        userData:
          type: 'null'
        srid:
          type: integer
          format: int32
        geometryType:
          type:
            - 'null'
            - string
          readOnly: true
        ogcGeometryType:
          $ref: '#/components/schemas/NetTopologySuite_Geometries_OgcGeometryType'
        precisionModel:
          $ref: '#/components/schemas/NetTopologySuite_Geometries_PrecisionModel'
        coordinate:
          $ref: '#/components/schemas/NetTopologySuite_Geometries_Coordinate'
        coordinates:
          type:
            - 'null'
            - array
          items:
            $ref: '#/components/schemas/NetTopologySuite_Geometries_Coordinate'
          readOnly: true
        numPoints:
          type: integer
          format: int32
          readOnly: true
        numGeometries:
          type: integer
          format: int32
          readOnly: true
        isSimple:
          type: boolean
          readOnly: true
        isValid:
          type: boolean
          readOnly: true
        isEmpty:
          type: boolean
          readOnly: true
        area:
          type: number
          format: double
          readOnly: true
        length:
          type: number
          format: double
          readOnly: true
        centroid:
          $ref: '#/components/schemas/NetTopologySuite_Geometries_Point'
        interiorPoint:
          $ref: '#/components/schemas/NetTopologySuite_Geometries_Point'
        pointOnSurface:
          $ref: '#/components/schemas/NetTopologySuite_Geometries_Point'
        dimension:
          $ref: '#/components/schemas/NetTopologySuite_Geometries_Dimension'
        boundary:
          $ref: '#/components/schemas/NetTopologySuite_Geometries_Geometry'
        boundaryDimension:
          $ref: '#/components/schemas/NetTopologySuite_Geometries_Dimension'
        envelope:
          $ref: '#/components/schemas/NetTopologySuite_Geometries_Geometry'
        envelopeInternal:
          $ref: '#/components/schemas/NetTopologySuite_Geometries_Envelope'
        isRectangle:
          type: boolean
          readOnly: true
      additionalProperties: false
    Ormeo_Library_Entities_CompanyDataSourceType:
      enum:
        - bolt
        - dash
        - flux
        - pixel
        - quark
        - spark
        - vector
        - cipher
        - delta
        - omega
        - nova
        - apex
        - zenith
        - pulse
        - nexus
        - helix
        - prism
        - vertex
        - ion
        - codec
        - vortex
        - matrix
        - byte
        - glitch
        - echo
        - rune
        - sync
        - axiom
        - core
        - node
        - nano
        - photon
        - orbit
        - tensor
        - kernel
        - beacon
        - crypto
        - proxy
        - lumen
        - strobe
        - neutron
        - radix
      type: string
    Ormeo_Library_Entities_ExternalOrigin:
      enum:
        - table_Bolagsverket_Notification
        - table_Stage_CompanyPersonHistory
        - table_PRV_Trademark
        - table_System_SwedishCity
        - table_FI_Company
        - table_FI_CompanyPermit
        - table_ICA_Store
        - table_Srf_Company
        - table_FAR_Member
        - table_Bolagsverket_Document
        - table_Bolagsverket_Case
        - table_SalesOrderRow
        - table_SalesOrder
        - table_System_UserValidation
        - table_System_User
        - table_User
        - table_TeamInvitation
        - table_Sweden_CourtDocument
        - table_PRV_TrademarkImage
        - table_Bolagsverket_Order
        - table_SCB_JE
        - table_SCB_AE
        - table_Bolagsverket_BeneficialOwnerNotification
        - table_TeamWatchListTrigger
        - table_SCB_Foretagsnamn
        - table_SCB_ExpImp
        - table_SCB_AstNummer
        - table_SCB_Konskvot
        - table_Company
        - table_Larmtjanst_Object
        - table_Transportstyrelsen_Person
        - table_Forsakringskassan_Claim
        - table_FI_BorsInformationReport
        - table_Skatteverket_FA_INK
        - table_Skatteverket_FA_MOMS_AG
        - table_Skatteverket_KA_PLIGG
        - table_Skatteverket_SKT_AG
        - table_Skatteverket_SKT_INK
        - table_Skatteverket_SKT_MOMS
        - table_Skatteverket_TF_ANST
        - table_SPAR_NotificationRecord
        - table_SPAR_NotificationRecordReference
        - table_Lantmateriet_InskrivningPerson
        - table_CompanyCase
        - table_Bolagsverket_BeneficialOwner
        - table_Bolagsverket_AnnualReport
        - table_SPAR_NotificationRecordRelationship
        - table_Skatteverket_Basinformation
        - table_PersonRelationship
        - table_CompanyImport
        - table_SeaweedFSFile
        - table_Sweden_CompanyAnnualReport
        - table_CompanyFinancialReport
        - table_CompanyAddress
        - table_CompanyStatus
        - table_CompanyPerson
        - table_CompanyRegistration
        - table_CompanyIntelligence
        - table_CompanyFinancialDocument
        - table_CompanyNaming
        - table_CompanyPurpose
        - table_CompanyShareCapital
        - table_CompanyRegisteredOffice
        - table_KFM_OrderToPayCase
        - table_PersonAddress
        - table_PersonName
        - table_CompanyWorkplaceAddress
        - table_Lantmateriet_InskrivningAgandeForandring
        - table_Lantmateriet_InskrivningInteckning
        - file_Bolagsverket
        - table_KFM_DebtorSummaryEntityDebt
        - table_CompanyWorkplaceCompany
        - table_CompanyDocument
        - table_FileImport
        - table_CompanyFinancialReportRegistration
        - table_Folkhalsomyndigheten_ServingPermit
        - table_CompanyFinancialReportFile
        - table_TeamCompanyDocument
        - table_Bolagsverket_RepresentativeHistory
        - table_CompanyPersonTemp
        - table_Lansstyrelsen_Decision
        - table_Kammarkollegiet_Sanktionsavgift
        - table_CompanyFinancialReportSummary
        - table_Lantmateriet_InskrivningAnteckning
        - table_Property
        - table_SwishRequest
        - external_Lantmateriet_RegisterenhetObjektIdentitet
        - table_SwishRefundResponse
        - table_LEI_Order
        - table_Bankgirot_Bankgironumber
        - table_Person
        - external_Navet
        - table_Transportstyrelsen_VehicleSummaryEvent
        - external_Bolagsverket_Case
        - table_Ria_AgentLocation
        - table_PropertyAnnualReportFile
      type: string
    Ormeo_Library_Dtos_AddressIntelligence_Dto:
      type: object
      properties:
        addressIntelligenceId:
          type: integer
          format: int32
        addressId:
          type: integer
          format: int32
        addressIntelligenceType:
          $ref: '#/components/schemas/Ormeo_Library_Entities_AddressIntelligenceType'
        addressIntelligenceTypeDescription:
          type:
            - 'null'
            - string
          readOnly: true
        addressIntelligenceSubType:
          type:
            - 'null'
            - string
        addressIntelligenceSubTypeDescription:
          type:
            - 'null'
            - string
          readOnly: true
        addressIntelligencePolicyId:
          type:
            - 'null'
            - integer
          format: int32
        notes:
          type:
            - 'null'
            - string
        notesEn:
          type:
            - 'null'
            - string
        notesSv:
          type:
            - 'null'
            - string
        score:
          type:
            - 'null'
            - integer
          format: int32
        firstSeenAtUtc:
          type:
            - 'null'
            - string
          format: date-time
        lastSeenAtUtc:
          type:
            - 'null'
            - string
          format: date-time
        lastUpdatedAtUtc:
          type: string
          format: date-time
        externalId:
          type:
            - 'null'
            - integer
          format: int32
        externalOrigin:
          $ref: '#/components/schemas/Ormeo_Library_Entities_ExternalOrigin'
        intelligenceNotesType:
          type:
            - 'null'
            - integer
          format: int32
        notesValue1:
          type:
            - 'null'
            - string
        notesValue2:
          type:
            - 'null'
            - string
        notesValue3:
          type:
            - 'null'
            - string
        notesValue4:
          type:
            - 'null'
            - string
      additionalProperties: false
    Ormeo_Library_Entities_PersonEventType:
      enum:
        - changePopulationRegisterAddress
        - changeName
        - changeContactAddress
        - deregistered
        - changeInternationalAddress
        - changeParticularAddress
        - changeParticularInternationalAddress
        - changeContactInternationalAddress
        - relationshipCreated
        - relationshipDeleted
      type: string
    Ormeo_Library_Entities_PersonIdentityNumberType:
      enum:
        - swedishPersonalIdentityNumber
        - swedishCoordinationNumber
        - swedishImmunityNumber
      type: string
    NetTopologySuite_Geometries_GeometryFactory:
      type: object
      properties:
        precisionModel:
          $ref: '#/components/schemas/NetTopologySuite_Geometries_PrecisionModel'
        coordinateSequenceFactory:
          $ref: >-
            #/components/schemas/NetTopologySuite_Geometries_CoordinateSequenceFactory
        srid:
          type: integer
          format: int32
        elevationModel:
          $ref: '#/components/schemas/NetTopologySuite_Algorithm_ElevationModel'
        geometryServices:
          $ref: '#/components/schemas/NetTopologySuite_NtsGeometryServices'
      additionalProperties: false
    NetTopologySuite_Geometries_OgcGeometryType:
      enum:
        - point
        - lineString
        - polygon
        - multiPoint
        - multiLineString
        - multiPolygon
        - geometryCollection
        - circularString
        - compoundCurve
        - curvePolygon
        - multiCurve
        - multiSurface
        - curve
        - surface
        - polyhedralSurface
        - tin
      type: string
    NetTopologySuite_Geometries_PrecisionModel:
      type: object
      properties:
        isFloating:
          type: boolean
          readOnly: true
        maximumSignificantDigits:
          type: integer
          format: int32
          readOnly: true
        scale:
          type: number
          format: double
        gridSize:
          type: number
          format: double
          readOnly: true
        precisionModelType:
          $ref: '#/components/schemas/NetTopologySuite_Geometries_PrecisionModels'
      additionalProperties: false
    NetTopologySuite_Geometries_Coordinate:
      type: object
      properties:
        x:
          type: number
          format: double
        'y':
          type: number
          format: double
        z:
          type: number
          format: double
        m:
          type: number
          format: double
        coordinateValue:
          $ref: '#/components/schemas/NetTopologySuite_Geometries_Coordinate'
        isValid:
          type: boolean
          readOnly: true
      additionalProperties: false
    NetTopologySuite_Geometries_Point:
      type: object
      properties:
        coordinateSequence:
          $ref: '#/components/schemas/NetTopologySuite_Geometries_CoordinateSequence'
        coordinates:
          type:
            - 'null'
            - array
          items:
            $ref: '#/components/schemas/NetTopologySuite_Geometries_Coordinate'
        numPoints:
          type: integer
          format: int32
          readOnly: true
        isEmpty:
          type: boolean
          readOnly: true
        dimension:
          $ref: '#/components/schemas/NetTopologySuite_Geometries_Dimension'
        boundaryDimension:
          $ref: '#/components/schemas/NetTopologySuite_Geometries_Dimension'
        x:
          type: number
          format: double
        'y':
          type: number
          format: double
        coordinate:
          $ref: '#/components/schemas/NetTopologySuite_Geometries_Coordinate'
        geometryType:
          type:
            - 'null'
            - string
          readOnly: true
        ogcGeometryType:
          $ref: '#/components/schemas/NetTopologySuite_Geometries_OgcGeometryType'
        boundary:
          $ref: '#/components/schemas/NetTopologySuite_Geometries_Geometry'
        z:
          type: number
          format: double
        m:
          type: number
          format: double
        factory:
          $ref: '#/components/schemas/NetTopologySuite_Geometries_GeometryFactory'
        userData:
          type: 'null'
        srid:
          type: integer
          format: int32
        precisionModel:
          $ref: '#/components/schemas/NetTopologySuite_Geometries_PrecisionModel'
        numGeometries:
          type: integer
          format: int32
          readOnly: true
        isSimple:
          type: boolean
          readOnly: true
        isValid:
          type: boolean
          readOnly: true
        area:
          type: number
          format: double
          readOnly: true
        length:
          type: number
          format: double
          readOnly: true
        centroid:
          $ref: '#/components/schemas/NetTopologySuite_Geometries_Point'
        interiorPoint:
          $ref: '#/components/schemas/NetTopologySuite_Geometries_Point'
        pointOnSurface:
          $ref: '#/components/schemas/NetTopologySuite_Geometries_Point'
        envelope:
          $ref: '#/components/schemas/NetTopologySuite_Geometries_Geometry'
        envelopeInternal:
          $ref: '#/components/schemas/NetTopologySuite_Geometries_Envelope'
        isRectangle:
          type: boolean
          readOnly: true
      additionalProperties: false
    NetTopologySuite_Geometries_Dimension:
      enum:
        - point
        - curve
        - a
        - collapse
        - dontcare
        - 'true'
        - 'false'
      type: string
    NetTopologySuite_Geometries_Envelope:
      type: object
      properties:
        isNull:
          type: boolean
          readOnly: true
        width:
          type: number
          format: double
          readOnly: true
        height:
          type: number
          format: double
          readOnly: true
        diameter:
          type: number
          format: double
          readOnly: true
        minX:
          type: number
          format: double
          readOnly: true
        maxX:
          type: number
          format: double
          readOnly: true
        minY:
          type: number
          format: double
          readOnly: true
        maxY:
          type: number
          format: double
          readOnly: true
        area:
          type: number
          format: double
          readOnly: true
        minExtent:
          type: number
          format: double
          readOnly: true
        maxExtent:
          type: number
          format: double
          readOnly: true
        centre:
          $ref: '#/components/schemas/NetTopologySuite_Geometries_Coordinate'
      additionalProperties: false
    Ormeo_Library_Entities_AddressIntelligenceType:
      enum:
        - unknownAddress
        - personsRegistered
        - companyBankruptcies
        - apartments
        - propertyForfeited
        - vulnerableArea
      type: string
    NetTopologySuite_Geometries_CoordinateSequenceFactory:
      type: object
      properties:
        ordinates:
          $ref: '#/components/schemas/NetTopologySuite_Geometries_Ordinates'
      additionalProperties: false
    NetTopologySuite_Algorithm_ElevationModel:
      type: object
      properties:
        extent:
          $ref: '#/components/schemas/NetTopologySuite_Geometries_Envelope'
      additionalProperties: false
    NetTopologySuite_NtsGeometryServices:
      type: object
      properties:
        geometryOverlay:
          $ref: '#/components/schemas/NetTopologySuite_Geometries_GeometryOverlay'
        geometryRelate:
          $ref: '#/components/schemas/NetTopologySuite_Geometries_GeometryRelate'
        coordinateEqualityComparer:
          $ref: >-
            #/components/schemas/NetTopologySuite_Geometries_CoordinateEqualityComparer
        defaultSRID:
          type: integer
          format: int32
          readOnly: true
        defaultCoordinateSequenceFactory:
          $ref: >-
            #/components/schemas/NetTopologySuite_Geometries_CoordinateSequenceFactory
        defaultPrecisionModel:
          $ref: '#/components/schemas/NetTopologySuite_Geometries_PrecisionModel'
        defaultElevationModel:
          $ref: '#/components/schemas/NetTopologySuite_Algorithm_ElevationModel'
      additionalProperties: false
    NetTopologySuite_Geometries_PrecisionModels:
      enum:
        - floating
        - floatingSingle
        - fixed
      type: string
    NetTopologySuite_Geometries_CoordinateSequence:
      type: object
      properties:
        dimension:
          type: integer
          format: int32
          readOnly: true
        measures:
          type: integer
          format: int32
          readOnly: true
        spatial:
          type: integer
          format: int32
          readOnly: true
        ordinates:
          $ref: '#/components/schemas/NetTopologySuite_Geometries_Ordinates'
        hasZ:
          type: boolean
          readOnly: true
        hasM:
          type: boolean
          readOnly: true
        zOrdinateIndex:
          type: integer
          format: int32
          readOnly: true
        mOrdinateIndex:
          type: integer
          format: int32
          readOnly: true
        first:
          $ref: '#/components/schemas/NetTopologySuite_Geometries_Coordinate'
        last:
          $ref: '#/components/schemas/NetTopologySuite_Geometries_Coordinate'
        count:
          type: integer
          format: int32
          readOnly: true
      additionalProperties: false
    NetTopologySuite_Geometries_Ordinates:
      enum:
        - none
        - spatial1
        - spatial2
        - xy
        - spatial3
        - xyz
        - spatial4
        - spatial5
        - spatial6
        - spatial7
        - spatial8
        - spatial9
        - spatial10
        - spatial11
        - spatial12
        - spatial13
        - spatial14
        - spatial15
        - spatial16
        - allSpatialOrdinates
        - measure1
        - xym
        - xyzm
        - measure2
        - measure3
        - measure4
        - measure5
        - measure6
        - measure7
        - measure8
        - measure9
        - measure10
        - measure11
        - measure12
        - measure13
        - measure14
        - measure15
        - measure16
        - allMeasureOrdinates
        - allOrdinates
      type: string
    NetTopologySuite_Geometries_GeometryOverlay:
      type: object
      additionalProperties: false
    NetTopologySuite_Geometries_GeometryRelate:
      type: object
      additionalProperties: false
    NetTopologySuite_Geometries_CoordinateEqualityComparer:
      type: object
      additionalProperties: false
  securitySchemes:
    ApiKey:
      type: apiKey
      name: x-api-key
      in: header

````