{
  "openapi": "3.0.4",
  "info": {
    "title": "TIC API",
    "description": "",
    "version": "v1"
  },
  "servers": [
    {
      "url": "https://api.tic.io/"
    }
  ],
  "paths": {
    "/statistics/se/bolagsverket/financial-reports/daily": {
      "get": {
        "tags": [
          "BolagsverketStatistics"
        ],
        "summary": "Bolagsverket financial reports daily statistics",
        "description": "Get statistics of registered financial reports per day at Bolagsverket",
        "operationId": "BolagsverketStatisticsReportsDaily",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_Library_Generators_Statistics_BolagsverketFinancialReportsStatistics"
                }
              }
            }
          },
          "404": {
            "description": "Not Found"
          }
        }
      }
    },
    "/statistics/se/bolagsverket/financial-reports/monthly": {
      "get": {
        "tags": [
          "BolagsverketStatistics"
        ],
        "summary": "Bolagsverket financial reports monthly statistics",
        "description": "Get statistics of registered financial reports per month at Bolagsverket",
        "operationId": "BolagsverketStatisticsReportsMonthly",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_Library_Generators_Statistics_BolagsverketFinancialReportsStatistics"
                }
              }
            }
          },
          "404": {
            "description": "Not Found"
          }
        }
      }
    },
    "/statistics/se/bolagsverket/financial-reports/discrepancies": {
      "get": {
        "tags": [
          "BolagsverketStatistics"
        ],
        "summary": "Bolagsverket financial reports software discrepancies statistics",
        "description": "Get statistics of registered financial reports and discrepancies per software year to date",
        "operationId": "BolagsverketStatisticsSoftwareDiscrepanciesYTD",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ormeo_Library_Generators_Statistics_BolagsverketFinancialReportSoftwareStatistics"
                  }
                }
              }
            }
          },
          "404": {
            "description": "Not Found"
          }
        }
      }
    },
    "/datasets/companies/{companyId}": {
      "get": {
        "tags": [
          "Companies"
        ],
        "summary": "Summary",
        "description": "Gets a summary of the company by it's id",
        "operationId": "CompanySummary",
        "parameters": [
          {
            "name": "companyId",
            "in": "path",
            "description": "The company id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "The search response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_TypesenseCompanyDocument"
                }
              }
            }
          }
        }
      }
    },
    "/datasets/companies/{companyId}/financial-summary": {
      "get": {
        "tags": [
          "Companies"
        ],
        "summary": "Financial summary",
        "description": "Gets financial summary of the company by it's id",
        "operationId": "FinancialSummary",
        "parameters": [
          {
            "name": "companyId",
            "in": "path",
            "description": "The company id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Company_CompanyFinancialSummary_Dto"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/datasets/companies/{companyId}/intelligence": {
      "get": {
        "tags": [
          "Companies"
        ],
        "summary": "Intelligence",
        "description": "Gets intelligence records of the company by it's id",
        "operationId": "Intelligence",
        "parameters": [
          {
            "name": "companyId",
            "in": "path",
            "description": "The company id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Company_CompanyIntelligence_Dto"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/datasets/companies/{companyId}/has-ownership-in": {
      "get": {
        "tags": [
          "Companies"
        ],
        "summary": "Ownerships",
        "description": "Get companies that the company has ownership in",
        "operationId": "CompanyHasOwnerships",
        "parameters": [
          {
            "name": "companyId",
            "in": "path",
            "description": "The company id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ormeo_Library_Entities_DTO_SE_CompanySummary"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/datasets/companies/{companyId}/bank-accounts": {
      "get": {
        "tags": [
          "Companies"
        ],
        "summary": "Bank accounts",
        "description": "Get associated bank accounts of the company by it's id",
        "operationId": "CompanyBankAccounts",
        "parameters": [
          {
            "name": "companyId",
            "in": "path",
            "description": "The company id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Company_CompanyBankAccount_Dto"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/datasets/companies/{companyId}/share-register": {
      "get": {
        "tags": [
          "Companies"
        ],
        "summary": "Share register",
        "description": "Gets whats known about the companys share register.",
        "operationId": "CompanyShareRegister",
        "parameters": [
          {
            "name": "companyId",
            "in": "path",
            "description": "The company id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Company_CompanyShareRegister_Dto"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/datasets/companies/{companyId}/purpose": {
      "get": {
        "tags": [
          "Companies"
        ],
        "summary": "Purposes",
        "description": "Gets the purposes of the company",
        "operationId": "CompanyPurpose",
        "parameters": [
          {
            "name": "companyId",
            "in": "path",
            "description": "The company id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Company_CompanyPurpose_Dto"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/datasets/companies/{companyId}/hyperlinks": {
      "get": {
        "tags": [
          "Companies"
        ],
        "summary": "Hyperlinks",
        "description": "Get associated hyperlinks to the business",
        "operationId": "CompanyHyperlinks",
        "parameters": [
          {
            "name": "companyId",
            "in": "path",
            "description": "The company id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Company_CompanyHyperlink_Dto"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/datasets/companies/{companyId}/names": {
      "get": {
        "tags": [
          "Companies"
        ],
        "summary": "Names",
        "description": "Gets the names of the company",
        "operationId": "CompanyNames",
        "parameters": [
          {
            "name": "companyId",
            "in": "path",
            "description": "The company id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Company_CompanyName_Dto"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/datasets/companies/{companyId}/phone-numbers": {
      "get": {
        "tags": [
          "Companies"
        ],
        "summary": "Phonenumbers",
        "description": "Gets the phone numbers of the company",
        "operationId": "CompanyPhonenumbers",
        "parameters": [
          {
            "name": "companyId",
            "in": "path",
            "description": "The company id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Company_CompanyPhoneNumber_Dto"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/datasets/companies/{companyId}/email-addresses": {
      "get": {
        "tags": [
          "Companies"
        ],
        "summary": "Email",
        "description": "Gets the email addresses of the company",
        "operationId": "CompanyEmail",
        "parameters": [
          {
            "name": "companyId",
            "in": "path",
            "description": "The company id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Company_CompanyEmail_Dto"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/datasets/companies/{companyId}/signatories": {
      "get": {
        "tags": [
          "Companies"
        ],
        "summary": "Signatories",
        "description": "Gets the company signatories",
        "operationId": "CompanySignatories",
        "parameters": [
          {
            "name": "companyId",
            "in": "path",
            "description": "The company id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Company_CompanySignatory_Dto"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/datasets/companies/{companyId}/share-issue": {
      "get": {
        "tags": [
          "Companies"
        ],
        "summary": "Share issue",
        "description": "Gets the company share issues",
        "operationId": "CompanyShareIssue",
        "parameters": [
          {
            "name": "companyId",
            "in": "path",
            "description": "The company id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Company_CompanyShareIssue_Dto"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/datasets/companies/{companyId}/bonus-issue": {
      "get": {
        "tags": [
          "Companies"
        ],
        "summary": "Bonus issue",
        "description": "Gets the company bonus issues",
        "operationId": "CompanyBonusIssue",
        "parameters": [
          {
            "name": "companyId",
            "in": "path",
            "description": "The company id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Company_CompanyBonusIssue_Dto"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/datasets/companies/{companyId}/authorizations": {
      "get": {
        "tags": [
          "Companies"
        ],
        "summary": "Authorizations",
        "description": "Gets the authorizations",
        "operationId": "CompanyBonusIssue",
        "parameters": [
          {
            "name": "companyId",
            "in": "path",
            "description": "The company id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Company_CompanyAuthorization_Dto"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/datasets/companies/{companyId}/documents": {
      "get": {
        "tags": [
          "Companies"
        ],
        "summary": "Public documents",
        "description": "Gets documents associated with the company",
        "operationId": "CompanyPublicDocuments",
        "parameters": [
          {
            "name": "companyId",
            "in": "path",
            "description": "The company id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Company_CompanyDocument_Dto"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/datasets/companies/{companyId}/share-capital": {
      "get": {
        "tags": [
          "Companies"
        ],
        "summary": "Share capital",
        "description": "Gets the share capital of the company",
        "operationId": "CompanyShareCapital",
        "parameters": [
          {
            "name": "companyId",
            "in": "path",
            "description": "The company id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Company_CompanyShareCapital_Dto"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/datasets/companies/{companyId}/share-class": {
      "get": {
        "tags": [
          "Companies"
        ],
        "summary": "Share class",
        "description": "Gets the share classes of the company",
        "operationId": "CompanyShareClass",
        "parameters": [
          {
            "name": "companyId",
            "in": "path",
            "description": "The company id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Company_CompanyShareClass_Dto"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/datasets/companies/{companyId}/trademarks": {
      "get": {
        "tags": [
          "Companies"
        ],
        "summary": "Trademarks",
        "description": "Gets trademarks registered to the company",
        "operationId": "CompanyTrademarks",
        "parameters": [
          {
            "name": "companyId",
            "in": "path",
            "description": "The company id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Company_CompanyTrademark_Dto"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/datasets/companies/{companyId}/addresses": {
      "get": {
        "tags": [
          "Companies"
        ],
        "summary": "Addresses",
        "description": "Lists all known addresses of a company",
        "operationId": "CompanyAddresses",
        "parameters": [
          {
            "name": "companyId",
            "in": "path",
            "description": "The company id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Company_CompanyAddress_Dto"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/datasets/companies/{companyId}/registered-offices": {
      "get": {
        "tags": [
          "Companies"
        ],
        "summary": "Registered offices",
        "description": "Lists all registered offices addresses of a company",
        "operationId": "CompanyRegisteredOffices",
        "parameters": [
          {
            "name": "companyId",
            "in": "path",
            "description": "The company id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Company_CompanyRegisteredOffice_Dto"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/datasets/companies/{companyId}/status": {
      "get": {
        "tags": [
          "Companies"
        ],
        "summary": "Status",
        "description": "Gets the status of the company",
        "operationId": "CompanyStatus",
        "parameters": [
          {
            "name": "companyId",
            "in": "path",
            "description": "The company id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Company_CompanyStatus_Dto"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/datasets/companies/{companyId}/registration": {
      "get": {
        "tags": [
          "Companies"
        ],
        "summary": "Registration",
        "description": "Gets VAT, Payroll, Tax and other registrations",
        "operationId": "CompanyRegistration",
        "parameters": [
          {
            "name": "companyId",
            "in": "path",
            "description": "The company id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Company_CompanyRegistration_Dto"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/datasets/companies/{companyId}/domains": {
      "get": {
        "tags": [
          "Companies"
        ],
        "summary": "Domains",
        "description": "Lists all domains associated with a company",
        "operationId": "CompanyDomains",
        "parameters": [
          {
            "name": "companyId",
            "in": "path",
            "description": "The company id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Company_CompanyDomain_Dto"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/datasets/companies/{companyId}/parties": {
      "get": {
        "tags": [
          "Companies"
        ],
        "summary": "Parties",
        "description": "Lists all known parties which includes board members",
        "operationId": "CompanyParties",
        "parameters": [
          {
            "name": "companyId",
            "in": "path",
            "description": "The company id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Company_CompanyPerson_Dto"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/datasets/companies/{companyId}/financial-reports": {
      "get": {
        "tags": [
          "Companies"
        ],
        "summary": "Financial reports table",
        "description": "Retrieves all or specific financial report for period in a table format suited for simple visualization. If no language code is specificed Swedish is assumed.",
        "operationId": "CompanyFinancialReports",
        "parameters": [
          {
            "name": "companyId",
            "in": "path",
            "description": "The company id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "iso639_2_LanguageCode",
            "in": "query",
            "description": "The language code of the annual report",
            "schema": {
              "type": "string",
              "default": "sv"
            }
          },
          {
            "name": "annualReportPeriod",
            "in": "query",
            "description": "Supply if you want to receive only a specific period as entered as YYYYMM",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_Library_Models_SE_SE_CompanyAnnualReportsTableAll"
                }
              }
            }
          },
          "404": {
            "description": "Not Found"
          }
        }
      }
    },
    "/datasets/companies/{companyId}/financial-reports2": {
      "get": {
        "tags": [
          "Companies"
        ],
        "summary": "Financial reports",
        "description": "Retrieves all or specific financial report for period in a json object format suited for processing applications. Uses json properties common known on local market.",
        "operationId": "CompanyFinancialReports2",
        "parameters": [
          {
            "name": "companyId",
            "in": "path",
            "description": "The company id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "annualReportPeriod",
            "in": "query",
            "description": "Supply if you want to receive only a specific period as entered as YYYYMM",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_Library_Models_SE_SE_CompanyAnnualReportsAll"
                }
              }
            }
          },
          "404": {
            "description": "Not Found"
          }
        }
      }
    },
    "/datasets/companies/{companyId}/workplaces": {
      "get": {
        "tags": [
          "Companies"
        ],
        "summary": "Workplace summary",
        "description": "Gets a summary of the companys workplaces",
        "operationId": "CompanyWorkplaceSummary",
        "parameters": [
          {
            "name": "companyId",
            "in": "path",
            "description": "The id of the company",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "lastItemId",
            "in": "query",
            "description": "Take records after the id",
            "schema": {
              "type": "integer",
              "format": "int32",
              "default": 0
            }
          },
          {
            "name": "pageSize",
            "in": "query",
            "description": "Page size",
            "schema": {
              "type": "integer",
              "format": "int32",
              "default": 100
            }
          }
        ],
        "responses": {
          "200": {
            "description": "The search response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_TypesenseCompanyWorkplace"
                }
              }
            }
          }
        }
      }
    },
    "/datasets/companies/{companyId}/graph": {
      "get": {
        "tags": [
          "Companies"
        ],
        "summary": "Graph",
        "description": "Returns a graph with companies, optional beneficial owners and persons",
        "operationId": "CompanyGraph",
        "parameters": [
          {
            "name": "companyId",
            "in": "path",
            "description": "The company id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "includeBeneficialOwner",
            "in": "query",
            "description": "Include or exclude beneficial owner",
            "schema": {
              "type": "boolean",
              "default": true
            }
          },
          {
            "name": "limitMaxRoleInCompanies",
            "in": "query",
            "description": "Exclude nodes when person has more than the set number of maximum roles",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "maxTotalNodes",
            "in": "query",
            "description": "Max total nodes",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32",
              "default": 10000
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_Library_Memgraph_ORB_ORBGraph"
                }
              }
            }
          }
        }
      }
    },
    "/datasets/companies/{companyId}/tree": {
      "get": {
        "tags": [
          "Companies"
        ],
        "summary": "Ownership tree",
        "description": "Retrieves a tree representing the group of companies",
        "operationId": "CompanyTree",
        "parameters": [
          {
            "name": "companyId",
            "in": "path",
            "description": "The company id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_Library_Dtos_CompanyTree_Dto"
                }
              }
            }
          },
          "404": {
            "description": "Not Found"
          }
        }
      }
    },
    "/datasets/companies/{companyId}/financial-report-summaries": {
      "get": {
        "tags": [
          "Companies"
        ],
        "summary": "Financial report summaries",
        "description": "Gets a summary of registered financial reports and their metadata",
        "operationId": "CompanyFinancialReportSummary",
        "parameters": [
          {
            "name": "companyId",
            "in": "path",
            "description": "The company id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ormeo_Library_Dtos_CompanyFinancialReportSummary2_Dto"
                  }
                }
              }
            }
          },
          "404": {
            "description": "Not Found"
          }
        }
      }
    },
    "/datasets/companies/{companyId}/financial-report-summaries/{financialReportSummaryId}/files": {
      "get": {
        "tags": [
          "Companies"
        ],
        "summary": "Financial report files",
        "description": "Gets all files available for a financial report summary",
        "operationId": "CompanyFinancialReportFiles",
        "parameters": [
          {
            "name": "companyId",
            "in": "path",
            "description": "The company id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "financialReportSummaryId",
            "in": "path",
            "description": "The financial report summary id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ormeo_Library_Dtos_CompanyFinancialReportFile2_Dto"
                  }
                }
              }
            }
          },
          "404": {
            "description": "Not Found"
          }
        }
      }
    },
    "/datasets/companies/{companyId}/financial-report-summaries/{financialReportSummaryId}/files/{financialReportFileId}": {
      "get": {
        "tags": [
          "Companies"
        ],
        "summary": "Financial report file",
        "description": "Gets the file for the financial report summary",
        "operationId": "CompanyFinancialReportFile",
        "parameters": [
          {
            "name": "companyId",
            "in": "path",
            "description": "The company id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "financialReportSummaryId",
            "in": "path",
            "description": "The financial report summary id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "financialReportFileId",
            "in": "path",
            "description": "The financial report file id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          },
          "404": {
            "description": "Not Found"
          }
        }
      }
    },
    "/datasets/companies/{companyId}/credit-score": {
      "get": {
        "tags": [
          "Companies"
        ],
        "summary": "Credit Score",
        "description": "Gets details information about the credit score for the company",
        "operationId": "CompanyCreditScore",
        "parameters": [
          {
            "name": "companyId",
            "in": "path",
            "description": "The company id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Company_CompanyCreditScore_Dto"
                }
              }
            }
          }
        }
      }
    },
    "/datasets/companies/{companyId}/credit-report": {
      "post": {
        "tags": [
          "Companies"
        ],
        "summary": "Credit Report",
        "description": "Get a full credit report hosted on a temporary URL",
        "operationId": "CompanyCreditReport",
        "parameters": [
          {
            "name": "companyId",
            "in": "path",
            "description": "The company id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "requestBody": {
          "description": "The payload",
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Company_CompanyCreditReportCreate_Dto"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Company_CompanyCreditReportCreate_Dto"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Company_CompanyCreditReportCreate_Dto"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Company_CompanyCreditReportCreate_Dto"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Company_CompanyCreditReport_Dto"
                }
              }
            }
          }
        }
      }
    },
    "/datasets/companies/{companyId}/se/debtor-summary": {
      "get": {
        "tags": [
          "Companies_SE_"
        ],
        "summary": "Debtor summary",
        "description": "Get the most recent summary of debtor record of payment applications, non payment and debt balance",
        "operationId": "CompanyMostRecentDebtorSummary",
        "parameters": [
          {
            "name": "companyId",
            "in": "path",
            "description": "The id of the company",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "The search response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_Library_KFM_KFM_MostRecentDebtorSummary_Dto"
                }
              }
            }
          }
        }
      }
    },
    "/datasets/companies/{companyId}/se/payroll": {
      "get": {
        "tags": [
          "Companies_SE_"
        ],
        "summary": "Payrolls",
        "description": "Gets any historic known payrolls and includes a summary for each financial year",
        "operationId": "CompanyPayrolls",
        "parameters": [
          {
            "name": "companyId",
            "in": "path",
            "description": "The company id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Company_CompanyPayroll_Dto"
                }
              }
            }
          }
        }
      }
    },
    "/datasets/companies/{companyId}/se/salary-contributions": {
      "get": {
        "tags": [
          "Companies_SE_"
        ],
        "summary": "Salary contributions",
        "description": "Lists contributions from Swedish employment service for the company",
        "operationId": "CompanySalaryContributions",
        "parameters": [
          {
            "name": "companyId",
            "in": "path",
            "description": "The company id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ormeo_Library_Dtos_AF_SalaryContribution_Dto"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/datasets/companies/{companyId}/se/contributions-employement-service": {
      "get": {
        "tags": [
          "Companies_SE_"
        ],
        "summary": "Employee contributions",
        "description": "Lists contributions from Swedish employment service for the company",
        "operationId": "CompanyEmployeeContributions",
        "parameters": [
          {
            "name": "companyId",
            "in": "path",
            "description": "The company id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Company_CompanyContributionsEmployementService_Dto"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/datasets/companies/{companyId}/se/bankgironumbers": {
      "get": {
        "tags": [
          "Companies_SE_"
        ],
        "summary": "Bankgironumbers",
        "description": "Lists bankgironumbers belonging to the company",
        "operationId": "CompanySalaryContributions",
        "parameters": [
          {
            "name": "companyId",
            "in": "path",
            "description": "The company id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ormeo_Library_Dtos_Bankgirot_Bankgironumber_Dto"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/datasets/companies/{companyId}/se/sni": {
      "get": {
        "tags": [
          "Companies_SE_"
        ],
        "summary": "SNI codes",
        "description": "Get the companys industry codes as per Swedish Standard Industrial Classification (SNI)",
        "operationId": "CompanySNICodes",
        "parameters": [
          {
            "name": "companyId",
            "in": "path",
            "description": "The company id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Company_CompanySNI_Dto"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/datasets/companies/{companyId}/se/business-mortgages": {
      "get": {
        "tags": [
          "Companies_SE_"
        ],
        "summary": "Business mortgages",
        "description": "Get the companys business mortgages",
        "operationId": "CompanyBusinessMortgage",
        "parameters": [
          {
            "name": "companyId",
            "in": "path",
            "description": "The company id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ormeo_Library_Views_View_Bolagsverket_FIREG1"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/datasets/companies/{companyId}/se/beneficial-owners": {
      "get": {
        "tags": [
          "Companies_SE_"
        ],
        "summary": "Beneficial owners",
        "description": "Gets current and historic beneficial owner records and any exempts from registration of beneficial owners",
        "operationId": "CompanyBeneficialOwners",
        "parameters": [
          {
            "name": "companyId",
            "in": "path",
            "description": "The company id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Company_CompanyBeneficialOwnerSv_Dto"
                }
              }
            }
          }
        }
      }
    },
    "/datasets/companies/{companyId}/se/properties": {
      "get": {
        "tags": [
          "Companies_SE_"
        ],
        "summary": "Properties",
        "description": "Get the companys properties",
        "operationId": "CompanyProperties",
        "parameters": [
          {
            "name": "companyId",
            "in": "path",
            "description": "The company id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "includeOnlyCurrentOwnership",
            "in": "query",
            "description": "Include only current ownership",
            "schema": {
              "type": "boolean",
              "default": true
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ormeo_Library_Views_View_FastigheterAgande"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/datasets/companies/{companyId}/se/vehicles": {
      "get": {
        "tags": [
          "Companies_SE_"
        ],
        "summary": "Vehicles",
        "description": "Retrieves current vehicles the company owns or is a user of",
        "operationId": "CompanyVehicles",
        "parameters": [
          {
            "name": "companyId",
            "in": "path",
            "description": "The company id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "pageNumber",
            "in": "query",
            "description": "The page number to return",
            "schema": {
              "type": "integer",
              "format": "int32",
              "default": 1
            }
          },
          {
            "name": "pageSize",
            "in": "query",
            "description": "The number of records per page",
            "schema": {
              "type": "integer",
              "format": "int32",
              "default": 100
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_TypesenseTransportstyrelsenDocumentTypesenseMultiSearchResponse"
                }
              }
            }
          },
          "404": {
            "description": "Not Found"
          }
        }
      }
    },
    "/datasets/companies/{companyId}/se/vehicles-history-owner": {
      "get": {
        "tags": [
          "Companies_SE_"
        ],
        "summary": "Vehicles history",
        "description": "Retrieves historic vehicles the company owned or was a user of",
        "operationId": "CompanyVehiclesHistory",
        "parameters": [
          {
            "name": "companyId",
            "in": "path",
            "description": "The company id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ormeo_Library_Dtos_VehicleHistoryOwner_Dto"
                  }
                }
              }
            }
          },
          "404": {
            "description": "Not Found"
          }
        }
      }
    },
    "/datasets/companies/{companyId}/se/temporary-tax-payment-respite": {
      "get": {
        "tags": [
          "Companies_SE_"
        ],
        "summary": "Tax respite",
        "description": "Retrieves historic and current temporary payment tax respite",
        "operationId": "CompanyTemporaryTaxRespite",
        "parameters": [
          {
            "name": "companyId",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Skatteverket_TF_ANST_Dto"
                  }
                }
              },
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Skatteverket_TF_ANST_Dto"
                  }
                }
              },
              "text/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Skatteverket_TF_ANST_Dto"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/document-delivery/{deliveryId}": {
      "get": {
        "tags": [
          "DocumentDelivery"
        ],
        "summary": "Download or view the document",
        "description": "Download or view the document by it's format",
        "operationId": "DownloadDocumentForDeliveryAsync",
        "parameters": [
          {
            "name": "deliveryId",
            "in": "path",
            "description": "The document delivery id",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          },
          {
            "name": "inline",
            "in": "query",
            "description": "Set to true to get an inline file rendered in the browser",
            "schema": {
              "type": "boolean",
              "default": true
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/datasets/european-commission/participant-register": {
      "get": {
        "tags": [
          "EuropeanCommission"
        ],
        "summary": "Search participants",
        "description": "Search for participants in the register",
        "operationId": "ECSearchParticipants",
        "parameters": [
          {
            "name": "query",
            "in": "query",
            "description": "Registration PIC, legal or business, registration number or VAT-number, use % for wildcard",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "lastItemId",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32",
              "default": 0
            }
          },
          {
            "name": "pageSize",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32",
              "default": 100
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_EuropeanCommission_EC_Participant_DtoItemsPagination"
                }
              }
            }
          }
        }
      }
    },
    "/datasets/european-commission/participant-register/{pic}": {
      "get": {
        "tags": [
          "EuropeanCommission"
        ],
        "summary": "Details participant",
        "description": "Get details about the participant",
        "operationId": "ECDetailsParticipant",
        "parameters": [
          {
            "name": "pic",
            "in": "path",
            "description": "The participant id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_EuropeanCommission_EC_ParticipantDetail_Dto"
                }
              }
            }
          }
        }
      }
    },
    "/datasets/european-commission/participant-register/{pic}/projects": {
      "get": {
        "tags": [
          "EuropeanCommission"
        ],
        "summary": "Participant projects",
        "description": "Get the projects that the participant is involved in",
        "operationId": "ECParticipantProjects",
        "parameters": [
          {
            "name": "pic",
            "in": "path",
            "description": "The participant id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_EuropeanCommission_EC_ParticipantProject_Dto"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/datasets/european-commission/cordis-projects": {
      "get": {
        "tags": [
          "EuropeanCommission"
        ],
        "summary": "Search projects",
        "description": "Searches for CORDIS projects",
        "operationId": "ECSearchProjects",
        "parameters": [
          {
            "name": "query",
            "in": "query",
            "description": "Acronym or project id, use % for wildcard",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "lastItemId",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32",
              "default": 0
            }
          },
          {
            "name": "pageSize",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32",
              "default": 100
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_EuropeanCommission_EC_CORDIS_Project_DtoItemsPagination"
                }
              }
            }
          }
        }
      }
    },
    "/datasets/european-commission/cordis-projects/{projectId}": {
      "get": {
        "tags": [
          "EuropeanCommission"
        ],
        "summary": "Project members",
        "description": "Get's the organization members in the project",
        "operationId": "ECDetailsProjectMembers",
        "parameters": [
          {
            "name": "projectId",
            "in": "path",
            "description": "The project id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_EuropeanCommission_EC_CORDISOrganization_Dto"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/financial-documents/se/{financialDocumentReference}": {
      "get": {
        "tags": [
          "FinancialDocuments"
        ],
        "summary": "Get available financial documents",
        "description": "Get available financial documents by id",
        "operationId": "FinancialDocumentsById",
        "parameters": [
          {
            "name": "financialDocumentReference",
            "in": "path",
            "description": "The financial document reference",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Documents_CompanyFinancialDocument_Dto"
                }
              }
            }
          }
        }
      }
    },
    "/financial-documents/se/{financialDocumentReference}/metadata": {
      "get": {
        "tags": [
          "FinancialDocuments"
        ],
        "summary": "Get metadata for financial document",
        "description": "Get metadata for the financial document with id",
        "operationId": "FinancialDocumentsMetadataById",
        "parameters": [
          {
            "name": "financialDocumentReference",
            "in": "path",
            "description": "The financial document id",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Documents_CompanyFinancialDocumentMetadata_Dto"
                }
              }
            }
          }
        }
      }
    },
    "/financial-documents/se/{financialDocumentReference}/pdf": {
      "get": {
        "tags": [
          "FinancialDocuments"
        ],
        "summary": "Download or view the financial document by PDF",
        "description": "Download or view the financial document by it's id in the PDF format",
        "operationId": "FinancialDocumentReportDownloadPDF",
        "parameters": [
          {
            "name": "financialDocumentReference",
            "in": "path",
            "description": "The document reference",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "inline",
            "in": "query",
            "description": "Set to true to get an inline file rendered in the browser",
            "schema": {
              "type": "boolean",
              "default": true
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/financial-documents/se/{financialDocumentReference}/xbrl": {
      "get": {
        "tags": [
          "FinancialDocuments"
        ],
        "summary": "Download or view the financial document by XBRL",
        "description": "Download or view the financial document by it's id in the XBRL format",
        "operationId": "FinancialDocumentReportDownloadXBRL",
        "parameters": [
          {
            "name": "financialDocumentReference",
            "in": "path",
            "description": "The document reference",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "inline",
            "in": "query",
            "description": "Set to true to get an inline file rendered in the browser",
            "schema": {
              "type": "boolean",
              "default": true
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/financial-documents/se/{financialDocumentReference}/ixbrl": {
      "get": {
        "tags": [
          "FinancialDocuments"
        ],
        "summary": "Download or view the financial document by iXBRL",
        "description": "Download or view the financial document by it's id in the iXBRL format",
        "operationId": "FinancialDocumentReportDownloadiXBRL",
        "parameters": [
          {
            "name": "financialDocumentReference",
            "in": "path",
            "description": "The document reference",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "inline",
            "in": "query",
            "description": "Set to true to get an inline file rendered in the browser",
            "schema": {
              "type": "boolean",
              "default": true
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/financial-documents/se/{financialDocumentReference}/error": {
      "get": {
        "tags": [
          "FinancialDocuments"
        ],
        "summary": "Download or view the financial document by iXBRL and overlay errors",
        "description": "Download or view the financial document by it's id in the iXBRL format and overlay errors",
        "operationId": "FinancialDocumentReportDownloadiXBRLOverylayErrors",
        "parameters": [
          {
            "name": "financialDocumentReference",
            "in": "path",
            "description": "The document reference",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "inline",
            "in": "query",
            "description": "Set to true to get an inline file rendered in the browser",
            "schema": {
              "type": "boolean",
              "default": true
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/financial-documents/se/{financialDocumentReference}/audit/pdf": {
      "get": {
        "tags": [
          "FinancialDocuments"
        ],
        "summary": "Download or view the financial audit document by PDF",
        "description": "Download or view the financial audit document by it's id in the PDF format",
        "operationId": "FinancialDocumentReportDownloadAuditPDF",
        "parameters": [
          {
            "name": "financialDocumentReference",
            "in": "path",
            "description": "The document reference",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "inline",
            "in": "query",
            "description": "Set to true to get an inline file rendered in the browser",
            "schema": {
              "type": "boolean",
              "default": true
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/financial-documents/se/{financialDocumentReference}/audit/xbrl": {
      "get": {
        "tags": [
          "FinancialDocuments"
        ],
        "summary": "Download or view the financial audit document by XBRL",
        "description": "Download or view the financial audit document by it's id in the XBRL format",
        "operationId": "FinancialDocumentReportDownloadAuditXBRL",
        "parameters": [
          {
            "name": "financialDocumentReference",
            "in": "path",
            "description": "The document reference",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "inline",
            "in": "query",
            "description": "Set to true to get an inline file rendered in the browser",
            "schema": {
              "type": "boolean",
              "default": true
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/financial-documents/se/{financialDocumentReference}/audit/ixbrl": {
      "get": {
        "tags": [
          "FinancialDocuments"
        ],
        "summary": "Download or view the financial audit document by iXBRL",
        "description": "Download or view the financial audit document by it's id in the iXBRL format",
        "operationId": "FinancialDocumentReportDownloadAuditiXBRL",
        "parameters": [
          {
            "name": "financialDocumentReference",
            "in": "path",
            "description": "The document reference",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "inline",
            "in": "query",
            "description": "Set to true to get an inline file rendered in the browser",
            "schema": {
              "type": "boolean",
              "default": true
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/datasets/se/finansinspektionen/notifications": {
      "get": {
        "tags": [
          "Finansinspektionen"
        ],
        "summary": "Notifications",
        "description": "Get a list of all notifications relating to regulary changes in shareholdings",
        "operationId": "FINotifications",
        "parameters": [
          {
            "name": "lastItemId",
            "in": "query",
            "description": "Take records after the id",
            "schema": {
              "type": "integer",
              "format": "int32",
              "default": 0
            }
          },
          {
            "name": "pageSize",
            "in": "query",
            "description": "Page size",
            "schema": {
              "type": "integer",
              "format": "int32",
              "default": 100
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Sweden_Finansinspektionen_FI_Notification_DtoItemsPagination"
                }
              }
            }
          }
        }
      }
    },
    "/datasets/se/finansinspektionen/notifications-extended": {
      "get": {
        "tags": [
          "Finansinspektionen"
        ],
        "summary": "Notifications extended",
        "description": "Get a list of all notifications relating to regulary changes in shareholdings including extended data about the instruments",
        "operationId": "FINotificationsExtended",
        "parameters": [
          {
            "name": "lastItemId",
            "in": "query",
            "description": "Take records after the id",
            "schema": {
              "type": "integer",
              "format": "int32",
              "default": 0
            }
          },
          {
            "name": "pageSize",
            "in": "query",
            "description": "Page size",
            "schema": {
              "type": "integer",
              "format": "int32",
              "default": 100
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Sweden_Finansinspektionen_FI_NotificationExtended_DtoItemsPagination"
                }
              }
            }
          }
        }
      }
    },
    "/datasets/se/finansinspektionen/insider-trading": {
      "get": {
        "tags": [
          "Finansinspektionen"
        ],
        "summary": "Insider trading",
        "description": "Get a list of all insider trading events, note that transactions details can be found in a separate endpoint or you can use the extended insider-trading endpoint to get a summary.",
        "operationId": "FIInsiderTrading",
        "parameters": [
          {
            "name": "lastItemId",
            "in": "query",
            "description": "Take records after the id",
            "schema": {
              "type": "integer",
              "format": "int32",
              "default": 0
            }
          },
          {
            "name": "pageSize",
            "in": "query",
            "description": "Page size",
            "schema": {
              "type": "integer",
              "format": "int32",
              "default": 100
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Sweden_Finansinspektionen_FI_InsiderTrading_DtoItemsPagination"
                }
              }
            }
          }
        }
      }
    },
    "/datasets/se/finansinspektionen/insider-trading/{reportId}": {
      "get": {
        "tags": [
          "Finansinspektionen"
        ],
        "summary": "Insider trading details",
        "description": "Get the transactions belogning to a report",
        "operationId": "FIInsiderTradingDetails",
        "parameters": [
          {
            "name": "reportId",
            "in": "path",
            "description": "The report id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Sweden_Finansinspektionen_FI_InsiderTradingTransaction_Dto"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/datasets/se/finansinspektionen/insider-trading-extended": {
      "get": {
        "tags": [
          "Finansinspektionen"
        ],
        "summary": "Insider trading summary",
        "description": "Get a summary of all insider trading transactions including extended data about the instruments",
        "operationId": "FIInsiderTradingSummary",
        "parameters": [
          {
            "name": "lastItemId",
            "in": "query",
            "description": "Take records after the id",
            "schema": {
              "type": "integer",
              "format": "int32",
              "default": 0
            }
          },
          {
            "name": "pageSize",
            "in": "query",
            "description": "Page size",
            "schema": {
              "type": "integer",
              "format": "int32",
              "default": 100
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Sweden_Finansinspektionen_FI_InsiderTradingExtended_DtoItemsPagination"
                }
              }
            }
          }
        }
      }
    },
    "/free/health": {
      "get": {
        "tags": [
          "Free"
        ],
        "summary": "Health",
        "description": "Gets health status for our API, search and other services",
        "operationId": "Health",
        "responses": {
          "200": {
            "description": "The health response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_WebAPI_Models_External_HealthSearch_Dto"
                }
              }
            }
          }
        }
      }
    },
    "/datasets/se/ica/stores": {
      "get": {
        "tags": [
          "ICA"
        ],
        "summary": "List",
        "description": "Get a list of all ICA stores",
        "operationId": "ICAList",
        "parameters": [
          {
            "name": "lastItemId",
            "in": "query",
            "description": "Take records after the id",
            "schema": {
              "type": "integer",
              "format": "int32",
              "default": 0
            }
          },
          {
            "name": "pageSize",
            "in": "query",
            "description": "Page size",
            "schema": {
              "type": "integer",
              "format": "int32",
              "default": 10
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Sweden_ICA_ICA_Store_DtoItemsPagination"
                }
              }
            }
          }
        }
      }
    },
    "/datasets/se/ica/stores/{icaStoreId}": {
      "get": {
        "tags": [
          "ICA"
        ],
        "summary": "Details",
        "description": "Get a ICA store with the given id",
        "operationId": "ICADetails",
        "parameters": [
          {
            "name": "icaStoreId",
            "in": "path",
            "description": "The id of the ICA store",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Sweden_ICA_ICA_Store_Dto"
                }
              }
            }
          },
          "404": {
            "description": "Not Found"
          }
        }
      }
    },
    "/datasets/se/ica/stores/{icaStoreId}/notes": {
      "get": {
        "tags": [
          "ICA"
        ],
        "summary": "Notes",
        "description": "Get notes for a given ICA store id",
        "operationId": "ICANotes",
        "parameters": [
          {
            "name": "icaStoreId",
            "in": "path",
            "description": "The id of the ICA store",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Sweden_ICA_ICA_StoreNote_Dto"
                  }
                }
              }
            }
          },
          "404": {
            "description": "Not Found"
          }
        }
      }
    },
    "/datasets/se/ica/stores/{icaStoreId}/annual-reports": {
      "get": {
        "tags": [
          "ICA"
        ],
        "summary": "Annual reports",
        "description": "Retrives all or specific annual report for period. If no language code is specificed English is assumed.",
        "operationId": "ICAAnnualReports",
        "parameters": [
          {
            "name": "icaStoreId",
            "in": "path",
            "description": "The ICA store id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "iso639_2_LanguageCode",
            "in": "query",
            "description": "The language code of the annual report",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "annualReportPeriod",
            "in": "query",
            "description": "Supply if you want to receive only a specific period as entered as YYYYMM",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_Library_Models_SE_SE_CompanyAnnualReportsTableAll"
                }
              }
            }
          },
          "404": {
            "description": "Not Found"
          }
        }
      }
    },
    "/datasets/se/ica/catalog": {
      "get": {
        "tags": [
          "ICA"
        ],
        "summary": "Catalog",
        "description": "Get a list of products and item that have been seen at ICA stores.",
        "operationId": "ICACatalog",
        "parameters": [
          {
            "name": "lastItemId",
            "in": "query",
            "description": "Take records after the id",
            "schema": {
              "type": "integer",
              "format": "int32",
              "default": 0
            }
          },
          {
            "name": "pageSize",
            "in": "query",
            "description": "Page size",
            "schema": {
              "type": "integer",
              "format": "int32",
              "default": 100
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Sweden_ICA_ICA_CatalogItem_DtoItemsPagination"
                }
              }
            }
          }
        }
      }
    },
    "/statistics/se/ica/stores/{ica_storeId}": {
      "get": {
        "tags": [
          "ICAStatistics"
        ],
        "summary": "Store",
        "description": "Get condensed statistics for the store",
        "operationId": "ICAStatisticsStore",
        "parameters": [
          {
            "name": "ica_storeId",
            "in": "path",
            "description": "The ICA store id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_Library_ICA_Cache_ICAStoreDetailCache"
                }
              }
            }
          },
          "404": {
            "description": "Not Found"
          }
        }
      }
    },
    "/statistics/se/ica/stores/largest": {
      "get": {
        "tags": [
          "ICAStatistics"
        ],
        "summary": "Largest",
        "description": "Get condensed statistics for the largest stores",
        "operationId": "ICAStatisticsLargest",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ormeo_Library_ICA_Cache_ICAStoreFinancialsCache"
                  }
                }
              }
            }
          },
          "404": {
            "description": "Not Found"
          }
        }
      }
    },
    "/statistics/se/ica/stores/most-profitable": {
      "get": {
        "tags": [
          "ICAStatistics"
        ],
        "summary": "Most profitable",
        "description": "Get condensed statistics for the most profitable stores",
        "operationId": "ICAStatisticsMostProfitable",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ormeo_Library_ICA_Cache_ICAStoreFinancialsCache"
                  }
                }
              }
            }
          },
          "404": {
            "description": "Not Found"
          }
        }
      }
    },
    "/statistics/se/ica/stores/largest-extra-dividends": {
      "get": {
        "tags": [
          "ICAStatistics"
        ],
        "summary": "Extra dividends",
        "description": "Get condensed statistics for the stores with specific dividends",
        "operationId": "ICAStatisticsExtraDividends",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ormeo_Library_ICA_Cache_ICAStoreFinancialsCache"
                  }
                }
              }
            }
          },
          "404": {
            "description": "Not Found"
          }
        }
      }
    },
    "/statistics/se/ica/stores/winter-destinations": {
      "get": {
        "tags": [
          "ICAStatistics"
        ],
        "summary": "Winter destinations",
        "description": "Get condensed statistics for the stores in popular tourist winter destinations",
        "operationId": "ICAStatisticsWinterDestinations",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ormeo_Library_ICA_Cache_ICAStoreFinancialsCache"
                  }
                }
              }
            }
          },
          "404": {
            "description": "Not Found"
          }
        }
      }
    },
    "/datasets/lists/share-issues": {
      "get": {
        "tags": [
          "Lists"
        ],
        "summary": "Share issues",
        "description": "Gets a list of all shares issues",
        "operationId": "ListsShareIssues",
        "parameters": [
          {
            "name": "lastItemId",
            "in": "query",
            "description": "Take records after the id",
            "schema": {
              "type": "integer",
              "format": "int32",
              "default": 0
            }
          },
          {
            "name": "pageSize",
            "in": "query",
            "description": "Page size",
            "schema": {
              "type": "integer",
              "format": "int32",
              "default": 100
            }
          },
          {
            "name": "filterFrom",
            "in": "query",
            "description": "Filter by start timestamp",
            "schema": {
              "type": "string",
              "format": "date-time"
            }
          },
          {
            "name": "filterTo",
            "in": "query",
            "description": "Filter by end timestamp",
            "schema": {
              "type": "string",
              "format": "date-time"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Lists_ListCompanyShareIssue_DtoItemsPagination"
                }
              }
            }
          }
        }
      }
    },
    "/datasets/lists/bonus-issues": {
      "get": {
        "tags": [
          "Lists"
        ],
        "summary": "Bonus issues",
        "description": "Gets a list of all bonus issues",
        "operationId": "ListsBonusIssues",
        "parameters": [
          {
            "name": "lastItemId",
            "in": "query",
            "description": "Take records after the id",
            "schema": {
              "type": "integer",
              "format": "int32",
              "default": 0
            }
          },
          {
            "name": "pageSize",
            "in": "query",
            "description": "Page size",
            "schema": {
              "type": "integer",
              "format": "int32",
              "default": 100
            }
          },
          {
            "name": "filterFrom",
            "in": "query",
            "description": "Filter by start timestamp",
            "schema": {
              "type": "string",
              "format": "date-time"
            }
          },
          {
            "name": "filterTo",
            "in": "query",
            "description": "Filter by end timestamp",
            "schema": {
              "type": "string",
              "format": "date-time"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Company_ListCompanyBonusIssue_DtoItemsPagination"
                }
              }
            }
          }
        }
      }
    },
    "/datasets/lists/authorizations": {
      "get": {
        "tags": [
          "Lists"
        ],
        "summary": "Authorizations",
        "description": "Gets a list of all authorizations",
        "operationId": "ListsAuthorizations",
        "parameters": [
          {
            "name": "lastItemId",
            "in": "query",
            "description": "Take records after the id",
            "schema": {
              "type": "integer",
              "format": "int32",
              "default": 0
            }
          },
          {
            "name": "pageSize",
            "in": "query",
            "description": "Page size",
            "schema": {
              "type": "integer",
              "format": "int32",
              "default": 100
            }
          },
          {
            "name": "filterFrom",
            "in": "query",
            "description": "Filter by start timestamp",
            "schema": {
              "type": "string",
              "format": "date-time"
            }
          },
          {
            "name": "filterTo",
            "in": "query",
            "description": "Filter by end timestamp",
            "schema": {
              "type": "string",
              "format": "date-time"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Company_ListCompanyAuthorization_DtoItemsPagination"
                }
              }
            }
          }
        }
      }
    },
    "/media/trademarks/se/{trademarkId}": {
      "get": {
        "tags": [
          "Media"
        ],
        "summary": "Get available trademark media",
        "description": "Gets available media for trademark",
        "operationId": "TrademarkAvailableMediaSE",
        "parameters": [
          {
            "name": "trademarkId",
            "in": "path",
            "description": "The trademark id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Media_TrademarkMediaSE_dto"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/media/trademarks/se/{trademarkId}/{mediaFileFormat}": {
      "get": {
        "tags": [
          "Media"
        ],
        "summary": "Get trademark media",
        "description": "Gets the media for the trademark",
        "operationId": "GetTradeMediaSE",
        "parameters": [
          {
            "name": "trademarkId",
            "in": "path",
            "description": "The trademark id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "mediaFileFormat",
            "in": "path",
            "description": "The trademark media type",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "inline",
            "in": "query",
            "description": "Set to true to get an inline file rendered in the browser",
            "schema": {
              "type": "boolean",
              "default": true
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Media_TrademarkMediaSE_dto"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/datasets/persons": {
      "get": {
        "tags": [
          "Persons"
        ],
        "summary": "Search",
        "description": "Search for a person",
        "operationId": "PersonSearch",
        "parameters": [
          {
            "name": "query",
            "in": "query",
            "description": "Registration number or name, use % for wildcard",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "lastItemId",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32",
              "default": 0
            }
          },
          {
            "name": "pageSize",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32",
              "default": 100
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Persons_Person_DtoItemsPagination"
                }
              }
            }
          }
        }
      }
    },
    "/datasets/persons/{personId}": {
      "get": {
        "tags": [
          "Persons"
        ],
        "summary": "Details by person id",
        "description": "Gets the person by id",
        "operationId": "PersonDetails",
        "parameters": [
          {
            "name": "personId",
            "in": "path",
            "description": "The person id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Persons_Person_Dto"
                }
              }
            }
          }
        }
      }
    },
    "/datasets/persons/{personId}/companies": {
      "get": {
        "tags": [
          "Persons"
        ],
        "summary": "Companies",
        "description": "Gets a list of the companies where the person is or has been a representative of",
        "operationId": "PersonCompanies",
        "parameters": [
          {
            "name": "personId",
            "in": "path",
            "description": "The person id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "lastItemId",
            "in": "query",
            "description": "Take records after the id",
            "schema": {
              "type": "integer",
              "format": "int32",
              "default": 0
            }
          },
          {
            "name": "pageSize",
            "in": "query",
            "description": "Page size",
            "schema": {
              "type": "integer",
              "format": "int32",
              "default": 100
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Persons_PersonCompany_DtoItemsPagination"
                }
              }
            }
          }
        }
      }
    },
    "/datasets/persons/{personId}/graph": {
      "get": {
        "tags": [
          "Persons"
        ],
        "summary": "Graph",
        "description": "Returns a graph with persons, companies and optional beneficial owners",
        "operationId": "PersonGraph",
        "parameters": [
          {
            "name": "personId",
            "in": "path",
            "description": "The person id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "includeBeneficialOwner",
            "in": "query",
            "description": "Include or exclude beneficial owner",
            "schema": {
              "type": "boolean",
              "default": true
            }
          },
          {
            "name": "limitMaxRoleInCompanies",
            "in": "query",
            "description": "Exclude nodes when person has more than the set number of maximum roles",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "maxTotalNodes",
            "in": "query",
            "description": "Max total nodes",
            "schema": {
              "type": "integer",
              "format": "int32",
              "default": 10000
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_Library_Memgraph_ORB_ORBGraph"
                }
              }
            }
          }
        }
      }
    },
    "/datasets/persons/{personId}/addresses": {
      "get": {
        "tags": [
          "Persons"
        ],
        "summary": "Addresses",
        "description": "Returns a list of known addresses",
        "operationId": "PersonAddresses",
        "parameters": [
          {
            "name": "personId",
            "in": "path",
            "description": "The person id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Persons_PersonAddress_Dto"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/datasets/persons/se/{identityNumber}": {
      "get": {
        "tags": [
          "Persons_SE_"
        ],
        "summary": "Details by identity number",
        "description": "Gets the person by identity number for Swedish identities",
        "operationId": "PersonDetailsByIdentityNumber",
        "parameters": [
          {
            "name": "identityNumber",
            "in": "path",
            "description": "The person identity number",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Persons_Person_Dto"
                }
              }
            }
          }
        }
      }
    },
    "/datasets/persons/se-spar/{identityNumber}": {
      "get": {
        "tags": [
          "Persons_SE_"
        ],
        "summary": "Details with SPAR by identity number",
        "description": "Gets the person by identity number for Swedish identities",
        "operationId": "PersonSPARDetailsByIdentityNumber",
        "parameters": [
          {
            "name": "identityNumber",
            "in": "path",
            "description": "The person identity number",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "The search response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_TypesensePersonDocument"
                }
              }
            }
          }
        }
      }
    },
    "/datasets/persons/se/{personId}/beneficial-owner": {
      "get": {
        "tags": [
          "Persons_SE_"
        ],
        "summary": "Beneficial owner",
        "description": "Gets a list of companies where the person has beneficiary owner entries",
        "operationId": "PersonBeneficialOwner",
        "parameters": [
          {
            "name": "personId",
            "in": "path",
            "description": "The person id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "lastItemId",
            "in": "query",
            "description": "Take records after the id",
            "schema": {
              "type": "integer",
              "format": "int32",
              "default": 0
            }
          },
          {
            "name": "pageSize",
            "in": "query",
            "description": "Page size",
            "schema": {
              "type": "integer",
              "format": "int32",
              "default": 100
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_Library_Dtos_PersonBolagsverketBeneficialOwnerItemsPagination"
                }
              }
            }
          }
        }
      }
    },
    "/datasets/persons/se/{personId}/properties": {
      "get": {
        "tags": [
          "Persons_SE_"
        ],
        "summary": "Properties",
        "description": "Get the persons properties",
        "operationId": "PersonProperties",
        "parameters": [
          {
            "name": "personId",
            "in": "path",
            "description": "The person id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ormeo_Library_Views_View_FastigheterAgande"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/datasets/properties/se/{uuid}": {
      "get": {
        "tags": [
          "Properties_SE_"
        ],
        "summary": "Summary",
        "description": "Gets a summary of the property based on it's UUID",
        "operationId": "GetPropertySummary",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "description": "The unique identifier for the property",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "The search response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_TypesenseLantmaterietFastighetDocument"
                }
              }
            }
          }
        }
      }
    },
    "/datasets/properties/se/{uuid}/details": {
      "get": {
        "tags": [
          "Properties_SE_"
        ],
        "summary": "Details",
        "description": "Gets the details of the property based on it's UUID",
        "operationId": "GetPropertyDetails",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "description": "The unique identifier for the property",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet_Dto_Lantmateriet_Fastighet2_Dto"
                }
              }
            }
          }
        }
      }
    },
    "/datasets/properties/se/{uuid}/details-full": {
      "get": {
        "tags": [
          "Properties_SE_"
        ],
        "summary": "Details full",
        "description": "Gets the full details of the property based on it's UUID",
        "operationId": "GetPropertyDetailsFull",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "description": "The unique identifier for the property",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet_Dto_Lantmateriet_Fastighet_Dto"
                }
              }
            }
          }
        }
      }
    },
    "/datasets/properties/se/{uuid}/orthophotos": {
      "get": {
        "tags": [
          "Properties_SE_"
        ],
        "summary": "Get ortophotos by property UUID",
        "description": "Gets available ortophotos by authority UUID",
        "operationId": "GetOrthophotoByUUID",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "description": "The unique identifier for the property",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet_Dto_Lantmateriet_Orthophoto_Dto"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/datasets/properties/se/by-location": {
      "get": {
        "tags": [
          "Properties_SE_"
        ],
        "summary": "Get property by latitude and longitude (WGS84)",
        "description": "Gets the property (fastighet) containing the given WGS84 position",
        "operationId": "GetPropertyByLocation",
        "parameters": [
          {
            "name": "latitude",
            "in": "query",
            "description": "The latitude of the position (WGS84)",
            "required": true,
            "schema": {
              "type": "number",
              "format": "double"
            }
          },
          {
            "name": "longitude",
            "in": "query",
            "description": "The longitude of the position (WGS84)",
            "required": true,
            "schema": {
              "type": "number",
              "format": "double"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet_Dto_Lantmateriet_PropertyLocationLookup_Dto"
                }
              }
            }
          }
        }
      }
    },
    "/datasets/properties/se/by-location-sweref99": {
      "get": {
        "tags": [
          "Properties_SE_"
        ],
        "summary": "Get property by easting and northing (SWEREF99 TM)",
        "description": "Gets the property (fastighet) containing the given SWEREF99 TM position (SRID 3006)",
        "operationId": "GetPropertyByLocationSweref99",
        "parameters": [
          {
            "name": "easting",
            "in": "query",
            "description": "The easting (X) of the position (SWEREF99 TM, meters)",
            "required": true,
            "schema": {
              "type": "number",
              "format": "double"
            }
          },
          {
            "name": "northing",
            "in": "query",
            "description": "The northing (Y) of the position (SWEREF99 TM, meters)",
            "required": true,
            "schema": {
              "type": "number",
              "format": "double"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet_Dto_Lantmateriet_PropertyLocationLookup_Dto"
                }
              }
            }
          }
        }
      }
    },
    "/datasets/properties/se/orthophotos": {
      "get": {
        "tags": [
          "Properties_SE_"
        ],
        "summary": "Get ortophotos by latitude and longitude",
        "description": "Gets available ortophotos by latitude and longitude",
        "operationId": "GetOrthophotoByLocation",
        "parameters": [
          {
            "name": "latitude",
            "in": "query",
            "description": "The latitude of the position",
            "required": true,
            "schema": {
              "type": "number",
              "format": "double"
            }
          },
          {
            "name": "longitude",
            "in": "query",
            "description": "The longitude of the position",
            "required": true,
            "schema": {
              "type": "number",
              "format": "double"
            }
          },
          {
            "name": "bufferDistance",
            "in": "query",
            "description": "Buffer in meters",
            "schema": {
              "type": "number",
              "format": "double",
              "default": 100.0
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet_Dto_Lantmateriet_Orthophoto_Dto"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/datasets/properties/se/{uuid}/land-regulation-provisions": {
      "get": {
        "tags": [
          "Properties_SE_"
        ],
        "summary": "Get land regulation provisions",
        "description": "Gets the land regulation provisions for a property based on it's UUID",
        "operationId": "GetPropertyRegulationProvisions",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "description": "The unique identifier for the property",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "includeXml",
            "in": "query",
            "description": "Set to true if you want the raw XML to be included",
            "schema": {
              "type": "boolean",
              "default": false
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_MarkreglerandeBestammelse_Schemas_MarkreglerandeBestammelseResponseTypePropertyDirectOrder"
                }
              }
            }
          }
        }
      }
    },
    "/datasets/properties/se/{uuid}/rights": {
      "get": {
        "tags": [
          "Properties_SE_"
        ],
        "summary": "Get property rights",
        "description": "Gets the property rights for a property based on it's UUID",
        "operationId": "GetPropertyRights",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "description": "The unique identifier for the property",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "includeXml",
            "in": "query",
            "description": "Set to true if you want the raw XML to be included",
            "schema": {
              "type": "boolean",
              "default": false
            }
          },
          {
            "name": "includeData",
            "in": "query",
            "description": "Specify if you only want partial information use comma basinformation,atgard,rattsforhallande,historik,geometri,total (default)",
            "schema": {
              "type": "string",
              "default": "total"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Rattighet_Schemas_RattighetResponseTypePropertyDirectOrder"
                }
              }
            }
          }
        }
      }
    },
    "/datasets/properties/se/{uuid}/all-owners": {
      "get": {
        "tags": [
          "Properties_SE_"
        ],
        "summary": "Get all current historic property owners",
        "description": "Gets all current and historic property owners based on it's UUID",
        "operationId": "GetPropertyOwnersAll",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "description": "The unique identifier for the property",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "includeXml",
            "in": "query",
            "description": "Set to true if you want the raw XML to be included",
            "schema": {
              "type": "boolean",
              "default": false
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_InskrivningResponseTypePropertyDirectOrder"
                }
              }
            }
          }
        }
      }
    },
    "/datasets/se/pts/portings": {
      "get": {
        "tags": [
          "PTSPortings"
        ],
        "summary": "Portings",
        "description": "Get a list all historic portings to a number",
        "operationId": "GetPortings",
        "parameters": [
          {
            "name": "e164PhoneNumber",
            "in": "query",
            "description": "Phone number in E.164 international format",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Sweden_PTSPortings_PTSPorting"
                }
              }
            }
          }
        }
      }
    },
    "/reseller/customers": {
      "post": {
        "tags": [
          "Reseller"
        ],
        "summary": "Create customer",
        "description": "Creates a new customer for reseller",
        "operationId": "ResellerCreateCustomer",
        "parameters": [
          {
            "name": "isTest",
            "in": "query",
            "description": "Set flag to true if you don't want to create the actual customer",
            "schema": {
              "type": "boolean",
              "default": false
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Resellers_CreateCustomerRequest_Dto"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Resellers_CreateCustomerRequest_Dto"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Resellers_CreateCustomerRequest_Dto"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Resellers_CreateCustomerRequest_Dto"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Resellers_CreateCustomerResponse_Dto"
                }
              }
            }
          }
        }
      },
      "get": {
        "tags": [
          "Reseller"
        ],
        "summary": "Get customers",
        "description": "Get the resellers customers",
        "operationId": "ResellerCustomers",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Reseller_ResellerCustomer_Dto"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/search/companies/bankruptcies/se": {
      "get": {
        "tags": [
          "SearchBankruptciesReports"
        ],
        "summary": "Search for bankruptcies since 1979 in Sweden",
        "description": "Search bankruptcies in our lightning-fast memory database",
        "operationId": "SearchCompaniesBankruptciesSweden",
        "parameters": [
          {
            "name": "q",
            "in": "query",
            "description": "The query string use * for all",
            "required": true,
            "schema": {
              "minLength": 1,
              "type": "string"
            }
          },
          {
            "name": "query_by",
            "in": "query",
            "description": "Query by field, for supported fields see documentation",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter_by",
            "in": "query",
            "description": "Filter by, for supported fields see documentation",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "sort_by",
            "in": "query",
            "description": "Sort by, for supported fields see documentation",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "view",
            "in": "query",
            "description": "Set to html if you want to render the search result to webpage",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "The search response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_TypesenseCompanyBankruptcyDocumentTypesenseSearchResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "tags": [
          "SearchBankruptciesReports"
        ],
        "summary": "Search for bankruptcies since 1979 in Sweden",
        "description": "Multi search enables to carry out multiple search requests in a single request",
        "operationId": "SearchCompaniesBankruptciesSwedenMulti",
        "requestBody": {
          "description": "For full documentation check https://typesense.org/docs/27.1/api/federated-multi-search.html#multi-search-parameters",
          "content": {
            "application/json-patch+json": {
              "schema": { }
            },
            "application/json": {
              "schema": { }
            },
            "text/json": {
              "schema": { }
            },
            "application/*+json": {
              "schema": { }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "The search response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_TypesenseCompanyBankruptcyDocumentTypesenseSearchResponse"
                }
              }
            }
          }
        }
      }
    },
    "/search/companies": {
      "get": {
        "tags": [
          "SearchCompanies"
        ],
        "summary": "Search companies",
        "description": "Search companies in our lightning-fast memory database",
        "operationId": "SearchCompanies",
        "parameters": [
          {
            "name": "q",
            "in": "query",
            "description": "The query string use * for all",
            "required": true,
            "schema": {
              "minLength": 1,
              "type": "string"
            }
          },
          {
            "name": "query_by",
            "in": "query",
            "description": "Query by field, for supported fields see documentation",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter_by",
            "in": "query",
            "description": "Filter by, for supported fields see documentation",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "sort_by",
            "in": "query",
            "description": "Sort by, for supported fields see documentation",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "view",
            "in": "query",
            "description": "Set to html if you want to render the search result to webpage",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "The search response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_TypesenseCompanyDocumentTypesenseSearchResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "tags": [
          "SearchCompanies"
        ],
        "summary": "Search companies multi",
        "description": "Multi search enables to carry out multiple search requests in a single request",
        "operationId": "SearchCompaniesMulti",
        "requestBody": {
          "description": "For full documentation check https://typesense.org/docs/27.1/api/federated-multi-search.html#multi-search-parameters",
          "content": {
            "application/json-patch+json": {
              "schema": { }
            },
            "application/json": {
              "schema": { }
            },
            "text/json": {
              "schema": { }
            },
            "application/*+json": {
              "schema": { }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "The search response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_TypesenseCompanyDocumentTypesenseSearchResponse"
                }
              }
            }
          }
        }
      }
    },
    "/search/companies/free": {
      "get": {
        "tags": [
          "SearchCompanies"
        ],
        "summary": "Search companies free",
        "description": "Search companies in our lightning-fast memory database",
        "operationId": "SearchCompaniesFree",
        "parameters": [
          {
            "name": "q",
            "in": "query",
            "description": "The query string use * for all",
            "required": true,
            "schema": {
              "minLength": 1,
              "type": "string"
            }
          },
          {
            "name": "query_by",
            "in": "query",
            "description": "Query by field, for supported fields see documentation",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter_by",
            "in": "query",
            "description": "Filter by, for supported fields see documentation",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "sort_by",
            "in": "query",
            "description": "Sort by, for supported fields see documentation",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "view",
            "in": "query",
            "description": "Set to html if you want to render the search result to webpage",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "The search response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_TypesenseCompanyDocumentTypesenseSearchResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "tags": [
          "SearchCompanies"
        ],
        "summary": "Search companies multi free",
        "description": "Multi search enables to carry out multiple search requests in a single request",
        "operationId": "SearchCompaniesFreeMulti",
        "requestBody": {
          "description": "For full documentation check https://typesense.org/docs/27.1/api/federated-multi-search.html#multi-search-parameters",
          "content": {
            "application/json-patch+json": {
              "schema": { }
            },
            "application/json": {
              "schema": { }
            },
            "text/json": {
              "schema": { }
            },
            "application/*+json": {
              "schema": { }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "The search response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_TypesenseCompanyDocumentTypesenseSearchResponse"
                }
              }
            }
          }
        }
      }
    },
    "/search/companies/reports/se": {
      "get": {
        "tags": [
          "SearchCompaniesReports"
        ],
        "summary": "Search text in financial reports belonging to Swedish businesses",
        "description": "Search reports in our lightning-fast memory database",
        "operationId": "SearchCompaniesReportsSweden",
        "parameters": [
          {
            "name": "q",
            "in": "query",
            "description": "The query string use * for all",
            "required": true,
            "schema": {
              "minLength": 1,
              "type": "string"
            }
          },
          {
            "name": "query_by",
            "in": "query",
            "description": "Query by field, for supported fields see documentation",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter_by",
            "in": "query",
            "description": "Filter by, for supported fields see documentation",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "sort_by",
            "in": "query",
            "description": "Sort by, for supported fields see documentation",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "view",
            "in": "query",
            "description": "Set to html if you want to render the search result to webpage",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "The search response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_TypesenseCompanyFinancialReportDocumentTypesenseSearchResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "tags": [
          "SearchCompaniesReports"
        ],
        "summary": "Search text in financial reports belonging to Swedish businesses multi",
        "description": "Multi search enables to carry out multiple search requests in a single request",
        "operationId": "SearchCompaniesReportsSwedenMulti",
        "requestBody": {
          "description": "For full documentation check https://typesense.org/docs/27.1/api/federated-multi-search.html#multi-search-parameters",
          "content": {
            "application/json-patch+json": {
              "schema": { }
            },
            "application/json": {
              "schema": { }
            },
            "text/json": {
              "schema": { }
            },
            "application/*+json": {
              "schema": { }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "The search response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_TypesenseCompanyFinancialReportDocumentTypesenseSearchResponse"
                }
              }
            }
          }
        }
      }
    },
    "/search/company-workplaces": {
      "get": {
        "tags": [
          "SearchCompanyWorkplaces"
        ],
        "summary": "Search for workplaces for companies",
        "description": "Search workplaces in our lightning-fast memory database",
        "operationId": "SearchCompanyWorkplaces",
        "parameters": [
          {
            "name": "q",
            "in": "query",
            "description": "The query string use * for all",
            "required": true,
            "schema": {
              "minLength": 1,
              "type": "string"
            }
          },
          {
            "name": "query_by",
            "in": "query",
            "description": "Query by field, for supported fields see documentation",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter_by",
            "in": "query",
            "description": "Filter by, for supported fields see documentation",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "sort_by",
            "in": "query",
            "description": "Sort by, for supported fields see documentation",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "view",
            "in": "query",
            "description": "Set to html if you want to render the search result to webpage",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "The search response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_TypesenseCompanyWorkplaceTypesenseSearchResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "tags": [
          "SearchCompanyWorkplaces"
        ],
        "summary": "Search for workplaces for companies",
        "description": "Multi search enables to carry out multiple search requests in a single request",
        "operationId": "SearchCompanyWorkplacesMulti",
        "requestBody": {
          "description": "For full documentation check https://typesense.org/docs/27.1/api/federated-multi-search.html#multi-search-parameters",
          "content": {
            "application/json-patch+json": {
              "schema": { }
            },
            "application/json": {
              "schema": { }
            },
            "text/json": {
              "schema": { }
            },
            "application/*+json": {
              "schema": { }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "The search response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_TypesenseCompanyWorkplaceTypesenseSearchResponse"
                }
              }
            }
          }
        }
      }
    },
    "/search/persons": {
      "get": {
        "tags": [
          "SearchPerson"
        ],
        "summary": "Search for persons",
        "description": "Search persons in our lightning-fast memory database",
        "operationId": "SearchPersons",
        "parameters": [
          {
            "name": "q",
            "in": "query",
            "description": "The query string use * for all",
            "required": true,
            "schema": {
              "minLength": 1,
              "type": "string"
            }
          },
          {
            "name": "query_by",
            "in": "query",
            "description": "Query by field, for supported fields see documentation",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter_by",
            "in": "query",
            "description": "Filter by, for supported fields see documentation",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "sort_by",
            "in": "query",
            "description": "Sort by, for supported fields see documentation",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "view",
            "in": "query",
            "description": "Set to html if you want to render the search result to webpage",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "The search response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_TypesensePersonDocumentTypesenseSearchResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "tags": [
          "SearchPerson"
        ],
        "summary": "Search for persons",
        "description": "Multi search enables to carry out multiple search requests in a single request",
        "operationId": "SearchPersonsMulti",
        "requestBody": {
          "description": "For full documentation check https://typesense.org/docs/27.1/api/federated-multi-search.html#multi-search-parameters",
          "content": {
            "application/json-patch+json": {
              "schema": { }
            },
            "application/json": {
              "schema": { }
            },
            "text/json": {
              "schema": { }
            },
            "application/*+json": {
              "schema": { }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "The search response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_TypesensePersonDocumentTypesenseSearchResponse"
                }
              }
            }
          }
        }
      }
    },
    "/search/properties/se": {
      "get": {
        "tags": [
          "SearchProperties_SE_"
        ],
        "summary": "Search properties",
        "description": "Search properties in our lightning-fast memory database",
        "operationId": "SearchPropertySweden",
        "parameters": [
          {
            "name": "q",
            "in": "query",
            "description": "The query string use * for all",
            "required": true,
            "schema": {
              "minLength": 1,
              "type": "string"
            }
          },
          {
            "name": "query_by",
            "in": "query",
            "description": "Query by field, for supported fields see documentation",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter_by",
            "in": "query",
            "description": "Filter by, for supported fields see documentation",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "sort_by",
            "in": "query",
            "description": "Sort by, for supported fields see documentation",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "view",
            "in": "query",
            "description": "Set to html if you want to render the search result to webpage",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "The search response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_TypesenseLantmaterietFastighetDocumentTypesenseSearchResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "tags": [
          "SearchProperties_SE_"
        ],
        "summary": "Search properties multi",
        "description": "Multi search enables to carry out multiple search requests in a single request",
        "operationId": "SearchPropertiesReportsSwedenMulti",
        "requestBody": {
          "description": "For full documentation check https://typesense.org/docs/27.1/api/federated-multi-search.html#multi-search-parameters",
          "content": {
            "application/json-patch+json": {
              "schema": { }
            },
            "application/json": {
              "schema": { }
            },
            "text/json": {
              "schema": { }
            },
            "application/*+json": {
              "schema": { }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "The search response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_TypesenseCompanyFinancialReportDocumentTypesenseSearchResponse"
                }
              }
            }
          }
        }
      }
    },
    "/search/vehicles/se": {
      "get": {
        "tags": [
          "SearchVehicles"
        ],
        "summary": "Search for vehicles in Sweden",
        "description": "Search vehicles in our lightning-fast memory database",
        "operationId": "SearchVehiclesSweden",
        "parameters": [
          {
            "name": "q",
            "in": "query",
            "description": "The query string use * for all",
            "required": true,
            "schema": {
              "minLength": 1,
              "type": "string"
            }
          },
          {
            "name": "query_by",
            "in": "query",
            "description": "Query by field, for supported fields see documentation",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter_by",
            "in": "query",
            "description": "Filter by, for supported fields see documentation",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "sort_by",
            "in": "query",
            "description": "Sort by, for supported fields see documentation",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "view",
            "in": "query",
            "description": "Set to html if you want to render the search result to webpage",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "The search response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_TypesenseTransportstyrelsenDocumentTypesenseSearchResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "tags": [
          "SearchVehicles"
        ],
        "summary": "Search for vehicles in Sweden",
        "description": "Multi search enables to carry out multiple search requests in a single request",
        "operationId": "SearchVehiclesSwedenMulti",
        "requestBody": {
          "description": "For full documentation check https://typesense.org/docs/27.1/api/federated-multi-search.html#multi-search-parameters",
          "content": {
            "application/json-patch+json": {
              "schema": { }
            },
            "application/json": {
              "schema": { }
            },
            "text/json": {
              "schema": { }
            },
            "application/*+json": {
              "schema": { }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "The search response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_TypesenseTransportstyrelsenDocumentTypesenseSearchResponse"
                }
              }
            }
          }
        }
      }
    },
    "/team-document-orders": {
      "get": {
        "tags": [
          "TeamDocumentOrders"
        ],
        "summary": "List document orders",
        "description": "Returns document orders for the authenticated team with cursor-based pagination",
        "operationId": "ListTeamDocumentOrders",
        "parameters": [
          {
            "name": "lastItemId",
            "in": "query",
            "description": "Take records after this id",
            "schema": {
              "type": "integer",
              "format": "int32",
              "default": 0
            }
          },
          {
            "name": "pageSize",
            "in": "query",
            "description": "Page size (max 100)",
            "schema": {
              "type": "integer",
              "format": "int32",
              "default": 50
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_Library_Dtos_TeamDocumentOrder_DtoItemsPagination"
                }
              }
            }
          }
        }
      }
    },
    "/team-document-orders/{orderId}/content/{contentId}": {
      "get": {
        "tags": [
          "TeamDocumentOrders"
        ],
        "summary": "Download document content",
        "description": "Download a specific file from a document order by content id",
        "operationId": "DownloadTeamDocumentOrderContent",
        "parameters": [
          {
            "name": "orderId",
            "in": "path",
            "description": "The document order id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "contentId",
            "in": "path",
            "description": "The content id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/teams/tiles/cors": {
      "get": {
        "tags": [
          "Teams"
        ],
        "summary": "Get CORS for tiles",
        "description": "Gets information about registered domains for CORS tiles",
        "operationId": "GetCORSTiles",
        "responses": {
          "200": {
            "description": "The registered domains for tiles usage",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Teams_TeamCORS_Dto"
                  }
                }
              }
            }
          }
        }
      },
      "post": {
        "tags": [
          "Teams"
        ],
        "summary": "Create CORS for tiles",
        "description": "Add a domain for CORS tiles access",
        "operationId": "CreateCORSTiles",
        "requestBody": {
          "description": "The payload",
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Teams_TeamCORSCreate_Dto"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Teams_TeamCORSCreate_Dto"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Teams_TeamCORSCreate_Dto"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Teams_TeamCORSCreate_Dto"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "The registered domains for tiles usage",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Teams_TeamCORS_Dto"
                }
              }
            }
          }
        }
      }
    },
    "/user/me": {
      "get": {
        "tags": [
          "User"
        ],
        "summary": "Me",
        "description": "Get the identity details representing the calling user",
        "operationId": "UserMe",
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/user/claims": {
      "get": {
        "tags": [
          "User"
        ],
        "summary": "Claims",
        "description": "Get the claims for the calling user",
        "operationId": "UserMeClaims",
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/datasets/vehicles/se/{vehicleId}": {
      "get": {
        "tags": [
          "Vehicles_SE_"
        ],
        "summary": "Vehicle summary",
        "description": "Get a summary of the vehicle by it's id",
        "operationId": "VehicleSummarySweden",
        "parameters": [
          {
            "name": "vehicleId",
            "in": "path",
            "description": "The id of the vehicle",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "The search response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_TypesenseTransportstyrelsenDocument"
                }
              }
            }
          }
        }
      }
    },
    "/datasets/vehicles/se/{vehicleId}/details": {
      "get": {
        "tags": [
          "Vehicles_SE_"
        ],
        "summary": "Vehicle details",
        "description": "Get all vehicle details",
        "operationId": "VehicleDetailsSweden",
        "parameters": [
          {
            "name": "vehicleId",
            "in": "path",
            "description": "The id of the vehicle",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_Library_Dtos_Transportstyrelsen_Vehicle_Dto"
                }
              }
            }
          }
        }
      }
    },
    "/datasets/vehicles/se/licence-plate/{licencePlate}": {
      "get": {
        "tags": [
          "Vehicles_SE_"
        ],
        "summary": "Vehicle licence plate",
        "description": "Get a summary of the vehicle by it's licence plate",
        "operationId": "VehicleLicencePlateSummarySweden",
        "parameters": [
          {
            "name": "licencePlate",
            "in": "path",
            "description": "The licence plate of the vehicle",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "The search response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_TypesenseTransportstyrelsenDocument"
                }
              }
            }
          }
        }
      }
    },
    "/datasets/vehicles/se/{vehicleId}/events": {
      "get": {
        "tags": [
          "Vehicles_SE_"
        ],
        "summary": "Vehicle events",
        "description": "Get all events related to a vehicle",
        "operationId": "VehicleEventsSweden",
        "parameters": [
          {
            "name": "vehicleId",
            "in": "path",
            "description": "The id of the vehicle",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Vehicle_VehicleEvent_Dto"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/datasets/vehicles/se/{vehicleId}/mileage": {
      "get": {
        "tags": [
          "Vehicles_SE_"
        ],
        "summary": "Vehicle mileage",
        "description": "Get all known mileage records for a vehicle",
        "operationId": "VehicleMileageSweden",
        "parameters": [
          {
            "name": "vehicleId",
            "in": "path",
            "description": "The id of the vehicle",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "The search response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_TypesenseTransportstyrelsenDocument"
                }
              }
            }
          }
        }
      }
    },
    "/watchlists": {
      "get": {
        "tags": [
          "WatchLists"
        ],
        "summary": "List",
        "description": "Lists all the watchlists for the team",
        "operationId": "WatchList",
        "parameters": [
          {
            "name": "query",
            "in": "query",
            "description": "Watch list or team name, use % for wildcard",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "lastItemId",
            "in": "query",
            "description": "Take records after the id",
            "schema": {
              "type": "integer",
              "format": "int32",
              "default": 0
            }
          },
          {
            "name": "pageSize",
            "in": "query",
            "description": "Page size",
            "schema": {
              "type": "integer",
              "format": "int32",
              "default": 100
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_WebAPI_Models_WatchLists_WatchList_DtoItemsPagination"
                }
              }
            }
          }
        }
      },
      "post": {
        "tags": [
          "WatchLists"
        ],
        "summary": "Create",
        "description": "Creates a new watchlist",
        "operationId": "WatchListCreate",
        "requestBody": {
          "description": "The payload",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Ormeo_WebAPI_Models_WatchLists_WatchListCreate_Dto"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "description": "Created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_WebAPI_Models_WatchLists_WatchListDetail_Dto"
                }
              }
            }
          },
          "400": {
            "description": "Bad Request"
          },
          "401": {
            "description": "Unauthorized"
          },
          "422": {
            "description": "Unprocessable Content"
          }
        }
      }
    },
    "/watchlists/{watchListId}": {
      "get": {
        "tags": [
          "WatchLists"
        ],
        "summary": "Details",
        "description": "Get watchlist by id",
        "operationId": "WatchListById",
        "parameters": [
          {
            "name": "watchListId",
            "in": "path",
            "description": "The watchlist id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_WebAPI_Models_WatchLists_WatchListDetail_Dto"
                }
              }
            }
          }
        }
      },
      "put": {
        "tags": [
          "WatchLists"
        ],
        "summary": "Edit",
        "description": "Updates an existing watchlist",
        "operationId": "WatchListEdit",
        "parameters": [
          {
            "name": "watchListId",
            "in": "path",
            "description": "The watchlist id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "requestBody": {
          "description": "The payload",
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/Ormeo_WebAPI_Models_WatchLists_WatchListEdit_Dto"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Ormeo_WebAPI_Models_WatchLists_WatchListEdit_Dto"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/Ormeo_WebAPI_Models_WatchLists_WatchListEdit_Dto"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/Ormeo_WebAPI_Models_WatchLists_WatchListEdit_Dto"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_WebAPI_Models_WatchLists_WatchListDetail_Dto"
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized"
          },
          "422": {
            "description": "Unprocessable Content"
          }
        }
      },
      "delete": {
        "tags": [
          "WatchLists"
        ],
        "summary": "Delete watchlist",
        "description": "Deletes a watchlist",
        "operationId": "WatchListDelete",
        "parameters": [
          {
            "name": "watchListId",
            "in": "path",
            "description": "The watchlist id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/watchlists/{watchListId}/members": {
      "get": {
        "tags": [
          "WatchLists"
        ],
        "summary": "List members",
        "description": "Lists all the watchlist members for the watchlist",
        "operationId": "Members",
        "parameters": [
          {
            "name": "watchListId",
            "in": "path",
            "description": "The id of the watchlist",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "lastItemId",
            "in": "query",
            "description": "Take records after the id",
            "schema": {
              "type": "integer",
              "format": "int32",
              "default": 0
            }
          },
          {
            "name": "pageSize",
            "in": "query",
            "description": "Page size",
            "schema": {
              "type": "integer",
              "format": "int32",
              "default": 100
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_WebAPI_Models_WatchLists_WatchListMember_DtoItemsPagination"
                }
              }
            }
          }
        }
      },
      "post": {
        "tags": [
          "WatchLists"
        ],
        "summary": "Add member to watchlist",
        "description": "Add a member to the watchlist",
        "operationId": "AddMemberToWatchList",
        "parameters": [
          {
            "name": "watchListId",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "requestBody": {
          "description": "The payload",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Ormeo_WebAPI_Models_WatchLists_WatchListMemberCreate_Dto"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "description": "Created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_WebAPI_Models_WatchLists_WatchListMember2_Dto"
                }
              }
            }
          },
          "400": {
            "description": "Bad Request"
          },
          "401": {
            "description": "Unauthorized"
          },
          "422": {
            "description": "Unprocessable Content"
          }
        }
      }
    },
    "/watchlists/{watchListId}/members2": {
      "post": {
        "tags": [
          "WatchLists"
        ],
        "summary": "Add multiple members to watchlist",
        "description": "Add multiple members to the watchlist",
        "operationId": "AddMemberToWatchList2",
        "parameters": [
          {
            "name": "watchListId",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "requestBody": {
          "description": "The payload",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Ormeo_WebAPI_Models_WatchLists_WatchListMemberCreate2_Dto"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "description": "Created",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ormeo_WebAPI_Models_WatchLists_WatchListMember2_Dto"
                  }
                }
              }
            }
          },
          "400": {
            "description": "Bad Request"
          },
          "401": {
            "description": "Unauthorized"
          },
          "422": {
            "description": "Unprocessable Content"
          }
        }
      }
    },
    "/watchlists/{watchListId}/members/{memberId}": {
      "get": {
        "tags": [
          "WatchLists"
        ],
        "summary": "Get member",
        "description": "Get member by id",
        "operationId": "WatchListMemberById",
        "parameters": [
          {
            "name": "watchListId",
            "in": "path",
            "description": "The watchlist id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "memberId",
            "in": "path",
            "description": "The member id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_WebAPI_Models_WatchLists_WatchListMemberDetail_Dto"
                }
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "WatchLists"
        ],
        "summary": "Delete member",
        "description": "Deletes a member",
        "operationId": "WatchListMemberDelete",
        "parameters": [
          {
            "name": "watchListId",
            "in": "path",
            "description": "The watchlist id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "memberId",
            "in": "path",
            "description": "The member id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      },
      "put": {
        "tags": [
          "WatchLists"
        ],
        "summary": "Edit",
        "description": "Updates an existing member",
        "operationId": "WatchListMemberEdit",
        "parameters": [
          {
            "name": "watchListId",
            "in": "path",
            "description": "The watchlist id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "memberId",
            "in": "path",
            "description": "The member id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "requestBody": {
          "description": "The payload",
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/Ormeo_WebAPI_Models_WatchLists_WatchListMemberEdit_Dto"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Ormeo_WebAPI_Models_WatchLists_WatchListMemberEdit_Dto"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/Ormeo_WebAPI_Models_WatchLists_WatchListMemberEdit_Dto"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/Ormeo_WebAPI_Models_WatchLists_WatchListMemberEdit_Dto"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_WebAPI_Models_WatchLists_WatchListDetail_Dto"
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized"
          },
          "422": {
            "description": "Unprocessable Content"
          }
        }
      }
    },
    "/watchlists/{watchListId}/triggers": {
      "get": {
        "tags": [
          "WatchLists"
        ],
        "summary": "List triggers",
        "description": "Lists all the triggers for the watchlist",
        "operationId": "WatchListTriggers",
        "parameters": [
          {
            "name": "watchListId",
            "in": "path",
            "description": "The id of the watchlist",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "lastItemId",
            "in": "query",
            "description": "Take records after the id",
            "schema": {
              "type": "integer",
              "format": "int32",
              "default": 0
            }
          },
          {
            "name": "pageSize",
            "in": "query",
            "description": "Page size",
            "schema": {
              "type": "integer",
              "format": "int32",
              "default": 100
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_WebAPI_Models_WatchLists_WatchListTrigger_DtoItemsPagination"
                }
              }
            }
          }
        }
      },
      "post": {
        "tags": [
          "WatchLists"
        ],
        "summary": "Add trigger to watchlist",
        "description": "Add a trigger to the watchlist",
        "operationId": "AddTriggerToWatchList",
        "parameters": [
          {
            "name": "watchListId",
            "in": "path",
            "description": "The watchlist id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "requestBody": {
          "description": "The payload",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Ormeo_WebAPI_Models_WatchLists_WatchListTriggerCreate_Dto"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "description": "Created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_WebAPI_Models_WatchLists_WatchListTriggerDetail_Dto"
                }
              }
            }
          },
          "400": {
            "description": "Bad Request"
          },
          "401": {
            "description": "Unauthorized"
          },
          "422": {
            "description": "Unprocessable Content"
          }
        }
      }
    },
    "/watchlists/{watchListId}/triggers/{triggerId}": {
      "get": {
        "tags": [
          "WatchLists"
        ],
        "summary": "Get trigger",
        "description": "Get trigger by id",
        "operationId": "WatchListTriggerById",
        "parameters": [
          {
            "name": "watchListId",
            "in": "path",
            "description": "The watchlist id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "triggerId",
            "in": "path",
            "description": "The trigger id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_WebAPI_Models_WatchLists_WatchListTriggerDetail_Dto"
                }
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "WatchLists"
        ],
        "summary": "Delete trigger",
        "description": "Deletes a trigger",
        "operationId": "WatchListTriggerDelete",
        "parameters": [
          {
            "name": "watchListId",
            "in": "path",
            "description": "The watchlist id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "triggerId",
            "in": "path",
            "description": "The trigger id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      },
      "put": {
        "tags": [
          "WatchLists"
        ],
        "summary": "Edit",
        "description": "Updates an existing trigger",
        "operationId": "WatchListTriggerEdit",
        "parameters": [
          {
            "name": "watchListId",
            "in": "path",
            "description": "The watchlist id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "triggerId",
            "in": "path",
            "description": "The trigger id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "requestBody": {
          "description": "The payload",
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/Ormeo_WebAPI_Models_WatchLists_WatchListTriggerEdit_Dto"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Ormeo_WebAPI_Models_WatchLists_WatchListTriggerEdit_Dto"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/Ormeo_WebAPI_Models_WatchLists_WatchListTriggerEdit_Dto"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/Ormeo_WebAPI_Models_WatchLists_WatchListTriggerEdit_Dto"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ormeo_WebAPI_Models_WatchLists_WatchListTriggerDetail_Dto"
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized"
          },
          "422": {
            "description": "Unprocessable Content"
          }
        }
      }
    },
    "/watchlists/{watchListId}/triggers/{triggerId}/test": {
      "post": {
        "tags": [
          "WatchLists"
        ],
        "summary": "Test a trigger",
        "description": "Test a trigger by id",
        "operationId": "WatchListTestTriggerById",
        "parameters": [
          {
            "name": "watchListId",
            "in": "path",
            "description": "The watchlist id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "triggerId",
            "in": "path",
            "description": "The trigger id",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ormeo_Library_Watchlist_WatchListMemberEvent_Dto"
                  }
                }
              }
            }
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "Ormeo_Library_Bolagsverket_Types_BolagsverketFinancialSetupForm": {
        "type": "object",
        "properties": {
          "ruleset": {
            "type": "string",
            "nullable": true
          },
          "code": {
            "type": "string",
            "nullable": true
          },
          "description": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Common_CompanyStatusListType": {
        "type": "object",
        "properties": {
          "code": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_CompanyStatusType"
          },
          "name_EN": {
            "type": "string",
            "nullable": true
          },
          "name_SE": {
            "type": "string",
            "nullable": true
          },
          "bolagsverketCode": {
            "type": "string",
            "nullable": true
          },
          "isCeased": {
            "type": "boolean",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Dtos_AF_SalaryContribution_Dto": {
        "type": "object",
        "properties": {
          "year": {
            "type": "integer",
            "format": "int32"
          },
          "period": {
            "type": "string",
            "nullable": true
          },
          "contributionType": {
            "type": "string",
            "nullable": true
          },
          "sumSEK": {
            "type": "number",
            "format": "double"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Dtos_Bankgirot_Bankgironumber_Dto": {
        "type": "object",
        "properties": {
          "companyId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "updatedAt": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "updateType": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_BankgirotUpdateType"
          },
          "bankgironumber": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "terminated": {
            "type": "boolean",
            "nullable": true
          },
          "name": {
            "type": "string",
            "nullable": true
          },
          "isTaxBankgironumber": {
            "type": "boolean",
            "nullable": true
          },
          "ocrType": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_BankgirotOCRType"
          },
          "ocrReferenceLength1": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "ocrReferenceLength2": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "addressLine1": {
            "type": "string",
            "nullable": true
          },
          "addressLine2": {
            "type": "string",
            "nullable": true
          },
          "addressLine3": {
            "type": "string",
            "nullable": true
          },
          "addressLine4": {
            "type": "string",
            "nullable": true
          },
          "addressLine5": {
            "type": "string",
            "nullable": true
          },
          "postalCode": {
            "type": "string",
            "nullable": true
          },
          "city": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Dtos_CompanyDividend_Dto": {
        "type": "object",
        "properties": {
          "companyDividendId": {
            "type": "integer",
            "format": "int32"
          },
          "companyId": {
            "type": "integer",
            "format": "int32"
          },
          "arrivalDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "accountingPeriodStart": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "accountingPeriodEnd": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "isInterimReport": {
            "type": "boolean",
            "nullable": true
          },
          "isConsolidatedAccounts": {
            "type": "boolean",
            "nullable": true
          },
          "generalMeetingDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "dividendDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "dividendType": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_DividendType"
          },
          "dividendTypeDescription": {
            "type": "string",
            "nullable": true
          },
          "dividendDescription": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "dividendAmount": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "dividendCurrencyCode": {
            "type": "string",
            "nullable": true
          },
          "firstSeenAtUtc": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time"
          },
          "caseNumber": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "caseYear": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Dtos_CompanyFinancialReportFile2_Dto": {
        "type": "object",
        "properties": {
          "companyFinancialReportFileId": {
            "type": "integer",
            "format": "int32"
          },
          "reportFileType": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_ReportFileType"
          },
          "firstSeenAtUtc": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Dtos_CompanyFinancialReportSignature_Dto": {
        "type": "object",
        "properties": {
          "companyFinancialReportSignatureId": {
            "type": "integer",
            "format": "int32"
          },
          "givenName": {
            "type": "string",
            "nullable": true
          },
          "lastName": {
            "type": "string",
            "nullable": true
          },
          "role": {
            "type": "string",
            "nullable": true
          },
          "description": {
            "type": "string",
            "nullable": true
          },
          "signatureDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Dtos_CompanyFinancialReportSummary2_Dto": {
        "type": "object",
        "properties": {
          "financialReportSummaryId": {
            "type": "integer",
            "format": "int32"
          },
          "title": {
            "type": "string",
            "nullable": true
          },
          "arrivalDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "registrationDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "periodStart": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "periodEnd": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "isInterimReport": {
            "type": "boolean",
            "nullable": true
          },
          "isConsolidatedAccounts": {
            "type": "boolean",
            "nullable": true
          },
          "isExchange": {
            "type": "boolean",
            "nullable": true
          },
          "isSustainabilityReport": {
            "type": "boolean",
            "nullable": true
          },
          "isElectronic": {
            "type": "boolean",
            "nullable": true
          },
          "ruleset": {
            "type": "string",
            "nullable": true
          },
          "setupFormCode": {
            "type": "string",
            "nullable": true
          },
          "financialSetupForm": {
            "$ref": "#/components/schemas/Ormeo_Library_Bolagsverket_Types_BolagsverketFinancialSetupForm"
          },
          "firstSeenAtUtc": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time"
          },
          "caseNumber": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "caseYear": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "software": {
            "type": "string",
            "nullable": true
          },
          "auditor": {
            "type": "string",
            "nullable": true
          },
          "companyFinancialReportFile": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Dtos_CompanyFinancialReportFile2_Dto"
            },
            "nullable": true
          },
          "companyFinancialReportSignature": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Dtos_CompanyFinancialReportSignature_Dto"
            },
            "nullable": true
          },
          "companyDividend": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Dtos_CompanyDividend_Dto"
            },
            "nullable": true
          },
          "hasFinancialReport": {
            "type": "boolean"
          },
          "hasBeenAudited": {
            "type": "boolean",
            "nullable": true
          },
          "hasAuditorRemarks": {
            "type": "boolean",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Dtos_CompanySummary_Dto": {
        "type": "object",
        "properties": {
          "companyId": {
            "type": "integer",
            "format": "int32"
          },
          "companySummaryId": {
            "type": "integer",
            "format": "int32"
          },
          "legalName": {
            "type": "string",
            "nullable": true
          },
          "purpose": {
            "type": "string",
            "nullable": true
          },
          "sniCodes": {
            "type": "string",
            "nullable": true
          },
          "sniCodes2025": {
            "type": "string",
            "nullable": true
          },
          "sniCodesList": {
            "type": "object",
            "additionalProperties": {
              "type": "string",
              "nullable": true
            },
            "nullable": true
          },
          "sniCodes2025List": {
            "type": "object",
            "additionalProperties": {
              "type": "string",
              "nullable": true
            },
            "nullable": true
          },
          "visitingAddressStreet": {
            "type": "string",
            "nullable": true
          },
          "visitingAddressPostalCode": {
            "type": "string",
            "nullable": true
          },
          "visitingAddressCity": {
            "type": "string",
            "nullable": true
          },
          "visitingAddressCountryCodeAlpha3": {
            "type": "string",
            "nullable": true
          },
          "visitingAddressPosition": {
            "type": "array",
            "items": {
              "type": "number",
              "format": "double"
            },
            "nullable": true
          },
          "isVistingAddressEmpty": {
            "type": "boolean",
            "readOnly": true
          },
          "isVisitingAddressMissing": {
            "type": "boolean",
            "readOnly": true
          },
          "visitingAddressPositionLatitude": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "visitingAddressPositionLongitude": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "mailingAddressStreet": {
            "type": "string",
            "nullable": true
          },
          "mailingAddressPostalCode": {
            "type": "string",
            "nullable": true
          },
          "mailingAddressCity": {
            "type": "string",
            "nullable": true
          },
          "mailingAddressCountryCodeAlpha3": {
            "type": "string",
            "nullable": true
          },
          "isMailingAddressEmpty": {
            "type": "boolean",
            "readOnly": true
          },
          "isMailingAddressMissing": {
            "type": "boolean",
            "readOnly": true
          },
          "mailingAddressPosition": {
            "type": "array",
            "items": {
              "type": "number",
              "format": "double"
            },
            "nullable": true
          },
          "mailingAddressPositionLatitude": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "mailingAddressPositionLongitude": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "numberOfWorkplaces": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "registeredOfficeMunicipalityCode": {
            "type": "string",
            "nullable": true
          },
          "registeredOfficeCountyCode": {
            "type": "string",
            "nullable": true
          },
          "registeredVAT": {
            "type": "boolean",
            "nullable": true
          },
          "registeredFTax": {
            "type": "boolean",
            "nullable": true
          },
          "registeredPayroll": {
            "type": "boolean",
            "nullable": true
          },
          "scB_NumberOfEmployeesInterval": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "scB_NumberOfEmployeesIntervalDescription": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "scB_OwnershipType": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "scB_OwnershipTypeDescription": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "scB_TurnoverInterval": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "scB_TurnoverIntervalDescription": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "scB_PrivPublType": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "scB_PrivPublTypeDescription": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "scB_TradeExportInterval": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "scB_TradeExportIntervalDescription": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "scB_TradeImportInterval": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "scB_TradeImportIntervalDescription": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "scB_PropertyTaxationInterval": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "scB_PropertyTaxationIntervalDescription": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "period1": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "period1_IS_NetSalesK": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "period1_FN_NumberOfEmployees": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "period1_IS_OperatingProfitOrLossK": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "period1_IsAudited": {
            "type": "boolean",
            "nullable": true
          },
          "period1_Lines": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true,
            "readOnly": true
          },
          "period2": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "period2_IS_NetSalesK": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "period2_FN_NumberOfEmployees": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "period2_IS_OperatingProfitOrLossK": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "period2_IsAudited": {
            "type": "boolean",
            "nullable": true
          },
          "period3": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "period3_IS_NetSalesK": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "period3_FN_NumberOfEmployees": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "period3_IS_OperatingProfitOrLossK": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "period3_IsAudited": {
            "type": "boolean",
            "nullable": true
          },
          "intelligenceScoreTotal": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "intelligenceNumberOfMax": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "numberOfEmailAddresses": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "lastCompanyActivityStatus": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_CompanyStatusType"
          },
          "lastCompanyActivityStatusDescription": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "lastCompanyStatusType": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_CompanyStatusType"
          },
          "lastCompanyStatusDescription2": {
            "$ref": "#/components/schemas/Ormeo_Library_Common_CompanyStatusListType"
          },
          "lastCompanyStatusDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "lastCompanyStatusDescription": {
            "type": "string",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "hasAuditor": {
            "type": "boolean",
            "nullable": true
          },
          "companyRepresentativeBornYear": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "kfM_DebtBalanceTotalAmountInSEK": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "kfM_RecordOfNonPaymentNumberOfCases": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "registeredAML": {
            "type": "boolean",
            "nullable": true
          },
          "shouldBeRegisteredAML": {
            "type": "boolean",
            "nullable": true,
            "readOnly": true
          },
          "mailingAddressLantmaterietLocatedOnPropertyId": {
            "type": "string",
            "format": "uuid",
            "nullable": true
          },
          "mailingAddressLantmaterietLocationalAddressId": {
            "type": "string",
            "format": "uuid",
            "nullable": true
          },
          "visitingAddressLantmaterietLocatedOnPropertyId": {
            "type": "string",
            "format": "uuid",
            "nullable": true
          },
          "visitingAddressLantmaterietLocationalAddressId": {
            "type": "string",
            "format": "uuid",
            "nullable": true
          },
          "visitingAddressCO": {
            "type": "string",
            "nullable": true
          },
          "mailingAddressCO": {
            "type": "string",
            "nullable": true
          },
          "visitingAddressId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "mailingAddressId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Dtos_CompanyTree_Dto": {
        "type": "object",
        "properties": {
          "companyId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "isSelected": {
            "type": "boolean"
          },
          "name": {
            "type": "string",
            "nullable": true
          },
          "lastCompanyStatusType": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_CompanyStatusType"
          },
          "lastCompanyStatusDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "intelligenceScoreTotal": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "intelligenceNumberOfMax": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "kfm_DebtBalanceTotalAmountInSEK": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "kfm_RecordOfNonPaymentNumberOfCases": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "registrationNumber": {
            "type": "string",
            "nullable": true
          },
          "countryCode": {
            "type": "string",
            "nullable": true
          },
          "isCeased": {
            "type": "boolean",
            "nullable": true
          },
          "ceasedDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "ownedPercentage": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "descendants": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Dtos_CompanyTree_Dto"
            },
            "nullable": true
          },
          "deviationExists": {
            "type": "boolean"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Dtos_PersonBolagsverketBeneficialOwner": {
        "type": "object",
        "properties": {
          "bolagsverket_BeneficialOwnerId": {
            "type": "integer",
            "format": "int32"
          },
          "companyId": {
            "type": "integer",
            "format": "int32"
          },
          "companyRegistrationNumber": {
            "type": "string",
            "nullable": true
          },
          "legalName": {
            "type": "string",
            "nullable": true
          },
          "extentCode": {
            "type": "string",
            "nullable": true
          },
          "extentDescription": {
            "type": "string",
            "nullable": true
          },
          "fromDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "untilDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "caseNumber": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "caseYear": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "governCode": {
            "type": "string",
            "nullable": true
          },
          "governDescription": {
            "type": "string",
            "nullable": true
          },
          "governThroughCompanyId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "governThroughCompanyRegistrationNumber": {
            "type": "string",
            "nullable": true
          },
          "governThroughCompanyLegalName": {
            "type": "string",
            "nullable": true
          },
          "companySummary": {
            "$ref": "#/components/schemas/Ormeo_Library_Dtos_CompanySummary_Dto"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Dtos_PersonBolagsverketBeneficialOwnerItemsPagination": {
        "type": "object",
        "properties": {
          "pageSize": {
            "type": "integer",
            "format": "int32"
          },
          "lastItemId": {
            "type": "integer",
            "format": "int64"
          },
          "totalItems": {
            "type": "integer",
            "format": "int32"
          },
          "items": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Dtos_PersonBolagsverketBeneficialOwner"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Dtos_TeamDocumentOrderContent_Dto": {
        "type": "object",
        "properties": {
          "teamDocumentOrderContentId": {
            "type": "integer",
            "format": "int32"
          },
          "teamDocumentOrderId": {
            "type": "integer",
            "format": "int32"
          },
          "teamDocumentContentType": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_TeamDocumentContentType"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Dtos_TeamDocumentOrder_Dto": {
        "type": "object",
        "properties": {
          "teamDocumentOrderId": {
            "type": "integer",
            "format": "int32"
          },
          "teamId": {
            "type": "integer",
            "format": "int32"
          },
          "teamName": {
            "type": "string",
            "nullable": true
          },
          "documentOrderGuid": {
            "type": "string",
            "format": "uuid"
          },
          "documentTitle": {
            "type": "string",
            "nullable": true
          },
          "documentOrderType": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_TeamDocumentOrderType"
          },
          "documentOrderDate": {
            "type": "string",
            "format": "date-time"
          },
          "orderedByUserId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "orderedByUserEmail": {
            "type": "string",
            "nullable": true
          },
          "orderedByUserDisplayName": {
            "type": "string",
            "nullable": true
          },
          "price": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time"
          },
          "externalId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "externalOrigin": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_ExternalOrigin"
          },
          "externalId2": {
            "type": "string",
            "nullable": true
          },
          "salesOrderRows": {
            "type": "array",
            "items": {
              "type": "integer",
              "format": "int32"
            },
            "nullable": true
          },
          "content": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Dtos_TeamDocumentOrderContent_Dto"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Dtos_TeamDocumentOrder_DtoItemsPagination": {
        "type": "object",
        "properties": {
          "pageSize": {
            "type": "integer",
            "format": "int32"
          },
          "lastItemId": {
            "type": "integer",
            "format": "int64"
          },
          "totalItems": {
            "type": "integer",
            "format": "int32"
          },
          "items": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Dtos_TeamDocumentOrder_Dto"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Dtos_Transportstyrelsen_Besiktningsprogramkod_Dto": {
        "type": "object",
        "properties": {
          "besiktningsprogramId": {
            "type": "string",
            "nullable": true
          },
          "besiktningsprogramKod": {
            "type": "string",
            "nullable": true
          },
          "besiktningsprogramText": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Dtos_Transportstyrelsen_VehicleInspection_Dto": {
        "type": "object",
        "properties": {
          "registreringsnummer": {
            "type": "string",
            "nullable": true
          },
          "besiktningsdatum": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "besiktningsdatumTom": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "korstracka": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "besiktningsstation": {
            "type": "string",
            "nullable": true
          },
          "besiktningsprogramkoder": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Dtos_Transportstyrelsen_Besiktningsprogramkod_Dto"
            },
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Dtos_Transportstyrelsen_Vehicle_Dto": {
        "type": "object",
        "properties": {
          "transportstyrelsen_VehicleId": {
            "type": "integer",
            "format": "int32"
          },
          "registreringsnummer": {
            "type": "string",
            "nullable": true
          },
          "agarkategori": {
            "type": "boolean",
            "nullable": true
          },
          "avregDatum": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "avregText": {
            "type": "string",
            "nullable": true
          },
          "avregOrsak": {
            "type": "string",
            "nullable": true
          },
          "fordonsslag": {
            "type": "string",
            "nullable": true
          },
          "fordonskategoriEU": {
            "type": "string",
            "nullable": true
          },
          "fordonsbenamning": {
            "type": "string",
            "nullable": true
          },
          "handelsbeteckning": {
            "type": "string",
            "nullable": true
          },
          "arsmodell": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "fordonsar": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "farg": {
            "type": "string",
            "nullable": true
          },
          "chassinummer": {
            "type": "string",
            "nullable": true
          },
          "fabrikatskod": {
            "type": "string",
            "nullable": true
          },
          "modellnummer": {
            "type": "string",
            "nullable": true
          },
          "gruppnummer": {
            "type": "string",
            "nullable": true
          },
          "tillverkningsmanad": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "tillverkningsdatum": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "ateranvantRegnr": {
            "type": "boolean",
            "nullable": true
          },
          "registreringsdatum": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fordonsslagsklass": {
            "type": "string",
            "nullable": true
          },
          "epa": {
            "type": "boolean",
            "nullable": true
          },
          "tillverkare": {
            "type": "string",
            "nullable": true
          },
          "tillverkareGrundfordonet": {
            "type": "string",
            "nullable": true
          },
          "reserv": {
            "type": "string",
            "nullable": true
          },
          "identitetsnummer": {
            "type": "string",
            "nullable": true
          },
          "forvarvsdatum": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fysiskjuridisk": {
            "type": "string",
            "nullable": true
          },
          "fodelsear": {
            "type": "string",
            "nullable": true
          },
          "reklamsparr": {
            "type": "string",
            "nullable": true
          },
          "adress": {
            "type": "string",
            "nullable": true
          },
          "postnummer": {
            "type": "string",
            "nullable": true
          },
          "postort": {
            "type": "string",
            "nullable": true
          },
          "kommunkod": {
            "type": "string",
            "nullable": true
          },
          "forsamlingskod": {
            "type": "string",
            "nullable": true
          },
          "antalBrukare": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "fBrukareIdnr": {
            "type": "string",
            "nullable": true
          },
          "fBrukareForvarvsdat": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "ffBrukareIdnr": {
            "type": "string",
            "nullable": true
          },
          "ffBrukareForvarvsdat": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "agare": {
            "type": "string",
            "nullable": true
          },
          "forvarvsdatumAgare": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "skyddadAdress": {
            "type": "boolean",
            "nullable": true
          },
          "registreringstyp": {
            "type": "string",
            "nullable": true
          },
          "fordonsstatusKod": {
            "type": "string",
            "nullable": true
          },
          "fordonsstatusDatum": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fordonsstatusOrsak": {
            "type": "string",
            "nullable": true
          },
          "leasing": {
            "type": "boolean",
            "nullable": true
          },
          "anvandningssatt1": {
            "type": "string",
            "nullable": true
          },
          "anvandningssatt2": {
            "type": "string",
            "nullable": true
          },
          "anvandningssatt3": {
            "type": "string",
            "nullable": true
          },
          "anvandningssatt4": {
            "type": "string",
            "nullable": true
          },
          "anvandningssatt5": {
            "type": "string",
            "nullable": true
          },
          "forsakringsform": {
            "type": "string",
            "nullable": true
          },
          "kreditkop": {
            "type": "boolean",
            "nullable": true
          },
          "importor": {
            "type": "string",
            "nullable": true
          },
          "ursprungskod": {
            "type": "string",
            "nullable": true
          },
          "ursprungsorsak": {
            "type": "string",
            "nullable": true
          },
          "forregistreringsdatum": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "registreringsdatumTidigare": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "direktimport": {
            "type": "boolean",
            "nullable": true
          },
          "variant": {
            "type": "string",
            "nullable": true
          },
          "version": {
            "type": "string",
            "nullable": true
          },
          "typ": {
            "type": "string",
            "nullable": true
          },
          "karosserikod1": {
            "type": "string",
            "nullable": true
          },
          "karosserikod2": {
            "type": "string",
            "nullable": true
          },
          "karosserikodTillagg": {
            "type": "string",
            "nullable": true
          },
          "bussklass": {
            "type": "string",
            "nullable": true
          },
          "antalPassagerare": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "antalSittande": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "eeg": {
            "type": "string",
            "nullable": true
          },
          "cylindervolym": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "vaxellada": {
            "type": "string",
            "nullable": true
          },
          "kopplingsanordning1": {
            "type": "string",
            "nullable": true
          },
          "kopplingsanordning2": {
            "type": "string",
            "nullable": true
          },
          "tjanstevikt": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "viktIKorklartSkick": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "totalvikt": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "drivmedel1Kod": {
            "type": "string",
            "nullable": true
          },
          "drivmedel2Kod": {
            "type": "string",
            "nullable": true
          },
          "drivmedel3Kod": {
            "type": "string",
            "nullable": true
          },
          "driv1Motoreffekt": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "driv2Motoreffekt": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "driv3Motoreffekt": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "driv1Effektenhet": {
            "type": "string",
            "nullable": true
          },
          "driv2Effektenhet": {
            "type": "string",
            "nullable": true
          },
          "driv3Effektenhet": {
            "type": "string",
            "nullable": true
          },
          "drivmedelskombination": {
            "type": "string",
            "nullable": true
          },
          "tankvolymDriv1": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "tankvolymDriv2": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "tankvolymDriv3": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "bredd": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "langd": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "hojd": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "maxSlapvagnsvikt": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "maxSlapviktB": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "maxSlapviktBUtokad": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "maxViktSlapkarra": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "maxSlapviktObromsad": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "maxHastighetSlap": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "maxLastvikt": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "fyrhjulsdrift": {
            "type": "boolean",
            "nullable": true
          },
          "effektMaxForElfordon": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "effektUnder30Minuter": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "effektUnder15Minuter": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "genomsnittligNyttolast": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "arbetsfordon": {
            "type": "boolean",
            "nullable": true
          },
          "miljoklass": {
            "type": "string",
            "nullable": true
          },
          "miljobil": {
            "type": "string",
            "nullable": true
          },
          "miljoklassEURO": {
            "type": "string",
            "nullable": true
          },
          "utslappsklass": {
            "type": "string",
            "nullable": true
          },
          "reserv1": {
            "type": "string",
            "nullable": true
          },
          "supermiljobil": {
            "type": "boolean",
            "nullable": true
          },
          "partikelvardeDriv1": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "partikelvardeDriv2": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "partikelvardeDriv3": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "emissionsvardeEnhet": {
            "type": "string",
            "nullable": true
          },
          "noxDriv1": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "noxDriv2": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "noxDriv3": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "hcthcnoxDriv1": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "hcthcnoxDriv2": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "hcthcnoxDriv3": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "nox4Driv1": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "nox4Driv2": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "nox4Driv3": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "partMassa4Driv1": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "partMassa4Driv2": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "partMassa4Driv3": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "cO2Driv1": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "cO2Driv2": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "cO2Driv3": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "forbrukningDriv1": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "forbrukningDriv2": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "forbrukningDriv3": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "energikonsumtion": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "ljudnivaDriv1": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "ljudnivaDriv2": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "ljudnivaDriv3": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "reserv2": {
            "type": "string",
            "nullable": true
          },
          "reserv3": {
            "type": "string",
            "nullable": true
          },
          "reserv4": {
            "type": "string",
            "nullable": true
          },
          "forbrukningViktadblandad": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "cO2Viktadblandad": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "avvikelsefaktorDriv1": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "avvikelsefaktorDriv2": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "avvikelsefaktorDriv3": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "kontrollfaktorDriv1": {
            "type": "boolean",
            "nullable": true
          },
          "kontrollfaktorDriv2": {
            "type": "boolean",
            "nullable": true
          },
          "kontrollfaktorDriv3": {
            "type": "boolean",
            "nullable": true
          },
          "cO2LagWLTPDriv1": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "cO2LagWLTPDriv2": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "cO2LagWLTPDriv3": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "cO2MediumWLTPDriv1": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "cO2MediumWLTPDriv2": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "cO2MediumWLTPDriv3": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "cO2HogWLTPDriv1": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "cO2HogWLTPDriv2": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "cO2HogWLTPDriv3": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "cO2ExtraHogWLTPDriv1": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "cO2ExtraHogWLTPDriv2": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "cO2ExtraHogWLTPDriv3": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "cO2BlandadWLTPDriv1": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "cO2BlandadWLTPDriv2": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "cO2BlandadWLTPDriv3": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "cO2ViktadblandWLTPDriv1": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "cO2ViktadblandWLTPDriv2": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "cO2ViktadblandWLTPDriv3": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "bransleforbrukLagWLTPDriv1": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "bransleforbrukLagWLTPDriv2": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "bransleforbrukLagWLTPDriv3": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "bransleforbruMedWLTPDriv1": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "bransleforbruMedWLTPDriv2": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "bransleforbruMedWLTPDriv3": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "bransleforbruHogWLTPDriv1": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "bransleforbruHogWLTPDriv2": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "bransleforbruHogWLTPDriv3": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "bransleforExtHogWLTPDriv1": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "bransleforExtHogWLTPDriv2": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "bransleforExtHogWLTPDriv3": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "bransleforBlandadWLTPDriv1": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "bransleforBlandadWLTPDriv2": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "bransleforBlandadWLTPDriv3": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "bransleforViktblanWLTPDriv1": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "bransleforViktblanWLTPDriv2": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "bransleforViktblanWLTPDriv3": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "elenergiforbruknWLTPDriv1": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "elenergiforbruknWLTPDriv2": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "elenergiforbruknWLTPDriv3": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "elenergiforbrViktaWLTPDriv1": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "elenergiforbrViktaWLTPDriv2": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "elenergiforbrViktaWLTPDriv3": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "rackviddWLTPDriv1": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "rackviddWLTPDriv2": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "rackviddStadWLTPDriv1": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "rackviddStadWLTPDriv2": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "miljoinnovationKodPerFordon": {
            "type": "string",
            "nullable": true
          },
          "miljoinnminsCO2NEDCDriv1": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "miljoinnminsCO2NEDCDriv2": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "miljoinnminsCO2NEDCDriv3": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "miljoinnminsCO2WLTPDriv1": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "miljoinnminsCO2WLTPDriv2": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "miljoinnminsCO2WLTPDriv3": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "coTypIWLTPDriv1": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "coTypIWLTPDriv2": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "coTypIWLTPDriv3": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "thcTypIWLTPDriv1": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "thcTypIWLTPDriv2": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "thcTypIWLTPDriv3": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "nmhcTypIWLTPDriv1": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "nmhcTypIWLTPDriv2": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "nmhcTypIWLTPDriv3": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "noxTypIWLTPDriv1": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "noxTypIWLTPDriv2": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "noxTypIWLTPDriv3": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "thcnoxTypIWLTPDriv1": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "thcnoxTypIWLTPDriv2": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "thcnoxTypIWLTPDriv3": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "partiklarTypIWLTPDriv1": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "partiklarTypIWLTPDriv2": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "partiklarTypIWLTPDriv3": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "interpoleringsfamiljensIdentifierare": {
            "type": "string",
            "nullable": true
          },
          "atctfamiljensIdentifierare": {
            "type": "string",
            "nullable": true
          },
          "pemsfamiljensIdentifierare": {
            "type": "string",
            "nullable": true
          },
          "vagmotstandsfamiljensIdentifierare": {
            "type": "string",
            "nullable": true
          },
          "vagmotstandsmatrisfamiljensIdentifierare": {
            "type": "string",
            "nullable": true
          },
          "identifierareForFamiljenAvPeriodisktRegener": {
            "type": "string",
            "nullable": true
          },
          "identifierareForFamiljenForAvdunstningsprov": {
            "type": "string",
            "nullable": true
          },
          "energieffektivitetsklassForRullmotstandskoef1": {
            "type": "string",
            "nullable": true
          },
          "energieffektivitetsklassForRullmotstandskoef2": {
            "type": "string",
            "nullable": true
          },
          "energieffektivitetsklassForRullmotstandskoef3": {
            "type": "string",
            "nullable": true
          },
          "kategoriAvDackAxel1": {
            "type": "string",
            "nullable": true
          },
          "kategoriAvDackAxel2": {
            "type": "string",
            "nullable": true
          },
          "kategoriAvDackAxel3": {
            "type": "string",
            "nullable": true
          },
          "beraknadFrontareaPaFrontgrillensLuftintag": {
            "type": "string",
            "nullable": true
          },
          "korcykelnsKlass": {
            "type": "string",
            "nullable": true
          },
          "minskningsfaktor": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "rdeFullstandigNoxDriv1": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "rdeFullstandigNoxDriv2": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "rdeFullstandigNoxDriv3": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "rdeFullstandigAntPartDriv1": {
            "type": "string",
            "nullable": true
          },
          "rdeFullstandigAntPartDriv2": {
            "type": "string",
            "nullable": true
          },
          "rdeFullstandigAntPartDriv3": {
            "type": "string",
            "nullable": true
          },
          "rdeFullstAntPartVardeDriv1": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "rdeFullstAntPartVardeDriv2": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "rdeFullstAntPartVardeDriv3": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "rdeFullstAntPartExpoDriv1": {
            "type": "string",
            "nullable": true
          },
          "rdeFullstAntPartExpoDriv2": {
            "type": "string",
            "nullable": true
          },
          "rdeFullstAntPartExpoDriv3": {
            "type": "string",
            "nullable": true
          },
          "rdeStadNoxDriv1": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "rdeStadNoxDriv2": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "rdeStadNoxDriv3": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "rdeStadAntalPartiklarDriv1": {
            "type": "string",
            "nullable": true
          },
          "rdeStadAntalPartiklarDriv2": {
            "type": "string",
            "nullable": true
          },
          "rdeStadAntalPartiklarDriv3": {
            "type": "string",
            "nullable": true
          },
          "rdeStadAntPartikVardeDriv1": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "rdeStadAntPartikVardeDriv2": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "rdeStadAntPartikVardeDriv3": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "rdeStadAntPartikExpoDriv1": {
            "type": "string",
            "nullable": true
          },
          "rdeStadAntPartikExpoDriv2": {
            "type": "string",
            "nullable": true
          },
          "rdeStadAntPartikExpoDriv3": {
            "type": "string",
            "nullable": true
          },
          "cO2StadsNEDCDriv1": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "cO2StadsNEDCDriv2": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "cO2StadsNEDCDriv3": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "cO2LandsvagNEDCDriv1": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "cO2LandsvagNEDCDriv2": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "cO2LandsvagNEDCDriv3": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "bransleforbStadNEDCDriv1": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "bransleforbStadNEDCDriv2": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "bransleforbStadNEDCDriv3": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "bransleforbLvagNEDCDriv1": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "bransleforbLvagNEDCDriv2": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "bransleforbLvagNEDCDriv3": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "rackviddNEDC": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "elfordonKonfiguration": {
            "type": "string",
            "nullable": true
          },
          "specifiktCO2": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "antalAxlar": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "axelavstand1": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "axelavstand2": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "axelavstand3": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "dackdimensionFram": {
            "type": "string",
            "nullable": true
          },
          "dackdimensionBak": {
            "type": "string",
            "nullable": true
          },
          "falgdimensionFram": {
            "type": "string",
            "nullable": true
          },
          "falgdimensionBak": {
            "type": "string",
            "nullable": true
          },
          "dubbelkommando": {
            "type": "boolean",
            "nullable": true
          },
          "passagerarkrockkudde": {
            "type": "boolean",
            "nullable": true
          },
          "rallybil": {
            "type": "boolean",
            "nullable": true
          },
          "utrustning1": {
            "type": "string",
            "nullable": true
          },
          "utrustning2": {
            "type": "string",
            "nullable": true
          },
          "utrustning3": {
            "type": "string",
            "nullable": true
          },
          "axelavstand1Minimum": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "axelavstand2Minimum": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "axelavstand3Minimum": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "maxhastighet": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "begransadHastighet": {
            "type": "string",
            "nullable": true
          },
          "avanceratBromssystemMC": {
            "type": "string",
            "nullable": true
          },
          "besiktningsdatum": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "besiktningsdatumTom": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "dispensbesiktningsgrupp": {
            "type": "string",
            "nullable": true
          },
          "besiktningsgrupp": {
            "type": "string",
            "nullable": true
          },
          "korstracka": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "besiktningsstation": {
            "type": "string",
            "nullable": true
          },
          "besiktningsprogramkod": {
            "type": "string",
            "nullable": true
          },
          "foregaendeBesiktningsdatum": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "foregaendeKorstracka": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "foregBesiktningsprogramkod": {
            "type": "string",
            "nullable": true
          },
          "minskningsfaktor2": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "registreringsdatumFullstandig": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "forsakringsbolag": {
            "type": "string",
            "nullable": true
          },
          "elEllerHybrid": {
            "type": "string",
            "nullable": true
          },
          "cO2LaddningsbevarandeWLTP1": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "bransleforbrLaddningsbevarandeWLTP1": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "elenergiforbrLaddningsbevarandeWLTP1": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "cO2LaddningstommandeWLTP1": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "bransleforbrLaddningstommandeWLTP1": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "eaerwltP1": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "eaerCityWLTP1": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "aerwltP1": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "aerCityWLTP1": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "cO2LaddningsbevarandeWLTP2": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "bransleforbrLaddningsbevarandeWLTP2": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "elenergiforbrLaddningsbevarandeWLTP2": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "cO2LaddningstommandeWLTP2": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "bransleforbrLaddningstommandeWLTP2": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "eaerwltP2": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "eaerCityWLTP2": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "aerwltP2": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "aerCityWLTP2": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "cO2LaddningsbevarandeWLTP3": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "bransleforbrLaddningsbevarandeWLTP3": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "elenergiforbrLaddningsbevarandeWLTP3": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "cO2LaddningstommandeWLTP3": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "bransleforbrLaddningstommandeWLTP3": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "eaerwltP3": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "eaerCityWLTP3": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "aerwltP3": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "aerCityWLTP3": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "specifiktCO2Person": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "genomsnittsbelaggning": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "fordonsgruppUndergrupp": {
            "type": "string",
            "nullable": true
          },
          "koldioxidutlappsklass": {
            "type": "string",
            "nullable": true
          },
          "datumForOmklassificering": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "besiktningsstatus": {
            "type": "string",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time"
          },
          "fabrikskodBeskrivning": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "fordonsslagsklassBeskrivning": {
            "type": "string",
            "nullable": true
          },
          "fordonslagBeskrivning": {
            "type": "string",
            "nullable": true
          },
          "drivmedelskombinationBeskrivning": {
            "type": "string",
            "nullable": true
          },
          "fargHex": {
            "type": "string",
            "nullable": true
          },
          "fargEnglish": {
            "type": "string",
            "nullable": true
          },
          "fordonsslagsklassOchBeskrivning": {
            "type": "string",
            "nullable": true
          },
          "drivMotoreffektIhk": {
            "type": "array",
            "items": {
              "type": "integer",
              "format": "int32"
            },
            "nullable": true
          },
          "elfordonKonfigurationBeskrivning": {
            "type": "string",
            "nullable": true
          },
          "drivmedelsBeskrivningar": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "anvandningssatt": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "kopplinganordningar": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "namn": {
            "type": "string",
            "nullable": true
          },
          "vaxelladaBeskrivning": {
            "type": "string",
            "nullable": true
          },
          "tillverkningsmanadBeskrivning": {
            "type": "string",
            "nullable": true
          },
          "forsakringsbolagBeskrivning": {
            "type": "string",
            "nullable": true
          },
          "elEllerHybridBeskrivning": {
            "type": "string",
            "nullable": true
          },
          "besiktningsstatusBeskrivning": {
            "type": "string",
            "nullable": true
          },
          "besiktningsprogram": {
            "$ref": "#/components/schemas/Ormeo_Library_Dtos_Transportstyrelsen_Besiktningsprogramkod_Dto"
          },
          "foregaendeBesiktningsprogram": {
            "$ref": "#/components/schemas/Ormeo_Library_Dtos_Transportstyrelsen_Besiktningsprogramkod_Dto"
          },
          "besiktningar": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Dtos_Transportstyrelsen_VehicleInspection_Dto"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Dtos_VehicleHistoryOwner_Dto": {
        "type": "object",
        "properties": {
          "vehicleId": {
            "type": "integer",
            "format": "int32"
          },
          "licencePlate": {
            "type": "string",
            "nullable": true
          },
          "vehicleType": {
            "type": "string",
            "nullable": true
          },
          "vehicleName": {
            "type": "string",
            "nullable": true
          },
          "tradeName": {
            "type": "string",
            "nullable": true
          },
          "modelYear": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "vehicleYear": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "colorSwedish": {
            "type": "string",
            "nullable": true
          },
          "vin": {
            "type": "string",
            "nullable": true
          },
          "currentOwnerCompanyId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "currentOwnerCompanyRegistrationNumber": {
            "type": "string",
            "nullable": true
          },
          "currentOwnerCompanyLegalName": {
            "type": "string",
            "nullable": true
          },
          "currentUserCompanyId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "currentUserCompanyRegistrationNumber": {
            "type": "string",
            "nullable": true
          },
          "currentUserCompanyLegalName": {
            "type": "string",
            "nullable": true
          },
          "eventStartDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "eventEndDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Entities_AuditorType": {
        "enum": [
          "certifiedPublicAccountant",
          "approvedAccountant",
          "foreignAuditor"
        ],
        "type": "string"
      },
      "Ormeo_Library_Entities_BankAccountType": {
        "enum": [
          "bankgiro",
          "plusgiro",
          "iban",
          "other"
        ],
        "type": "string"
      },
      "Ormeo_Library_Entities_BankgirotOCRType": {
        "enum": [
          "notConnectedToOCR",
          "connectedToOCRSoftCheckLevel",
          "connectedToOCRHardCheckLevel",
          "connectedToOCRHardCheckLevelVariableLength",
          "connectedToOCRHardCheckLevelFixedLength"
        ],
        "type": "string"
      },
      "Ormeo_Library_Entities_BankgirotUpdateType": {
        "enum": [
          "inserted",
          "deleted",
          "updated"
        ],
        "type": "string"
      },
      "Ormeo_Library_Entities_CompanyActivityStatus": {
        "enum": [
          "hasNeverBeenActive",
          "isActive",
          "isNoLongerActive",
          "unknown"
        ],
        "type": "string"
      },
      "Ormeo_Library_Entities_CompanyAddressType": {
        "enum": [
          "mailAddress",
          "visitingAddress",
          "bothMailAndVisitingAddress",
          "registeredAddress"
        ],
        "type": "string"
      },
      "Ormeo_Library_Entities_CompanyDocumentType": {
        "enum": [
          "annualReport",
          "quarterlyReport",
          "interimReport",
          "dividend",
          "case",
          "minutes",
          "articlesOfAssociation",
          "financialPlan",
          "bylaws"
        ],
        "type": "string"
      },
      "Ormeo_Library_Entities_CompanyFranchiseOrLicenceType": {
        "enum": [
          "franchise",
          "licence",
          "membership",
          "agent",
          "amlRegistered",
          "other"
        ],
        "type": "string"
      },
      "Ormeo_Library_Entities_CompanyIntelligenceType": {
        "enum": [
          "createdAsShelfCompany",
          "suspectedForQuickLiquidation",
          "couldBeFranchise",
          "affliatedWithArticle",
          "unknown",
          "suspectedAddress",
          "formerChecks",
          "presentOnWarningList",
          "annualReportDiscrepancies",
          "auditorResignation",
          "registration",
          "registerChanges",
          "penaltyFees",
          "beneficialOwner",
          "claims",
          "forfeit",
          "mentionedInCourtCase"
        ],
        "type": "string"
      },
      "Ormeo_Library_Entities_CompanyLinkType": {
        "enum": [
          "homepage",
          "facebook",
          "instagram",
          "x_Twitter",
          "linkedIn",
          "other"
        ],
        "type": "string"
      },
      "Ormeo_Library_Entities_CompanyNamingType": {
        "enum": [
          "legalName",
          "commonName",
          "tradingName",
          "particularName",
          "foreignLanguageName",
          "other",
          "legalNameSuggested",
          "commonNameSuggested",
          "tradingNameSuggested",
          "particularNameSuggested",
          "foreignLanguageNameSuggested"
        ],
        "type": "string"
      },
      "Ormeo_Library_Entities_CompanyRegistrationType": {
        "enum": [
          "fTax",
          "vat",
          "payroll",
          "stockCompany",
          "antimoneyLaundering",
          "other"
        ],
        "type": "string"
      },
      "Ormeo_Library_Entities_CompanySlugType": {
        "enum": [
          "legalName",
          "commonName",
          "tradingName",
          "particularName",
          "foreignLanguageName",
          "stockTicker",
          "other"
        ],
        "type": "string"
      },
      "Ormeo_Library_Entities_CompanyStatusType": {
        "enum": [
          "reorganizationOfBusinessCommenced",
          "bankruptcyTerminatedWithSurplus",
          "dissolvedByCompanyDemerger",
          "liquidationTerminated",
          "mergerProcedureCommenced",
          "acquisitionByCompanyDemerger",
          "acquisitionByMerger",
          "dissolvedByMergerProcedure",
          "liquidationDecided",
          "bankruptcyProceedingsCommenced",
          "bankruptcyProceedingsTerminated",
          "mergerPermitted",
          "unused1",
          "unused2",
          "unused3",
          "liquidationContinues",
          "struckOffRegisterCrossBorderMerger",
          "bankruptcyRepealedByCourt",
          "liquidationEnds",
          "liquidationRepealedByCourt",
          "companyStruckOff",
          "reorganizationOfBusinessEnded",
          "reorganizationOfBusinessRepealedByCourt",
          "resolutionCommenced",
          "resolutionTerminated",
          "resolutionRepealedByCourt",
          "companyStruckOffTradeRegisterAct",
          "deregisteredNewHolder",
          "deregistered",
          "reintroduced",
          "companyStruckOffOwnRequest",
          "companyStruckOffByRegistrationOffice",
          "companyStruckOffReenteredAsJointStock",
          "branchStruckOffForeignLiquidationOrBankruptcy",
          "branchStruckOffOperationsCeased",
          "branchStruckOffMissingCEO",
          "branchStruckOffCourtOrder",
          "branchStruckOffAnnualReportMissing",
          "isActive",
          "isNoLongerActive",
          "hasNeverBeenActive",
          "taxAuthorityStatus",
          "companyDemergerCommenced",
          "settlementNegotiationsCommenced",
          "settlementNegotiationsTerminated",
          "settlementNegotiationsRepealedByCourt",
          "acquisitionExpired",
          "acquisitionTerminated",
          "acquisitionByMultipleMergers",
          "acquisitionRepealedByCourt",
          "mergerExpired",
          "mergerRepealedByCourt",
          "other"
        ],
        "type": "string"
      },
      "Ormeo_Library_Entities_CompanyWorkplaceStatusType": {
        "enum": [
          "isActive",
          "isNoLongerActive",
          "hasNeverBeenActive"
        ],
        "type": "string"
      },
      "Ormeo_Library_Entities_DTO_SE_CompanySummary": {
        "type": "object",
        "properties": {
          "companyId": {
            "type": "integer",
            "format": "int32"
          },
          "companyRegistrationNumber": {
            "type": "string",
            "nullable": true
          },
          "registrationDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "mostRecentLegalName": {
            "type": "string",
            "nullable": true
          },
          "mostRecentPurpose": {
            "type": "string",
            "nullable": true
          },
          "mostRecentCompanyStatusType": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "companyRepresentativeBornYear": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "industry": {
            "type": "string",
            "nullable": true
          },
          "year1_AnnualReportPeriod": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "year1_NetSales": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "year1_OperatingProfit": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "year1_NetSalesChange": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "year1_GrossMargin": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "year1_OperatingMargin": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "year1_NetProfitMargin": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "year1_NumberOfEmployees": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "year2_AnnualReportPeriod": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "year2_NetSales": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "year2_OperatingProfit": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "year2_NetSalesChange": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "year2_GrossMargin": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "year2_OperatingMargin": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "year2_NetProfitMargin": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "year2_NumberOfEmployees": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "year3_AnnualReportPeriod": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "year3_NetSales": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "year3_OperatingProfit": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "year3_NetSalesChange": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "year3_GrossMargin": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "year3_OperatingMargin": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "year3_NetProfitMargin": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "year3_NumberOfEmployees": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "year4_AnnualReportPeriod": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "year4_NetSales": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "year4_OperatingProfit": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "year4_NetSalesChange": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "year4_GrossMargin": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "year4_OperatingMargin": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "year4_NetProfitMargin": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "year4_NumberOfEmployees": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "year5_AnnualReportPeriod": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "year5_NetSales": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "year5_OperatingProfit": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "year5_NetSalesChange": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "year5_GrossMargin": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "year5_OperatingMargin": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "year5_NetProfitMargin": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "year5_NumberOfEmployees": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Entities_DestinationType": {
        "enum": [
          "webhook",
          "email",
          "sms"
        ],
        "type": "string"
      },
      "Ormeo_Library_Entities_DividendType": {
        "enum": [
          "dividendOrdinary",
          "dividendSpecial"
        ],
        "type": "string"
      },
      "Ormeo_Library_Entities_EmailAddressType": {
        "enum": [
          "general",
          "personal",
          "other"
        ],
        "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_Entities_LantmaterietAdressomradeTyp": {
        "enum": [
          "gatuadressomrade",
          "metertalsadressomrade",
          "byadressomrade"
        ],
        "type": "string"
      },
      "Ormeo_Library_Entities_LantmaterietAdressplatsInsamlingsLage": {
        "enum": [
          "byggnad",
          "ingang",
          "infart",
          "tomtplats",
          "ungefarligtLagesbestamd",
          "ovrigtLage"
        ],
        "type": "string"
      },
      "Ormeo_Library_Entities_LantmaterietAdressplatsTyp": {
        "enum": [
          "gatuadressplats",
          "metertalsadressplats",
          "byadressplats",
          "gardsadressplats"
        ],
        "type": "string"
      },
      "Ormeo_Library_Entities_LantmaterietAgandeTyp": {
        "enum": [
          "lagfart",
          "tomtrattsinnehav"
        ],
        "type": "string"
      },
      "Ormeo_Library_Entities_LantmaterietAgareTyp": {
        "enum": [
          "organisation",
          "person",
          "utlandsk"
        ],
        "type": "string"
      },
      "Ormeo_Library_Entities_LantmaterietAvtalrattighetTyp": {
        "enum": [
          "avtalsnyttjanderatt",
          "avkomstratt",
          "elkraftratt",
          "avtalsservitut",
          "avtalsrattighet"
        ],
        "type": "string"
      },
      "Ormeo_Library_Entities_LantmaterietBeslutstyp": {
        "enum": [
          "avslag",
          "avvisad",
          "beviljad",
          "okänd",
          "uppskov",
          "vilande"
        ],
        "type": "string"
      },
      "Ormeo_Library_Entities_LantmaterietBostadsandamalTyp": {
        "enum": [
          "smahusfriliggande",
          "smahuskedjehus",
          "smahusradhus",
          "smahusmedfleralagenheter",
          "flerfamiljshus",
          "ospecificerad"
        ],
        "type": "string"
      },
      "Ormeo_Library_Entities_LantmaterietByggnadTyp": {
        "enum": [
          "ovrigByggnad",
          "samhallsfunktion",
          "industri",
          "komplementbyggnad",
          "ekonomibyggnad",
          "verksamhet",
          "bostad"
        ],
        "type": "string"
      },
      "Ormeo_Library_Entities_LantmaterietByggnadsdelInsamlingsLageTyp": {
        "enum": [
          "ospecificerad",
          "fasad",
          "takkant",
          "illustrativtlage"
        ],
        "type": "string"
      },
      "Ormeo_Library_Entities_LantmaterietDelvardeTyp": {
        "enum": [
          "byggnadsvarde",
          "markvarde",
          "bostadsbyggnadsvarde",
          "ekonomibyggnadsvarde",
          "tomtmarksvarde",
          "jordbruksvarde",
          "skogsbruksvarde",
          "skogsimpedimentsvarde"
        ],
        "type": "string"
      },
      "Ormeo_Library_Entities_LantmaterietFastighetStatus": {
        "enum": [
          "avregistrerad",
          "levande"
        ],
        "type": "string"
      },
      "Ormeo_Library_Entities_LantmaterietFastighetTyp": {
        "enum": [
          "fastighet",
          "samfallighet"
        ],
        "type": "string"
      },
      "Ormeo_Library_Entities_LantmaterietKopeskillingSummaTyp": {
        "enum": [
          "preliminarKopeskillingFastEgendom",
          "omraknadPreliminarKopeskilling",
          "kopeskillingFastEgendom",
          "omraknadKopeskilling",
          "mellangift",
          "kopeskillingLosEgendom"
        ],
        "type": "string"
      },
      "Ormeo_Library_Entities_LantmaterietKopeskillingTyp": {
        "enum": [
          "ingenkopeskillingredovisas",
          "avserhelafastigheten",
          "avseravenannanfastighet"
        ],
        "type": "string"
      },
      "Ormeo_Library_Entities_LantmaterietNamnTyp": {
        "enum": [
          "huvudnamntopografi",
          "ovrigtnamntopografi"
        ],
        "type": "string"
      },
      "Ormeo_Library_Entities_LantmaterietPantbrevstyp": {
        "enum": [
          "datapantbrev",
          "skriftligtpantbrev"
        ],
        "type": "string"
      },
      "Ormeo_Library_Entities_LantmaterietVarderingsenhetTyp": {
        "enum": [
          "agarlagenhetBostad",
          "agarlagenhetBostadsmark",
          "hyreshusBostad",
          "hyreshusBostadsmark",
          "hyreshusLokal",
          "hyreshusLokalmark",
          "taktmark",
          "industriAvkastningsberaknadKontor",
          "industriAvkastningsberaknadLager",
          "industriAvkastningsberaknadProduktionslokal",
          "industriProduktionskostnadsberaknad",
          "industriTomtmark",
          "lantbrukAkermark",
          "lantbrukBetesmark",
          "lantbrukEkonomibyggnad",
          "lantbrukSkogligtimpediment",
          "lantbrukSkogMedAvverkningsrestriktioner",
          "lantbrukSkogUtanAvverkningsrestriktioner",
          "smahusBostadsbyggnad",
          "smahusTomtmark",
          "industriAvkastningsberaknadUnderUppforande"
        ],
        "type": "string"
      },
      "Ormeo_Library_Entities_PersonAddressType": {
        "enum": [
          "populationRegisterAddress",
          "contactAddress",
          "internationalAddress",
          "particularAddress",
          "particularInternationalAddress",
          "contactInternationalAddress"
        ],
        "type": "string"
      },
      "Ormeo_Library_Entities_PersonSexType": {
        "enum": [
          "male",
          "female"
        ],
        "type": "string"
      },
      "Ormeo_Library_Entities_PhoneNumberType": {
        "enum": [
          "fixedLine",
          "mobile"
        ],
        "type": "string"
      },
      "Ormeo_Library_Entities_ReportFileType": {
        "enum": [
          "xbrl",
          "xbrL_RB",
          "iXBRL",
          "iXBRL_RB",
          "tiff",
          "enhancedPDFSearchable",
          "originalPDFImage",
          "originalPDFSearchable",
          "entityJson",
          "ocrJson",
          "tifF_RB"
        ],
        "type": "string"
      },
      "Ormeo_Library_Entities_SPAR_Hemvist": {
        "enum": [
          "skrivenPaAdressen",
          "paKommunenSkriven",
          "utanKantHemvist"
        ],
        "type": "string"
      },
      "Ormeo_Library_Entities_SPAR_PersonIdTyp": {
        "enum": [
          "personnummer",
          "samordningsnummer",
          "immunitetsnummer"
        ],
        "type": "string"
      },
      "Ormeo_Library_Entities_SPAR_SnIdentitetsniva": {
        "enum": [
          "styrkt",
          "sannolik",
          "osaker",
          "inteTillamplig"
        ],
        "type": "string"
      },
      "Ormeo_Library_Entities_TaxeringsenhetTyp": {
        "enum": [
          "agarlagenhetstaxeringsenhet",
          "elproduktionstaxeringsenhet",
          "hyreshustaxeringsenhet",
          "industritaxeringsenhet",
          "lantbrukstaxeringsenhet",
          "smahustaxeringsenhet",
          "specialtaxeringsenhet",
          "takttaxeringsenhet"
        ],
        "type": "string"
      },
      "Ormeo_Library_Entities_TeamCORSType": {
        "enum": [
          "tiles"
        ],
        "type": "string"
      },
      "Ormeo_Library_Entities_TeamDocumentContentType": {
        "enum": [
          "pdf",
          "json",
          "xml",
          "zip"
        ],
        "type": "string"
      },
      "Ormeo_Library_Entities_TeamDocumentOrderType": {
        "enum": [
          "companyDocument",
          "lantmaterietFastighet",
          "companyRegistrationLetterSwedish",
          "companyRegistrationLetterEnglish",
          "externalSearchActaPublica",
          "externalSearchTrapets",
          "personCreditCheckMail",
          "companyMinutes",
          "companyArticlesOfAssociation",
          "companyFinancialPlan",
          "companyStatutes",
          "companyAnnualReportArchived",
          "personCreditCheckKivra",
          "bolagsverketCaseDetails",
          "bolagsverketFullCaseList",
          "lantmaterietOwnershipHistory",
          "export"
        ],
        "type": "string"
      },
      "Ormeo_Library_Entities_Transportstyrelsen_VehicleSummaryEventType": {
        "enum": [
          "nyBrukare",
          "nyAgare",
          "tillverkad",
          "avstalld",
          "itrafik",
          "registreradMedAteranvantRegnr",
          "registrerad",
          "besiktning",
          "avregistrerad",
          "forregistrerad",
          "efterlyst"
        ],
        "type": "string"
      },
      "Ormeo_Library_Entities_WatchListMemberEventType": {
        "enum": [
          "companyAddress",
          "companyName",
          "companyStatus",
          "companyRegistration",
          "companyIntelligence",
          "companyBeneficialOwner",
          "companyDocument",
          "companyWorkplace",
          "companyPerson",
          "companyRegisteredOffice",
          "companyShareCapital",
          "companyPurpose",
          "companyDebtBalance",
          "companyOrderToPayCase",
          "companyFinancialDocument",
          "companyCase",
          "companyWorkplaceAddress",
          "unuseD_Company4",
          "unuseD_Company5",
          "unuseD_Company6",
          "unuseD_Company7",
          "unuseD_Company8",
          "unuseD_Company9",
          "unuseD_Company10",
          "personAddress",
          "personName",
          "personIntelligence",
          "personStatus",
          "personCompany",
          "unuseD_Person1",
          "unuseD_Person2",
          "unuseD_Person3",
          "unuseD_Person4",
          "unuseD_Person5",
          "unuseD_Person6",
          "unuseD_Person7",
          "unuseD_Person8",
          "unuseD_Person9",
          "unuseD_Person10",
          "propertyOwnershipChange",
          "propertyMortageDeedChange",
          "unuseD_Property1",
          "unuseD_Property2",
          "unuseD_Property3",
          "unuseD_Property4",
          "unuseD_Property5",
          "vehicleOwnerChange",
          "vehicleUserChange",
          "vehicleStatusChange",
          "vehicleInspection",
          "vehicleStolen",
          "unuseD_Vehicle1",
          "unuseD_Vehicle2",
          "unuseD_Vehicle3",
          "unuseD_Vehicle4",
          "unuseD_Vehicle5"
        ],
        "type": "string"
      },
      "Ormeo_Library_Generators_Statistics_BolagsverketFinancialReportSoftwareStatistics": {
        "type": "object",
        "properties": {
          "companyIntelligenceSubType": {
            "type": "string",
            "nullable": true
          },
          "reportSoftwareMetaTag": {
            "type": "string",
            "nullable": true
          },
          "discrepancies": {
            "type": "string",
            "nullable": true
          },
          "totalRegisteredForSoftware": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Generators_Statistics_BolagsverketFinancialReportsStatistics": {
        "type": "object",
        "properties": {
          "eReports": {
            "type": "array",
            "items": {
              "type": "array",
              "items": {
                "type": "integer",
                "format": "int32"
              }
            },
            "nullable": true
          },
          "pReports": {
            "type": "array",
            "items": {
              "type": "array",
              "items": {
                "type": "integer",
                "format": "int32"
              }
            },
            "nullable": true
          },
          "softwareEnum": {
            "type": "object",
            "additionalProperties": {
              "type": "string",
              "nullable": true
            },
            "nullable": true
          },
          "softwareUsed": {
            "type": "array",
            "items": {
              "type": "array",
              "items": {
                "type": "integer",
                "format": "int32"
              }
            },
            "nullable": true
          },
          "intelligence": {
            "type": "array",
            "items": {
              "type": "array",
              "items": {
                "type": "number",
                "format": "float"
              }
            },
            "nullable": true
          },
          "softwareYTD": {
            "type": "object",
            "additionalProperties": {
              "type": "integer",
              "format": "int32"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_ICA_Cache_ICAStoreAnnualReportCache": {
        "type": "object",
        "properties": {
          "annualReportPeriod": {
            "type": "integer",
            "format": "int32"
          },
          "annualReportPeriodDescription": {
            "type": "string",
            "nullable": true
          },
          "revenue": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "grossProfit": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "operatingProfit": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "returnOnEquity": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "dividend": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "extraDividend": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "revenueDescription": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "profit": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "profitMargin": {
            "type": "number",
            "format": "double",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_ICA_Cache_ICAStoreDetailCache": {
        "type": "object",
        "properties": {
          "storeName": {
            "type": "string",
            "nullable": true
          },
          "slug": {
            "type": "string",
            "nullable": true
          },
          "ogDescription": {
            "type": "string",
            "nullable": true
          },
          "ogTitle": {
            "type": "string",
            "nullable": true
          },
          "ogImage": {
            "type": "string",
            "nullable": true
          },
          "otherStoreNames": {
            "type": "object",
            "additionalProperties": {
              "type": "string",
              "nullable": true
            },
            "nullable": true
          },
          "address": {
            "type": "string",
            "nullable": true
          },
          "storeFormat": {
            "type": "string",
            "nullable": true
          },
          "latitude": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "longitude": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "rating": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "notes": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_ICA_Cache_ICAStoreNoteCache"
            },
            "nullable": true
          },
          "periods": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_ICA_Cache_ICAStoreDetailFinancialPeriodCache"
            },
            "nullable": true
          },
          "revenue": {
            "type": "array",
            "items": {
              "type": "integer",
              "format": "int32"
            },
            "nullable": true
          },
          "grossMargins": {
            "type": "array",
            "items": {
              "type": "number",
              "format": "double"
            },
            "nullable": true
          },
          "operatingMargin": {
            "type": "array",
            "items": {
              "type": "number",
              "format": "double"
            },
            "nullable": true
          },
          "profitMargin": {
            "type": "array",
            "items": {
              "type": "number",
              "format": "double"
            },
            "nullable": true
          },
          "numberOfEmployees": {
            "type": "array",
            "items": {
              "type": "integer",
              "format": "int32"
            },
            "nullable": true
          },
          "dividends": {
            "type": "array",
            "items": {
              "type": "integer",
              "format": "int32"
            },
            "nullable": true
          },
          "extraDividends": {
            "type": "array",
            "items": {
              "type": "integer",
              "format": "int32"
            },
            "nullable": true
          },
          "netProfitOrLoss": {
            "type": "array",
            "items": {
              "type": "integer",
              "format": "int32"
            },
            "nullable": true
          },
          "balancedResultAfterDividend": {
            "type": "array",
            "items": {
              "type": "integer",
              "format": "int32"
            },
            "nullable": true
          },
          "costs": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_ICA_Cache_ICAStoreDetailFinancialCostCache"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_ICA_Cache_ICAStoreDetailFinancialCostCache": {
        "type": "object",
        "properties": {
          "label": {
            "type": "string",
            "nullable": true
          },
          "amount": {
            "type": "array",
            "items": {
              "type": "integer",
              "format": "int32"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_ICA_Cache_ICAStoreDetailFinancialPeriodCache": {
        "type": "object",
        "properties": {
          "period": {
            "type": "integer",
            "format": "int32"
          },
          "shortDescription": {
            "type": "string",
            "nullable": true
          },
          "periodLength": {
            "type": "string",
            "nullable": true
          },
          "highlight": {
            "type": "boolean"
          },
          "highlightLabel": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_ICA_Cache_ICAStoreFinancialsCache": {
        "type": "object",
        "properties": {
          "icA_StoreId": {
            "type": "integer",
            "format": "int32"
          },
          "storeFormat": {
            "type": "string",
            "nullable": true
          },
          "storeName": {
            "type": "string",
            "nullable": true
          },
          "slug": {
            "type": "string",
            "nullable": true
          },
          "storeNamesIfMany": {
            "type": "string",
            "nullable": true
          },
          "organizationNumber": {
            "type": "string",
            "nullable": true
          },
          "annualReports": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_ICA_Cache_ICAStoreAnnualReportCache"
            },
            "nullable": true
          },
          "revenueJsonArray": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "revenueOperatingProfitArray": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "extraDividendJsonArray": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "allDividendsJsonArray": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_ICA_Cache_ICAStoreNoteCache": {
        "type": "object",
        "properties": {
          "period": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "date": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "notes": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_KFM_DebtBalance": {
        "type": "object",
        "properties": {
          "lastUpdated": {
            "type": "integer",
            "format": "int64"
          },
          "totalAmountInSEK": {
            "type": "number",
            "format": "double",
            "readOnly": true
          },
          "public": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_KFM_DebtBalancePublic"
            },
            "nullable": true
          },
          "private": {
            "$ref": "#/components/schemas/Ormeo_Library_KFM_DebtBalancePrivate"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_KFM_DebtBalancePrivate": {
        "type": "object",
        "properties": {
          "numberOfCases": {
            "type": "integer",
            "format": "int32"
          },
          "totalAmountInSEK": {
            "type": "number",
            "format": "double"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_KFM_DebtBalancePublic": {
        "type": "object",
        "properties": {
          "description": {
            "type": "string",
            "nullable": true
          },
          "totalAmountInSEK": {
            "type": "number",
            "format": "double"
          },
          "numberOfCases": {
            "type": "integer",
            "format": "int32"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_KFM_ExecutionEvent": {
        "type": "object",
        "properties": {
          "executionDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "executionEventType": {
            "type": "string",
            "nullable": true
          },
          "executionEventTypeDescription": {
            "type": "string",
            "nullable": true
          },
          "terminatedWithCause": {
            "type": "string",
            "nullable": true
          },
          "terminatedWithCauseDescription": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_KFM_KFM_DebtorChangeEntityDecision_Dto": {
        "type": "object",
        "properties": {
          "decisionType": {
            "type": "string",
            "nullable": true
          },
          "decisionTypeDescription": {
            "type": "string",
            "nullable": true
          },
          "decisionDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "decisionEventType": {
            "type": "string",
            "nullable": true
          },
          "measures": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "measuresDescriptions": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "reasonForDecision": {
            "type": "string",
            "nullable": true
          },
          "reasonForDecisionDescription": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_KFM_KFM_DebtorChangeEntityExecution_Dto": {
        "type": "object",
        "properties": {
          "registrationDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "caseNumber": {
            "type": "string",
            "nullable": true
          },
          "caseNumberOldFormat": {
            "type": "string",
            "nullable": true
          },
          "debtType": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "debtTypeDescription": {
            "type": "string",
            "nullable": true
          },
          "executionYear": {
            "type": "string",
            "nullable": true
          },
          "executionTitleMonth": {
            "type": "string",
            "nullable": true
          },
          "executionDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "originalDebt": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "recalledAmount": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "executionEventType": {
            "type": "string",
            "nullable": true
          },
          "executionEventTypeDescription": {
            "type": "string",
            "nullable": true
          },
          "executionCaseType": {
            "type": "string",
            "nullable": true
          },
          "executionCaseTypeDescription": {
            "type": "string",
            "nullable": true
          },
          "terminatedWithCause": {
            "type": "string",
            "nullable": true
          },
          "terminatedWithCauseDescription": {
            "type": "string",
            "nullable": true
          },
          "executionEvents": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_KFM_ExecutionEvent"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_KFM_KFM_MostRecentDebtorSummary_Dto": {
        "type": "object",
        "properties": {
          "foreclosure": {
            "type": "boolean",
            "nullable": true
          },
          "debtRestructuring": {
            "type": "boolean",
            "nullable": true
          },
          "recordOfPaymentApplications": {
            "$ref": "#/components/schemas/Ormeo_Library_KFM_RecordOfPaymentApplications"
          },
          "recordOfNonPayment": {
            "$ref": "#/components/schemas/Ormeo_Library_KFM_RecordOfNonPayment"
          },
          "debtBalance": {
            "$ref": "#/components/schemas/Ormeo_Library_KFM_DebtBalance"
          },
          "executions": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_KFM_KFM_DebtorChangeEntityExecution_Dto"
            },
            "nullable": true
          },
          "decisions": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_KFM_KFM_DebtorChangeEntityDecision_Dto"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_KFM_KFM_OrderToPayCaseMinimal": {
        "type": "object",
        "properties": {
          "notificationType": {
            "type": "string",
            "nullable": true
          },
          "applicationVerdict": {
            "type": "string",
            "nullable": true
          },
          "casePrefix": {
            "type": "string",
            "nullable": true
          },
          "caseNumber": {
            "type": "string",
            "nullable": true
          },
          "dateOfApplicationOrVerdict": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "amount": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "applicationWithdrawn": {
            "type": "boolean",
            "nullable": true
          },
          "fileCreationDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_KFM_RecordOfNonPayment": {
        "type": "object",
        "properties": {
          "numberOfCases": {
            "type": "integer",
            "format": "int32"
          },
          "totalAmountInSEK": {
            "type": "number",
            "format": "double"
          },
          "lastCaseDate": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_KFM_RecordOfPaymentApplications": {
        "type": "object",
        "properties": {
          "numberOfCases": {
            "type": "integer",
            "format": "int32"
          },
          "totalAmountInSEK": {
            "type": "number",
            "format": "double"
          },
          "lastCaseDate": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "orderToPayCases": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_KFM_KFM_OrderToPayCaseMinimal"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_Gml_Schemas_AbstractGeometryType": {
        "required": [
          "id"
        ],
        "type": "object",
        "properties": {
          "srsName": {
            "type": "string",
            "nullable": true
          },
          "srsDimension": {
            "type": "string",
            "nullable": true
          },
          "description": {
            "type": "string",
            "nullable": true
          },
          "name": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Gml_Schemas_CodeType"
            },
            "nullable": true,
            "readOnly": true
          },
          "nameSpecified": {
            "type": "boolean",
            "readOnly": true
          },
          "id": {
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_Gml_Schemas_AggregationType": {
        "enum": [
          "set",
          "bag",
          "sequence",
          "array",
          "record",
          "table"
        ],
        "type": "string"
      },
      "Ormeo_Library_Lantmateriet2_Gml_Schemas_BoundingShapeType": {
        "required": [
          "envelope"
        ],
        "type": "object",
        "properties": {
          "envelope": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Gml_Schemas_EnvelopeType"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_Gml_Schemas_CodeType": {
        "type": "object",
        "properties": {
          "value": {
            "type": "string",
            "nullable": true
          },
          "codeSpace": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_Gml_Schemas_DirectPositionType": {
        "type": "object",
        "properties": {
          "value": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_Gml_Schemas_EnvelopeType": {
        "required": [
          "lowerCorner",
          "upperCorner"
        ],
        "type": "object",
        "properties": {
          "lowerCorner": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Gml_Schemas_DirectPositionType"
            },
            "readOnly": true
          },
          "upperCorner": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Gml_Schemas_DirectPositionType"
            },
            "readOnly": true
          },
          "srsName": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_AnteckningType": {
        "required": [
          "anteckningstext",
          "anteckningstyp",
          "beslut",
          "objektidentitet",
          "objektversion"
        ],
        "type": "object",
        "properties": {
          "anteckningstyp": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_AnteckningstypType"
          },
          "anteckningstext": {
            "type": "string"
          },
          "anteckningsanmarkning": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_AnteckningsanmarkningType"
            },
            "nullable": true,
            "readOnly": true
          },
          "anteckningsanmarkningSpecified": {
            "type": "boolean",
            "readOnly": true
          },
          "belastar": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_FastighetsreferensType"
            },
            "nullable": true,
            "readOnly": true
          },
          "belastarSpecified": {
            "type": "boolean",
            "readOnly": true
          },
          "avser": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_AvserreferensType"
            },
            "nullable": true,
            "readOnly": true
          },
          "avserSpecified": {
            "type": "boolean",
            "readOnly": true
          },
          "inskrivningsdagValue": {
            "type": "string",
            "format": "date-time"
          },
          "inskrivningsdagValueSpecified": {
            "type": "boolean"
          },
          "inskrivningsdag": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "dagboksnummer": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true,
            "readOnly": true
          },
          "dagboksnummerSpecified": {
            "type": "boolean",
            "readOnly": true
          },
          "aktnummer": {
            "type": "string",
            "nullable": true
          },
          "beslut": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_BeslutstypType"
          },
          "nyttBeslut": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_NyttBeslutType"
          },
          "uppskovsdatumValue": {
            "type": "string",
            "format": "date-time"
          },
          "uppskovsdatumValueSpecified": {
            "type": "boolean"
          },
          "uppskovsdatum": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "overklagande": {
            "type": "string",
            "nullable": true
          },
          "objektidentitet": {
            "pattern": "[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}",
            "type": "string"
          },
          "objektversion": {
            "type": "integer",
            "format": "int32"
          },
          "versionGiltigFranValue": {
            "type": "string",
            "format": "date-time"
          },
          "versionGiltigFranValueSpecified": {
            "type": "boolean"
          },
          "versionGiltigFran": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_AnteckningsanmarkningType": {
        "required": [
          "beslut",
          "objektidentitet",
          "objektversion"
        ],
        "type": "object",
        "properties": {
          "anmarkning": {
            "type": "string",
            "nullable": true
          },
          "inskrivningsdagValue": {
            "type": "string",
            "format": "date-time"
          },
          "inskrivningsdagValueSpecified": {
            "type": "boolean"
          },
          "inskrivningsdag": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "dagboksnummer": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true,
            "readOnly": true
          },
          "dagboksnummerSpecified": {
            "type": "boolean",
            "readOnly": true
          },
          "aktnummer": {
            "type": "string",
            "nullable": true
          },
          "beslut": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_BeslutstypType"
          },
          "nyttBeslut": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_NyttBeslutType"
          },
          "uppskovsdatumValue": {
            "type": "string",
            "format": "date-time"
          },
          "uppskovsdatumValueSpecified": {
            "type": "boolean"
          },
          "uppskovsdatum": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "overklagande": {
            "type": "string",
            "nullable": true
          },
          "objektidentitet": {
            "pattern": "[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}",
            "type": "string"
          },
          "objektversion": {
            "type": "integer",
            "format": "int32"
          },
          "versionGiltigFranValue": {
            "type": "string",
            "format": "date-time"
          },
          "versionGiltigFranValueSpecified": {
            "type": "boolean"
          },
          "versionGiltigFran": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_AnteckningstypType": {
        "enum": [
          "ansökanOmSammanläggning",
          "beslutOmSammanläggning",
          "beslutOmTagandeIFörvar",
          "betalningssäkringVerkställd",
          "ersättningsbeslut",
          "exekutivFörsäljning",
          "exekutivFörsäljningBegärd",
          "exploateringssamverkan",
          "expropriation",
          "expropriationsrättenFörverkad",
          "expropriationsstämning",
          "frågaOmInlösenEnligtAnläggningslagen",
          "frågaOmInlösenEnligtFastighetsbildningslagen",
          "frågaOmInlösenEnligtLedningsrättslagen",
          "förbud",
          "föreläggande",
          "företagsinteckning",
          "förköpsrätt",
          "förköpsrättBestridd",
          "förmånsrättFörFordran",
          "förnyelse",
          "förordnandeAttHelaFastighetenSkallSäljas",
          "hembud",
          "industritillbehör",
          "intresseanmälanFörArrendatorersRättAttFörvärvaArrendeställe",
          "intresseanmälanFörOmbildningTillBostadsrätt",
          "intresseanmälanFörOmbildningTillKooperativHyresrätt",
          "konkurs",
          "konkursAvslutadUtanAttFastighetenSålts",
          "kvarstad",
          "orubbadAvtalsrättighetVidInlösen",
          "ställföreträdare",
          "stämningIMålOmInlösen",
          "talanOmBulvanförhållande",
          "talanOmInlösen",
          "tvångsförvaltning",
          "utländsktBeslutFörLikvidationsförfarande",
          "utländsktBeslutFörInsolvensförfarande",
          "utländsktBeslutFörRekonstruktionsåtgärdLikvidationsförfarande",
          "utländsktBeslutFörRekonstruktionsåtgärd",
          "utmätning",
          "yttrandeOmSammanläggning",
          "åläggande",
          "överlåtelseförbud",
          "övrigt"
        ],
        "type": "string"
      },
      "Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_AvgaldType": {
        "required": [
          "startdatum"
        ],
        "type": "object",
        "properties": {
          "startdatum": {
            "type": "string",
            "format": "date-time"
          },
          "avgift": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_BeloppType"
          },
          "periodlangdarValue": {
            "type": "integer",
            "format": "int32"
          },
          "periodlangdarValueSpecified": {
            "type": "boolean"
          },
          "periodlangdar": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_AvserreferensType": {
        "type": "object",
        "properties": {
          "inskrivetAgande": {
            "pattern": "[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}",
            "type": "string",
            "nullable": true
          },
          "inteckning": {
            "pattern": "[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}",
            "type": "string",
            "nullable": true
          },
          "avtalsrattighet": {
            "pattern": "[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}",
            "type": "string",
            "nullable": true
          },
          "fastighetsreferens": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_FastighetsreferensType"
            },
            "nullable": true,
            "readOnly": true
          },
          "fastighetsreferensSpecified": {
            "type": "boolean",
            "readOnly": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_BelastarType": {
        "required": [
          "foretradesordning",
          "inskrivenBelastning",
          "objektidentitet",
          "objektversion"
        ],
        "type": "object",
        "properties": {
          "foretradesordning": {
            "type": "integer",
            "format": "int32"
          },
          "inskrivenBelastning": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_InskrivenBelastningType"
          },
          "objektidentitet": {
            "pattern": "[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}",
            "type": "string"
          },
          "objektversion": {
            "type": "integer",
            "format": "int32"
          },
          "versionGiltigFranValue": {
            "type": "string",
            "format": "date-time"
          },
          "versionGiltigFranValueSpecified": {
            "type": "boolean"
          },
          "versionGiltigFran": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_BeloppType": {
        "required": [
          "summa",
          "valuta"
        ],
        "type": "object",
        "properties": {
          "valuta": {
            "type": "string"
          },
          "summa": {
            "type": "integer",
            "format": "int64"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_BeslutstypType": {
        "enum": [
          "avslag",
          "avvisad",
          "beviljad",
          "okänd",
          "uppskov",
          "vilande"
        ],
        "type": "string"
      },
      "Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_BrakType": {
        "required": [
          "namnare",
          "taljare"
        ],
        "type": "object",
        "properties": {
          "taljare": {
            "type": "string"
          },
          "namnare": {
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_FangType": {
        "required": [
          "beslut",
          "inskrivetAgande",
          "objektidentitet",
          "objektversion"
        ],
        "type": "object",
        "properties": {
          "andelFang": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_BrakType"
          },
          "fangesarValue": {
            "type": "integer",
            "format": "int32"
          },
          "fangesarValueSpecified": {
            "type": "boolean"
          },
          "fangesar": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "fangesmanad": {
            "type": "string",
            "nullable": true
          },
          "fangesdagValue": {
            "type": "string",
            "format": "date-time"
          },
          "fangesdagValueSpecified": {
            "type": "boolean"
          },
          "fangesdag": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fangesartValue": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_FangesartType"
          },
          "fangesartValueSpecified": {
            "type": "boolean"
          },
          "fangesart": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_FangesartType"
          },
          "fangeskodValue": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_FangeskodType"
          },
          "fangeskodValueSpecified": {
            "type": "boolean"
          },
          "fangeskod": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_FangeskodType"
          },
          "forvarvstypValue": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_ForvarvstypType"
          },
          "forvarvstypValueSpecified": {
            "type": "boolean"
          },
          "forvarvstyp": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_ForvarvstypType"
          },
          "omradesbeskrivning": {
            "type": "string",
            "nullable": true
          },
          "lagfartsanmarkning": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_LagfartsanmarkningType"
            },
            "nullable": true,
            "readOnly": true
          },
          "lagfartsanmarkningSpecified": {
            "type": "boolean",
            "readOnly": true
          },
          "tomtrattsinnehavsanmarkning": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_TomtrattsinnehavsanmarkningType"
            },
            "nullable": true,
            "readOnly": true
          },
          "tomtrattsinnehavsanmarkningSpecified": {
            "type": "boolean",
            "readOnly": true
          },
          "inskrivetAgande": {
            "pattern": "[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}",
            "type": "string"
          },
          "inskrivningsdagValue": {
            "type": "string",
            "format": "date-time"
          },
          "inskrivningsdagValueSpecified": {
            "type": "boolean"
          },
          "inskrivningsdag": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "dagboksnummer": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true,
            "readOnly": true
          },
          "dagboksnummerSpecified": {
            "type": "boolean",
            "readOnly": true
          },
          "aktnummer": {
            "type": "string",
            "nullable": true
          },
          "beslut": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_BeslutstypType"
          },
          "nyttBeslut": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_NyttBeslutType"
          },
          "uppskovsdatumValue": {
            "type": "string",
            "format": "date-time"
          },
          "uppskovsdatumValueSpecified": {
            "type": "boolean"
          },
          "uppskovsdatum": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "overklagande": {
            "type": "string",
            "nullable": true
          },
          "objektidentitet": {
            "pattern": "[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}",
            "type": "string"
          },
          "objektversion": {
            "type": "integer",
            "format": "int32"
          },
          "versionGiltigFranValue": {
            "type": "string",
            "format": "date-time"
          },
          "versionGiltigFranValueSpecified": {
            "type": "boolean"
          },
          "versionGiltigFran": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_FangesartType": {
        "enum": [
          "arv",
          "avhandling",
          "avtal",
          "bodelning",
          "bodelningPgaDödsfall",
          "bodelningPgaSamboförhållandetsUpphörande",
          "bodelningPgaÄktenskapsskillnad",
          "bodelningUnderBeståendeÄktenskap",
          "bouppteckning",
          "byte",
          "delning",
          "domstolsUtslagEllerDom",
          "ensittarinlösen",
          "exekutivFörsäljning",
          "expropriation",
          "fideikommiss",
          "fusion",
          "förköp",
          "förvärvAvKyrkligJordPrästlöneboställe",
          "gåva",
          "inlösen",
          "järnvägslagfart",
          "konkursförsäljning",
          "köp",
          "lagaSkifte",
          "lagfartPåGrundvalAvProtokollFrånLagfartssammanträde",
          "skifte",
          "storskifte",
          "testamente",
          "tillskott",
          "upplåtelseAvTomträtt",
          "utdelning",
          "äganderättsförteckning",
          "äktenskapsförord",
          "övrigaFångeshandlingar"
        ],
        "type": "string"
      },
      "Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_FangeskodType": {
        "enum": [
          "item11",
          "item12",
          "item21",
          "item22",
          "item23",
          "item31",
          "item32",
          "item40",
          "item50",
          "item60",
          "item61",
          "item70",
          "item80",
          "item90"
        ],
        "type": "string"
      },
      "Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_FastighetsagandeforandringType": {
        "required": [
          "fang",
          "objektidentitet",
          "objektversion"
        ],
        "type": "object",
        "properties": {
          "kopeskilling": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_KopeskillingType"
          },
          "fang": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_FangType"
            },
            "readOnly": true
          },
          "overlatelse": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_OverlatelseType"
            },
            "nullable": true,
            "readOnly": true
          },
          "overlatelseSpecified": {
            "type": "boolean",
            "readOnly": true
          },
          "objektidentitet": {
            "pattern": "[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}",
            "type": "string"
          },
          "objektversion": {
            "type": "integer",
            "format": "int32"
          },
          "versionGiltigFranValue": {
            "type": "string",
            "format": "date-time"
          },
          "versionGiltigFranValueSpecified": {
            "type": "boolean"
          },
          "versionGiltigFran": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_FastighetsreferensType": {
        "required": [
          "objektidentitet"
        ],
        "type": "object",
        "properties": {
          "objektidentitet": {
            "pattern": "[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}",
            "type": "string"
          },
          "beteckning": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_ForvarvstypType": {
        "enum": [
          "område",
          "undantagAvOmråde",
          "undantagAvUtrymme",
          "utrymme"
        ],
        "type": "string"
      },
      "Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_GruppinformationType": {
        "required": [
          "gruppinformation",
          "objektidentitet",
          "objektversion"
        ],
        "type": "object",
        "properties": {
          "gruppinformationstypValue": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_GruppinformationstypType"
          },
          "gruppinformationstypValueSpecified": {
            "type": "boolean"
          },
          "gruppinformationstyp": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_GruppinformationstypType"
          },
          "gruppinformation": {
            "type": "string"
          },
          "objektidentitet": {
            "pattern": "[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}",
            "type": "string"
          },
          "objektversion": {
            "type": "integer",
            "format": "int32"
          },
          "versionGiltigFranValue": {
            "type": "string",
            "format": "date-time"
          },
          "versionGiltigFranValueSpecified": {
            "type": "boolean"
          },
          "versionGiltigFran": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_GruppinformationstypType": {
        "enum": [
          "avtalsrättighetsgruppinformation",
          "lagfartsgruppinformation"
        ],
        "type": "string"
      },
      "Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_InskrivenBelastningType": {
        "required": [
          "beslut",
          "objektidentitet",
          "objektversion"
        ],
        "type": "object",
        "properties": {
          "likaratt": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true,
            "readOnly": true
          },
          "likarattSpecified": {
            "type": "boolean",
            "readOnly": true
          },
          "inskrivningshandelse": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_InskrivningshandelseType"
            },
            "nullable": true,
            "readOnly": true
          },
          "inskrivningshandelseSpecified": {
            "type": "boolean",
            "readOnly": true
          },
          "inskrivningsdagValue": {
            "type": "string",
            "format": "date-time"
          },
          "inskrivningsdagValueSpecified": {
            "type": "boolean"
          },
          "inskrivningsdag": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "dagboksnummer": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true,
            "readOnly": true
          },
          "dagboksnummerSpecified": {
            "type": "boolean",
            "readOnly": true
          },
          "aktnummer": {
            "type": "string",
            "nullable": true
          },
          "beslut": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_BeslutstypType"
          },
          "nyttBeslut": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_NyttBeslutType"
          },
          "uppskovsdatumValue": {
            "type": "string",
            "format": "date-time"
          },
          "uppskovsdatumValueSpecified": {
            "type": "boolean"
          },
          "uppskovsdatum": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "overklagande": {
            "type": "string",
            "nullable": true
          },
          "objektidentitet": {
            "pattern": "[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}",
            "type": "string"
          },
          "objektversion": {
            "type": "integer",
            "format": "int32"
          },
          "versionGiltigFranValue": {
            "type": "string",
            "format": "date-time"
          },
          "versionGiltigFranValueSpecified": {
            "type": "boolean"
          },
          "versionGiltigFran": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_InskrivenBelastningreferensType": {
        "type": "object",
        "properties": {
          "inteckning": {
            "pattern": "[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}",
            "type": "string",
            "nullable": true
          },
          "avtalsrattighet": {
            "pattern": "[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}",
            "type": "string",
            "nullable": true
          },
          "fastighetsreferens": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_FastighetsreferensType"
            },
            "nullable": true,
            "readOnly": true
          },
          "fastighetsreferensSpecified": {
            "type": "boolean",
            "readOnly": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_InskrivetAgandeanmarkningstypType": {
        "enum": [
          "andelOsäker",
          "anmärkning",
          "avyttringsskyldighet",
          "enskildEgendom",
          "frågaOmRättelse",
          "förbehåll",
          "förbehållOmInteckning",
          "förbehållOmInteckningPantsättning",
          "förbehållOmInteckningPantsättningUpplåtaRättighet",
          "förbehållOmInteckningUpplåtaRättighet",
          "förbehållOmPantsättning",
          "förbehållOmPantsättningUpplåtaRättighet",
          "förbehållOmUpplåtaRättighet",
          "förbehållOmÖverlåtelse",
          "förbehållOmÖverlåtelseInteckning",
          "förbehållOmÖverlåtelseInteckningPantsättning",
          "förbehållOmÖverlåtelseInteckningPantsättningUpplåtaRättighet",
          "förbehållOmÖverlåtelseInteckningUpplåtaRättighet",
          "förbehållOmÖverlåtelsePantsättning",
          "förbehållOmÖverlåtelsePantsättningUpplåtaRättighet",
          "förbehållOmÖverlåtelseUpplåtaRättighet",
          "hembud",
          "idNummerKompletterat",
          "järnvägslagfart",
          "kommunensLagfartsförhållandenEjUtredda",
          "lagfartenAvserStamfastigheten",
          "namn",
          "rättat",
          "sammanläggningsavtal",
          "tvist",
          "tvistAvgjord",
          "ytterligareFångFörekommer"
        ],
        "type": "string"
      },
      "Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_InskrivningMemberType": {
        "required": [
          "inskrivningsinformation"
        ],
        "type": "object",
        "properties": {
          "inskrivningsinformation": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_InskrivningsinformationType"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_InskrivningResponseType": {
        "required": [
          "id"
        ],
        "type": "object",
        "properties": {
          "inskrivningMember": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_InskrivningMemberType"
            },
            "nullable": true,
            "readOnly": true
          },
          "inskrivningMemberSpecified": {
            "type": "boolean",
            "readOnly": true
          },
          "aggregationTypeValue": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Gml_Schemas_AggregationType"
          },
          "aggregationTypeValueSpecified": {
            "type": "boolean"
          },
          "aggregationType": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Gml_Schemas_AggregationType"
          },
          "boundedBy": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Gml_Schemas_BoundingShapeType"
          },
          "description": {
            "type": "string",
            "nullable": true
          },
          "name": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Gml_Schemas_CodeType"
            },
            "nullable": true,
            "readOnly": true
          },
          "nameSpecified": {
            "type": "boolean",
            "readOnly": true
          },
          "id": {
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_InskrivningResponseTypePropertyDirectOrder": {
        "type": "object",
        "properties": {
          "data": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_InskrivningResponseType"
          },
          "xml": {
            "type": "string",
            "nullable": true
          },
          "cost": {
            "type": "number",
            "format": "double",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_InskrivningshandelseType": {
        "required": [
          "beslut",
          "inskrivningshandelsetyp",
          "objektidentitet",
          "objektversion"
        ],
        "type": "object",
        "properties": {
          "inskrivningshandelsetyp": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_InskrivningshandelsetypType"
          },
          "akthanvisning": {
            "type": "string",
            "nullable": true
          },
          "paverkar": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_InskrivenBelastningreferensType"
            },
            "nullable": true,
            "readOnly": true
          },
          "paverkarSpecified": {
            "type": "boolean",
            "readOnly": true
          },
          "inskrivningsdagValue": {
            "type": "string",
            "format": "date-time"
          },
          "inskrivningsdagValueSpecified": {
            "type": "boolean"
          },
          "inskrivningsdag": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "dagboksnummer": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true,
            "readOnly": true
          },
          "dagboksnummerSpecified": {
            "type": "boolean",
            "readOnly": true
          },
          "aktnummer": {
            "type": "string",
            "nullable": true
          },
          "beslut": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_BeslutstypType"
          },
          "nyttBeslut": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_NyttBeslutType"
          },
          "uppskovsdatumValue": {
            "type": "string",
            "format": "date-time"
          },
          "uppskovsdatumValueSpecified": {
            "type": "boolean"
          },
          "uppskovsdatum": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "overklagande": {
            "type": "string",
            "nullable": true
          },
          "objektidentitet": {
            "pattern": "[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}",
            "type": "string"
          },
          "objektversion": {
            "type": "integer",
            "format": "int32"
          },
          "versionGiltigFranValue": {
            "type": "string",
            "format": "date-time"
          },
          "versionGiltigFranValueSpecified": {
            "type": "boolean"
          },
          "versionGiltigFran": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_InskrivningshandelsetypType": {
        "enum": [
          "dödning",
          "exekutivFörsäljning",
          "expropriation",
          "fastighetsreglering",
          "förordnandeEnligtFastighetsbildningslagen",
          "inlösen",
          "kommunrelax",
          "nedsättning",
          "relax",
          "sammanföring",
          "sammanläggning",
          "utbyte",
          "utsträckning"
        ],
        "type": "string"
      },
      "Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_InskrivningsinformationType": {
        "required": [
          "fastighetsreferens",
          "id",
          "objektidentitet"
        ],
        "type": "object",
        "properties": {
          "objektidentitet": {
            "pattern": "[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}",
            "type": "string"
          },
          "fastighetsreferens": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_FastighetsreferensType"
          },
          "irFastighet": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_IrFastighetType"
          },
          "omrade": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_OmradeType"
          },
          "pagaendeArende": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_PagaendeArendeType"
            },
            "nullable": true,
            "readOnly": true
          },
          "pagaendeArendeSpecified": {
            "type": "boolean",
            "readOnly": true
          },
          "gruppinformation": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_GruppinformationType"
            },
            "nullable": true,
            "readOnly": true
          },
          "gruppinformationSpecified": {
            "type": "boolean",
            "readOnly": true
          },
          "tomtrattsupplatelse": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_TomtrattsupplatelseType"
          },
          "belastar": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_BelastarType"
            },
            "nullable": true,
            "readOnly": true
          },
          "belastarSpecified": {
            "type": "boolean",
            "readOnly": true
          },
          "utstrackningSoktI": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_UtstrackningSoktIType"
            },
            "nullable": true,
            "readOnly": true
          },
          "utstrackningSoktISpecified": {
            "type": "boolean",
            "readOnly": true
          },
          "anteckning": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_AnteckningType"
            },
            "nullable": true,
            "readOnly": true
          },
          "anteckningSpecified": {
            "type": "boolean",
            "readOnly": true
          },
          "agande": {
            "type": "array",
            "items": { },
            "nullable": true,
            "readOnly": true
          },
          "agandeSpecified": {
            "type": "boolean",
            "readOnly": true
          },
          "tidigareAgande": {
            "type": "array",
            "items": { },
            "nullable": true,
            "readOnly": true
          },
          "tidigareAgandeSpecified": {
            "type": "boolean",
            "readOnly": true
          },
          "fastighetsagandeforandring": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_FastighetsagandeforandringType"
            },
            "nullable": true,
            "readOnly": true
          },
          "fastighetsagandeforandringSpecified": {
            "type": "boolean",
            "readOnly": true
          },
          "boundedBy": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Gml_Schemas_BoundingShapeType"
          },
          "description": {
            "type": "string",
            "nullable": true
          },
          "name": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Gml_Schemas_CodeType"
            },
            "nullable": true,
            "readOnly": true
          },
          "nameSpecified": {
            "type": "boolean",
            "readOnly": true
          },
          "id": {
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_InskrivningskontorType": {
        "enum": [
          "eksjö",
          "härnösand",
          "hässleholm",
          "mora",
          "norrtälje",
          "skellefteå",
          "uddevalla"
        ],
        "type": "string"
      },
      "Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_InteckningsreferensType": {
        "required": [
          "fastighetsreferens",
          "inteckning"
        ],
        "type": "object",
        "properties": {
          "inteckning": {
            "pattern": "[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}",
            "type": "string"
          },
          "fastighetsreferens": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_FastighetsreferensType"
            },
            "readOnly": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_IrFastighetType": {
        "required": [
          "allvarligtFelIr",
          "beraknatAktualitetsdatum",
          "objektidentitet",
          "objektversion",
          "oklaraInskrivningsforhallanden"
        ],
        "type": "object",
        "properties": {
          "aldreForhallande": {
            "type": "string",
            "nullable": true
          },
          "allvarligtFelIr": {
            "type": "boolean"
          },
          "oklaraInskrivningsforhallanden": {
            "type": "boolean"
          },
          "senasteAndringInskrivningsdelenValue": {
            "type": "string",
            "format": "date-time"
          },
          "senasteAndringInskrivningsdelenValueSpecified": {
            "type": "boolean"
          },
          "senasteAndringInskrivningsdelen": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "beraknatAktualitetsdatum": {
            "type": "string",
            "format": "date-time"
          },
          "objektidentitet": {
            "pattern": "[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}",
            "type": "string"
          },
          "objektversion": {
            "type": "integer",
            "format": "int32"
          },
          "versionGiltigFranValue": {
            "type": "string",
            "format": "date-time"
          },
          "versionGiltigFranValueSpecified": {
            "type": "boolean"
          },
          "versionGiltigFran": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_KopeskillingType": {
        "required": [
          "objektidentitet",
          "objektversion"
        ],
        "type": "object",
        "properties": {
          "preliminarKopeskillingFastEgendom": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_BeloppType"
          },
          "omraknadPreliminarKopeskilling": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_BeloppType"
          },
          "kopeskillingFastEgendom": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_BeloppType"
          },
          "omraknadKopeskilling": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_BeloppType"
          },
          "mellangift": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_BeloppType"
          },
          "kopeskillingLosEgendom": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_BeloppType"
          },
          "kopeskillingstypValue": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_KopeskillingstypType"
          },
          "kopeskillingstypValueSpecified": {
            "type": "boolean"
          },
          "kopeskillingstyp": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_KopeskillingstypType"
          },
          "omfattar": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_FastighetsreferensType"
            },
            "nullable": true,
            "readOnly": true
          },
          "omfattarSpecified": {
            "type": "boolean",
            "readOnly": true
          },
          "objektidentitet": {
            "pattern": "[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}",
            "type": "string"
          },
          "objektversion": {
            "type": "integer",
            "format": "int32"
          },
          "versionGiltigFranValue": {
            "type": "string",
            "format": "date-time"
          },
          "versionGiltigFranValueSpecified": {
            "type": "boolean"
          },
          "versionGiltigFran": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_KopeskillingstypType": {
        "enum": [
          "ingenKöpeskillingRedovisas",
          "avserHelaFastigheten",
          "avserÄvenAnnanFastighet"
        ],
        "type": "string"
      },
      "Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_LagfartsanmarkningType": {
        "required": [
          "beslut",
          "objektidentitet",
          "objektversion"
        ],
        "type": "object",
        "properties": {
          "lagfartsanmarkningValue": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_InskrivetAgandeanmarkningstypType"
          },
          "lagfartsanmarkningValueSpecified": {
            "type": "boolean"
          },
          "lagfartsanmarkning": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_InskrivetAgandeanmarkningstypType"
          },
          "ovrigAnmarkning": {
            "type": "string",
            "nullable": true
          },
          "gemensamBostadSambo": {
            "type": "string",
            "nullable": true
          },
          "tvistAvgjordTillFormanFor": {
            "type": "string",
            "nullable": true
          },
          "inskrivningsdagValue": {
            "type": "string",
            "format": "date-time"
          },
          "inskrivningsdagValueSpecified": {
            "type": "boolean"
          },
          "inskrivningsdag": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "dagboksnummer": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true,
            "readOnly": true
          },
          "dagboksnummerSpecified": {
            "type": "boolean",
            "readOnly": true
          },
          "aktnummer": {
            "type": "string",
            "nullable": true
          },
          "beslut": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_BeslutstypType"
          },
          "nyttBeslut": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_NyttBeslutType"
          },
          "uppskovsdatumValue": {
            "type": "string",
            "format": "date-time"
          },
          "uppskovsdatumValueSpecified": {
            "type": "boolean"
          },
          "uppskovsdatum": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "overklagande": {
            "type": "string",
            "nullable": true
          },
          "objektidentitet": {
            "pattern": "[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}",
            "type": "string"
          },
          "objektversion": {
            "type": "integer",
            "format": "int32"
          },
          "versionGiltigFranValue": {
            "type": "string",
            "format": "date-time"
          },
          "versionGiltigFranValueSpecified": {
            "type": "boolean"
          },
          "versionGiltigFran": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_NyttBeslutType": {
        "type": "object",
        "properties": {
          "beslutetsInskrivningsdagValue": {
            "type": "string",
            "format": "date-time"
          },
          "beslutetsInskrivningsdagValueSpecified": {
            "type": "boolean"
          },
          "beslutetsInskrivningsdag": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "beslutetsDagboksnummer": {
            "type": "string",
            "nullable": true
          },
          "beslutetsAktnummer": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_OmradeType": {
        "required": [
          "inskrivningskontor",
          "objektidentitet",
          "objektversion",
          "omradesaktualitet"
        ],
        "type": "object",
        "properties": {
          "inskrivningskontor": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_InskrivningskontorType"
          },
          "omradesaktualitet": {
            "type": "string",
            "format": "date-time"
          },
          "objektidentitet": {
            "pattern": "[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}",
            "type": "string"
          },
          "objektversion": {
            "type": "integer",
            "format": "int32"
          },
          "versionGiltigFranValue": {
            "type": "string",
            "format": "date-time"
          },
          "versionGiltigFranValueSpecified": {
            "type": "boolean"
          },
          "versionGiltigFran": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_OverlatelseType": {
        "required": [
          "inskrivetAgande",
          "objektidentitet",
          "objektversion"
        ],
        "type": "object",
        "properties": {
          "andelOverlatelse": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_BrakType"
          },
          "inskrivetAgande": {
            "pattern": "[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}",
            "type": "string"
          },
          "objektidentitet": {
            "pattern": "[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}",
            "type": "string"
          },
          "objektversion": {
            "type": "integer",
            "format": "int32"
          },
          "versionGiltigFranValue": {
            "type": "string",
            "format": "date-time"
          },
          "versionGiltigFranValueSpecified": {
            "type": "boolean"
          },
          "versionGiltigFran": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_PagaendeArendeType": {
        "required": [
          "aktualitetsdatum",
          "objektidentitet",
          "objektversion",
          "pagaendeArendetyp"
        ],
        "type": "object",
        "properties": {
          "aktualitetsdatum": {
            "type": "string",
            "format": "date-time"
          },
          "pagaendeArendetyp": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_PagaendeArendetypType"
            },
            "readOnly": true
          },
          "fastighetsreferens": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_FastighetsreferensType"
            },
            "nullable": true,
            "readOnly": true
          },
          "fastighetsreferensSpecified": {
            "type": "boolean",
            "readOnly": true
          },
          "objektidentitet": {
            "pattern": "[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}",
            "type": "string"
          },
          "objektversion": {
            "type": "integer",
            "format": "int32"
          },
          "versionGiltigFranValue": {
            "type": "string",
            "format": "date-time"
          },
          "versionGiltigFranValueSpecified": {
            "type": "boolean"
          },
          "versionGiltigFran": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_PagaendeArendetypType": {
        "enum": [
          "anteckning",
          "aviseringar",
          "avtalsrättighet",
          "inteckning",
          "lagfart",
          "tomträtt",
          "övrigt"
        ],
        "type": "string"
      },
      "Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_TomtrattsinnehavsanmarkningType": {
        "required": [
          "beslut",
          "objektidentitet",
          "objektversion"
        ],
        "type": "object",
        "properties": {
          "tomtrattsinnehavsanmarkningValue": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_InskrivetAgandeanmarkningstypType"
          },
          "tomtrattsinnehavsanmarkningValueSpecified": {
            "type": "boolean"
          },
          "tomtrattsinnehavsanmarkning": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_InskrivetAgandeanmarkningstypType"
          },
          "ovrigAnmarkning": {
            "type": "string",
            "nullable": true
          },
          "gemensamBostadSambo": {
            "type": "string",
            "nullable": true
          },
          "tvistAvgjordTillFormanFor": {
            "type": "string",
            "nullable": true
          },
          "inskrivningsdagValue": {
            "type": "string",
            "format": "date-time"
          },
          "inskrivningsdagValueSpecified": {
            "type": "boolean"
          },
          "inskrivningsdag": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "dagboksnummer": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true,
            "readOnly": true
          },
          "dagboksnummerSpecified": {
            "type": "boolean",
            "readOnly": true
          },
          "aktnummer": {
            "type": "string",
            "nullable": true
          },
          "beslut": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_BeslutstypType"
          },
          "nyttBeslut": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_NyttBeslutType"
          },
          "uppskovsdatumValue": {
            "type": "string",
            "format": "date-time"
          },
          "uppskovsdatumValueSpecified": {
            "type": "boolean"
          },
          "uppskovsdatum": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "overklagande": {
            "type": "string",
            "nullable": true
          },
          "objektidentitet": {
            "pattern": "[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}",
            "type": "string"
          },
          "objektversion": {
            "type": "integer",
            "format": "int32"
          },
          "versionGiltigFranValue": {
            "type": "string",
            "format": "date-time"
          },
          "versionGiltigFranValueSpecified": {
            "type": "boolean"
          },
          "versionGiltigFran": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_TomtrattsupplatelseType": {
        "required": [
          "aldreTomtratt",
          "andamal",
          "avgald",
          "beslut",
          "objektidentitet",
          "objektversion",
          "upplatelsedatum",
          "ursprungligtStartdatum"
        ],
        "type": "object",
        "properties": {
          "andamal": {
            "type": "string"
          },
          "inskrankning": {
            "type": "string",
            "nullable": true
          },
          "ursprungligtStartdatum": {
            "type": "string",
            "format": "date-time"
          },
          "avgald": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_AvgaldType"
          },
          "framtidaAvgald": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_AvgaldType"
          },
          "aldreTomtratt": {
            "type": "boolean"
          },
          "uppsagningsperiodarValue": {
            "type": "integer",
            "format": "int32"
          },
          "uppsagningsperiodarValueSpecified": {
            "type": "boolean"
          },
          "uppsagningsperiodar": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "uppsagningsdatumValue": {
            "type": "string",
            "format": "date-time"
          },
          "uppsagningsdatumValueSpecified": {
            "type": "boolean"
          },
          "uppsagningsdatum": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "upplatelsedatum": {
            "type": "string",
            "format": "date-time"
          },
          "tomtrattsupplatelseanmarkning": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_TomtrattsupplatelseanmarkningType"
            },
            "nullable": true,
            "readOnly": true
          },
          "tomtrattsupplatelseanmarkningSpecified": {
            "type": "boolean",
            "readOnly": true
          },
          "inskrivningsdagValue": {
            "type": "string",
            "format": "date-time"
          },
          "inskrivningsdagValueSpecified": {
            "type": "boolean"
          },
          "inskrivningsdag": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "dagboksnummer": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true,
            "readOnly": true
          },
          "dagboksnummerSpecified": {
            "type": "boolean",
            "readOnly": true
          },
          "aktnummer": {
            "type": "string",
            "nullable": true
          },
          "beslut": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_BeslutstypType"
          },
          "nyttBeslut": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_NyttBeslutType"
          },
          "uppskovsdatumValue": {
            "type": "string",
            "format": "date-time"
          },
          "uppskovsdatumValueSpecified": {
            "type": "boolean"
          },
          "uppskovsdatum": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "overklagande": {
            "type": "string",
            "nullable": true
          },
          "objektidentitet": {
            "pattern": "[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}",
            "type": "string"
          },
          "objektversion": {
            "type": "integer",
            "format": "int32"
          },
          "versionGiltigFranValue": {
            "type": "string",
            "format": "date-time"
          },
          "versionGiltigFranValueSpecified": {
            "type": "boolean"
          },
          "versionGiltigFran": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_TomtrattsupplatelseanmarkningType": {
        "required": [
          "anmarkning",
          "beslut",
          "objektidentitet",
          "objektversion"
        ],
        "type": "object",
        "properties": {
          "anmarkning": {
            "type": "string"
          },
          "inskrivningsdagValue": {
            "type": "string",
            "format": "date-time"
          },
          "inskrivningsdagValueSpecified": {
            "type": "boolean"
          },
          "inskrivningsdag": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "dagboksnummer": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true,
            "readOnly": true
          },
          "dagboksnummerSpecified": {
            "type": "boolean",
            "readOnly": true
          },
          "aktnummer": {
            "type": "string",
            "nullable": true
          },
          "beslut": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_BeslutstypType"
          },
          "nyttBeslut": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_NyttBeslutType"
          },
          "uppskovsdatumValue": {
            "type": "string",
            "format": "date-time"
          },
          "uppskovsdatumValueSpecified": {
            "type": "boolean"
          },
          "uppskovsdatum": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "overklagande": {
            "type": "string",
            "nullable": true
          },
          "objektidentitet": {
            "pattern": "[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}",
            "type": "string"
          },
          "objektversion": {
            "type": "integer",
            "format": "int32"
          },
          "versionGiltigFranValue": {
            "type": "string",
            "format": "date-time"
          },
          "versionGiltigFranValueSpecified": {
            "type": "boolean"
          },
          "versionGiltigFran": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_UtstrackningSoktIType": {
        "required": [
          "foretradesordning",
          "inteckningsreferens",
          "objektidentitet",
          "objektversion"
        ],
        "type": "object",
        "properties": {
          "foretradesordning": {
            "type": "integer",
            "format": "int32"
          },
          "inteckningsreferens": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Inskrivning_Schemas_InteckningsreferensType"
          },
          "objektidentitet": {
            "pattern": "[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}",
            "type": "string"
          },
          "objektversion": {
            "type": "integer",
            "format": "int32"
          },
          "versionGiltigFranValue": {
            "type": "string",
            "format": "date-time"
          },
          "versionGiltigFranValueSpecified": {
            "type": "boolean"
          },
          "versionGiltigFran": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_MarkreglerandeBestammelse_Schemas_BerorType": {
        "required": [
          "objektidentitet",
          "objektversion",
          "registerenhetsreferens"
        ],
        "type": "object",
        "properties": {
          "registerenhetsreferens": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_MarkreglerandeBestammelse_Schemas_RegisterenhetsreferensType"
          },
          "objektidentitet": {
            "pattern": "[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}",
            "type": "string"
          },
          "objektversion": {
            "type": "integer",
            "format": "int32"
          },
          "versionGiltigFranValue": {
            "type": "string",
            "format": "date-time"
          },
          "versionGiltigFranValueSpecified": {
            "type": "boolean"
          },
          "versionGiltigFran": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_MarkreglerandeBestammelse_Schemas_MarkreglerandeBestammelseMemberType": {
        "type": "object",
        "properties": {
          "markreglerandeBestammelse": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_MarkreglerandeBestammelse_Schemas_MarkreglerandeBestammelseType"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_MarkreglerandeBestammelse_Schemas_MarkreglerandeBestammelseResponseType": {
        "required": [
          "id"
        ],
        "type": "object",
        "properties": {
          "markreglerandeBestammelseMember": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_MarkreglerandeBestammelse_Schemas_MarkreglerandeBestammelseMemberType"
            },
            "nullable": true,
            "readOnly": true
          },
          "markreglerandeBestammelseMemberSpecified": {
            "type": "boolean",
            "readOnly": true
          },
          "aggregationTypeValue": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Gml_Schemas_AggregationType"
          },
          "aggregationTypeValueSpecified": {
            "type": "boolean"
          },
          "aggregationType": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Gml_Schemas_AggregationType"
          },
          "boundedBy": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Gml_Schemas_BoundingShapeType"
          },
          "description": {
            "type": "string",
            "nullable": true
          },
          "name": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Gml_Schemas_CodeType"
            },
            "nullable": true,
            "readOnly": true
          },
          "nameSpecified": {
            "type": "boolean",
            "readOnly": true
          },
          "id": {
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_MarkreglerandeBestammelse_Schemas_MarkreglerandeBestammelseResponseTypePropertyDirectOrder": {
        "type": "object",
        "properties": {
          "data": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_MarkreglerandeBestammelse_Schemas_MarkreglerandeBestammelseResponseType"
          },
          "xml": {
            "type": "string",
            "nullable": true
          },
          "cost": {
            "type": "number",
            "format": "double",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_MarkreglerandeBestammelse_Schemas_MarkreglerandeBestammelseType": {
        "required": [
          "id",
          "objektidentitet"
        ],
        "type": "object",
        "properties": {
          "objektidentitet": {
            "pattern": "[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}",
            "type": "string"
          },
          "markreglerandeBestammelseattribut": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_MarkreglerandeBestammelse_Schemas_MarkreglerandeBestammelseattributType"
          },
          "beror": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_MarkreglerandeBestammelse_Schemas_BerorType"
            },
            "nullable": true,
            "readOnly": true
          },
          "berorSpecified": {
            "type": "boolean",
            "readOnly": true
          },
          "yta": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Gml_Schemas_AbstractGeometryType"
            },
            "nullable": true,
            "readOnly": true
          },
          "ytaSpecified": {
            "type": "boolean",
            "readOnly": true
          },
          "boundedBy": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Gml_Schemas_BoundingShapeType"
          },
          "description": {
            "type": "string",
            "nullable": true
          },
          "name": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Gml_Schemas_CodeType"
            },
            "nullable": true,
            "readOnly": true
          },
          "nameSpecified": {
            "type": "boolean",
            "readOnly": true
          },
          "id": {
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_MarkreglerandeBestammelse_Schemas_MarkreglerandeBestammelseattributType": {
        "required": [
          "objektidentitet",
          "objektversion"
        ],
        "type": "object",
        "properties": {
          "objektidentitet": {
            "pattern": "[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}",
            "type": "string"
          },
          "objektversion": {
            "type": "integer",
            "format": "int32"
          },
          "versionGiltigFranValue": {
            "type": "string",
            "format": "date-time"
          },
          "versionGiltigFranValueSpecified": {
            "type": "boolean"
          },
          "versionGiltigFran": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_MarkreglerandeBestammelse_Schemas_RegisterenhetsreferensType": {
        "required": [
          "objektidentitet"
        ],
        "type": "object",
        "properties": {
          "objektidentitet": {
            "pattern": "[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}",
            "type": "string"
          },
          "beteckning": {
            "type": "string",
            "nullable": true
          },
          "typValue": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_MarkreglerandeBestammelse_Schemas_RegisterenhetstypType"
          },
          "typValueSpecified": {
            "type": "boolean"
          },
          "typ": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_MarkreglerandeBestammelse_Schemas_RegisterenhetstypType"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_MarkreglerandeBestammelse_Schemas_RegisterenhetstypType": {
        "enum": [
          "fastighet",
          "samfällighet"
        ],
        "type": "string"
      },
      "Ormeo_Library_Lantmateriet2_Rattighet_Schemas_AndringstypType": {
        "enum": [
          "berörkrets",
          "grundinformation"
        ],
        "type": "string"
      },
      "Ormeo_Library_Lantmateriet2_Rattighet_Schemas_AvregistreringsorsakType": {
        "enum": [
          "sammanslagen",
          "uppdelad",
          "upphävdUpphörd"
        ],
        "type": "string"
      },
      "Ormeo_Library_Lantmateriet2_Rattighet_Schemas_FastighetsatgardType": {
        "enum": [
          "anläggningsförrättningServitutsåtgärd",
          "anläggningsåtgärd",
          "annanÅtgärd",
          "anslutningEnligtAnläggningslagen",
          "arealavmätning",
          "arealkomplettering",
          "arealutredning",
          "avÅlderBestående",
          "avlösning",
          "avstyckning",
          "avstyckningLagaSkifte",
          "avstyckningServitutsutbrytning",
          "avsöndring",
          "avvittring",
          "beslutOmFastighetsindelning",
          "beslutOmFörsamlingsindelning",
          "beslutOmFörsamlingsindelningEnligtÄldreLagstiftning",
          "beslutOmÄndringIKommunalIndelningISambandMedFastighetsbildning",
          "delning",
          "ensittarlösen",
          "enskifte",
          "evlFörrättning",
          "expropriation",
          "expropriationsmätning",
          "fastighetsbestämning",
          "fastighetsreglering",
          "fastighetsregleringAndelsöverföring",
          "fastighetsregleringServitutsåtgärd",
          "förrättningEnligtEnsittarlagen",
          "förrättningEnligtLagOmVissaGemensamhetsanläggningar",
          "gränsbestämning",
          "gränsutmärkningFullföljd",
          "hemmansklyvning",
          "indelningsändring",
          "infördITomtboken",
          "inlösen",
          "inställdÅtgärdEllerFörrättning",
          "klyvning",
          "lagaSkifte",
          "ledningsrättsåtgärd",
          "legaliseradSämjedelning",
          "legaliseratArealfång",
          "legaliseringÄganderättsutredning",
          "legaliseringsförrättning",
          "mantalssättning",
          "mätning",
          "nybyggnadskarta",
          "nymätning",
          "omprövningEnligtFörvaltningslagen",
          "registreringsbeslut",
          "rågångsåtgärd",
          "rättelseEnligtFörvaltningslagen",
          "rättelseKomplettering",
          "sammanföring",
          "sammanläggning",
          "servitutsutbrytning",
          "servitutsåtgärd",
          "skatteläggning",
          "storskifte",
          "syneförrättning",
          "säkerställandeAvGränsmärke",
          "särskildGränsutmärkning",
          "tomtmätning",
          "undanröjdÅtgärd",
          "uteslutning",
          "utredning",
          "vägförrättning",
          "åbodelning",
          "återställandeAvGränsmärke",
          "äganderättsutredning",
          "ägomätning",
          "ägostyckning",
          "ägoutbyte",
          "ändratAndelstalEnligtAnläggningslagen",
          "ändringIFörsamlingsindelningen",
          "överenskommelseEnligtAnläggningslagen"
        ],
        "type": "string"
      },
      "Ormeo_Library_Lantmateriet2_Rattighet_Schemas_GemensamhetsanlaggningreferensType": {
        "required": [
          "objektidentitet"
        ],
        "type": "object",
        "properties": {
          "objektidentitet": {
            "pattern": "[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}",
            "type": "string"
          },
          "beteckning": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_Rattighet_Schemas_OvrigRattighetshavareType": {
        "required": [
          "klartext",
          "objektidentitet",
          "objektversion",
          "rattighetshavarekategori"
        ],
        "type": "object",
        "properties": {
          "rattighetshavarekategori": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Rattighet_Schemas_RattighetshavareType"
          },
          "klartext": {
            "type": "string"
          },
          "rattsforhallandereferens": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Rattighet_Schemas_RattsforhallandereferensType"
            },
            "nullable": true,
            "readOnly": true
          },
          "rattsforhallandereferensSpecified": {
            "type": "boolean",
            "readOnly": true
          },
          "objektidentitet": {
            "pattern": "[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}",
            "type": "string"
          },
          "objektversion": {
            "type": "integer",
            "format": "int32"
          },
          "versionGiltigFranValue": {
            "type": "string",
            "format": "date-time"
          },
          "versionGiltigFranValueSpecified": {
            "type": "boolean"
          },
          "versionGiltigFran": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_Rattighet_Schemas_PagaendeRattighetsarendeType": {
        "required": [
          "andringstyp",
          "arendeidentitet",
          "flaggdatum",
          "flaggniva",
          "kontor",
          "objektidentitet",
          "objektversion"
        ],
        "type": "object",
        "properties": {
          "kontor": {
            "type": "string"
          },
          "arendeidentitet": {
            "type": "string"
          },
          "flaggniva": {
            "type": "integer",
            "format": "int32"
          },
          "flaggdatum": {
            "type": "string",
            "format": "date-time"
          },
          "andringstyp": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Rattighet_Schemas_AndringstypType"
          },
          "objektidentitet": {
            "pattern": "[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}",
            "type": "string"
          },
          "objektversion": {
            "type": "integer",
            "format": "int32"
          },
          "versionGiltigFranValue": {
            "type": "string",
            "format": "date-time"
          },
          "versionGiltigFranValueSpecified": {
            "type": "boolean"
          },
          "versionGiltigFran": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_Rattighet_Schemas_RattighetMemberType": {
        "required": [
          "rattighet"
        ],
        "type": "object",
        "properties": {
          "rattighet": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Rattighet_Schemas_RattighetType"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_Rattighet_Schemas_RattighetResponseType": {
        "required": [
          "id"
        ],
        "type": "object",
        "properties": {
          "rattighetMember": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Rattighet_Schemas_RattighetMemberType"
            },
            "nullable": true,
            "readOnly": true
          },
          "rattighetMemberSpecified": {
            "type": "boolean",
            "readOnly": true
          },
          "aggregationTypeValue": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Gml_Schemas_AggregationType"
          },
          "aggregationTypeValueSpecified": {
            "type": "boolean"
          },
          "aggregationType": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Gml_Schemas_AggregationType"
          },
          "boundedBy": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Gml_Schemas_BoundingShapeType"
          },
          "description": {
            "type": "string",
            "nullable": true
          },
          "name": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Gml_Schemas_CodeType"
            },
            "nullable": true,
            "readOnly": true
          },
          "nameSpecified": {
            "type": "boolean",
            "readOnly": true
          },
          "id": {
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_Rattighet_Schemas_RattighetResponseTypePropertyDirectOrder": {
        "type": "object",
        "properties": {
          "data": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Rattighet_Schemas_RattighetResponseType"
          },
          "xml": {
            "type": "string",
            "nullable": true
          },
          "cost": {
            "type": "number",
            "format": "double",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_Rattighet_Schemas_RattighetType": {
        "required": [
          "id",
          "objektidentitet"
        ],
        "type": "object",
        "properties": {
          "objektidentitet": {
            "pattern": "[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}",
            "type": "string"
          },
          "rattighetsattribut": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Rattighet_Schemas_RattighetsattributType"
          },
          "pagaendeRattighetsarende": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Rattighet_Schemas_PagaendeRattighetsarendeType"
            },
            "nullable": true,
            "readOnly": true
          },
          "pagaendeRattighetsarendeSpecified": {
            "type": "boolean",
            "readOnly": true
          },
          "sammankopplasMed": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Rattighet_Schemas_RattighetsreferensType"
            },
            "nullable": true,
            "readOnly": true
          },
          "sammankopplasMedSpecified": {
            "type": "boolean",
            "readOnly": true
          },
          "rattighetsatgard": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Rattighet_Schemas_RattighetsatgardType"
            },
            "nullable": true,
            "readOnly": true
          },
          "rattighetsatgardSpecified": {
            "type": "boolean",
            "readOnly": true
          },
          "rattsforhallandeforandring": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Rattighet_Schemas_RattsforhallandeforandringType"
            },
            "nullable": true,
            "readOnly": true
          },
          "rattsforhallandeforandringSpecified": {
            "type": "boolean",
            "readOnly": true
          },
          "rattsforhallande": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Rattighet_Schemas_RattsforhallandeType"
            },
            "nullable": true,
            "readOnly": true
          },
          "rattsforhallandeSpecified": {
            "type": "boolean",
            "readOnly": true
          },
          "rattighetshistorik": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Rattighet_Schemas_RattighetshistorikType"
            },
            "nullable": true,
            "readOnly": true
          },
          "rattighetshistorikSpecified": {
            "type": "boolean",
            "readOnly": true
          },
          "yta": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Gml_Schemas_AbstractGeometryType"
            },
            "nullable": true,
            "readOnly": true
          },
          "ytaSpecified": {
            "type": "boolean",
            "readOnly": true
          },
          "boundedBy": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Gml_Schemas_BoundingShapeType"
          },
          "description": {
            "type": "string",
            "nullable": true
          },
          "name": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Gml_Schemas_CodeType"
            },
            "nullable": true,
            "readOnly": true
          },
          "nameSpecified": {
            "type": "boolean",
            "readOnly": true
          },
          "id": {
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_Rattighet_Schemas_RattighetsatgardType": {
        "required": [
          "objektidentitet",
          "objektversion",
          "rattighetsforandring"
        ],
        "type": "object",
        "properties": {
          "lopnummerValue": {
            "type": "integer",
            "format": "int32"
          },
          "lopnummerValueSpecified": {
            "type": "boolean"
          },
          "lopnummer": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "rattighetsforandring": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Rattighet_Schemas_RattighetsforandringType"
          },
          "aktbeteckning": {
            "type": "string",
            "nullable": true
          },
          "atgardstypValue": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Rattighet_Schemas_FastighetsatgardType"
          },
          "atgardstypValueSpecified": {
            "type": "boolean"
          },
          "atgardstyp": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Rattighet_Schemas_FastighetsatgardType"
          },
          "atgardsdatumValue": {
            "type": "string",
            "format": "date-time"
          },
          "atgardsdatumValueSpecified": {
            "type": "boolean"
          },
          "atgardsdatum": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "objektidentitet": {
            "pattern": "[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}",
            "type": "string"
          },
          "objektversion": {
            "type": "integer",
            "format": "int32"
          },
          "versionGiltigFranValue": {
            "type": "string",
            "format": "date-time"
          },
          "versionGiltigFranValueSpecified": {
            "type": "boolean"
          },
          "versionGiltigFran": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_Rattighet_Schemas_RattighetsattributType": {
        "required": [
          "berorkretsKanVaraOfullstandig",
          "beteckning",
          "lansbokstav",
          "objektidentitet",
          "objektversion",
          "olokaliseradRattighet",
          "rattighetsandamal",
          "rattighetstyp",
          "redovisasUtanGeometri",
          "status"
        ],
        "type": "object",
        "properties": {
          "lansbokstav": {
            "type": "string"
          },
          "beteckning": {
            "type": "string"
          },
          "rattighetstyp": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Rattighet_Schemas_RattighetstypType"
          },
          "status": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Rattighet_Schemas_StatusType"
          },
          "berorkretsKanVaraOfullstandig": {
            "type": "boolean"
          },
          "rattighetsandamal": {
            "type": "string"
          },
          "bildningsatgardValue": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Rattighet_Schemas_FastighetsatgardType"
          },
          "bildningsatgardValueSpecified": {
            "type": "boolean"
          },
          "bildningsatgard": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Rattighet_Schemas_FastighetsatgardType"
          },
          "bildningsatgardsdatumValue": {
            "type": "string",
            "format": "date-time"
          },
          "bildningsatgardsdatumValueSpecified": {
            "type": "boolean"
          },
          "bildningsatgardsdatum": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "avregistreringsorsakValue": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Rattighet_Schemas_AvregistreringsorsakType"
          },
          "avregistreringsorsakValueSpecified": {
            "type": "boolean"
          },
          "avregistreringsorsak": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Rattighet_Schemas_AvregistreringsorsakType"
          },
          "senasteAndringAllmannaDelenValue": {
            "type": "string",
            "format": "date-time"
          },
          "senasteAndringAllmannaDelenValueSpecified": {
            "type": "boolean"
          },
          "senasteAndringAllmannaDelen": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "tidsbegransning": {
            "type": "string",
            "nullable": true
          },
          "fastighetstillbehor": {
            "type": "string",
            "nullable": true
          },
          "rattighetsanmarkning": {
            "type": "string",
            "nullable": true
          },
          "rattighetsbeskrivning": {
            "type": "string",
            "nullable": true
          },
          "olokaliseradRattighet": {
            "type": "boolean"
          },
          "redovisasUtanGeometri": {
            "type": "boolean"
          },
          "objektidentitet": {
            "pattern": "[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}",
            "type": "string"
          },
          "objektversion": {
            "type": "integer",
            "format": "int32"
          },
          "versionGiltigFranValue": {
            "type": "string",
            "format": "date-time"
          },
          "versionGiltigFranValueSpecified": {
            "type": "boolean"
          },
          "versionGiltigFran": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_Rattighet_Schemas_RattighetsforandringType": {
        "enum": [
          "berörkretsÄndrad",
          "endastFörändringarInomBefintligBerörkrets",
          "rättighetenHarUpphörtUpphävtsAvregistrerats",
          "rättighetensOmfångLägeÄndrat"
        ],
        "type": "string"
      },
      "Ormeo_Library_Lantmateriet2_Rattighet_Schemas_RattighetshavareType": {
        "enum": [
          "klartextenhet",
          "ledningshavare",
          "nyttjanderättshavare"
        ],
        "type": "string"
      },
      "Ormeo_Library_Lantmateriet2_Rattighet_Schemas_RattighetshistorikType": {
        "required": [
          "objektidentitet",
          "objektversion",
          "rattighetshistoriktyp",
          "rattighetsreferens"
        ],
        "type": "object",
        "properties": {
          "lopnummerValue": {
            "type": "integer",
            "format": "int32"
          },
          "lopnummerValueSpecified": {
            "type": "boolean"
          },
          "lopnummer": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "rattighetshistoriktyp": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Rattighet_Schemas_RattighetshistoriktypType"
          },
          "rattighetsreferens": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Rattighet_Schemas_RattighetsreferensType"
          },
          "objektidentitet": {
            "pattern": "[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}",
            "type": "string"
          },
          "objektversion": {
            "type": "integer",
            "format": "int32"
          },
          "versionGiltigFranValue": {
            "type": "string",
            "format": "date-time"
          },
          "versionGiltigFranValueSpecified": {
            "type": "boolean"
          },
          "versionGiltigFran": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_Rattighet_Schemas_RattighetshistoriktypType": {
        "enum": [
          "sammanslagen",
          "uppdelad",
          "ursprung"
        ],
        "type": "string"
      },
      "Ormeo_Library_Lantmateriet2_Rattighet_Schemas_RattighetsreferensType": {
        "required": [
          "objektidentitet"
        ],
        "type": "object",
        "properties": {
          "objektidentitet": {
            "pattern": "[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}",
            "type": "string"
          },
          "rattsforhallandetypValue": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Rattighet_Schemas_RattsforhallandetypType"
          },
          "rattsforhallandetypValueSpecified": {
            "type": "boolean"
          },
          "rattsforhallandetyp": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Rattighet_Schemas_RattsforhallandetypType"
          },
          "lansbokstav": {
            "type": "string",
            "nullable": true
          },
          "beteckning": {
            "type": "string",
            "nullable": true
          },
          "typValue": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Rattighet_Schemas_RattighetstypType"
          },
          "typValueSpecified": {
            "type": "boolean"
          },
          "typ": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Rattighet_Schemas_RattighetstypType"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_Rattighet_Schemas_RattighetstypType": {
        "enum": [
          "avtalsservitut",
          "ledningsrätt",
          "officialnyttjanderätt",
          "officialservitut"
        ],
        "type": "string"
      },
      "Ormeo_Library_Lantmateriet2_Rattighet_Schemas_RattsforhallandeType": {
        "required": [
          "aktuelltRattsforhallande",
          "objektidentitet",
          "objektversion",
          "rattsforhallandetyp"
        ],
        "type": "object",
        "properties": {
          "lopnummerValue": {
            "type": "integer",
            "format": "int32"
          },
          "lopnummerValueSpecified": {
            "type": "boolean"
          },
          "lopnummer": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "rattsforhallandetyp": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Rattighet_Schemas_RattsforhallandetypType"
          },
          "aktuelltRattsforhallande": {
            "type": "boolean"
          },
          "lopnummerIdentisktLikaMedValue": {
            "type": "integer",
            "format": "int32"
          },
          "lopnummerIdentisktLikaMedValueSpecified": {
            "type": "boolean"
          },
          "lopnummerIdentisktLikaMed": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "avserOvrigRattighetshavare": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Rattighet_Schemas_OvrigRattighetshavareType"
          },
          "avserGemensamhetsanlaggning": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Rattighet_Schemas_GemensamhetsanlaggningreferensType"
          },
          "avserRegisterenhet": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Rattighet_Schemas_RegisterenhetsreferensType"
          },
          "identisktLikaMedAvtalsservitut": {
            "pattern": "[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}",
            "type": "string",
            "nullable": true
          },
          "objektidentitet": {
            "pattern": "[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}",
            "type": "string"
          },
          "objektversion": {
            "type": "integer",
            "format": "int32"
          },
          "versionGiltigFranValue": {
            "type": "string",
            "format": "date-time"
          },
          "versionGiltigFranValueSpecified": {
            "type": "boolean"
          },
          "versionGiltigFran": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_Rattighet_Schemas_RattsforhallandeforandringType": {
        "required": [
          "avserRattighetsatgard",
          "avserRattsforhallande",
          "objektidentitet",
          "objektversion"
        ],
        "type": "object",
        "properties": {
          "lopnummerValue": {
            "type": "integer",
            "format": "int32"
          },
          "lopnummerValueSpecified": {
            "type": "boolean"
          },
          "lopnummer": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "rattsforhallandeforandringstypValue": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Rattighet_Schemas_RattsforhallandeforandringtypType"
          },
          "rattsforhallandeforandringstypValueSpecified": {
            "type": "boolean"
          },
          "rattsforhallandeforandringstyp": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Rattighet_Schemas_RattsforhallandeforandringtypType"
          },
          "avserRattsforhallande": {
            "pattern": "[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}",
            "type": "string"
          },
          "avserRattighetsatgard": {
            "pattern": "[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}",
            "type": "string"
          },
          "objektidentitet": {
            "pattern": "[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}",
            "type": "string"
          },
          "objektversion": {
            "type": "integer",
            "format": "int32"
          },
          "versionGiltigFranValue": {
            "type": "string",
            "format": "date-time"
          },
          "versionGiltigFranValueSpecified": {
            "type": "boolean"
          },
          "versionGiltigFran": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_Rattighet_Schemas_RattsforhallandeforandringtypType": {
        "enum": [
          "bort",
          "till"
        ],
        "type": "string"
      },
      "Ormeo_Library_Lantmateriet2_Rattighet_Schemas_RattsforhallandereferensType": {
        "required": [
          "objektidentitet",
          "rattighetsreferens"
        ],
        "type": "object",
        "properties": {
          "objektidentitet": {
            "pattern": "[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}",
            "type": "string"
          },
          "rattighetsreferens": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Rattighet_Schemas_RattighetsreferensType"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_Rattighet_Schemas_RattsforhallandetypType": {
        "enum": [
          "förmån",
          "last"
        ],
        "type": "string"
      },
      "Ormeo_Library_Lantmateriet2_Rattighet_Schemas_RegisterenhetsreferensType": {
        "required": [
          "objektidentitet"
        ],
        "type": "object",
        "properties": {
          "objektidentitet": {
            "pattern": "[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}",
            "type": "string"
          },
          "beteckning": {
            "type": "string",
            "nullable": true
          },
          "typValue": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Rattighet_Schemas_RegisterenhetstypType"
          },
          "typValueSpecified": {
            "type": "boolean"
          },
          "typ": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet2_Rattighet_Schemas_RegisterenhetstypType"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet2_Rattighet_Schemas_RegisterenhetstypType": {
        "enum": [
          "fastighet",
          "samfällighet"
        ],
        "type": "string"
      },
      "Ormeo_Library_Lantmateriet2_Rattighet_Schemas_StatusType": {
        "enum": [
          "levande",
          "avregistrerad"
        ],
        "type": "string"
      },
      "Ormeo_Library_Lantmateriet_Dto_Lantmateriet_Belagenhetsadress_Dto": {
        "type": "object",
        "properties": {
          "objektIdentitet": {
            "type": "string",
            "format": "uuid",
            "nullable": true
          },
          "adressomradeGata": {
            "type": "string",
            "nullable": true
          },
          "adressomradeTyp": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_LantmaterietAdressomradeTyp"
          },
          "adressomradeKommunKod": {
            "type": "string",
            "nullable": true
          },
          "adressomradeKommunNamn": {
            "type": "string",
            "nullable": true
          },
          "adressplatsPostnummer": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "adressplatsPostOrt": {
            "type": "string",
            "nullable": true
          },
          "adressplatsNummer": {
            "type": "string",
            "nullable": true
          },
          "adressplatsAvvikandeAdressPlatsBeteckning": {
            "type": "string",
            "nullable": true
          },
          "adressplatsBokstavsTillagg": {
            "type": "string",
            "nullable": true
          },
          "adressplatsLagesTillagg": {
            "type": "string",
            "nullable": true
          },
          "adressplatsLagesTillaggsnummer": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "adressplatsObjektIdentitet": {
            "type": "string",
            "format": "uuid",
            "nullable": true
          },
          "adressBeskrivning": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "adressplatsAvvikerFranStandarden": {
            "type": "boolean",
            "nullable": true
          },
          "adressplatsInsamlingsLage": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_LantmaterietAdressplatsInsamlingsLage"
          },
          "adressplatsTyp": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_LantmaterietAdressplatsTyp"
          },
          "adressplatsPunktX": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "adressplatsPunktY": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "registerenhetObjektIdentitet": {
            "type": "string",
            "format": "uuid",
            "nullable": true
          },
          "byggnadObjektIdentitet": {
            "type": "string",
            "format": "uuid",
            "nullable": true
          },
          "byggnadHusnummer": {
            "type": "string",
            "nullable": true
          },
          "byggnadsdelarArea": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "byggnadsdelarBoendeArea": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "antalFolkborda": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "registeromrade": {
            "type": "string",
            "nullable": true
          },
          "trakt": {
            "type": "string",
            "nullable": true
          },
          "block": {
            "type": "string",
            "nullable": true
          },
          "enhet": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "latitude": {
            "type": "number",
            "format": "double",
            "nullable": true,
            "readOnly": true
          },
          "longitude": {
            "type": "number",
            "format": "double",
            "nullable": true,
            "readOnly": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet_Dto_Lantmateriet_ByggnadAndamal_Dto": {
        "type": "object",
        "properties": {
          "byggnadTyp": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_LantmaterietByggnadTyp"
          },
          "byggnadBostadsandamalTyp": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_LantmaterietBostadsandamalTyp"
          },
          "byggnadOsakertAndamal": {
            "type": "boolean",
            "nullable": true
          },
          "byggnadHuvudandamal": {
            "type": "boolean",
            "nullable": true
          },
          "byggnadTotalBoarea": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet_Dto_Lantmateriet_ByggnadDel_Dto": {
        "type": "object",
        "properties": {
          "byggnadsdelInsamlingslage": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_LantmaterietByggnadsdelInsamlingsLageTyp"
          },
          "byggnadsdelLagesnoggrannhetPlanVarde": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "byggnadsdelLagesnoggrannhetHojdVarde": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "byggnadsdelYta": {
            "type": "array",
            "items": {
              "type": "array",
              "items": {
                "type": "number",
                "format": "double"
              }
            },
            "nullable": true
          },
          "byggnadsdelYtaInteriorRings": {
            "type": "array",
            "items": {
              "type": "array",
              "items": {
                "type": "array",
                "items": {
                  "type": "number",
                  "format": "double"
                }
              }
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet_Dto_Lantmateriet_ByggnadEntre_Dto": {
        "type": "object",
        "properties": {
          "hiss": {
            "type": "boolean",
            "nullable": true
          },
          "adress": {
            "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet_Dto_Lantmateriet_Belagenhetsadress_Dto"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet_Dto_Lantmateriet_ByggnadNamn_Dto": {
        "type": "object",
        "properties": {
          "namnTyp": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_LantmaterietNamnTyp"
          },
          "namn": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet_Dto_Lantmateriet_Byggnad_Dto": {
        "type": "object",
        "properties": {
          "byggnadHusnummer": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "byggnadNybyggnadsAr": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "byggnadTillbyggnadsAr": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "byggnadHuvudByggnad": {
            "type": "boolean",
            "nullable": true
          },
          "byggnadByggnadsservitut": {
            "type": "boolean",
            "nullable": true
          },
          "byggnadOfriGrund": {
            "type": "boolean",
            "nullable": true
          },
          "andamal": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet_Dto_Lantmateriet_ByggnadAndamal_Dto"
            },
            "nullable": true
          },
          "namn": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet_Dto_Lantmateriet_ByggnadNamn_Dto"
            },
            "nullable": true
          },
          "skyddsrumsNummer": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "entreer": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet_Dto_Lantmateriet_ByggnadEntre_Dto"
            },
            "nullable": true
          },
          "delar": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet_Dto_Lantmateriet_ByggnadDel_Dto"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet_Dto_Lantmateriet_Fastighet2_Dto": {
        "type": "object",
        "properties": {
          "propertyId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "fastighetObjektIdentitet": {
            "type": "string",
            "format": "uuid"
          },
          "registeromrade": {
            "type": "string",
            "nullable": true
          },
          "trakt": {
            "type": "string",
            "nullable": true
          },
          "block": {
            "type": "string",
            "nullable": true
          },
          "enhet": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "etikett": {
            "type": "string",
            "nullable": true
          },
          "lanskod": {
            "type": "string",
            "nullable": true
          },
          "kommunkod": {
            "type": "string",
            "nullable": true
          },
          "totalLandareal": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "totalVattenareal": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "totalareal": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "arealuppgiftOsaker": {
            "type": "boolean",
            "nullable": true
          },
          "senasteAndringInskrivningsdelen": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "senasteAndringAllmannaDelen": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "preliminarTypkod": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "preliminarTypkodBeskrivning": {
            "type": "string",
            "nullable": true
          },
          "omraden": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet_Dto_Lantmateriet_FastighetOmrade_Dto"
            },
            "nullable": true
          },
          "byggnader": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet_Dto_Lantmateriet_Byggnad_Dto"
            },
            "nullable": true
          },
          "flygbilder": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet_Dto_Lantmateriet_OrderImageFile_Dto"
            },
            "nullable": true
          },
          "taxeringsbeslut": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Beslut"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet_Dto_Lantmateriet_FastighetAnmarkning_Dto": {
        "type": "object",
        "properties": {
          "informationslopnummer": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "versionGiltigFran": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "informationsgrupp": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "informationsgruppBeskrivning": {
            "type": "string",
            "nullable": true
          },
          "anmarkning": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet_Dto_Lantmateriet_FastighetOmrade_Dto": {
        "type": "object",
        "properties": {
          "omradesnummer": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "landareal": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "vattenareal": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "omradetsTotalareal": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "omradeYta": {
            "type": "array",
            "items": {
              "type": "array",
              "items": {
                "type": "array",
                "items": {
                  "type": "number",
                  "format": "double"
                }
              }
            },
            "nullable": true
          },
          "centroid": {
            "type": "array",
            "items": {
              "type": "number",
              "format": "double"
            },
            "nullable": true
          },
          "centroidSWEREF": {
            "type": "array",
            "items": {
              "type": "number",
              "format": "double"
            },
            "nullable": true
          },
          "etikett": {
            "type": "string",
            "nullable": true
          },
          "osakertlage": {
            "type": "boolean",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet_Dto_Lantmateriet_Fastighet_Dto": {
        "type": "object",
        "properties": {
          "propertyId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "status": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_LantmaterietFastighetStatus"
          },
          "fastighetTyp": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_LantmaterietFastighetTyp"
          },
          "fastighetObjektIdentitet": {
            "type": "string",
            "format": "uuid"
          },
          "registeromrade": {
            "type": "string",
            "nullable": true
          },
          "trakt": {
            "type": "string",
            "nullable": true
          },
          "block": {
            "type": "string",
            "nullable": true
          },
          "enhet": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "etikett": {
            "type": "string",
            "nullable": true
          },
          "fastighetsbeteckning": {
            "type": "string",
            "nullable": true
          },
          "lanskod": {
            "type": "string",
            "nullable": true
          },
          "kommunkod": {
            "type": "string",
            "nullable": true
          },
          "totalLandareal": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "totalVattenareal": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "totalareal": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "arealuppgiftOsaker": {
            "type": "boolean",
            "nullable": true
          },
          "senasteAndringInskrivningsdelen": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "senasteAndringAllmannaDelen": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "preliminarTypkod": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "preliminarTypkodBeskrivning": {
            "type": "string",
            "nullable": true
          },
          "omraden": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet_Dto_Lantmateriet_FastighetOmrade_Dto"
            },
            "nullable": true
          },
          "byggnader": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet_Dto_Lantmateriet_Byggnad_Dto"
            },
            "nullable": true
          },
          "flygbilder": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet_Dto_Lantmateriet_OrderImageFile_Dto"
            },
            "nullable": true
          },
          "taxeringsbeslut": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Beslut"
            },
            "nullable": true
          },
          "taxeringsbeslutBeror": {
            "type": "object",
            "additionalProperties": {
              "type": "array",
              "items": {
                "type": "string",
                "format": "uuid"
              },
              "nullable": true
            },
            "nullable": true
          },
          "oklaraInskrivningsforhallanden": {
            "type": "boolean",
            "nullable": true
          },
          "allvarligtFelIR": {
            "type": "boolean",
            "nullable": true
          },
          "agare": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet_Dto_Lantmateriet_InskrivningAgare_Dto"
            },
            "nullable": true
          },
          "agareForandring": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet_Dto_Lantmateriet_InskrivningAgandeForandring_Dto"
            },
            "nullable": true
          },
          "inteckningar": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet_Dto_Lantmateriet_InskrivningInteckning_Dto"
            },
            "nullable": true
          },
          "inskrivningAvtalsRattigheter": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet_Dto_Lantmateriet_InskrivningAvtalsRattighet_Dto"
            },
            "nullable": true
          },
          "inskrivningTomtrattsupplatelse": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet_Dto_Lantmateriet_InskrivningTomtrattsupplatelse_Dto"
            },
            "nullable": true
          },
          "inskrivningAnteckningar": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet_Dto_Lantmateriet_InskrivningAnteckning_Dto"
            },
            "nullable": true
          },
          "anmarkningar": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet_Dto_Lantmateriet_FastighetAnmarkning_Dto"
            },
            "nullable": true
          },
          "taxeringLantmateriet": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet_Dto_Lantmateriet_Taxeringsenhet_Dto"
            },
            "nullable": true
          },
          "inteckningSumma": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet_Dto_Lantmateriet_InskrivningAgandeForandringFang_Dto": {
        "type": "object",
        "properties": {
          "inskrivetAgande": {
            "type": "string",
            "format": "uuid",
            "nullable": true
          },
          "objektIdentitet": {
            "type": "string",
            "format": "uuid",
            "nullable": true
          },
          "tidpunkt": {
            "type": "string",
            "nullable": true
          },
          "fangesdag": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fangesar": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "fangesmanad": {
            "type": "string",
            "nullable": true
          },
          "fangesart": {
            "type": "string",
            "nullable": true
          },
          "fangesartTypBeskrivning": {
            "type": "string",
            "nullable": true
          },
          "fangeskod": {
            "type": "string",
            "nullable": true
          },
          "fangeskodBeskrivning": {
            "type": "string",
            "nullable": true
          },
          "forvarvstyp": {
            "type": "string",
            "nullable": true
          },
          "forvarvstypBeskrivning": {
            "type": "string",
            "nullable": true
          },
          "omradesbeskrivning": {
            "type": "string",
            "nullable": true
          },
          "andelFangTaljare": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "andelFangNamnare": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "andelBeskrivning": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "inskrivningsdag": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "dagboksnummer": {
            "type": "string",
            "nullable": true
          },
          "aktnummer": {
            "type": "string",
            "nullable": true
          },
          "beslut": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet_Dto_Lantmateriet_InskrivningAgandeForandring_Dto": {
        "type": "object",
        "properties": {
          "inskrivningObjektIdentitet": {
            "type": "string",
            "format": "uuid",
            "nullable": true
          },
          "objektIddentitet": {
            "type": "string",
            "format": "uuid",
            "nullable": true
          },
          "kopeskillingTyp": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_LantmaterietKopeskillingTyp"
          },
          "kopeskillingTypBeskrivning": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "kopeskillingSummaTyp": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_LantmaterietKopeskillingSummaTyp"
          },
          "kopeskillingSummaTypBeskrivning": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "kopeskillingSumma": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "kopeskillingValuta": {
            "type": "string",
            "nullable": true
          },
          "fangJson": {
            "type": "string",
            "nullable": true
          },
          "fang": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet_Dto_Lantmateriet_InskrivningAgandeForandringFang_Dto"
            },
            "nullable": true
          },
          "overlatelseJson": {
            "type": "string",
            "nullable": true
          },
          "overlatelse": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet_Dto_Lantmateriet_Overlatelse_Dto"
            },
            "nullable": true
          },
          "omfattarJson": {
            "type": "string",
            "nullable": true
          },
          "omfattar": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet_Dto_Lantmateriet_InskrivningOmfattar_Dto"
            },
            "nullable": true
          },
          "lantmateriet_OrderFileId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "orderFileUpdatedDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet_Dto_Lantmateriet_InskrivningAgare_Dto": {
        "type": "object",
        "properties": {
          "inskrivningObjektIdentitet": {
            "type": "string",
            "format": "uuid",
            "nullable": true
          },
          "objektIdentitet": {
            "type": "string",
            "format": "uuid",
            "nullable": true
          },
          "agareObjektIdentitet": {
            "type": "string",
            "format": "uuid",
            "nullable": true
          },
          "agandeTyp": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_LantmaterietAgandeTyp"
          },
          "agandeTypBeskrivning": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "inskrivningsdag": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "beviljadAndelTaljare": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "beviljadAndelNamnare": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "andelBeskrivning": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "agareTilltalsnamn": {
            "type": "string",
            "nullable": true
          },
          "agareEfternamn": {
            "type": "string",
            "nullable": true
          },
          "agareOrganisationsnamn": {
            "type": "string",
            "nullable": true
          },
          "agareFornamn": {
            "type": "string",
            "nullable": true
          },
          "agareNamnBeskrivning": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "agareIDnummer": {
            "type": "string",
            "nullable": true
          },
          "agareUtlandskLandskod": {
            "type": "string",
            "nullable": true
          },
          "agarePersonId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "agareCompanyId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "utlandskAgareTyp": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_LantmaterietAgareTyp"
          },
          "dagboksnummer": {
            "type": "string",
            "nullable": true
          },
          "aktnummer": {
            "type": "string",
            "nullable": true
          },
          "lantmateriet_OrderFileId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "orderFileUpdatedDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet_Dto_Lantmateriet_InskrivningAnteckning_Dto": {
        "type": "object",
        "properties": {
          "inskrivningsdag": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "aktnummer": {
            "type": "string",
            "nullable": true
          },
          "dagboksnummer": {
            "type": "string",
            "nullable": true
          },
          "anteckningsTyp": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "anteckningTypBeskrivning": {
            "type": "string",
            "nullable": true
          },
          "anteckningstext": {
            "type": "string",
            "nullable": true
          },
          "anteckningsanmarkningJson": {
            "type": "string",
            "nullable": true
          },
          "anmarkningBeskrivning": {
            "type": "string",
            "nullable": true
          },
          "belastar": {
            "type": "string",
            "nullable": true
          },
          "belastarFastigheter": {
            "type": "array",
            "items": {
              "type": "string",
              "format": "uuid"
            },
            "nullable": true
          },
          "avser": {
            "type": "string",
            "nullable": true
          },
          "beslut": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "uppskovsDatum": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "overklagande": {
            "type": "string",
            "nullable": true
          },
          "nyttBeslutJson": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet_Dto_Lantmateriet_InskrivningAvtalsRattighet_Dto": {
        "type": "object",
        "properties": {
          "inskrivningsdag": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "foretradesordning": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "aktnummer": {
            "type": "string",
            "nullable": true
          },
          "beslut": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "dagboksnummer": {
            "type": "string",
            "nullable": true
          },
          "avtalrattighetTyp": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_LantmaterietAvtalrattighetTyp"
          },
          "avtalrattighetTypBeskrivning": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "avtalsnyttjanderattsAndamal": {
            "type": "string",
            "nullable": true
          },
          "nyttBeslutJson": {
            "type": "string",
            "nullable": true
          },
          "uppskovsDatum": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "likaratt": {
            "type": "string",
            "nullable": true
          },
          "inskrivningshandelseJson": {
            "type": "string",
            "nullable": true
          },
          "inskrivninghandelseBeskrivning": {
            "type": "string",
            "nullable": true
          },
          "avtalsservitutAndamal": {
            "type": "string",
            "nullable": true
          },
          "ovrigtAndamal": {
            "type": "string",
            "nullable": true
          },
          "andamalBeskrivning": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "avtalsrattighetsanmarkningJson": {
            "type": "string",
            "nullable": true
          },
          "avtalsrattighetsanmarkningBeskrivning": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet_Dto_Lantmateriet_InskrivningInteckning_Dto": {
        "type": "object",
        "properties": {
          "foretradesordning": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "inskrivningsdag": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "dagboksnummer": {
            "type": "string",
            "nullable": true
          },
          "aktnummer": {
            "type": "string",
            "nullable": true
          },
          "beloppSumma": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "beloppValuta": {
            "type": "string",
            "nullable": true
          },
          "oklarInteckning": {
            "type": "boolean",
            "nullable": true
          },
          "pantbrevstyp": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_LantmaterietPantbrevstyp"
          },
          "pantbrevsTypBeskrivning": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "beslutstyp": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_LantmaterietBeslutstyp"
          },
          "belastarFastigheter": {
            "type": "array",
            "items": {
              "type": "string",
              "format": "uuid"
            },
            "nullable": true
          },
          "likaRatt": {
            "type": "array",
            "items": {
              "type": "string",
              "format": "uuid"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet_Dto_Lantmateriet_InskrivningOmfattar_Dto": {
        "type": "object",
        "properties": {
          "fastighetObjektIdentitet": {
            "type": "string",
            "format": "uuid",
            "nullable": true
          },
          "fastighetsbeteckning": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet_Dto_Lantmateriet_InskrivningTomtrattsupplatelse_Dto": {
        "type": "object",
        "properties": {
          "inskrivningsdag": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "aktnummer": {
            "type": "string",
            "nullable": true
          },
          "dagboksnummer": {
            "type": "string",
            "nullable": true
          },
          "andamal": {
            "type": "string",
            "nullable": true
          },
          "inskrankning": {
            "type": "string",
            "nullable": true
          },
          "ursprungligtStartDatum": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "avgaldStartDatum": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "avgaldAvgiftSumma": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "avgaldAvgiftValuta": {
            "type": "string",
            "nullable": true
          },
          "avgaldPeriodLangdAr": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "framtidaAvgaldStartDatum": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "framtidaAvgaldAvgiftSumma": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "framtidaAvgaldAvgiftValuta": {
            "type": "string",
            "nullable": true
          },
          "framtidaAvgaldPeriodLangdAr": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "aldreTomtratt": {
            "type": "boolean",
            "nullable": true
          },
          "uppsagningsperiodAr": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "uppsagningsDatum": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "upplatelseDatum": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "tomtrattsupplatelseanmarkningJson": {
            "type": "string",
            "nullable": true
          },
          "tomtrattsupplatelseanmarkningBeskrivning": {
            "type": "string",
            "nullable": true
          },
          "beslut": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "uppskovsDatum": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "nyttBeslutJson": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet_Dto_Lantmateriet_OrderImageFile_Dto": {
        "type": "object",
        "properties": {
          "lantmateriet_OrderImageFileId": {
            "type": "integer",
            "format": "int32"
          },
          "flightYear": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "flightAltitude": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "flightRecordingStart": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "flightRecordingEnded": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "resolution": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "spectralType": {
            "type": "string",
            "nullable": true
          },
          "hasBeenDownloaded": {
            "type": "boolean",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet_Dto_Lantmateriet_Orthophoto_Dto": {
        "type": "object",
        "properties": {
          "lantmateriet_OrderImageFileId": {
            "type": "integer",
            "format": "int32"
          },
          "flightYear": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "flightAltitude": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "resolution": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "spectralType": {
            "type": "string",
            "nullable": true
          },
          "fileName": {
            "type": "string",
            "nullable": true
          },
          "fileNameLength": {
            "type": "integer",
            "format": "int64"
          },
          "fileNameReduced": {
            "type": "string",
            "nullable": true
          },
          "fileNameReducedLength": {
            "type": "integer",
            "format": "int64"
          },
          "url": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "urlReduced": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "error": {
            "type": "string",
            "nullable": true
          },
          "processingTimeMs": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "fromCache": {
            "type": "boolean"
          },
          "flightRecordingStarted": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "flightRecordingEnded": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "totalArea": {
            "type": "integer",
            "format": "int32"
          },
          "numberOfAreas": {
            "type": "integer",
            "format": "int32"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet_Dto_Lantmateriet_Overlatelse_Dto": {
        "type": "object",
        "properties": {
          "inskrivetAgande": {
            "type": "string",
            "format": "uuid",
            "nullable": true
          },
          "objektIdentitet": {
            "type": "string",
            "format": "uuid",
            "nullable": true
          },
          "andelOverlatelseTaljare": {
            "type": "integer",
            "format": "int64"
          },
          "andelOverlatelseNamnare": {
            "type": "integer",
            "format": "int64"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet_Dto_Lantmateriet_PropertyLocationLookup_Dto": {
        "type": "object",
        "properties": {
          "registerEnhetObjektIdentitet": {
            "type": "string",
            "format": "uuid"
          },
          "beteckning": {
            "type": "string",
            "nullable": true
          },
          "trakt": {
            "type": "string",
            "nullable": true
          },
          "block": {
            "type": "string",
            "nullable": true
          },
          "enhet": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "kommunkod": {
            "type": "string",
            "nullable": true
          },
          "kommunnamn": {
            "type": "string",
            "nullable": true
          },
          "lanskod": {
            "type": "string",
            "nullable": true
          },
          "osakertlage": {
            "type": "boolean",
            "nullable": true
          },
          "objekttyp": {
            "type": "string",
            "nullable": true
          },
          "omradesnummer": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "samjelittera": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet_Dto_Lantmateriet_TaxeringSkvFastighetTaxeradAgare_Dto": {
        "type": "object",
        "properties": {
          "lantmateriet_TaxeringSkvFastighetTaxeradAgareId": {
            "type": "integer",
            "format": "int32"
          },
          "lantmateriet_TaxeringSkvFastighetId": {
            "type": "integer",
            "format": "int32"
          },
          "andelTaljare": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "andelNamnare": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "andelBeskrivning": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "franDatum": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "personIdNummer": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "personFornamn": {
            "type": "string",
            "nullable": true
          },
          "personMellannamn": {
            "type": "string",
            "nullable": true
          },
          "personEfternamn": {
            "type": "string",
            "nullable": true
          },
          "personTilltalsnamn": {
            "type": "string",
            "nullable": true
          },
          "personReklamsparr": {
            "type": "boolean",
            "nullable": true
          },
          "organisationIdNummer": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "organisationJuridiskForm": {
            "type": "string",
            "nullable": true
          },
          "personGDNummer": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "adressCO": {
            "type": "string",
            "nullable": true
          },
          "adressUtdelningsadress1": {
            "type": "string",
            "nullable": true
          },
          "adressUtdelningsadress2": {
            "type": "string",
            "nullable": true
          },
          "adressPostnummer": {
            "type": "string",
            "nullable": true
          },
          "adressPostort": {
            "type": "string",
            "nullable": true
          },
          "utlandsadressUtdelningsadress1": {
            "type": "string",
            "nullable": true
          },
          "utlandsadressUtdelningsadress2": {
            "type": "string",
            "nullable": true
          },
          "utlandsadressUtdelningsadress3": {
            "type": "string",
            "nullable": true
          },
          "utlandsadressUtdelningsadress4": {
            "type": "string",
            "nullable": true
          },
          "utlandsadressLand": {
            "type": "string",
            "nullable": true
          },
          "personGDNamn": {
            "type": "string",
            "nullable": true
          },
          "personGDNamnAdress2": {
            "type": "string",
            "nullable": true
          },
          "personGDAdress3": {
            "type": "string",
            "nullable": true
          },
          "personGDAdress4": {
            "type": "string",
            "nullable": true
          },
          "personGDAdress5": {
            "type": "string",
            "nullable": true
          },
          "personGDAdress6": {
            "type": "string",
            "nullable": true
          },
          "personGDAdressPostnummer": {
            "type": "string",
            "nullable": true
          },
          "personGDAdressLand": {
            "type": "string",
            "nullable": true
          },
          "personId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "companyId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "fileId": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time"
          },
          "isDeleted": {
            "type": "boolean",
            "nullable": true
          },
          "lantmateriet_OrderFileId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "taxeradAgareOrganisationsnamn": {
            "type": "string",
            "nullable": true
          },
          "taxeradAgareTilltalsnamn": {
            "type": "string",
            "nullable": true
          },
          "taxeradAgareFornamn": {
            "type": "string",
            "nullable": true
          },
          "taxeradAgareEfternamn": {
            "type": "string",
            "nullable": true
          },
          "agareNamnBeskrivning": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet_Dto_Lantmateriet_TaxeringSkvFastighet_Dto": {
        "type": "object",
        "properties": {
          "lantmateriet_TaxeringSkvFastighetId": {
            "type": "integer",
            "format": "int32"
          },
          "lantmateriet_TaxeringsenhetId": {
            "type": "integer",
            "format": "int32"
          },
          "skvId": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "fastighetTyp": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_LantmaterietFastighetTyp"
          },
          "registerEnhetObjektIdentitet": {
            "type": "string",
            "format": "uuid",
            "nullable": true
          },
          "fileId": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time"
          },
          "isDeleted": {
            "type": "boolean",
            "nullable": true
          },
          "lantmateriet_OrderFileId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "lantmateriet_TaxeringSkvFastighetTaxeradAgare": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet_Dto_Lantmateriet_TaxeringSkvFastighetTaxeradAgare_Dto"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet_Dto_Lantmateriet_TaxeringVarderingsenhet_Dto": {
        "type": "object",
        "properties": {
          "lantmateriet_TaxeringVarderingsenhetId": {
            "type": "integer",
            "format": "int32"
          },
          "lantmateriet_TaxeringsenhetId": {
            "type": "integer",
            "format": "int32"
          },
          "varderingsenhetTyp": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_LantmaterietVarderingsenhetTyp"
          },
          "alla_Varderingsenhetsnummer": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "alla_Varde": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "alla_Riktvarde": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "alla_VardeomradeId": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "alla_Vardeomradesnummer": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "alla_Id": {
            "type": "string",
            "nullable": true
          },
          "alla_JusteringJson": {
            "type": "string",
            "nullable": true
          },
          "agarlagenhetBostad_Arshyra": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "agarlagenhetBostad_Area": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "taktmark_ArligtUttag": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "taktmark_Vantetid": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "taktmark_Brytningstid": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "taktmark_Material": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "industriAvkastningsberaknadKontor_StandardklassIndustrikontor": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "industriAvkastningsberaknadLager_StandardklassLager": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "industriProduktionskostnadsberaknad_Ateranskaffningskostnad": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "industriProduktionskostnadsberaknad_Byggnadskategori": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "lantbrukAkermark_BeskaffenhetAker": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "lantbrukAkermark_Dranering": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "lantbrukBetesmark_BeskaffenhetBete": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "lantbrukEkonomibyggnad_BeskaffenhetEkonomi": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "lantbrukEkonomibyggnad_Storlek": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "lantbrukEkonomibyggnad_Byggnadskategori": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "lantbrukSkogUtanAvverkningsrestriktioner_VirkesforradBarrtrad": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "lantbrukSkogUtanAvverkningsrestriktioner_VirkesforradLovtrad": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "lantbrukSkogUtanAvverkningsrestriktioner_Virkesforradsklass": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "lantbrukSkogUtanAvverkningsrestriktioner_Bonitetsklass": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "lantbrukSkogUtanAvverkningsrestriktioner_Virkesforrad": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "lantbrukSkogUtanAvverkningsrestriktioner_Medelbonitet": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "smahusBostadsbyggnad_Vardeyta": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "smahusBostadsbyggnad_FastighetsrattsligKlassByggnad": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "smahusBostadsbyggnad_VardefullasteByggnad": {
            "type": "boolean",
            "nullable": true
          },
          "smahusBostadsbyggnad_Boyta": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "smahusBostadsbyggnad_Biyta": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "smahusBostadsbyggnad_Byggnadskategori": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "smahusBostadsbyggnad_OmEllerTillbyggnadsyta": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "smahusTomtmark_FastighetsrattsligKlassTomt": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "smahusTomtmark_Bebyggelse": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "smahusTomtmark_NarhetTillStrand": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "smahusTomtmark_Vatten": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "smahusTomtmark_Avlopp": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "flera_Vardear": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "flera_UnderUppforande": {
            "type": "boolean",
            "nullable": true
          },
          "flera_LiggerPaTomt": {
            "type": "string",
            "nullable": true
          },
          "flera_Nybyggnadsar": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "flera_OmEllerTillbyggnadsar": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "flera_TillhorByggnad": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "flera_Byggratt": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "flera_ArshyraTotal": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "flera_AreaTotal": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "flera_Lokalarea": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "flera_AterstaendeEkonomiskLivslangd": {
            "type": "boolean",
            "nullable": true
          },
          "flera_Standard": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "flera_Areal": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "flera_Storlekskorrektion": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "flera_Samfalld": {
            "type": "boolean",
            "nullable": true
          },
          "flera_AntalLika": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "fileId": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time"
          },
          "isDeleted": {
            "type": "boolean",
            "nullable": true
          },
          "lantmateriet_OrderFileId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet_Dto_Lantmateriet_TaxeringsenhetDelvarde_Dto": {
        "type": "object",
        "properties": {
          "lantmateriet_TaxeringsenhetDelvardeId": {
            "type": "integer",
            "format": "int32"
          },
          "lantmateriet_TaxeringsenhetId": {
            "type": "integer",
            "format": "int32"
          },
          "delvardeTyp": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_LantmaterietDelvardeTyp"
          },
          "delvarde": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "fileId": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time"
          },
          "isDeleted": {
            "type": "boolean",
            "nullable": true
          },
          "lantmateriet_OrderFileId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Lantmateriet_Dto_Lantmateriet_Taxeringsenhet_Dto": {
        "type": "object",
        "properties": {
          "lantmateriet_TaxeringsenhetId": {
            "type": "integer",
            "format": "int32"
          },
          "taxeringsenhetsnummer": {
            "type": "string",
            "nullable": true
          },
          "taxeringsenhetTyp": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_TaxeringsenhetTyp"
          },
          "beslutstyp": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Beslut+BeslutstypEnum"
          },
          "areal": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "taxeringsvarde": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "beslutdatum": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "beslutsar": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "borttagetFranBeslutsAr": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "typkod": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "typkodBeskrivning": {
            "type": "string",
            "nullable": true
          },
          "lantbrukOvrigMark": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "industriTillbehor": {
            "type": "boolean",
            "nullable": true
          },
          "fileId": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time"
          },
          "isDeleted": {
            "type": "boolean",
            "nullable": true
          },
          "lantmateriet_OrderFileId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "hash": {
            "type": "string",
            "nullable": true
          },
          "lantmateriet_TaxeringsenhetDelvarde": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet_Dto_Lantmateriet_TaxeringsenhetDelvarde_Dto"
            },
            "nullable": true
          },
          "lantmateriet_TaxeringVarderingsenhet": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet_Dto_Lantmateriet_TaxeringVarderingsenhet_Dto"
            },
            "nullable": true
          },
          "lantmateriet_TaxeringSkvFastighet": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Lantmateriet_Dto_Lantmateriet_TaxeringSkvFastighet_Dto"
            },
            "nullable": true
          },
          "bostadsbyggnadEllerByggnadsvarde": {
            "type": "integer",
            "format": "int64",
            "nullable": true,
            "readOnly": true
          },
          "tomtmarkEllerMarkvarde": {
            "type": "integer",
            "format": "int64",
            "nullable": true,
            "readOnly": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Memgraph_ORB_GraphWatchlist": {
        "type": "object",
        "properties": {
          "watchlistGuid": {
            "type": "string",
            "format": "uuid"
          },
          "watchlistName": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Memgraph_ORB_NetworkRisk": {
        "type": "object",
        "properties": {
          "score": {
            "type": "number",
            "format": "double"
          },
          "totalCompanies": {
            "type": "integer",
            "format": "int32"
          },
          "highRiskCompanies": {
            "type": "integer",
            "format": "int32"
          },
          "highRiskCompaniesPercent": {
            "type": "number",
            "format": "double"
          },
          "totalPersons": {
            "type": "integer",
            "format": "int32"
          },
          "highlightedPersons": {
            "type": "integer",
            "format": "int32"
          },
          "highlightedPersonsPercent": {
            "type": "number",
            "format": "double"
          },
          "details": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Memgraph_ORB_NetworkRiskDetail"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Memgraph_ORB_NetworkRiskDetail": {
        "type": "object",
        "properties": {
          "type": {
            "type": "string",
            "nullable": true
          },
          "id": {
            "type": "string",
            "nullable": true
          },
          "name": {
            "type": "string",
            "nullable": true
          },
          "intelligenceScoreTotal": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "highlight": {
            "type": "boolean",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Memgraph_ORB_ORBEdge": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "nullable": true
          },
          "start": {
            "type": "string",
            "nullable": true
          },
          "end": {
            "type": "string",
            "nullable": true
          },
          "label": {
            "type": "string",
            "nullable": true
          },
          "properties": {
            "type": "object",
            "additionalProperties": {
              "nullable": true
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Memgraph_ORB_ORBGraph": {
        "type": "object",
        "properties": {
          "edges": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Memgraph_ORB_ORBEdge"
            },
            "nullable": true
          },
          "nodes": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Memgraph_ORB_ORBNode"
            },
            "nullable": true
          },
          "isTruncated": {
            "type": "boolean"
          },
          "maxNodesLimit": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "truncatedAtStage": {
            "type": "string",
            "nullable": true
          },
          "networkRisk": {
            "$ref": "#/components/schemas/Ormeo_Library_Memgraph_ORB_NetworkRisk"
          },
          "watchlists": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Memgraph_ORB_GraphWatchlist"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Memgraph_ORB_ORBNode": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "nullable": true
          },
          "label": {
            "type": "string",
            "nullable": true
          },
          "properties": {
            "type": "object",
            "additionalProperties": {
              "nullable": true
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Models_GenericHighlight": {
        "enum": [
          "green",
          "yellow",
          "red"
        ],
        "type": "string"
      },
      "Ormeo_Library_Models_GenericModelCell": {
        "type": "object",
        "properties": {
          "row": {
            "type": "integer",
            "format": "int32"
          },
          "column": {
            "type": "integer",
            "format": "int32"
          },
          "order": {
            "type": "integer",
            "format": "int32"
          },
          "localizedFieldName": {
            "type": "string",
            "nullable": true
          },
          "enFieldName": {
            "type": "string",
            "nullable": true
          },
          "displayFormat": {
            "type": "string",
            "nullable": true
          },
          "type": {
            "type": "string",
            "nullable": true
          },
          "value": {
            "nullable": true
          },
          "notes": {
            "type": "string",
            "nullable": true
          },
          "highlight": {
            "$ref": "#/components/schemas/Ormeo_Library_Models_GenericHighlight"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Models_SE_SE_CompanyAnnualKeyFigures": {
        "type": "object",
        "properties": {
          "bruttoMarginal": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "rorelseMarginal": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "vinstMarginal": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "avkastningEgetKapital": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "avkastningTotaltKapital": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "soliditet": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "skuldsättningsgrad": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "kassalikviditet": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "nettoOmsattningForandringMotTidigareAr": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "rorelseresultatForandringMotTidigareAr": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "annualReportPeriod": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "periodLangd": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "bokslutsperiod": {
            "type": "string",
            "nullable": true
          },
          "periodFran": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "periodTill": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Models_SE_SE_CompanyAnnualReportAdditionalInformation": {
        "type": "object",
        "properties": {
          "utdelning": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "extraUtdelning": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "mjukvara": {
            "type": "string",
            "nullable": true
          },
          "annualReportPeriod": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "periodLangd": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "bokslutsperiod": {
            "type": "string",
            "nullable": true
          },
          "periodFran": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "periodTill": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Models_SE_SE_CompanyAnnualReportBalanceSheetModel": {
        "type": "object",
        "properties": {
          "tecknatEjInbetaltKapital": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "patentLicenser": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "balanseradeUtgifterFoU": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "goodwill": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "ovrigaImmateriellaAnlaggningstillgangar": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "summaImmateriellaAnlaggningstillgangar": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "byggnaderMark": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "maskiner": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "inventarier": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "maskinerInventarier": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "ovrigaMateriellaAnlaggningstillgangarEjAvskrivningsbara": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "ovrigaMateriellaAnlaggningstillgangarAvskrivningsbara": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "summaMateriellaAnlaggningstillgangar": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "andelarIKoncernIntresseforetag": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "fordringarPaKoncernIntresseforetag": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "lanDelagareNarstaende": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "ovrigaFinansiellaAnlaggningstillgangar": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "summaFinansiellaAnlaggningstillgangar": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "summaAnlaggningstillgangar": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "pagaendeArbetenForAnnansRakning": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "ovrigtVarulager": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "summaVarulager": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "kundfordringar": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "fordringarHosKoncernIntresseforetag": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "ovrigaKortfristigaFordringar": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "summaKortfristigaFordringar": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "summaKortfristigaPlaceringar": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "summaKassaBank": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "summaOmsattningstillgangar": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "summaTillgangar": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "aktiekapital": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "overkursfond": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "uppskrivningsfond": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "ovrigtBundetEgetKapital": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "balanseratResultat": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "erhallnaLamnadeKoncernbidrag": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "erhallnaLamnadeAktieagartillskott": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "aretsResultat2": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "summaFrittEgetKapital": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "summaEgetKapital": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "summaObeskattadeReserver": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "minoritetsintressen": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "summaAvsattningar": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "obligationslan": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "skulderTillKreditinstitutLanga": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "skulderTillKoncernIntresseforetagLanga": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "ovrigaLangfristigaSkulder": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "summaLangfristigaSkulder": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "skulderTillKreditinstitutKorta": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "leverantorsskulder": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "skulderTillKoncernIntresseforetagKorta": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "ovrigaKortfristigaSkulder": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "summaKortfristigaSkulder": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "summaEgetKapitalSkulder": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "annualReportPeriod": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "periodLangd": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "bokslutsperiod": {
            "type": "string",
            "nullable": true
          },
          "periodFran": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "periodTill": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Models_SE_SE_CompanyAnnualReportFootnoteModel": {
        "type": "object",
        "properties": {
          "foretagsinteckningar": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "fastighetsinteckningar": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "ovrigaSakerheter": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "summaSakerheter": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "villkoratAktieagartillskott": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "ovrigaAnsvarsforbindelser": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "summaAnsvarsforbindelser": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "antalAnstallda": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "lonerStyrelseVd": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "varavTantiemStyrelseVd": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "lonerOvrigaAnstallda": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "varavResultatlonOvrigaAnstallda": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "socialaKostnader": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "avskrivningarInomKostnaderSaldaVaror": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "avskrivningarInomForsaljningskostnader": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "avskrivningarInomAdministrationskostnader": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "avskrivningarInomFoUKostnader": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "avskrivningarInomOvrigaKostnader": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "ospecificeradeAvskrivningar": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "beviljadCheckrakningskredit": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "utnyttjadCheckrakningskredit": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "rantenettoFinansbolag": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "annualReportPeriod": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "periodLangd": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "bokslutsperiod": {
            "type": "string",
            "nullable": true
          },
          "periodFran": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "periodTill": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Models_SE_SE_CompanyAnnualReportResultSheetModel": {
        "type": "object",
        "properties": {
          "nettoomsattning": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "nettoomsattningForandringMotTidigareAr": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "forandringLager": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "aktiveratArbeteEgenRakning": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "ovrigaRorelseintakterRr1": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "ovrigaRorelseintakterRr2": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "summaRorelseIntakter": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "ravarorFornodenheter": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "handelsvaror": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "kostnadSaldaVaror": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "bruttoresultatBruttovinstBruttoforlust": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "bruttoMarginal": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "forsaljningskostnader": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "administrationskostnader": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "foUKostnader": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "ovrigaRorelsekostnader": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "ovrigaExternaKostnader": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "personalkostnader": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "avskrivningar": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "ovrigaRorelsekostnaderRr1": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "jamforelsestorandePosterRr1": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "jamforelsestorandePosterRr2": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "summaRorelseKostnader": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "rorelseresultat": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "rorelseresultatForandringMotTidigareAr": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "rorelseMarginal": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "resultatFranAndelarIKoncernOchIntresseforetag": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "externaRanteintakter": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "ranteintakterFranKoncernforetag": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "ovrigaFinansiellaIntakter": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "summaFinansiellaIntakter": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "externaRantekostnader": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "rantekostnaderTillKoncernforetag": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "ovrigaFinansiellaKostnader": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "summaFinansiellaKostnader": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "jamforelsestorandeFinansiellaPoster": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "summaFinansiellaPoster": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "resultatEfterFinansiellaIntakterKostnader": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "aktieagartillskott": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "extraordinaraIntakter": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "extraordinaraKostnader": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "koncernbidrag": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "bokslutsdispositioner": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "resultatForeSkatt": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "skatt": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "minoritetsintrSamtVinstForlIDotterbolForForvarv": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "aretsResultat": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "vinstMarginal": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "annualReportPeriod": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "periodLangd": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "bokslutsperiod": {
            "type": "string",
            "nullable": true
          },
          "periodFran": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "periodTill": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Models_SE_SE_CompanyAnnualReportsAll": {
        "type": "object",
        "properties": {
          "incomeStatement": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Models_SE_SE_CompanyAnnualReportResultSheetModel"
            },
            "nullable": true
          },
          "balanceSheets": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Models_SE_SE_CompanyAnnualReportBalanceSheetModel"
            },
            "nullable": true
          },
          "footnotes": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Models_SE_SE_CompanyAnnualReportFootnoteModel"
            },
            "nullable": true
          },
          "keyMetrics": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Models_SE_SE_CompanyAnnualKeyFigures"
            },
            "nullable": true
          },
          "additionalInformation": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Models_SE_SE_CompanyAnnualReportAdditionalInformation"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Models_SE_SE_CompanyAnnualReportsTableAll": {
        "type": "object",
        "properties": {
          "incomeStatement": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Models_GenericModelCell"
            },
            "nullable": true
          },
          "balanceSheets": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Models_GenericModelCell"
            },
            "nullable": true
          },
          "footnotes": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Models_GenericModelCell"
            },
            "nullable": true
          },
          "keyMetrics": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Models_GenericModelCell"
            },
            "nullable": true
          },
          "additionalInformation": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Models_GenericModelCell"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_Not": {
        "type": "object",
        "properties": {
          "eventualForpliktelser": {
            "type": "string",
            "nullable": true
          },
          "langfristigaSkulder": {
            "type": "string",
            "nullable": true
          },
          "stalldaSakerheter": {
            "type": "string",
            "nullable": true
          },
          "tillgangarAvsattningarSkulder": {
            "type": "string",
            "nullable": true
          },
          "ovrigaMateriellaAnlaggningstillgangar": {
            "type": "string",
            "nullable": true
          },
          "andelarKoncernforetag": {
            "type": "string",
            "nullable": true
          },
          "byggnaderMark": {
            "type": "string",
            "nullable": true
          },
          "inventarierVerktygInstallationer": {
            "type": "string",
            "nullable": true
          },
          "andelarIntresseforetagGemensamtStyrdaForetag": {
            "type": "string",
            "nullable": true
          },
          "medelantaletAnstallda": {
            "type": "string",
            "nullable": true
          },
          "andraLangfristigaFordringar": {
            "type": "string",
            "nullable": true
          },
          "upplysningModerforetag1": {
            "type": "string",
            "nullable": true
          },
          "upplysningModerforetag2": {
            "type": "string",
            "nullable": true
          },
          "andraLangfristigaVardepappersinnehav": {
            "type": "string",
            "nullable": true
          },
          "vasentligaHandelserRakenskapsaretsSlut": {
            "type": "string",
            "nullable": true
          },
          "checkrakningskreditKommentar": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_Revisor": {
        "type": "object",
        "properties": {
          "pateckningRevisionsberattelseEnligtStandardutformning": {
            "type": "string",
            "nullable": true
          },
          "harPateckningRevisionsberattelseEnligtStandardutformning": {
            "type": "boolean"
          },
          "andraKravLagForfattningAnmarkning": {
            "type": "string",
            "nullable": true
          },
          "harAndraKravLagForfattningAnmarkning": {
            "type": "boolean"
          },
          "ovrigaUpplysningar": {
            "type": "string",
            "nullable": true
          },
          "andraKravLagForfattningRevisorAnsvar": {
            "type": "string",
            "nullable": true
          },
          "grundUttalanden": {
            "type": "string",
            "nullable": true
          },
          "harGrundUttalanden": {
            "type": "boolean"
          },
          "styrelsenVerkstallandeDirektorAnsvar": {
            "type": "string",
            "nullable": true
          },
          "andraKravLagForfattningGrundUttalanden": {
            "type": "string",
            "nullable": true
          },
          "andraKravLagForfattningStyrelseVerkstallandeDirektorAnsvar": {
            "type": "string",
            "nullable": true
          },
          "styrelsenAnsvar": {
            "type": "string",
            "nullable": true
          },
          "andraKravLagForfattningStyrelseAnsvar": {
            "type": "string",
            "nullable": true
          },
          "underskriftRevisionsberattelse": {
            "type": "string",
            "nullable": true
          },
          "uttalanden": {
            "type": "string",
            "nullable": true
          },
          "andraKravLagForfattningUttalanden": {
            "type": "string",
            "nullable": true
          },
          "vasentligOsakerhetsfaktorAvseendeAntagandetFortsattDrift": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_SPAR_Record": {
        "type": "object",
        "properties": {
          "notificationRecordId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "person_PersonIdTyp": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_SPAR_PersonIdTyp"
          },
          "person_SenasteAndringSPAR": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "skydd_Sekretessmarkering": {
            "type": "boolean",
            "nullable": true
          },
          "skydd_SekretessmarkeringSattAvSPAR": {
            "type": "boolean",
            "nullable": true
          },
          "skydd_SekretessDatum": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "skydd_SkyddadFolkbokforing": {
            "type": "boolean",
            "nullable": true
          },
          "skydd_SkyddadFolkbokforingDatum": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "personDetaljer_SnIdentitetsniva": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_SPAR_SnIdentitetsniva"
          },
          "personDetaljer_SnIdentitetsnivaDatum": {
            "type": "string",
            "nullable": true
          },
          "personDetaljer_SnTilldelningsdatum": {
            "type": "string",
            "nullable": true
          },
          "personDetaljer_SnPreliminartVilandeforklaringsdatum": {
            "type": "string",
            "nullable": true
          },
          "personDetaljer_SnFornyelsedatum": {
            "type": "string",
            "nullable": true
          },
          "personDetaljer_SnVilandeorsak": {
            "type": "string",
            "nullable": true
          },
          "personDetaljer_SnVilandeforklaringsdatum": {
            "type": "string",
            "nullable": true
          },
          "personDetaljer_SnAvlidendatum": {
            "type": "string",
            "nullable": true
          },
          "personDetaljer_SnStatus": {
            "type": "string",
            "nullable": true
          },
          "personDetaljer_Sekretessmarkering": {
            "type": "boolean",
            "nullable": true
          },
          "personDetaljer_SekretessmarkeringSattAvSPAR": {
            "type": "boolean",
            "nullable": true
          },
          "personDetaljer_Avlidendatum": {
            "type": "string",
            "nullable": true
          },
          "personDetaljer_AntraffadDodDatum": {
            "type": "string",
            "nullable": true
          },
          "personDetaljer_AvregistreringsorsakKod": {
            "type": "string",
            "nullable": true
          },
          "personDetaljer_Avregistreringsdatum": {
            "type": "string",
            "nullable": true
          },
          "personDetaljer_SkyddadFolkbokforing": {
            "type": "boolean",
            "nullable": true
          },
          "personDetaljer_Fodelsedatum": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "folkbokforing_FolkbokfordLanKod": {
            "type": "string",
            "nullable": true
          },
          "folkbokforing_FolkbokfordKommunKod": {
            "type": "string",
            "nullable": true
          },
          "folkbokforing_HemvistTyp": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_SPAR_Hemvist"
          },
          "folkbokforing_Folkbokforingsdatum": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "folkbokforing_DistriktKod": {
            "type": "string",
            "nullable": true
          },
          "folkbokforingsadress_SvenskAdress_CareOf": {
            "type": "string",
            "nullable": true
          },
          "folkbokforingsadress_SvenskAdress_Utdelningsadress1": {
            "type": "string",
            "nullable": true
          },
          "folkbokforingsadress_SvenskAdress_Utdelningsadress2": {
            "type": "string",
            "nullable": true
          },
          "folkbokforingsadress_SvenskAdress_PostNr": {
            "type": "string",
            "nullable": true
          },
          "folkbokforingsadress_SvenskAdress_Postort": {
            "type": "string",
            "nullable": true
          },
          "utlandsadress_InternationellAdress_Utdelningsadress1": {
            "type": "string",
            "nullable": true
          },
          "utlandsadress_InternationellAdress_Utdelningsadress2": {
            "type": "string",
            "nullable": true
          },
          "utlandsadress_InternationellAdress_Utdelningsadress3": {
            "type": "string",
            "nullable": true
          },
          "utlandsadress_InternationellAdress_Land": {
            "type": "string",
            "nullable": true
          },
          "sarskildPostadress_SvenskAdress_CareOf": {
            "type": "string",
            "nullable": true
          },
          "sarskildPostadress_SvenskAdress_Utdelningsadress1": {
            "type": "string",
            "nullable": true
          },
          "sarskildPostadress_SvenskAdress_Utdelningsadress2": {
            "type": "string",
            "nullable": true
          },
          "sarskildPostadress_SvenskAdress_PostNr": {
            "type": "string",
            "nullable": true
          },
          "sarskildPostadress_SvenskAdress_Postort": {
            "type": "string",
            "nullable": true
          },
          "sarskildPostadress_InternationellAdress_Utdelningsadress1": {
            "type": "string",
            "nullable": true
          },
          "sarskildPostadress_InternationellAdress_Utdelningsadress2": {
            "type": "string",
            "nullable": true
          },
          "sarskildPostadress_InternationellAdress_Utdelningsadress3": {
            "type": "string",
            "nullable": true
          },
          "sarskildPostadress_InternationellAdress_Land": {
            "type": "string",
            "nullable": true
          },
          "kontaktadress_SvenskAdress_CareOf": {
            "type": "string",
            "nullable": true
          },
          "kontaktadress_SvenskAdress_Utdelningsadress1": {
            "type": "string",
            "nullable": true
          },
          "kontaktadress_SvenskAdress_Utdelningsadress2": {
            "type": "string",
            "nullable": true
          },
          "kontaktadress_SvenskAdress_PostNr": {
            "type": "string",
            "nullable": true
          },
          "kontaktadress_SvenskAdress_Postort": {
            "type": "string",
            "nullable": true
          },
          "kontaktadress_InternationellAdress_Utdelningsadress1": {
            "type": "string",
            "nullable": true
          },
          "kontaktadress_InternationellAdress_Utdelningsadress2": {
            "type": "string",
            "nullable": true
          },
          "kontaktadress_InternationellAdress_Utdelningsadress3": {
            "type": "string",
            "nullable": true
          },
          "kontaktadress_InternationellAdress_Land": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_Search_CompanyWorkplaceAddressGeopoint": {
        "type": "object",
        "properties": {
          "co": {
            "type": "string",
            "nullable": true
          },
          "streetAddress": {
            "type": "string",
            "nullable": true
          },
          "postalCode": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "city": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "countryCodeAlpha3": {
            "type": "string",
            "nullable": true
          },
          "location": {
            "type": "array",
            "items": {
              "type": "number",
              "format": "double"
            },
            "nullable": true,
            "readOnly": true
          },
          "firstSeenAt": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "lantmaterietLocationalAddressId": {
            "type": "string",
            "format": "uuid",
            "nullable": true
          },
          "lantmaterietLocatedOnPropertyId": {
            "type": "string",
            "format": "uuid",
            "nullable": true
          },
          "lantmaterietLocationalSupplementalNumber": {
            "type": "string",
            "nullable": true
          },
          "municipalityCode": {
            "type": "string",
            "nullable": true
          },
          "countyCode": {
            "type": "string",
            "nullable": true
          },
          "nyko": {
            "type": "string",
            "nullable": true
          },
          "nykoYear": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "addressId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_Search_CompanyWorkplaceCompany": {
        "type": "object",
        "properties": {
          "companyId": {
            "type": "integer",
            "format": "int32"
          },
          "fromDate": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "toDate": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "registrationNumber": {
            "type": "string",
            "nullable": true
          },
          "mostRecentName": {
            "type": "string",
            "nullable": true
          },
          "legalEntityType": {
            "type": "string",
            "nullable": true
          },
          "localCompanyCode": {
            "type": "string",
            "nullable": true
          },
          "elfCode": {
            "type": "string",
            "nullable": true
          },
          "registrationDate": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "ceasedDate": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "isCeased": {
            "type": "boolean"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_Search_CompanyWorkplaceIndustryCode": {
        "type": "object",
        "properties": {
          "sni_2007Code": {
            "type": "string",
            "nullable": true
          },
          "sni_2007Name": {
            "type": "string",
            "nullable": true
          },
          "sni_2007Section": {
            "type": "string",
            "nullable": true
          },
          "sni_2025Code": {
            "type": "string",
            "nullable": true
          },
          "sni_2025Name": {
            "type": "string",
            "nullable": true
          },
          "sni_2025Section": {
            "type": "string",
            "nullable": true
          },
          "rank": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_Search_CompanyWorkplaceName": {
        "type": "object",
        "properties": {
          "nameOrIdentifier": {
            "type": "string",
            "nullable": true
          },
          "firstSeenAt": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "lastSeenAt": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_Search_CompanyWorkplaceStatus": {
        "type": "object",
        "properties": {
          "statusType": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_CompanyWorkplaceStatusType"
          },
          "statusDate": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "statusDescription": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_Search_CompanyWorkplaceUnit": {
        "type": "object",
        "properties": {
          "companyId": {
            "type": "integer",
            "format": "int32"
          },
          "unitIdentifier": {
            "type": "integer",
            "format": "int32"
          },
          "firstSeenAt": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "lastSeenAt": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_Search_PublicSector": {
        "type": "object",
        "properties": {
          "year": {
            "type": "integer",
            "format": "int32"
          },
          "approxInvoiced": {
            "type": "number",
            "format": "double"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_Search_SCB_Category": {
        "type": "object",
        "properties": {
          "categoryCode": {
            "type": "integer",
            "format": "int32"
          },
          "categoryCodeDescription": {
            "type": "string",
            "nullable": true
          },
          "categoryCode2": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "categoryCodeDescription2": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_Search_SalesToPublicActor": {
        "type": "object",
        "properties": {
          "actorName": {
            "type": "string",
            "nullable": true
          },
          "actorType": {
            "type": "string",
            "nullable": true
          },
          "actorCode": {
            "type": "string",
            "nullable": true
          },
          "sales": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_SalesToPublicActorPerYear"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_Search_SalesToPublicActorPerYear": {
        "type": "object",
        "properties": {
          "year": {
            "type": "integer",
            "format": "int32"
          },
          "approxInvoicedK": {
            "type": "integer",
            "format": "int32"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_Search_Search_BeneficialOwner": {
        "type": "object",
        "properties": {
          "beneficialOwnerId": {
            "type": "integer",
            "format": "int32"
          },
          "fromDate": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "personId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "personalIdentityNumber": {
            "type": "string",
            "nullable": true
          },
          "fullName": {
            "type": "string",
            "nullable": true
          },
          "countryOfResidenceCode": {
            "type": "string",
            "nullable": true
          },
          "citizenshipCountryCode": {
            "type": "string",
            "nullable": true
          },
          "extentCode": {
            "type": "string",
            "nullable": true
          },
          "extentDescription": {
            "type": "string",
            "nullable": true
          },
          "governDescription": {
            "type": "string",
            "nullable": true
          },
          "throughName": {
            "type": "string",
            "nullable": true
          },
          "throughRegistrationNumber": {
            "type": "string",
            "nullable": true
          },
          "bornYearMonthDay": {
            "type": "string",
            "nullable": true
          },
          "isProtected": {
            "type": "boolean",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_Search_Search_CompanyAddressGeopoint": {
        "type": "object",
        "properties": {
          "co": {
            "type": "string",
            "nullable": true
          },
          "streetAddress": {
            "type": "string",
            "nullable": true
          },
          "postalCode": {
            "type": "string",
            "nullable": true
          },
          "city": {
            "type": "string",
            "nullable": true
          },
          "countryCodeAlpha3": {
            "type": "string",
            "nullable": true
          },
          "location": {
            "type": "array",
            "items": {
              "type": "number",
              "format": "double"
            },
            "nullable": true
          },
          "firstSeenAt": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "lantmaterietLocationalAddressId": {
            "type": "string",
            "format": "uuid",
            "nullable": true
          },
          "lantmaterietLocatedOnPropertyId": {
            "type": "string",
            "format": "uuid",
            "nullable": true
          },
          "addressId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "propertyId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "lantmaterietLocationalSupplementalNumber": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_Search_Search_CompanyBankAccount": {
        "type": "object",
        "properties": {
          "bankAccountType": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_BankAccountType"
          },
          "accountNumber": {
            "type": "string",
            "nullable": true
          },
          "swift_BIC": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_Search_Search_CompanyDocument2": {
        "type": "object",
        "properties": {
          "companyDocumentId": {
            "type": "integer",
            "format": "int32"
          },
          "companyDocumentType": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_CompanyDocumentType"
          },
          "documentDate": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "documentTitle": {
            "type": "string",
            "nullable": true
          },
          "documentVersion": {
            "type": "string",
            "nullable": true
          },
          "documentValue1": {
            "type": "string",
            "nullable": true
          },
          "documentValue2": {
            "type": "string",
            "nullable": true
          },
          "documentValue3": {
            "type": "string",
            "nullable": true
          },
          "grossPriceIfAny": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "documentUrl": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_Search_Search_CompanyEmail": {
        "type": "object",
        "properties": {
          "emailAddress": {
            "type": "string",
            "nullable": true
          },
          "emailAddressType": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_EmailAddressType"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_Search_Search_CompanyFinancialSummary": {
        "type": "object",
        "properties": {
          "periodStart": {
            "type": "integer",
            "format": "int64"
          },
          "periodEnd": {
            "type": "integer",
            "format": "int64"
          },
          "rs_NetSalesK": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "rs_OtherOperatingIncomeK": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "rs_OperatingProfitOrLossK": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "rs_SumFinancialItemsK": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "rs_ProfitAfterFinancialItemsK": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "bs_TotalAssetsK": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "fn_NumberOfEmployees": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "km_OperatingMargin": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "km_NetProfitMargin": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "km_EquityAssetsRatio": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "km_GrossMargin": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "isAudited": {
            "type": "boolean",
            "nullable": true
          },
          "software": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_Search_Search_CompanyFranchiseOrLicence": {
        "type": "object",
        "properties": {
          "linkedToName": {
            "type": "string",
            "nullable": true
          },
          "linkedToCompanyId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "actingUnderName": {
            "type": "string",
            "nullable": true
          },
          "description": {
            "type": "string",
            "nullable": true
          },
          "companyFranchiseOrLicenceType": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_CompanyFranchiseOrLicenceType"
          },
          "agentDescription": {
            "type": "string",
            "nullable": true
          },
          "data": {
            "type": "array",
            "items": { },
            "nullable": true
          },
          "revoked": {
            "type": "boolean",
            "nullable": true
          },
          "firstSeen": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_Search_Search_CompanyIndustryCode": {
        "type": "object",
        "properties": {
          "sni_2007Code": {
            "type": "string",
            "nullable": true
          },
          "sni_2007Name": {
            "type": "string",
            "nullable": true
          },
          "sni_2007Section": {
            "type": "string",
            "nullable": true
          },
          "sni_2025Code": {
            "type": "string",
            "nullable": true
          },
          "sni_2025Name": {
            "type": "string",
            "nullable": true
          },
          "sni_2025Section": {
            "type": "string",
            "nullable": true
          },
          "rank": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_Search_Search_CompanyIntelligence": {
        "type": "object",
        "properties": {
          "companyIntelligenceType": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_CompanyIntelligenceType"
          },
          "companyIntelligenceSubType": {
            "type": "string",
            "nullable": true
          },
          "notes": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "score": {
            "type": "integer",
            "format": "int32"
          },
          "firstSeenAt": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "intelligenceNotesType": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "notesValue1": {
            "type": "string",
            "nullable": true
          },
          "notesValue2": {
            "type": "string",
            "nullable": true
          },
          "notesValue3": {
            "type": "string",
            "nullable": true
          },
          "notesValue4": {
            "type": "string",
            "nullable": true
          },
          "documentUrl": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_Search_Search_CompanyLink": {
        "type": "object",
        "properties": {
          "hyperlink": {
            "type": "string",
            "nullable": true
          },
          "hyperlinkType": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_CompanyLinkType"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_Search_Search_CompanyName": {
        "type": "object",
        "properties": {
          "nameOrIdentifier": {
            "type": "string",
            "nullable": true
          },
          "companyNamingType": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_CompanyNamingType"
          },
          "firstSeenAt": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "companyNameDecidedAt": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_Search_Search_CompanyPerson": {
        "type": "object",
        "properties": {
          "personId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "personalIdentityNumber": {
            "type": "string",
            "nullable": true
          },
          "positionType": {
            "type": "string",
            "nullable": true
          },
          "positionDescription": {
            "type": "string",
            "nullable": true
          },
          "positionStart": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "positionEnd": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "fullName": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "givenName": {
            "type": "string",
            "nullable": true
          },
          "firstName": {
            "type": "string",
            "nullable": true
          },
          "middleName": {
            "type": "string",
            "nullable": true
          },
          "lastName": {
            "type": "string",
            "nullable": true
          },
          "isProtected": {
            "type": "boolean",
            "nullable": true
          },
          "roleByCompanyName": {
            "type": "string",
            "nullable": true
          },
          "roleByCompanyRegistrationNumber": {
            "type": "string",
            "nullable": true
          },
          "employeeRepresentative": {
            "type": "boolean",
            "nullable": true
          },
          "auditorType": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_AuditorType"
          },
          "bornYearMonthDay": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_Search_Search_CompanyPhoneNumber": {
        "type": "object",
        "properties": {
          "e164PhoneNumber": {
            "type": "string",
            "nullable": true
          },
          "phoneNumberType": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_PhoneNumberType"
          },
          "numberPlanServiceType": {
            "type": "string",
            "nullable": true
          },
          "orginalOperator": {
            "type": "string",
            "nullable": true
          },
          "priorOperator": {
            "type": "string",
            "nullable": true
          },
          "currentOperator": {
            "type": "string",
            "nullable": true
          },
          "lastPortingDate": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_Search_Search_CompanyRegisteredOffice": {
        "type": "object",
        "properties": {
          "municipality": {
            "type": "string",
            "nullable": true
          },
          "municipalityCode": {
            "type": "string",
            "nullable": true
          },
          "county": {
            "type": "string",
            "nullable": true
          },
          "countyCode": {
            "type": "string",
            "nullable": true
          },
          "firstSeenAt": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_Search_Search_CompanyRegistration": {
        "type": "object",
        "properties": {
          "companyRegistrationType": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_CompanyRegistrationType"
          },
          "companyRegistrationSubType": {
            "type": "string",
            "nullable": true
          },
          "isRegistered": {
            "type": "boolean",
            "nullable": true
          },
          "registeredFrom": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "registeredTo": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "terminationReasonIfAny": {
            "type": "string",
            "nullable": true
          },
          "firstSeenAt": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_Search_Search_CompanySignatory": {
        "type": "object",
        "properties": {
          "signatureDescription": {
            "type": "string",
            "nullable": true
          },
          "firstSeenAt": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_Search_Search_CompanySlug": {
        "type": "object",
        "properties": {
          "urlSlug": {
            "type": "string",
            "nullable": true
          },
          "slugType": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_CompanySlugType"
          },
          "firstSeenAt": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_Search_Search_CompanyStatus": {
        "type": "object",
        "properties": {
          "companyStatusType": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_CompanyStatusType"
          },
          "statusDate": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "statusDescription": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_Search_Search_CompanyTrademark": {
        "type": "object",
        "properties": {
          "trademarkId": {
            "type": "integer",
            "format": "int32"
          },
          "applicationNumber": {
            "type": "string",
            "nullable": true
          },
          "registeredCountryCode": {
            "type": "string",
            "nullable": true
          },
          "registered": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "expire": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "status": {
            "type": "string",
            "nullable": true
          },
          "feature": {
            "type": "string",
            "nullable": true
          },
          "word": {
            "type": "string",
            "nullable": true
          },
          "mediaUrl": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_Search_Search_CompanyWorkplaceMinimal": {
        "type": "object",
        "properties": {
          "companyWorkplaceId": {
            "type": "integer",
            "format": "int32"
          },
          "workplaceCode": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "mostRecentName": {
            "type": "string",
            "nullable": true
          },
          "labelAddress": {
            "type": "string",
            "nullable": true
          },
          "location": {
            "type": "array",
            "items": {
              "type": "number",
              "format": "double"
            },
            "nullable": true,
            "readOnly": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_Search_Search_ECParticipant": {
        "type": "object",
        "properties": {
          "pic": {
            "type": "string",
            "nullable": true
          },
          "validationStatus": {
            "type": "string",
            "nullable": true
          },
          "numberOfProjects": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "workProgrammesData": {
            "nullable": true
          },
          "lastUpdated": {
            "type": "integer",
            "format": "int64"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_Search_Search_LEI": {
        "type": "object",
        "properties": {
          "leiCode": {
            "type": "string",
            "nullable": true
          },
          "registrationStatus": {
            "type": "string",
            "nullable": true
          },
          "initialRegistrationDate": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "nextRenewalDate": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "managingLOU": {
            "type": "string",
            "nullable": true
          },
          "managingLOULegalName": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_Search_Search_ShareCapital": {
        "type": "object",
        "properties": {
          "shareCapitalAmount": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "shareCapitalLowerLimitAmount": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "shareCapitalHigherLimitAmount": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "shareCapitalISO4217CurrencyCode": {
            "type": "string",
            "nullable": true
          },
          "numberOfShares": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "numberOfSharesLowerLimit": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "numberOfSharesHigherLimit": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "firstSeenAt": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_Search_Search_StockInformation": {
        "type": "object",
        "properties": {
          "isin": {
            "type": "string",
            "nullable": true
          },
          "ticker": {
            "type": "string",
            "nullable": true
          },
          "yahooSymbol": {
            "type": "string",
            "nullable": true
          },
          "marketName": {
            "type": "string",
            "nullable": true
          },
          "marketExchangeName": {
            "type": "string",
            "nullable": true
          },
          "marketCountryCodeAlpha3": {
            "type": "string",
            "nullable": true
          },
          "sectorName": {
            "type": "string",
            "nullable": true
          },
          "branchName": {
            "type": "string",
            "nullable": true
          },
          "listingDate": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "enterpriseValue": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "enterpriseValueUpdated": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "stockQuote": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "stockQuoteUpdated": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "nextReportDate": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "nextReportType": {
            "type": "string",
            "nullable": true
          },
          "dividendExDate": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "dividendsPerYear": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "dividendAmount": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "dividendCurrency": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_TypesenseCompanyBankruptcyDocument": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "nullable": true
          },
          "companyId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "registrationNumber": {
            "type": "string",
            "nullable": true
          },
          "legalEntityType": {
            "type": "string",
            "nullable": true
          },
          "localCompanyCode": {
            "type": "string",
            "nullable": true
          },
          "elfCode": {
            "type": "string",
            "nullable": true
          },
          "registrationDate": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "mostRecentPurpose": {
            "type": "string",
            "nullable": true
          },
          "companyName": {
            "type": "string",
            "nullable": true
          },
          "bankruptcyStatusCode": {
            "type": "string",
            "nullable": true
          },
          "bankruptcyStatusDescriptionSv": {
            "type": "string",
            "nullable": true
          },
          "bankruptcyStatusDescriptionEn": {
            "type": "string",
            "nullable": true
          },
          "sniCodes": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_Search_CompanyIndustryCode"
            },
            "nullable": true
          },
          "courtCase": {
            "type": "string",
            "nullable": true
          },
          "courtName": {
            "type": "string",
            "nullable": true
          },
          "courtCode": {
            "type": "string",
            "nullable": true
          },
          "courtEmail": {
            "type": "string",
            "nullable": true
          },
          "initiatedDate": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "initiatedBy": {
            "type": "string",
            "nullable": true
          },
          "terminatedDate": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "repealedDate": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "hasTrustee": {
            "type": "boolean"
          },
          "trusteeName": {
            "type": "string",
            "nullable": true
          },
          "trusteeCO": {
            "type": "string",
            "nullable": true
          },
          "trusteeAddressStreet": {
            "type": "string",
            "nullable": true
          },
          "trusteeAddressPostalCode": {
            "type": "string",
            "nullable": true
          },
          "trusteeAdddressCity": {
            "type": "string",
            "nullable": true
          },
          "registeredOfficeMunicipality": {
            "type": "string",
            "nullable": true
          },
          "registeredOfficeMunicipalityCode": {
            "type": "string",
            "nullable": true
          },
          "registeredOfficeCounty": {
            "type": "string",
            "nullable": true
          },
          "registeredOfficeCountyCode": {
            "type": "string",
            "nullable": true
          },
          "mostRecentRegisteredAddress": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_Search_CompanyAddressGeopoint"
          },
          "mostRecentFinancialSummary": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_Search_CompanyFinancialSummary"
          },
          "applicationIfAny": {
            "type": "string",
            "nullable": true
          },
          "isPublicSectorVendor": {
            "type": "boolean"
          },
          "approxInvoicedToPublicSector": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_PublicSector"
            },
            "nullable": true
          },
          "lastUpdated": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "urlSlug": {
            "type": "string",
            "nullable": true
          },
          "isCeased": {
            "type": "boolean"
          },
          "ceasedDate": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_TypesenseCompanyBankruptcyDocumentGroupedHits": {
        "type": "object",
        "properties": {
          "group_key": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "hits": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_TypesenseCompanyBankruptcyDocumentHit"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_TypesenseCompanyBankruptcyDocumentHit": {
        "type": "object",
        "properties": {
          "document": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_TypesenseCompanyBankruptcyDocument"
          },
          "geo_distance_meters": {
            "nullable": true
          },
          "highlight": {
            "nullable": true
          },
          "highlights": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_HighlightElement"
            },
            "nullable": true
          },
          "text_match": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "text_match_info": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_TextMatchInfo"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_TypesenseCompanyBankruptcyDocumentTypesenseSearchResponse": {
        "type": "object",
        "properties": {
          "facet_counts": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_TypesenseFacetCounts"
            },
            "nullable": true
          },
          "found": {
            "type": "integer",
            "format": "int32"
          },
          "hits": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_TypesenseCompanyBankruptcyDocumentHit"
            },
            "nullable": true
          },
          "grouped_hits": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_TypesenseCompanyBankruptcyDocumentGroupedHits"
          },
          "out_of": {
            "type": "integer",
            "format": "int32"
          },
          "page": {
            "type": "integer",
            "format": "int32"
          },
          "request_params": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_RequestParams"
          },
          "search_cutoff": {
            "type": "boolean",
            "nullable": true
          },
          "search_time_ms": {
            "type": "integer",
            "format": "int32"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_TypesenseCompanyDocument": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "nullable": true
          },
          "companyId": {
            "type": "integer",
            "format": "int32"
          },
          "iso3166CountryCode": {
            "type": "string",
            "nullable": true
          },
          "registrationNumber": {
            "type": "string",
            "nullable": true
          },
          "legalEntityType": {
            "type": "string",
            "nullable": true
          },
          "localCompanyCode": {
            "type": "string",
            "nullable": true
          },
          "elfCode": {
            "type": "string",
            "nullable": true
          },
          "registrationDate": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "ceasedDate": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "isCeased": {
            "type": "boolean"
          },
          "mostRecentPurpose": {
            "type": "string",
            "nullable": true
          },
          "activityStatus": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_CompanyActivityStatus"
          },
          "mostRecentRegisteredAddress": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_Search_CompanyAddressGeopoint"
          },
          "mostRecentMailingAddress": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_Search_CompanyAddressGeopoint"
          },
          "mostRecentVisitingAddress": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_Search_CompanyAddressGeopoint"
          },
          "currentWorkplaces": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_Search_CompanyWorkplaceMinimal"
            },
            "nullable": true
          },
          "names": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_Search_CompanyName"
            },
            "nullable": true
          },
          "registeredOffices": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_Search_CompanyRegisteredOffice"
            },
            "nullable": true
          },
          "registeredOfficeMunicipalityCode": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "registeredOfficeCountyCode": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "slugs": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_Search_CompanySlug"
            },
            "nullable": true
          },
          "phoneNumbers": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_Search_CompanyPhoneNumber"
            },
            "nullable": true
          },
          "hasPhoneNumbers": {
            "type": "boolean",
            "readOnly": true
          },
          "emailAddresses": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_Search_CompanyEmail"
            },
            "nullable": true
          },
          "hasEmailAddresses": {
            "type": "boolean",
            "readOnly": true
          },
          "hyperlinks": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_Search_CompanyLink"
            },
            "nullable": true
          },
          "hasHyperlinks": {
            "type": "boolean",
            "readOnly": true
          },
          "sniCodes": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_Search_CompanyIndustryCode"
            },
            "nullable": true
          },
          "intelligence": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_Search_CompanyIntelligence"
            },
            "nullable": true
          },
          "hasIntelligence": {
            "type": "boolean",
            "readOnly": true
          },
          "status": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_Search_CompanyStatus"
            },
            "nullable": true
          },
          "hasStatus": {
            "type": "boolean",
            "readOnly": true
          },
          "mostRecentFinancialSummary": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_Search_CompanyFinancialSummary"
          },
          "hasMostRecentFinancialSummary": {
            "type": "boolean",
            "readOnly": true
          },
          "isRegisteredForVAT": {
            "type": "boolean",
            "nullable": true
          },
          "isRegisteredForFTax": {
            "type": "boolean",
            "nullable": true
          },
          "isRegisteredForPayroll": {
            "type": "boolean",
            "nullable": true
          },
          "isRegisteredAML": {
            "type": "boolean",
            "nullable": true
          },
          "registration": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_Search_CompanyRegistration"
            },
            "nullable": true
          },
          "ftaxTerminationReason": {
            "type": "string",
            "nullable": true
          },
          "bankAccounts": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_Search_CompanyBankAccount"
            },
            "nullable": true
          },
          "hasBankAccounts": {
            "type": "boolean",
            "readOnly": true
          },
          "documents": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_Search_CompanyDocument2"
            },
            "nullable": true
          },
          "hasDocuments": {
            "type": "boolean",
            "readOnly": true
          },
          "lastAnnualReportDate": {
            "type": "integer",
            "format": "int64",
            "nullable": true,
            "readOnly": true
          },
          "stock": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_Search_StockInformation"
          },
          "hasStock": {
            "type": "boolean",
            "readOnly": true
          },
          "lei": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_Search_LEI"
          },
          "hasLEI": {
            "type": "boolean",
            "readOnly": true
          },
          "salesToPublicActors": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_SalesToPublicActor"
            },
            "nullable": true
          },
          "hasSalesToPublicActors": {
            "type": "boolean",
            "readOnly": true
          },
          "ecParticipant": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_Search_ECParticipant"
          },
          "hasECParticipant": {
            "type": "boolean",
            "readOnly": true
          },
          "franchisesOrLicences": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_Search_CompanyFranchiseOrLicence"
            },
            "nullable": true
          },
          "hasFranchisesOrLicences": {
            "type": "boolean",
            "readOnly": true
          },
          "trademarks": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_Search_CompanyTrademark"
            },
            "nullable": true
          },
          "hasTrademarks": {
            "type": "boolean",
            "readOnly": true
          },
          "mostRecentSignatory": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_Search_CompanySignatory"
          },
          "currentRepresentatives": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_Search_CompanyPerson"
            },
            "nullable": true
          },
          "currentBeneficialOwners": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_Search_BeneficialOwner"
            },
            "nullable": true
          },
          "mostRecentShareCapital": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_Search_ShareCapital"
          },
          "mostRecentDebtorSummary": {
            "$ref": "#/components/schemas/Ormeo_Library_KFM_KFM_MostRecentDebtorSummary_Dto"
          },
          "hasMostRecentDebtorSummary": {
            "type": "boolean",
            "readOnly": true
          },
          "cNbrEmployeesInterval": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_SCB_Category"
          },
          "c_VATInterval": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_SCB_Category"
          },
          "cTurnoverInterval": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_SCB_Category"
          },
          "cPropertyTaxationInterval": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_SCB_Category"
          },
          "cSector": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_SCB_Category"
          },
          "cTradeAfrica": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_SCB_Category"
          },
          "cTradeAsia": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_SCB_Category"
          },
          "cTradeEU": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_SCB_Category"
          },
          "cTradeExportInterval": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_SCB_Category"
          },
          "cTradeFarEast": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_SCB_Category"
          },
          "cTradeImportInterval": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_SCB_Category"
          },
          "cTradeNorthCentralAmerica": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_SCB_Category"
          },
          "cTradeNordics": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_SCB_Category"
          },
          "cTradeSouthAmerica": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_SCB_Category"
          },
          "cTradeOtherEurope": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_SCB_Category"
          },
          "cGenderRatioFemale": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_SCB_Category"
          },
          "cGenderRatioMale": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_SCB_Category"
          },
          "cPrivPubl": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_SCB_Category"
          },
          "cOwnership": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_SCB_Category"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_TypesenseCompanyDocumentGroupedHits": {
        "type": "object",
        "properties": {
          "group_key": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "hits": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_TypesenseCompanyDocumentHit"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_TypesenseCompanyDocumentHit": {
        "type": "object",
        "properties": {
          "document": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_TypesenseCompanyDocument"
          },
          "geo_distance_meters": {
            "nullable": true
          },
          "highlight": {
            "nullable": true
          },
          "highlights": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_HighlightElement"
            },
            "nullable": true
          },
          "text_match": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "text_match_info": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_TextMatchInfo"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_TypesenseCompanyDocumentTypesenseSearchResponse": {
        "type": "object",
        "properties": {
          "facet_counts": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_TypesenseFacetCounts"
            },
            "nullable": true
          },
          "found": {
            "type": "integer",
            "format": "int32"
          },
          "hits": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_TypesenseCompanyDocumentHit"
            },
            "nullable": true
          },
          "grouped_hits": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_TypesenseCompanyDocumentGroupedHits"
          },
          "out_of": {
            "type": "integer",
            "format": "int32"
          },
          "page": {
            "type": "integer",
            "format": "int32"
          },
          "request_params": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_RequestParams"
          },
          "search_cutoff": {
            "type": "boolean",
            "nullable": true
          },
          "search_time_ms": {
            "type": "integer",
            "format": "int32"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_TypesenseCompanyFinancialReportDocument": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "nullable": true
          },
          "companyId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "companyName": {
            "type": "string",
            "nullable": true
          },
          "externalId": {
            "type": "integer",
            "format": "int32"
          },
          "externalOrigin": {
            "type": "integer",
            "format": "int32"
          },
          "registrationNumber": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "periodEnd": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "ruleset": {
            "type": "string",
            "nullable": true
          },
          "formatDescription": {
            "type": "string",
            "nullable": true
          },
          "caseNumber": {
            "type": "integer",
            "format": "int32"
          },
          "caseYear": {
            "type": "integer",
            "format": "int32"
          },
          "netSalesK": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "numberOfEmployees": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "balanceSheetTotalK": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "otherText": {
            "type": "string",
            "nullable": true
          },
          "auditorOtherText": {
            "type": "string",
            "nullable": true
          },
          "revisorNamn": {
            "type": "string",
            "nullable": true
          },
          "revisionsbolag": {
            "type": "string",
            "nullable": true
          },
          "allmantVerksamheten": {
            "type": "string",
            "nullable": true
          },
          "vasentligaHandelserRakenskapsaret": {
            "type": "string",
            "nullable": true
          },
          "verksamhetenArtInriktning": {
            "type": "string",
            "nullable": true
          },
          "viktigaForandringarVerksamheten": {
            "type": "string",
            "nullable": true
          },
          "viktigaExternaFaktorerPaverkatForetagetStallningResultat": {
            "type": "string",
            "nullable": true
          },
          "speciellaOmstandigheterBerorForetaget": {
            "type": "string",
            "nullable": true
          },
          "uppgiftAgareMerAnTioProcentAndelarRoster": {
            "type": "string",
            "nullable": true
          },
          "komplementarKommanditbolag": {
            "type": "string",
            "nullable": true
          },
          "ovrigaViktigaForhallandenVasentligaHandelser": {
            "type": "string",
            "nullable": true
          },
          "kommentarFlerarsoversikt": {
            "type": "string",
            "nullable": true
          },
          "forandringEgetKapitalKommentar": {
            "type": "string",
            "nullable": true
          },
          "avskrivningarMateriellaAnlaggningstillgangarKommentar": {
            "type": "string",
            "nullable": true
          },
          "andelarKoncernforetagKommentar": {
            "type": "string",
            "nullable": true
          },
          "dispositionerVinstForlustKommentar": {
            "type": "string",
            "nullable": true
          },
          "foretagetsSate": {
            "type": "string",
            "nullable": true
          },
          "eventualForpliktelser": {
            "type": "string",
            "nullable": true
          },
          "uppgiftModerforetag": {
            "type": "string",
            "nullable": true
          },
          "innehavAndelarKoncernforetag": {
            "type": "string",
            "nullable": true
          },
          "harNot": {
            "type": "boolean"
          },
          "not": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Not"
          },
          "harRevisor": {
            "type": "boolean"
          },
          "revisor": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Revisor"
          },
          "reportSoftwareMetaTag": {
            "type": "string",
            "nullable": true
          },
          "reportSoftwareVersionMetaTag": {
            "type": "string",
            "nullable": true
          },
          "reportApplicationName": {
            "type": "string",
            "nullable": true
          },
          "reportAuditReportHashMetaTag": {
            "type": "string",
            "nullable": true
          },
          "reportOriginatorMetaTag": {
            "type": "string",
            "nullable": true
          },
          "reportAuditorMetaTag": {
            "type": "string",
            "nullable": true
          },
          "auditorSoftwareMetaTag": {
            "type": "string",
            "nullable": true
          },
          "auditorSoftwareVersionMetaTag": {
            "type": "string",
            "nullable": true
          },
          "auditorApplicationName": {
            "type": "string",
            "nullable": true
          },
          "auditorReportHashMetaTag": {
            "type": "string",
            "nullable": true
          },
          "auditorOriginatorMetaTag": {
            "type": "string",
            "nullable": true
          },
          "representativeSignatures": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_TypesenseCompanyFinancialReportDocumentGroupedHits": {
        "type": "object",
        "properties": {
          "group_key": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "hits": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_TypesenseCompanyFinancialReportDocumentHit"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_TypesenseCompanyFinancialReportDocumentHit": {
        "type": "object",
        "properties": {
          "document": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_TypesenseCompanyFinancialReportDocument"
          },
          "geo_distance_meters": {
            "nullable": true
          },
          "highlight": {
            "nullable": true
          },
          "highlights": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_HighlightElement"
            },
            "nullable": true
          },
          "text_match": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "text_match_info": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_TextMatchInfo"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_TypesenseCompanyFinancialReportDocumentTypesenseSearchResponse": {
        "type": "object",
        "properties": {
          "facet_counts": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_TypesenseFacetCounts"
            },
            "nullable": true
          },
          "found": {
            "type": "integer",
            "format": "int32"
          },
          "hits": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_TypesenseCompanyFinancialReportDocumentHit"
            },
            "nullable": true
          },
          "grouped_hits": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_TypesenseCompanyFinancialReportDocumentGroupedHits"
          },
          "out_of": {
            "type": "integer",
            "format": "int32"
          },
          "page": {
            "type": "integer",
            "format": "int32"
          },
          "request_params": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_RequestParams"
          },
          "search_cutoff": {
            "type": "boolean",
            "nullable": true
          },
          "search_time_ms": {
            "type": "integer",
            "format": "int32"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_TypesenseCompanyWorkplace": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "nullable": true
          },
          "companyWorkplaceId": {
            "type": "integer",
            "format": "int32"
          },
          "workplaceCode": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "firstSeenAt": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "workplaceCompanies": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_CompanyWorkplaceCompany"
            },
            "nullable": true
          },
          "workplaceUnits": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_CompanyWorkplaceUnit"
            },
            "nullable": true
          },
          "workplaceName": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_CompanyWorkplaceName"
            },
            "nullable": true
          },
          "workplaceType": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "workplaceTypeDescriptionSv": {
            "type": "string",
            "nullable": true
          },
          "employeesRangeType": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "employeesRangeTypeDescriptionSv": {
            "type": "string",
            "nullable": true
          },
          "mostRecentVisitingAddress": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_CompanyWorkplaceAddressGeopoint"
          },
          "mostRecentMailingAddress": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_CompanyWorkplaceAddressGeopoint"
          },
          "sniCodes": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_CompanyWorkplaceIndustryCode"
            },
            "nullable": true
          },
          "status": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_Search_CompanyWorkplaceStatus"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_TypesenseCompanyWorkplaceGroupedHits": {
        "type": "object",
        "properties": {
          "group_key": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "hits": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_TypesenseCompanyWorkplaceHit"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_TypesenseCompanyWorkplaceHit": {
        "type": "object",
        "properties": {
          "document": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_TypesenseCompanyWorkplace"
          },
          "geo_distance_meters": {
            "nullable": true
          },
          "highlight": {
            "nullable": true
          },
          "highlights": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_HighlightElement"
            },
            "nullable": true
          },
          "text_match": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "text_match_info": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_TextMatchInfo"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_TypesenseCompanyWorkplaceTypesenseSearchResponse": {
        "type": "object",
        "properties": {
          "facet_counts": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_TypesenseFacetCounts"
            },
            "nullable": true
          },
          "found": {
            "type": "integer",
            "format": "int32"
          },
          "hits": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_TypesenseCompanyWorkplaceHit"
            },
            "nullable": true
          },
          "grouped_hits": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_TypesenseCompanyWorkplaceGroupedHits"
          },
          "out_of": {
            "type": "integer",
            "format": "int32"
          },
          "page": {
            "type": "integer",
            "format": "int32"
          },
          "request_params": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_RequestParams"
          },
          "search_cutoff": {
            "type": "boolean",
            "nullable": true
          },
          "search_time_ms": {
            "type": "integer",
            "format": "int32"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_TypesenseLantmaterietFastighetDocument": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "nullable": true
          },
          "propertyId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "propertyDesignation": {
            "type": "string",
            "nullable": true
          },
          "propertySlug": {
            "type": "string",
            "nullable": true
          },
          "propertyType": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_LantmaterietFastighetTyp"
          },
          "statusType": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_LantmaterietFastighetStatus"
          },
          "buildingNames": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "centroidArea1": {
            "type": "array",
            "items": {
              "type": "number",
              "format": "double"
            },
            "nullable": true
          },
          "municipalityCode": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "countyCode": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "landArea": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "waterArea": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "totalArea": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "streetAddress": {
            "type": "string",
            "nullable": true
          },
          "postalCode": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "city": {
            "type": "string",
            "nullable": true
          },
          "buildingTypes": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "buildingPurposes": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "numberOfAreas": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "areas": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_TypesenseLantmaterietOmrade"
            },
            "nullable": true
          },
          "lastOwnerRegistrationDate": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "owners": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_TypesenseLantmaterietOwner"
            },
            "nullable": true
          },
          "numberOfBuildings": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "numberOfAddresses": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "safetyShelterNumbers": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "taxationCode": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "taxationValue": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "taxationYear": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "taxationProperties": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "taxationValueParts": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_TypesenseTaxeringDelvarde"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_TypesenseLantmaterietFastighetDocumentGroupedHits": {
        "type": "object",
        "properties": {
          "group_key": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "hits": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_TypesenseLantmaterietFastighetDocumentHit"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_TypesenseLantmaterietFastighetDocumentHit": {
        "type": "object",
        "properties": {
          "document": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_TypesenseLantmaterietFastighetDocument"
          },
          "geo_distance_meters": {
            "nullable": true
          },
          "highlight": {
            "nullable": true
          },
          "highlights": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_HighlightElement"
            },
            "nullable": true
          },
          "text_match": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "text_match_info": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_TextMatchInfo"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_TypesenseLantmaterietFastighetDocumentTypesenseSearchResponse": {
        "type": "object",
        "properties": {
          "facet_counts": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_TypesenseFacetCounts"
            },
            "nullable": true
          },
          "found": {
            "type": "integer",
            "format": "int32"
          },
          "hits": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_TypesenseLantmaterietFastighetDocumentHit"
            },
            "nullable": true
          },
          "grouped_hits": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_TypesenseLantmaterietFastighetDocumentGroupedHits"
          },
          "out_of": {
            "type": "integer",
            "format": "int32"
          },
          "page": {
            "type": "integer",
            "format": "int32"
          },
          "request_params": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_RequestParams"
          },
          "search_cutoff": {
            "type": "boolean",
            "nullable": true
          },
          "search_time_ms": {
            "type": "integer",
            "format": "int32"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_TypesenseLantmaterietOmrade": {
        "type": "object",
        "properties": {
          "areaId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "surface": {
            "type": "array",
            "items": {
              "type": "array",
              "items": {
                "type": "array",
                "items": {
                  "type": "number",
                  "format": "double"
                }
              }
            },
            "nullable": true
          },
          "centroid": {
            "type": "array",
            "items": {
              "type": "number",
              "format": "double"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_TypesenseLantmaterietOwner": {
        "type": "object",
        "properties": {
          "companyId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "personId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "numerator": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "denominator": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "registrationDate": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_TypesensePersonDocument": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "nullable": true
          },
          "personId": {
            "type": "integer",
            "format": "int32"
          },
          "personalIdentityNumber": {
            "type": "string",
            "nullable": true
          },
          "allIdentities": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "birthday": {
            "type": "string",
            "nullable": true
          },
          "isProtected": {
            "type": "boolean"
          },
          "isCoordinationNumber": {
            "type": "boolean",
            "nullable": true
          },
          "givenName": {
            "type": "string",
            "nullable": true
          },
          "firstName": {
            "type": "string",
            "nullable": true
          },
          "middleName": {
            "type": "string",
            "nullable": true
          },
          "lastName": {
            "type": "string",
            "nullable": true
          },
          "fullName": {
            "type": "string",
            "nullable": true
          },
          "sex": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_PersonSexType"
          },
          "spar": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_SPAR_Record"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_TypesensePersonDocumentGroupedHits": {
        "type": "object",
        "properties": {
          "group_key": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "hits": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_TypesensePersonDocumentHit"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_TypesensePersonDocumentHit": {
        "type": "object",
        "properties": {
          "document": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_TypesensePersonDocument"
          },
          "geo_distance_meters": {
            "nullable": true
          },
          "highlight": {
            "nullable": true
          },
          "highlights": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_HighlightElement"
            },
            "nullable": true
          },
          "text_match": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "text_match_info": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_TextMatchInfo"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_TypesensePersonDocumentTypesenseSearchResponse": {
        "type": "object",
        "properties": {
          "facet_counts": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_TypesenseFacetCounts"
            },
            "nullable": true
          },
          "found": {
            "type": "integer",
            "format": "int32"
          },
          "hits": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_TypesensePersonDocumentHit"
            },
            "nullable": true
          },
          "grouped_hits": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_TypesensePersonDocumentGroupedHits"
          },
          "out_of": {
            "type": "integer",
            "format": "int32"
          },
          "page": {
            "type": "integer",
            "format": "int32"
          },
          "request_params": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_RequestParams"
          },
          "search_cutoff": {
            "type": "boolean",
            "nullable": true
          },
          "search_time_ms": {
            "type": "integer",
            "format": "int32"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_TypesenseTaxeringDelvarde": {
        "type": "object",
        "properties": {
          "part": {
            "type": "string",
            "nullable": true
          },
          "amount": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_TypesenseTransportstyrelsenDocument": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "nullable": true
          },
          "currentOwnerCompanyId": {
            "type": "string",
            "nullable": true
          },
          "currentUserCompanyId": {
            "type": "string",
            "nullable": true
          },
          "lastMileageDate": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "mileageKm": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "wanted": {
            "type": "boolean"
          },
          "fabric": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "fuelCombination": {
            "type": "string",
            "nullable": true
          },
          "colorHex": {
            "type": "string",
            "nullable": true
          },
          "color": {
            "type": "string",
            "nullable": true
          },
          "name": {
            "type": "string",
            "nullable": true
          },
          "licencePlate": {
            "type": "string",
            "nullable": true
          },
          "deregistered": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "deregisteredText": {
            "type": "string",
            "nullable": true
          },
          "deregisteredCause": {
            "type": "string",
            "nullable": true
          },
          "vehicleType": {
            "type": "string",
            "nullable": true
          },
          "vehicleCategoryEU": {
            "type": "string",
            "nullable": true
          },
          "vehicleName": {
            "type": "string",
            "nullable": true
          },
          "tradeName": {
            "type": "string",
            "nullable": true
          },
          "modelYear": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "vehicleYear": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "vin": {
            "type": "string",
            "nullable": true
          },
          "fabricCode": {
            "type": "string",
            "nullable": true
          },
          "modelNumber": {
            "type": "string",
            "nullable": true
          },
          "groupNumber": {
            "type": "string",
            "nullable": true
          },
          "manufacturingYearAndMonth": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "manufactured": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "reusedLicencePlate": {
            "type": "boolean",
            "nullable": true
          },
          "registered": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "vehicleClass": {
            "type": "string",
            "nullable": true
          },
          "doodlebug": {
            "type": "boolean",
            "nullable": true
          },
          "manufacturer": {
            "type": "string",
            "nullable": true
          },
          "manfacturerBasicVehicle": {
            "type": "string",
            "nullable": true
          },
          "acquiredDate": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "address": {
            "type": "string",
            "nullable": true
          },
          "postalCode": {
            "type": "string",
            "nullable": true
          },
          "city": {
            "type": "string",
            "nullable": true
          },
          "municipalityCode": {
            "type": "string",
            "nullable": true
          },
          "numberOfOwners": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "acquiredByOwner": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "registrationType": {
            "type": "string",
            "nullable": true
          },
          "status": {
            "type": "string",
            "nullable": true
          },
          "statusDate": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "statusCause": {
            "type": "string",
            "nullable": true
          },
          "onLease": {
            "type": "boolean",
            "nullable": true
          },
          "areaOfUse1": {
            "type": "string",
            "nullable": true
          },
          "areaOfUse2": {
            "type": "string",
            "nullable": true
          },
          "areaOfUse3": {
            "type": "string",
            "nullable": true
          },
          "areaOfUse4": {
            "type": "string",
            "nullable": true
          },
          "areaOfUse5": {
            "type": "string",
            "nullable": true
          },
          "insuranceType": {
            "type": "string",
            "nullable": true
          },
          "insuranceCompany": {
            "type": "string",
            "nullable": true
          },
          "onCredit": {
            "type": "boolean",
            "nullable": true
          },
          "importer": {
            "type": "string",
            "nullable": true
          },
          "originCode": {
            "type": "string",
            "nullable": true
          },
          "originCause": {
            "type": "string",
            "nullable": true
          },
          "preregistered": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "earlierRegistration": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "directImport": {
            "type": "boolean",
            "nullable": true
          },
          "variety": {
            "type": "string",
            "nullable": true
          },
          "version": {
            "type": "string",
            "nullable": true
          },
          "type": {
            "type": "string",
            "nullable": true
          },
          "bodyworkCode1": {
            "type": "string",
            "nullable": true
          },
          "bodyworkCode2": {
            "type": "string",
            "nullable": true
          },
          "bodyworkCodeAddition": {
            "type": "string",
            "nullable": true
          },
          "busClass": {
            "type": "string",
            "nullable": true
          },
          "numberOfPassengers": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "numberOfSeats": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "eeg": {
            "type": "string",
            "nullable": true
          },
          "cylinderVolume": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "gearbox": {
            "type": "string",
            "nullable": true
          },
          "coupling1": {
            "type": "string",
            "nullable": true
          },
          "coupling2": {
            "type": "string",
            "nullable": true
          },
          "curbWeight": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "weightInDrivingCondition": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "totalWeight": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "fuelCode1": {
            "type": "string",
            "nullable": true
          },
          "fuelCode2": {
            "type": "string",
            "nullable": true
          },
          "fuelCode3": {
            "type": "string",
            "nullable": true
          },
          "enginePowerHk1": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "enginePowerHk2": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "enginePowerHk3": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "enginePowerUnit1": {
            "type": "string",
            "nullable": true
          },
          "enginePowerUnit2": {
            "type": "string",
            "nullable": true
          },
          "enginePowerUnit3": {
            "type": "string",
            "nullable": true
          },
          "fuelTankSize1": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "fuelTankSize2": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "fuelTankSize3": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "width": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "length": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "height": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "maxTrailerWeightKg": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "maxTrailerWeightB": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "maxTrailerWeightBExtB": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "maxWeightTrailer": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "maxWeightUnbreakedTrailer": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "maxTrailerSpeed": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "maxLoadWeight": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "fourWheelDrive": {
            "type": "boolean",
            "nullable": true
          },
          "maximumPowerForElectricVehicle": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "powerDuring30Minutes": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "powerDuring15Minutes": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "averagePayload": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "workVehicle": {
            "type": "boolean",
            "nullable": true
          },
          "environmentalClass": {
            "type": "string",
            "nullable": true
          },
          "environmentalVehicle": {
            "type": "string",
            "nullable": true
          },
          "environmentalClassEURO": {
            "type": "string",
            "nullable": true
          },
          "emissionClass": {
            "type": "string",
            "nullable": true
          },
          "superEnvironmentalVehicle": {
            "type": "boolean",
            "nullable": true
          },
          "co2Driv1": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "co2Driv2": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "co2Driv3": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "consumption1": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "consumption2": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "consumption3": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "energyConsumption": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "soundLevel1": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "soundLevel2": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "soundLevel3": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "consumptionWeightedMixed": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "co2WeightedMixed": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "wltp_C02Low1": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "wltp_C02Low2": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "wltp_C02Low3": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "wltp_C02Med1": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "wltp_C02Med2": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "wltp_C02Med3": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "wltp_C02High1": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "wltp_C02High2": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "wltp_C02High3": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "wltp_C02ExtraHigh1": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "wltp_C02ExtraHigh2": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "wltp_C02ExtraHigh3": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "wltp_C02Mixed1": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "wltp_C02Mixed2": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "wltp_C02Mixed3": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "wltp_CO2Weighted1": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "wltp_CO2Weighted2": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "wltp_CO2Weighted3": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "wltp_FuelConsumptionLow1": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "wltp_FuelConsumptionLow2": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "wltp_FuelConsumptionLow3": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "wltp_FuelConsumptionMed1": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "wltp_FuelConsumptionMed2": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "wltp_FuelConsumptionMed3": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "wltp_FuelConsumptionHigh1": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "wltp_FuelConsumptionHigh2": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "wltp_FuelConsumptionHigh3": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "wltp_FuelConsumptionExtraHigh1": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "wltp_FuelConsumptionExtraHigh2": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "wltp_FuelConsumptionExtraHigh3": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "wltp_FuelConsumptionMixed1": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "wltp_FuelConsumptionMixed2": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "wltp_FuelConsumptionMixed3": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "wltp_FuelConsumptionWeighted1": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "wltp_FuelConsumptionWeighted2": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "wltp_FuelConsumptionWeighted3": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "wltp_EnergyConsumption1": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "wltp_EnergyConsumption2": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "wltp_EnergyConsumption3": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "wltp_EnergyConsumptionWeighted1": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "wltp_EnergyConsumptionWeighted2": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "wltp_EnergyConsumptionWeighted3": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "wltp_Range1": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "wltp_Range2": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "wltp_RangeCity1": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "wltp_RangeCity2": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "wltp_CO2TypI_1": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "wltp_CO2TypI_2": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "wltp_CO2TypI_3": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "nedc_FuelConsumptionCity1": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "nedc_FuelConsumptionCity2": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "nedc_FuelConsumptionCity3": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "nedc_FuelConsumptionCountryRoad1": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "nedc_FuelConsumptionCountryRoad2": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "nedc_FuelConsumptionCountryRoad3": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "nedc_Range": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "eletricVehicleConfiguration": {
            "type": "string",
            "nullable": true
          },
          "electricOrHybrid": {
            "type": "string",
            "nullable": true
          },
          "numberOfAxles": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "wheelbase1": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "wheelbase2": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "wheelbase3": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "tireDimensionFront": {
            "type": "string",
            "nullable": true
          },
          "tireDimensionRear": {
            "type": "string",
            "nullable": true
          },
          "rimDimensionFront": {
            "type": "string",
            "nullable": true
          },
          "rimDimensionRear": {
            "type": "string",
            "nullable": true
          },
          "doubleCommand": {
            "type": "boolean",
            "nullable": true
          },
          "passengerAirbag": {
            "type": "boolean",
            "nullable": true
          },
          "rallyVehicle": {
            "type": "boolean",
            "nullable": true
          },
          "equipment1": {
            "type": "string",
            "nullable": true
          },
          "equipment2": {
            "type": "string",
            "nullable": true
          },
          "equipment3": {
            "type": "string",
            "nullable": true
          },
          "wheelbase1Miminum": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "wheelbase2Miminum": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "wheelbase3Miminum": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "maxSpeed": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "limitedSpeed": {
            "type": "string",
            "nullable": true
          },
          "advancedBreakingsystemMC": {
            "type": "string",
            "nullable": true
          },
          "lastInspection": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "inspectionStatus": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_TypesenseTransportstyrelsenDocumentGroupedHits": {
        "type": "object",
        "properties": {
          "group_key": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "hits": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_TypesenseTransportstyrelsenDocumentHit"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_TypesenseTransportstyrelsenDocumentHit": {
        "type": "object",
        "properties": {
          "document": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_TypesenseTransportstyrelsenDocument"
          },
          "geo_distance_meters": {
            "nullable": true
          },
          "highlight": {
            "nullable": true
          },
          "highlights": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_HighlightElement"
            },
            "nullable": true
          },
          "text_match": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "text_match_info": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_TextMatchInfo"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_TypesenseTransportstyrelsenDocumentTypesenseMultiSearchResponse": {
        "type": "object",
        "properties": {
          "results": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_TypesenseTransportstyrelsenDocumentTypesenseSearchResponse"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_Documents_TypesenseTransportstyrelsenDocumentTypesenseSearchResponse": {
        "type": "object",
        "properties": {
          "facet_counts": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_TypesenseFacetCounts"
            },
            "nullable": true
          },
          "found": {
            "type": "integer",
            "format": "int32"
          },
          "hits": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_TypesenseTransportstyrelsenDocumentHit"
            },
            "nullable": true
          },
          "grouped_hits": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_Documents_TypesenseTransportstyrelsenDocumentGroupedHits"
          },
          "out_of": {
            "type": "integer",
            "format": "int32"
          },
          "page": {
            "type": "integer",
            "format": "int32"
          },
          "request_params": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_RequestParams"
          },
          "search_cutoff": {
            "type": "boolean",
            "nullable": true
          },
          "search_time_ms": {
            "type": "integer",
            "format": "int32"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_HighlightElement": {
        "type": "object",
        "properties": {
          "field": {
            "type": "string",
            "nullable": true
          },
          "matched_tokens": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "snippet": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_RequestParams": {
        "type": "object",
        "properties": {
          "collection_name": {
            "type": "string",
            "nullable": true
          },
          "first_q": {
            "type": "string",
            "nullable": true
          },
          "per_page": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "q": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_TextMatchInfo": {
        "type": "object",
        "properties": {
          "best_field_score": {
            "type": "string",
            "nullable": true
          },
          "best_field_weight": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "fields_matched": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "num_tokens_dropped": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "score": {
            "type": "string",
            "nullable": true
          },
          "tokens_matched": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "typo_prefix_score": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_TypesenseFacetCountDetails": {
        "type": "object",
        "properties": {
          "count": {
            "type": "integer",
            "format": "int64"
          },
          "highlighted": {
            "type": "string",
            "nullable": true
          },
          "value": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_TypesenseFacetCounts": {
        "type": "object",
        "properties": {
          "counts": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Search_TypesenseFacetCountDetails"
            },
            "nullable": true
          },
          "field_name": {
            "type": "string",
            "nullable": true
          },
          "sampled": {
            "type": "boolean"
          },
          "stats": {
            "$ref": "#/components/schemas/Ormeo_Library_Search_TypesenseFacetCountsStats"
          },
          "localizedFieldName": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Search_TypesenseFacetCountsStats": {
        "type": "object",
        "properties": {
          "total_values": {
            "type": "integer",
            "format": "int64"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_AgarlagenhetBostad": {
        "required": [
          "id",
          "riktvarde",
          "underUppforande",
          "varde",
          "varderingsenhetsnummer"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "nullable": true
          },
          "varderingsenhetsnummer": {
            "type": "integer",
            "format": "int64"
          },
          "varde": {
            "type": "integer",
            "format": "int64"
          },
          "riktvarde": {
            "type": "integer",
            "format": "int64"
          },
          "vardeomrade": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Vardeomrade"
          },
          "justeringar": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Justering"
            },
            "nullable": true
          },
          "tillhorByggnad": {
            "type": "integer",
            "format": "int64"
          },
          "nybyggnadsar": {
            "type": "integer",
            "format": "int64"
          },
          "omEllerTillbyggnadsar": {
            "type": "integer",
            "format": "int64"
          },
          "vardear": {
            "type": "integer",
            "format": "int64"
          },
          "underUppforande": {
            "type": "boolean"
          },
          "area": {
            "type": "integer",
            "format": "int64"
          },
          "arshyra": {
            "type": "integer",
            "format": "int64"
          },
          "liggerPaTomt": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_AgarlagenhetBostadsmark": {
        "required": [
          "id",
          "riktvarde",
          "varde",
          "varderingsenhetsnummer"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "nullable": true
          },
          "varderingsenhetsnummer": {
            "type": "integer",
            "format": "int64"
          },
          "varde": {
            "type": "integer",
            "format": "int64"
          },
          "riktvarde": {
            "type": "integer",
            "format": "int64"
          },
          "vardeomrade": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Vardeomrade"
          },
          "justeringar": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Justering"
            },
            "nullable": true
          },
          "byggratt": {
            "type": "integer",
            "format": "int64"
          },
          "tillhorByggnad": {
            "type": "integer",
            "format": "int64"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_Agarlagenhetstaxeringsenhet": {
        "required": [
          "fastigheter",
          "taxeringsenhetsnummer",
          "typAvTaxeringsenhet",
          "typkod"
        ],
        "type": "object",
        "properties": {
          "typAvTaxeringsenhet": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_TypAvTaxeringsenhetEnum"
          },
          "areal": {
            "type": "integer",
            "format": "int64"
          },
          "taxeringsenhetsnummer": {
            "type": "string",
            "nullable": true
          },
          "typkod": {
            "type": "integer",
            "format": "int32"
          },
          "taxeringsvarde": {
            "type": "integer",
            "format": "int64"
          },
          "avregistrerad": {
            "type": "boolean",
            "nullable": true
          },
          "fastigheter": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Fastighet"
            },
            "nullable": true
          },
          "delvarden": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Delvarde"
            },
            "nullable": true
          },
          "bostadsmarker": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_AgarlagenhetBostadsmark"
            },
            "nullable": true
          },
          "bostader": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_AgarlagenhetBostad"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_Beslut": {
        "required": [
          "beslutsar",
          "beslutstyp",
          "datum"
        ],
        "type": "object",
        "properties": {
          "beslutstyp": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Beslut+BeslutstypEnum"
          },
          "posttyp": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Beslut+PosttypEnum"
          },
          "datum": {
            "type": "string",
            "format": "date-time"
          },
          "beslutsar": {
            "type": "integer",
            "format": "int32"
          },
          "posttypsinformation": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Posttypsinformation"
          },
          "elproduktionstaxeringsenhet": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Elproduktionstaxeringsenhet"
          },
          "takttaxeringsenhet": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Takttaxeringsenhet"
          },
          "industritaxeringsenhet": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Industritaxeringsenhet"
          },
          "hyreshustaxeringsenhet": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Hyreshustaxeringsenhet"
          },
          "agarlagenhetstaxeringsenhet": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Agarlagenhetstaxeringsenhet"
          },
          "smahustaxeringsenhet": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Smahustaxeringsenhet"
          },
          "lantbrukstaxeringsenhet": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Lantbrukstaxeringsenhet"
          },
          "specialtaxeringsenhet": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Specialtaxeringsenhet"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_Beslut+BeslutstypEnum": {
        "enum": [
          "GRUNDBESLUT",
          "OMPROVNINGSBESLUT",
          "BESLUT_TAXERINGSATGARDER"
        ],
        "type": "string"
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_Beslut+PosttypEnum": {
        "enum": [
          "BORTTAG"
        ],
        "type": "string"
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_Delvarde": {
        "required": [
          "typ"
        ],
        "type": "object",
        "properties": {
          "typ": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Delvarde+TypEnum"
          },
          "delvarde": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_Delvarde+TypEnum": {
        "enum": [
          "BYGGNADSVARDE",
          "MARKVARDE",
          "BOSTADSBYGGNADSVARDE",
          "EKONOMIBYGGNADSVARDE",
          "TOMTMARKSVARDE",
          "JORDBRUKSVARDE",
          "SKOGSBRUKSVARDE",
          "SKOGSIMPEDIMENTSVARDE"
        ],
        "type": "string"
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_ElproduktionTomtmark": {
        "required": [
          "id",
          "riktvarde",
          "varde",
          "varderingsenhetsnummer"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "nullable": true
          },
          "varderingsenhetsnummer": {
            "type": "integer",
            "format": "int64"
          },
          "varde": {
            "type": "integer",
            "format": "int64"
          },
          "riktvarde": {
            "type": "integer",
            "format": "int64"
          },
          "vardeomrade": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Vardeomrade"
          },
          "justeringar": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Justering"
            },
            "nullable": true
          },
          "tillhorByggnad": {
            "type": "integer",
            "format": "int64"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_ElproduktionVarmekraftverk": {
        "required": [
          "id",
          "riktvarde",
          "underUppforande",
          "varde",
          "varderingsenhetsnummer"
        ],
        "type": "object",
        "properties": {
          "typAvVarmekraftverk": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_ElproduktionVarmekraftverk+TypAvVarmekraftverkEnum"
          },
          "id": {
            "type": "string",
            "nullable": true
          },
          "varderingsenhetsnummer": {
            "type": "integer",
            "format": "int64"
          },
          "varde": {
            "type": "integer",
            "format": "int64"
          },
          "riktvarde": {
            "type": "integer",
            "format": "int64"
          },
          "vardeomrade": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Vardeomrade"
          },
          "justeringar": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Justering"
            },
            "nullable": true
          },
          "underUppforande": {
            "type": "boolean"
          },
          "installeradEffekt": {
            "type": "integer",
            "format": "int64"
          },
          "idrifttagningsar": {
            "type": "integer",
            "format": "int64"
          },
          "tillhorByggnad": {
            "type": "integer",
            "format": "int64"
          },
          "elcertifikat": {
            "type": "integer",
            "format": "int64"
          },
          "elcertifikatStartar": {
            "type": "integer",
            "format": "int64"
          },
          "liggerPaTomt": {
            "type": "string",
            "nullable": true
          },
          "genomsnittligArsproduktion": {
            "type": "integer",
            "format": "int64"
          },
          "omEllerTillbyggnadsar": {
            "type": "integer",
            "format": "int64"
          },
          "gammaltIdrifttagningsar": {
            "type": "integer",
            "format": "int64"
          },
          "elprisomrade": {
            "type": "integer",
            "format": "int64"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_ElproduktionVarmekraftverk+TypAvVarmekraftverkEnum": {
        "enum": [
          "KARNKRAFT",
          "VINDKRAFT",
          "KRAFTVARME",
          "KONDENSKRAFT"
        ],
        "type": "string"
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_ElproduktionVattenkraftverk": {
        "required": [
          "id",
          "riktvarde",
          "underUppforande",
          "varde",
          "varderingsenhetsnummer"
        ],
        "type": "object",
        "properties": {
          "belagenhet": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_ElproduktionVattenkraftverk+BelagenhetEnum"
          },
          "id": {
            "type": "string",
            "nullable": true
          },
          "varderingsenhetsnummer": {
            "type": "integer",
            "format": "int64"
          },
          "varde": {
            "type": "integer",
            "format": "int64"
          },
          "riktvarde": {
            "type": "integer",
            "format": "int64"
          },
          "vardeomrade": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Vardeomrade"
          },
          "justeringar": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Justering"
            },
            "nullable": true
          },
          "utnyttjandefaktor": {
            "type": "number",
            "format": "double"
          },
          "normalarsproduktion": {
            "type": "integer",
            "format": "int64"
          },
          "flerarsreglering": {
            "type": "number",
            "format": "double"
          },
          "underUppforande": {
            "type": "boolean"
          },
          "installeradEffekt": {
            "type": "integer",
            "format": "int64"
          },
          "idrifttagningsar": {
            "type": "integer",
            "format": "int64"
          },
          "elcertifikat": {
            "type": "integer",
            "format": "int64"
          },
          "elcertifikatStartar": {
            "type": "integer",
            "format": "int64"
          },
          "faktorStorleksinverkanTotal": {
            "type": "number",
            "format": "double"
          },
          "belagenhetsfaktor": {
            "type": "number",
            "format": "double"
          },
          "elprisomrade": {
            "type": "integer",
            "format": "int64"
          },
          "faktorStorleksinverkanMark": {
            "type": "number",
            "format": "double"
          },
          "maximalBruttoeffekt": {
            "type": "integer",
            "format": "int64"
          },
          "faktorAlder": {
            "type": "integer",
            "format": "int64"
          },
          "utnyttjandetidForeKorrigering": {
            "type": "number",
            "format": "double"
          },
          "lagProduktionVintertid": {
            "type": "integer",
            "format": "int64"
          },
          "lagProduktionVintertidKorrigering": {
            "type": "number",
            "format": "double"
          },
          "dygnsreglering": {
            "type": "integer",
            "format": "int64"
          },
          "dygnsregleringKorrigering": {
            "type": "number",
            "format": "double"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_ElproduktionVattenkraftverk+BelagenhetEnum": {
        "enum": [
          "KLASS_1",
          "KLASS_2",
          "KLASS_3",
          "KLASS_4",
          "KLASS_5",
          "KLASS_6",
          "KLASS_7",
          "KLASS_8",
          "KLASS_9",
          "KLASS_10"
        ],
        "type": "string"
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_Elproduktionstaxeringsenhet": {
        "required": [
          "fastigheter",
          "taxeringsenhetsnummer",
          "typAvTaxeringsenhet"
        ],
        "type": "object",
        "properties": {
          "typAvTaxeringsenhet": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_TypAvTaxeringsenhetEnum"
          },
          "areal": {
            "type": "integer",
            "format": "int64"
          },
          "taxeringsenhetsnummer": {
            "type": "string",
            "nullable": true
          },
          "typkod": {
            "type": "integer",
            "format": "int32"
          },
          "taxeringsvarde": {
            "type": "integer",
            "format": "int64"
          },
          "avregistrerad": {
            "type": "boolean",
            "nullable": true
          },
          "fastigheter": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Fastighet"
            },
            "nullable": true
          },
          "delvarden": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Delvarde"
            },
            "nullable": true
          },
          "tomtmarker": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_ElproduktionTomtmark"
            },
            "nullable": true
          },
          "varmekraftverk": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_ElproduktionVarmekraftverk"
            },
            "nullable": true
          },
          "vattenkraftverk": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_ElproduktionVattenkraftverk"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_Fastighet": {
        "required": [
          "fastighetsbeteckning",
          "id",
          "kommunkod",
          "typAvFastighet"
        ],
        "type": "object",
        "properties": {
          "typAvFastighet": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Fastighet+TypAvFastighetEnum"
          },
          "id": {
            "type": "integer",
            "format": "int32"
          },
          "kommunkod": {
            "type": "string",
            "nullable": true
          },
          "fastighetsbeteckning": {
            "type": "string",
            "nullable": true
          },
          "lantmaterietsId": {
            "type": "string",
            "format": "uuid"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_Fastighet+TypAvFastighetEnum": {
        "enum": [
          "FASTIGHET",
          "BYGGNAD_PA_OFRI_GRUND",
          "SAMFALLIGHET"
        ],
        "type": "string"
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_HyreshusBostad": {
        "required": [
          "id",
          "riktvarde",
          "underUppforande",
          "varde",
          "varderingsenhetsnummer"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "nullable": true
          },
          "varderingsenhetsnummer": {
            "type": "integer",
            "format": "int64"
          },
          "varde": {
            "type": "integer",
            "format": "int64"
          },
          "riktvarde": {
            "type": "integer",
            "format": "int64"
          },
          "vardeomrade": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Vardeomrade"
          },
          "justeringar": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Justering"
            },
            "nullable": true
          },
          "antalBostadslagenheter": {
            "type": "integer",
            "format": "int64"
          },
          "tillhorByggnad": {
            "type": "integer",
            "format": "int64"
          },
          "nybyggnadsar": {
            "type": "integer",
            "format": "int64"
          },
          "omEllerTillbyggnadsar": {
            "type": "integer",
            "format": "int64"
          },
          "vardear": {
            "type": "integer",
            "format": "int64"
          },
          "areaTotal": {
            "type": "integer",
            "format": "int64"
          },
          "arshyraTotal": {
            "type": "integer",
            "format": "int64"
          },
          "underUppforande": {
            "type": "boolean"
          },
          "areaUthyrda": {
            "type": "integer",
            "format": "int64"
          },
          "areaVakanser": {
            "type": "integer",
            "format": "int64"
          },
          "areaBostadsratter": {
            "type": "integer",
            "format": "int64"
          },
          "areaEgenanvandning": {
            "type": "integer",
            "format": "int64"
          },
          "arshyraUthyrda": {
            "type": "integer",
            "format": "int64"
          },
          "arshyraVakanser": {
            "type": "integer",
            "format": "int64"
          },
          "arshyraBostadsratter": {
            "type": "integer",
            "format": "int64"
          },
          "arshyraEgenanvandning": {
            "type": "integer",
            "format": "int64"
          },
          "liggerPaTomt": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_HyreshusBostadsmark": {
        "required": [
          "id",
          "riktvarde",
          "varde",
          "varderingsenhetsnummer"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "nullable": true
          },
          "varderingsenhetsnummer": {
            "type": "integer",
            "format": "int64"
          },
          "varde": {
            "type": "integer",
            "format": "int64"
          },
          "riktvarde": {
            "type": "integer",
            "format": "int64"
          },
          "vardeomrade": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Vardeomrade"
          },
          "justeringar": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Justering"
            },
            "nullable": true
          },
          "byggratt": {
            "type": "integer",
            "format": "int64"
          },
          "tillhorByggnad": {
            "type": "integer",
            "format": "int64"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_HyreshusLokal": {
        "required": [
          "id",
          "riktvarde",
          "underUppforande",
          "varde",
          "varderingsenhetsnummer"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "nullable": true
          },
          "varderingsenhetsnummer": {
            "type": "integer",
            "format": "int64"
          },
          "varde": {
            "type": "integer",
            "format": "int64"
          },
          "riktvarde": {
            "type": "integer",
            "format": "int64"
          },
          "vardeomrade": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Vardeomrade"
          },
          "justeringar": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Justering"
            },
            "nullable": true
          },
          "tillhorByggnad": {
            "type": "integer",
            "format": "int64"
          },
          "nybyggnadsar": {
            "type": "integer",
            "format": "int64"
          },
          "omEllerTillbyggnadsar": {
            "type": "integer",
            "format": "int64"
          },
          "vardear": {
            "type": "integer",
            "format": "int64"
          },
          "areaTotal": {
            "type": "integer",
            "format": "int64"
          },
          "arshyraTotal": {
            "type": "integer",
            "format": "int64"
          },
          "underUppforande": {
            "type": "boolean"
          },
          "areaUthyrda": {
            "type": "integer",
            "format": "int64"
          },
          "areaVakanser": {
            "type": "integer",
            "format": "int64"
          },
          "areaBostadsratter": {
            "type": "integer",
            "format": "int64"
          },
          "areaEgenanvandning": {
            "type": "integer",
            "format": "int64"
          },
          "arshyraUthyrda": {
            "type": "integer",
            "format": "int64"
          },
          "arshyraVakanser": {
            "type": "integer",
            "format": "int64"
          },
          "arshyraBostadsratter": {
            "type": "integer",
            "format": "int64"
          },
          "arshyraEgenanvandning": {
            "type": "integer",
            "format": "int64"
          },
          "liggerPaTomt": {
            "type": "string",
            "nullable": true
          },
          "lokalareaUnderMarkplan": {
            "type": "integer",
            "format": "int64"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_HyreshusLokalmark": {
        "required": [
          "id",
          "riktvarde",
          "varde",
          "varderingsenhetsnummer"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "nullable": true
          },
          "varderingsenhetsnummer": {
            "type": "integer",
            "format": "int64"
          },
          "varde": {
            "type": "integer",
            "format": "int64"
          },
          "riktvarde": {
            "type": "integer",
            "format": "int64"
          },
          "vardeomrade": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Vardeomrade"
          },
          "justeringar": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Justering"
            },
            "nullable": true
          },
          "byggratt": {
            "type": "integer",
            "format": "int64"
          },
          "tillhorByggnad": {
            "type": "integer",
            "format": "int64"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_Hyreshustaxeringsenhet": {
        "required": [
          "fastigheter",
          "taxeringsenhetsnummer",
          "typAvTaxeringsenhet",
          "typkod"
        ],
        "type": "object",
        "properties": {
          "typAvTaxeringsenhet": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_TypAvTaxeringsenhetEnum"
          },
          "areal": {
            "type": "integer",
            "format": "int64"
          },
          "taxeringsenhetsnummer": {
            "type": "string",
            "nullable": true
          },
          "typkod": {
            "type": "integer",
            "format": "int32"
          },
          "taxeringsvarde": {
            "type": "integer",
            "format": "int64"
          },
          "avregistrerad": {
            "type": "boolean",
            "nullable": true
          },
          "fastigheter": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Fastighet"
            },
            "nullable": true
          },
          "delvarden": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Delvarde"
            },
            "nullable": true
          },
          "bostadsmarker": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_HyreshusBostadsmark"
            },
            "nullable": true
          },
          "lokalmarker": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_HyreshusLokalmark"
            },
            "nullable": true
          },
          "bostader": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_HyreshusBostad"
            },
            "nullable": true
          },
          "lokaler": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_HyreshusLokal"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_IndustriAvkastningsberaknadKontor": {
        "required": [
          "aterstaendeEkonomiskLivslangd",
          "id",
          "riktvarde",
          "varde",
          "varderingsenhetsnummer"
        ],
        "type": "object",
        "properties": {
          "standardklassIndustrikontor": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_IndustriAvkastningsberaknadKontor+StandardklassIndustrikontorEnum"
          },
          "id": {
            "type": "string",
            "nullable": true
          },
          "varderingsenhetsnummer": {
            "type": "integer",
            "format": "int64"
          },
          "varde": {
            "type": "integer",
            "format": "int64"
          },
          "riktvarde": {
            "type": "integer",
            "format": "int64"
          },
          "vardeomrade": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Vardeomrade"
          },
          "justeringar": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Justering"
            },
            "nullable": true
          },
          "lokalarea": {
            "type": "integer",
            "format": "int64"
          },
          "vardear": {
            "type": "integer",
            "format": "int64"
          },
          "nybyggnadsar": {
            "type": "integer",
            "format": "int64"
          },
          "omEllerTillbyggnadsar": {
            "type": "integer",
            "format": "int64"
          },
          "aterstaendeEkonomiskLivslangd": {
            "type": "boolean"
          },
          "tillhorByggnad": {
            "type": "integer",
            "format": "int64"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_IndustriAvkastningsberaknadKontor+StandardklassIndustrikontorEnum": {
        "enum": [
          "KLASS_1",
          "KLASS_2",
          "KLASS_3"
        ],
        "type": "string"
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_IndustriAvkastningsberaknadLager": {
        "required": [
          "aterstaendeEkonomiskLivslangd",
          "id",
          "riktvarde",
          "varde",
          "varderingsenhetsnummer"
        ],
        "type": "object",
        "properties": {
          "standardklassLager": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_IndustriAvkastningsberaknadLager+StandardklassLagerEnum"
          },
          "id": {
            "type": "string",
            "nullable": true
          },
          "varderingsenhetsnummer": {
            "type": "integer",
            "format": "int64"
          },
          "varde": {
            "type": "integer",
            "format": "int64"
          },
          "riktvarde": {
            "type": "integer",
            "format": "int64"
          },
          "vardeomrade": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Vardeomrade"
          },
          "justeringar": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Justering"
            },
            "nullable": true
          },
          "lokalarea": {
            "type": "integer",
            "format": "int64"
          },
          "vardear": {
            "type": "integer",
            "format": "int64"
          },
          "nybyggnadsar": {
            "type": "integer",
            "format": "int64"
          },
          "omEllerTillbyggnadsar": {
            "type": "integer",
            "format": "int64"
          },
          "aterstaendeEkonomiskLivslangd": {
            "type": "boolean"
          },
          "tillhorByggnad": {
            "type": "integer",
            "format": "int64"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_IndustriAvkastningsberaknadLager+StandardklassLagerEnum": {
        "enum": [
          "KLASS_1",
          "KLASS_2",
          "KLASS_3",
          "KLASS_4",
          "KLASS_5"
        ],
        "type": "string"
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_IndustriAvkastningsberaknadProduktionslokal": {
        "required": [
          "aterstaendeEkonomiskLivslangd",
          "id",
          "riktvarde",
          "varde",
          "varderingsenhetsnummer"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "nullable": true
          },
          "varderingsenhetsnummer": {
            "type": "integer",
            "format": "int64"
          },
          "varde": {
            "type": "integer",
            "format": "int64"
          },
          "riktvarde": {
            "type": "integer",
            "format": "int64"
          },
          "vardeomrade": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Vardeomrade"
          },
          "justeringar": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Justering"
            },
            "nullable": true
          },
          "lokalarea": {
            "type": "integer",
            "format": "int64"
          },
          "vardear": {
            "type": "integer",
            "format": "int64"
          },
          "nybyggnadsar": {
            "type": "integer",
            "format": "int64"
          },
          "omEllerTillbyggnadsar": {
            "type": "integer",
            "format": "int64"
          },
          "aterstaendeEkonomiskLivslangd": {
            "type": "boolean"
          },
          "standard": {
            "type": "integer",
            "format": "int64"
          },
          "standardunderlag": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_IndustriStandardunderlag"
            },
            "nullable": true
          },
          "tillhorByggnad": {
            "type": "integer",
            "format": "int64"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_IndustriAvkastningsberaknadUnderUppforande": {
        "required": [
          "id",
          "riktvarde",
          "varde",
          "varderingsenhetsnummer"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "nullable": true
          },
          "varderingsenhetsnummer": {
            "type": "integer",
            "format": "int64"
          },
          "varde": {
            "type": "integer",
            "format": "int64"
          },
          "riktvarde": {
            "type": "integer",
            "format": "int64"
          },
          "vardeomrade": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Vardeomrade"
          },
          "justeringar": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Justering"
            },
            "nullable": true
          },
          "tillhorByggnad": {
            "type": "integer",
            "format": "int64"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_IndustriProduktionskostnadsberaknad": {
        "required": [
          "aterstaendeEkonomiskLivslangd",
          "id",
          "riktvarde",
          "underUppforande",
          "varde",
          "varderingsenhetsnummer"
        ],
        "type": "object",
        "properties": {
          "byggnadskategori": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_IndustriProduktionskostnadsberaknad+ByggnadskategoriEnum"
          },
          "id": {
            "type": "string",
            "nullable": true
          },
          "varderingsenhetsnummer": {
            "type": "integer",
            "format": "int64"
          },
          "varde": {
            "type": "integer",
            "format": "int64"
          },
          "riktvarde": {
            "type": "integer",
            "format": "int64"
          },
          "vardeomrade": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Vardeomrade"
          },
          "justeringar": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Justering"
            },
            "nullable": true
          },
          "vardear": {
            "type": "integer",
            "format": "int64"
          },
          "underUppforande": {
            "type": "boolean"
          },
          "nybyggnadsar": {
            "type": "integer",
            "format": "int64"
          },
          "omEllerTillbyggnadsar": {
            "type": "integer",
            "format": "int64"
          },
          "aterstaendeEkonomiskLivslangd": {
            "type": "boolean"
          },
          "ortstyp": {
            "type": "integer",
            "format": "int64"
          },
          "ateranskaffningskostnad": {
            "type": "integer",
            "format": "int64"
          },
          "bruttoarea": {
            "type": "integer",
            "format": "int64"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_IndustriProduktionskostnadsberaknad+ByggnadskategoriEnum": {
        "enum": [
          "KATEGORI_1",
          "KATEGORI_2",
          "KATEGORI_3",
          "KATEGORI_4",
          "KATEGORI_5",
          "KATEGORI_6",
          "KATEGORI_7",
          "KATEGORI_8",
          "KATEGORI_9"
        ],
        "type": "string"
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_IndustriStandardunderlag": {
        "required": [
          "typ",
          "varde"
        ],
        "type": "object",
        "properties": {
          "typ": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_IndustriStandardunderlag+TypEnum"
          },
          "varde": {
            "type": "integer",
            "format": "int32"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_IndustriStandardunderlag+TypEnum": {
        "enum": [
          "TILLFARTSFORHALLANDEN",
          "IN_OCH_UTLASTNINGSFORHALLANDEN",
          "VANINGSPLAN",
          "DAGSLJUSFORHALLANDEN",
          "FRI_TAKHOJD_UNDER_BARANDE_BALK",
          "AVSTAND_MELLAN_BARANDE_ELEMENT",
          "MAXIMAL_GOLVBELASTNING",
          "UPPVARMNING",
          "ELINSTALLATION",
          "VENTILATION"
        ],
        "type": "string"
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_IndustriTomtmark": {
        "required": [
          "id",
          "riktvarde",
          "varde",
          "varderingsenhetsnummer"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "nullable": true
          },
          "varderingsenhetsnummer": {
            "type": "integer",
            "format": "int64"
          },
          "varde": {
            "type": "integer",
            "format": "int64"
          },
          "riktvarde": {
            "type": "integer",
            "format": "int64"
          },
          "vardeomrade": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Vardeomrade"
          },
          "justeringar": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Justering"
            },
            "nullable": true
          },
          "areal": {
            "type": "integer",
            "format": "int64"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_Industritaxeringsenhet": {
        "required": [
          "fastigheter",
          "taxeringsenhetsnummer",
          "typAvTaxeringsenhet"
        ],
        "type": "object",
        "properties": {
          "typAvTaxeringsenhet": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_TypAvTaxeringsenhetEnum"
          },
          "areal": {
            "type": "integer",
            "format": "int64"
          },
          "taxeringsenhetsnummer": {
            "type": "string",
            "nullable": true
          },
          "typkod": {
            "type": "integer",
            "format": "int32"
          },
          "taxeringsvarde": {
            "type": "integer",
            "format": "int64"
          },
          "avregistrerad": {
            "type": "boolean",
            "nullable": true
          },
          "fastigheter": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Fastighet"
            },
            "nullable": true
          },
          "delvarden": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Delvarde"
            },
            "nullable": true
          },
          "industritillbehor": {
            "type": "boolean"
          },
          "tomtmarker": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_IndustriTomtmark"
            },
            "nullable": true
          },
          "avkastningsberaknadUnderUppforande": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_IndustriAvkastningsberaknadUnderUppforande"
            },
            "nullable": true
          },
          "avkastningsberaknadProduktionslokaler": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_IndustriAvkastningsberaknadProduktionslokal"
            },
            "nullable": true
          },
          "avkastningsberaknadKontor": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_IndustriAvkastningsberaknadKontor"
            },
            "nullable": true
          },
          "avkastningsberaknadLager": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_IndustriAvkastningsberaknadLager"
            },
            "nullable": true
          },
          "produktionskostnadsberaknade": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_IndustriProduktionskostnadsberaknad"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_Justering": {
        "required": [
          "belopp",
          "kod",
          "text"
        ],
        "type": "object",
        "properties": {
          "text": {
            "type": "string",
            "nullable": true
          },
          "belopp": {
            "type": "integer",
            "format": "int64"
          },
          "kod": {
            "type": "integer",
            "format": "int64"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_LantbrukAkermark": {
        "required": [
          "id",
          "riktvarde",
          "varde",
          "varderingsenhetsnummer"
        ],
        "type": "object",
        "properties": {
          "beskaffenhet": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_LantbrukAkermark+BeskaffenhetEnum"
          },
          "dranering": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_LantbrukAkermark+DraneringEnum"
          },
          "id": {
            "type": "string",
            "nullable": true
          },
          "varderingsenhetsnummer": {
            "type": "integer",
            "format": "int64"
          },
          "varde": {
            "type": "integer",
            "format": "int64"
          },
          "riktvarde": {
            "type": "integer",
            "format": "int64"
          },
          "storlekskorrektion": {
            "type": "integer",
            "format": "int64"
          },
          "vardeomrade": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Vardeomrade"
          },
          "justeringar": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Justering"
            },
            "nullable": true
          },
          "areal": {
            "type": "integer",
            "format": "int64"
          },
          "samfalld": {
            "type": "boolean"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_LantbrukAkermark+BeskaffenhetEnum": {
        "enum": [
          "KLASS_1",
          "KLASS_2",
          "KLASS_3",
          "KLASS_4",
          "KLASS_5"
        ],
        "type": "string"
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_LantbrukAkermark+DraneringEnum": {
        "enum": [
          "KLASS_1",
          "KLASS_2",
          "KLASS_3"
        ],
        "type": "string"
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_LantbrukBetesmark": {
        "required": [
          "id",
          "riktvarde",
          "varde",
          "varderingsenhetsnummer"
        ],
        "type": "object",
        "properties": {
          "beskaffenhet": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_LantbrukBetesmark+BeskaffenhetEnum"
          },
          "id": {
            "type": "string",
            "nullable": true
          },
          "varderingsenhetsnummer": {
            "type": "integer",
            "format": "int64"
          },
          "varde": {
            "type": "integer",
            "format": "int64"
          },
          "riktvarde": {
            "type": "integer",
            "format": "int64"
          },
          "storlekskorrektion": {
            "type": "integer",
            "format": "int64"
          },
          "vardeomrade": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Vardeomrade"
          },
          "justeringar": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Justering"
            },
            "nullable": true
          },
          "areal": {
            "type": "integer",
            "format": "int64"
          },
          "samfalld": {
            "type": "boolean"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_LantbrukBetesmark+BeskaffenhetEnum": {
        "enum": [
          "KLASS_1",
          "KLASS_2",
          "KLASS_3",
          "KLASS_4",
          "KLASS_5"
        ],
        "type": "string"
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_LantbrukEkonomibyggnad": {
        "required": [
          "id",
          "riktvarde",
          "underUppforande",
          "varde",
          "varderingsenhetsnummer"
        ],
        "type": "object",
        "properties": {
          "byggnadskategori": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_LantbrukEkonomibyggnad+ByggnadskategoriEnum"
          },
          "beskaffenhet": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_LantbrukEkonomibyggnad+BeskaffenhetEnum"
          },
          "id": {
            "type": "string",
            "nullable": true
          },
          "varderingsenhetsnummer": {
            "type": "integer",
            "format": "int64"
          },
          "varde": {
            "type": "integer",
            "format": "int64"
          },
          "riktvarde": {
            "type": "integer",
            "format": "int64"
          },
          "storlekskorrektion": {
            "type": "integer",
            "format": "int64"
          },
          "vardeomrade": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Vardeomrade"
          },
          "justeringar": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Justering"
            },
            "nullable": true
          },
          "vardear": {
            "type": "integer",
            "format": "int64"
          },
          "nybyggnadsar": {
            "type": "integer",
            "format": "int64"
          },
          "nybyggnadskostnad": {
            "type": "integer",
            "format": "int64"
          },
          "omEllerTillbyggnadsar": {
            "type": "integer",
            "format": "int64"
          },
          "omEllerTillbyggnadskostnad": {
            "type": "integer",
            "format": "int64"
          },
          "storlek": {
            "type": "integer",
            "format": "int64"
          },
          "underUppforande": {
            "type": "boolean"
          },
          "beskaffenhetspoang": {
            "type": "integer",
            "format": "int64"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_LantbrukEkonomibyggnad+BeskaffenhetEnum": {
        "enum": [
          "KLASS_1",
          "KLASS_2",
          "KLASS_3"
        ],
        "type": "string"
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_LantbrukEkonomibyggnad+ByggnadskategoriEnum": {
        "enum": [
          "KATEGORI_11",
          "KATEGORI_21",
          "KATEGORI_22",
          "KATEGORI_23",
          "KATEGORI_24",
          "KATEGORI_25",
          "KATEGORI_26",
          "KATEGORI_27",
          "KATEGORI_28",
          "KATEGORI_31",
          "KATEGORI_32",
          "KATEGORI_33",
          "KATEGORI_34",
          "KATEGORI_42",
          "KATEGORI_44",
          "KATEGORI_51",
          "KATEGORI_52",
          "KATEGORI_53",
          "KATEGORI_60"
        ],
        "type": "string"
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_LantbrukSkogMedAvverkningsrestriktioner": {
        "required": [
          "id",
          "riktvarde",
          "varde",
          "varderingsenhetsnummer"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "nullable": true
          },
          "varderingsenhetsnummer": {
            "type": "integer",
            "format": "int64"
          },
          "varde": {
            "type": "integer",
            "format": "int64"
          },
          "riktvarde": {
            "type": "integer",
            "format": "int64"
          },
          "storlekskorrektion": {
            "type": "integer",
            "format": "int64"
          },
          "vardeomrade": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Vardeomrade"
          },
          "justeringar": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Justering"
            },
            "nullable": true
          },
          "areal": {
            "type": "integer",
            "format": "int64"
          },
          "samfalld": {
            "type": "boolean"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_LantbrukSkogUtanAvverkningsrestriktioner": {
        "required": [
          "id",
          "riktvarde",
          "varde",
          "varderingsenhetsnummer"
        ],
        "type": "object",
        "properties": {
          "kostnadsklass": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_LantbrukSkogUtanAvverkningsrestriktioner+KostnadsklassEnum"
          },
          "virkesforradsklass": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_LantbrukSkogUtanAvverkningsrestriktioner+VirkesforradsklassEnum"
          },
          "bonitetsklass": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_LantbrukSkogUtanAvverkningsrestriktioner+BonitetsklassEnum"
          },
          "id": {
            "type": "string",
            "nullable": true
          },
          "varderingsenhetsnummer": {
            "type": "integer",
            "format": "int64"
          },
          "varde": {
            "type": "integer",
            "format": "int64"
          },
          "riktvarde": {
            "type": "integer",
            "format": "int64"
          },
          "storlekskorrektion": {
            "type": "integer",
            "format": "int64"
          },
          "vardeomrade": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Vardeomrade"
          },
          "justeringar": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Justering"
            },
            "nullable": true
          },
          "areal": {
            "type": "integer",
            "format": "int64"
          },
          "virkesforradBarrtrad": {
            "type": "integer",
            "format": "int64"
          },
          "virkesforradLovtrad": {
            "type": "integer",
            "format": "int64"
          },
          "virkesforrad": {
            "type": "integer",
            "format": "int64"
          },
          "kostnadspoang": {
            "type": "integer",
            "format": "int64"
          },
          "medelbonitet": {
            "type": "number",
            "format": "double"
          },
          "samfalld": {
            "type": "boolean"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_LantbrukSkogUtanAvverkningsrestriktioner+BonitetsklassEnum": {
        "enum": [
          "KLASS_A",
          "KLASS_B",
          "KLASS_C",
          "KLASS_D",
          "KLASS_E"
        ],
        "type": "string"
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_LantbrukSkogUtanAvverkningsrestriktioner+KostnadsklassEnum": {
        "enum": [
          "KLASS_1",
          "KLASS_2",
          "KLASS_3",
          "KLASS_4",
          "KLASS_5",
          "KLASS_6",
          "KLASS_7",
          "KLASS_8",
          "KLASS_9"
        ],
        "type": "string"
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_LantbrukSkogUtanAvverkningsrestriktioner+VirkesforradsklassEnum": {
        "enum": [
          "KLASS_1",
          "KLASS_2",
          "KLASS_3",
          "KLASS_4",
          "KLASS_5",
          "KLASS_6",
          "KLASS_7",
          "KLASS_8",
          "KLASS_9"
        ],
        "type": "string"
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_LantbrukSkogligtimpediment": {
        "required": [
          "id",
          "riktvarde",
          "varde",
          "varderingsenhetsnummer"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "nullable": true
          },
          "varderingsenhetsnummer": {
            "type": "integer",
            "format": "int64"
          },
          "varde": {
            "type": "integer",
            "format": "int64"
          },
          "riktvarde": {
            "type": "integer",
            "format": "int64"
          },
          "storlekskorrektion": {
            "type": "integer",
            "format": "int64"
          },
          "vardeomrade": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Vardeomrade"
          },
          "justeringar": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Justering"
            },
            "nullable": true
          },
          "areal": {
            "type": "integer",
            "format": "int64"
          },
          "samfalld": {
            "type": "boolean"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_Lantbrukstaxeringsenhet": {
        "required": [
          "fastigheter",
          "taxeringsenhetsnummer",
          "typAvTaxeringsenhet",
          "typkod"
        ],
        "type": "object",
        "properties": {
          "typAvTaxeringsenhet": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_TypAvTaxeringsenhetEnum"
          },
          "areal": {
            "type": "integer",
            "format": "int64"
          },
          "taxeringsenhetsnummer": {
            "type": "string",
            "nullable": true
          },
          "typkod": {
            "type": "integer",
            "format": "int32"
          },
          "taxeringsvarde": {
            "type": "integer",
            "format": "int64"
          },
          "avregistrerad": {
            "type": "boolean",
            "nullable": true
          },
          "fastigheter": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Fastighet"
            },
            "nullable": true
          },
          "delvarden": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Delvarde"
            },
            "nullable": true
          },
          "ovrigMark": {
            "type": "integer",
            "format": "int64"
          },
          "skogUtanAvverkningsrestriktioner": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_LantbrukSkogUtanAvverkningsrestriktioner"
            },
            "nullable": true
          },
          "skogMedAvverkningsrestriktioner": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_LantbrukSkogMedAvverkningsrestriktioner"
            },
            "nullable": true
          },
          "skogligtimpediment": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_LantbrukSkogligtimpediment"
            },
            "nullable": true
          },
          "akermarker": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_LantbrukAkermark"
            },
            "nullable": true
          },
          "betesmarker": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_LantbrukBetesmark"
            },
            "nullable": true
          },
          "ekonomibyggnader": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_LantbrukEkonomibyggnad"
            },
            "nullable": true
          },
          "tomtmarker": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_SmahusTomtmark"
            },
            "nullable": true
          },
          "bostadsbyggnader": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_SmahusBostadsbyggnad"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_Posttypsinformation": {
        "type": "object",
        "properties": {
          "gallerFromBeslutsar": {
            "type": "integer",
            "format": "int64"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_SmahusBostadsbyggnad": {
        "required": [
          "id",
          "riktvarde",
          "underUppforande",
          "varde",
          "vardefullasteByggnad",
          "varderingsenhetsnummer"
        ],
        "type": "object",
        "properties": {
          "byggnadskategori": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_SmahusBostadsbyggnad+ByggnadskategoriEnum"
          },
          "fastighetsrattsligKlass": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_SmahusBostadsbyggnad+FastighetsrattsligKlassEnum"
          },
          "id": {
            "type": "string",
            "nullable": true
          },
          "varderingsenhetsnummer": {
            "type": "integer",
            "format": "int64"
          },
          "varde": {
            "type": "integer",
            "format": "int64"
          },
          "riktvarde": {
            "type": "integer",
            "format": "int64"
          },
          "storlekskorrektion": {
            "type": "integer",
            "format": "int64"
          },
          "vardeomrade": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Vardeomrade"
          },
          "justeringar": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Justering"
            },
            "nullable": true
          },
          "antalLika": {
            "type": "integer",
            "format": "int64"
          },
          "liggerPaTomt": {
            "type": "string",
            "nullable": true
          },
          "vardeyta": {
            "type": "integer",
            "format": "int64"
          },
          "vardear": {
            "type": "integer",
            "format": "int64"
          },
          "standard": {
            "type": "integer",
            "format": "int64"
          },
          "grupphusomrade": {
            "type": "boolean"
          },
          "vardefullasteByggnad": {
            "type": "boolean"
          },
          "boyta": {
            "type": "integer",
            "format": "int64"
          },
          "biyta": {
            "type": "integer",
            "format": "int64"
          },
          "nybyggnadsar": {
            "type": "integer",
            "format": "int64"
          },
          "omEllerTillbyggnadsar": {
            "type": "integer",
            "format": "int64"
          },
          "omEllerTillbyggnadsyta": {
            "type": "integer",
            "format": "int64"
          },
          "underUppforande": {
            "type": "boolean"
          },
          "standardunderlag": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_SmahusStandardunderlag"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_SmahusBostadsbyggnad+ByggnadskategoriEnum": {
        "enum": [
          "KATEGORI_F",
          "KATEGORI_R",
          "KATEGORI_K"
        ],
        "type": "string"
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_SmahusBostadsbyggnad+FastighetsrattsligKlassEnum": {
        "enum": [
          "KLASS_1",
          "KLASS_2",
          "KLASS_3"
        ],
        "type": "string"
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_SmahusStandardunderlag": {
        "required": [
          "typ",
          "varde"
        ],
        "type": "object",
        "properties": {
          "typ": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_SmahusStandardunderlag+TypEnum"
          },
          "varde": {
            "type": "integer",
            "format": "int32"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_SmahusStandardunderlag+TypEnum": {
        "enum": [
          "EXTERIOR_FASAD",
          "EXTERIOR_GARAGE",
          "EXTERIOR_CARPORT",
          "ENERGI_EL",
          "ENERGI_FONSTER",
          "ENERGI_UPPVARMNING",
          "KOK_FAST_INREDNING",
          "SANITET_VATTEN",
          "SANITET_WC",
          "SANITET_BAD_DUSCH",
          "SANITET_UTRYMME_FOR_TVATT_OCH_KLADVARD",
          "OVRIG_INTERIOR_OPPEN_SPIS",
          "OVRIG_INTERIOR_ALLRUM",
          "UNDERHALL_EXTERIOR_FASAD",
          "UNDERHALL_EXTERIOR_TAK",
          "UNDERHALL_ENERGI_EL",
          "UNDERHALL_SANITET_LEDNINGAR",
          "UNDERHALL_KOK_FAST_INREDNING",
          "UNDERHALL_SANITET_UTRUSTNING",
          "EXTERIOR_JAMKNING",
          "ENERGI_JAMKNING",
          "KOK_JAMKNING",
          "SANITET_JAMKNING",
          "OVRIG_INTERIOR_JAMKNING",
          "EXTERIOR_GARAGE_KALLARE",
          "EXTERIOR_STOMME",
          "EXTERIOR_TAK",
          "ENERGI_ISOLERING",
          "SANITET_BASTU",
          "SANITET_BAD_DUSCH_KALLARE",
          "SANITET_KAKEL"
        ],
        "type": "string"
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_SmahusTomtmark": {
        "required": [
          "id",
          "riktvarde",
          "varde",
          "varderingsenhetsnummer"
        ],
        "type": "object",
        "properties": {
          "vaKlass": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_SmahusTomtmark+VaKlassEnum"
          },
          "vatten": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_SmahusTomtmark+VattenEnum"
          },
          "avlopp": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_SmahusTomtmark+AvloppEnum"
          },
          "fastighetsrattsligKlass": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_SmahusTomtmark+FastighetsrattsligKlassEnum"
          },
          "bebyggelse": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_SmahusTomtmark+BebyggelseEnum"
          },
          "narhetTillStrand": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_SmahusTomtmark+NarhetTillStrandEnum"
          },
          "id": {
            "type": "string",
            "nullable": true
          },
          "varderingsenhetsnummer": {
            "type": "integer",
            "format": "int64"
          },
          "varde": {
            "type": "integer",
            "format": "int64"
          },
          "riktvarde": {
            "type": "integer",
            "format": "int64"
          },
          "storlekskorrektion": {
            "type": "integer",
            "format": "int64"
          },
          "vardeomrade": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Vardeomrade"
          },
          "justeringar": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Justering"
            },
            "nullable": true
          },
          "antalLika": {
            "type": "integer",
            "format": "int64"
          },
          "areal": {
            "type": "integer",
            "format": "int64"
          },
          "grupphusomrade": {
            "type": "boolean"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_SmahusTomtmark+AvloppEnum": {
        "enum": [
          "KLASS_1",
          "KLASS_2",
          "KLASS_3"
        ],
        "type": "string"
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_SmahusTomtmark+BebyggelseEnum": {
        "enum": [
          "KATEGORI_F",
          "KATEGORI_R",
          "KATEGORI_K"
        ],
        "type": "string"
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_SmahusTomtmark+FastighetsrattsligKlassEnum": {
        "enum": [
          "KLASS_1",
          "KLASS_2",
          "KLASS_3"
        ],
        "type": "string"
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_SmahusTomtmark+NarhetTillStrandEnum": {
        "enum": [
          "KLASS_1",
          "KLASS_2",
          "KLASS_3",
          "KLASS_4",
          "KLASS_5"
        ],
        "type": "string"
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_SmahusTomtmark+VaKlassEnum": {
        "enum": [
          "KLASS_1",
          "KLASS_2",
          "KLASS_3",
          "KLASS_4",
          "KLASS_5",
          "KLASS_6"
        ],
        "type": "string"
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_SmahusTomtmark+VattenEnum": {
        "enum": [
          "KLASS_1",
          "KLASS_2",
          "KLASS_3",
          "KLASS_4"
        ],
        "type": "string"
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_Smahustaxeringsenhet": {
        "required": [
          "fastigheter",
          "taxeringsenhetsnummer",
          "typAvTaxeringsenhet",
          "typkod"
        ],
        "type": "object",
        "properties": {
          "typAvTaxeringsenhet": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_TypAvTaxeringsenhetEnum"
          },
          "areal": {
            "type": "integer",
            "format": "int64"
          },
          "taxeringsenhetsnummer": {
            "type": "string",
            "nullable": true
          },
          "typkod": {
            "type": "integer",
            "format": "int32"
          },
          "taxeringsvarde": {
            "type": "integer",
            "format": "int64"
          },
          "avregistrerad": {
            "type": "boolean",
            "nullable": true
          },
          "fastigheter": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Fastighet"
            },
            "nullable": true
          },
          "delvarden": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Delvarde"
            },
            "nullable": true
          },
          "tomtmarker": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_SmahusTomtmark"
            },
            "nullable": true
          },
          "bostadsbyggnader": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_SmahusBostadsbyggnad"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_Specialtaxeringsenhet": {
        "required": [
          "fastigheter",
          "taxeringsenhetsnummer",
          "typAvTaxeringsenhet"
        ],
        "type": "object",
        "properties": {
          "typAvTaxeringsenhet": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_TypAvTaxeringsenhetEnum"
          },
          "areal": {
            "type": "integer",
            "format": "int64"
          },
          "taxeringsenhetsnummer": {
            "type": "string",
            "nullable": true
          },
          "typkod": {
            "type": "integer",
            "format": "int32"
          },
          "avregistrerad": {
            "type": "boolean",
            "nullable": true
          },
          "fastigheter": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Fastighet"
            },
            "nullable": true
          },
          "delvarden": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Delvarde"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_Taktmark": {
        "required": [
          "id",
          "riktvarde",
          "varde",
          "varderingsenhetsnummer"
        ],
        "type": "object",
        "properties": {
          "material": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Taktmark+MaterialEnum"
          },
          "id": {
            "type": "string",
            "nullable": true
          },
          "varderingsenhetsnummer": {
            "type": "integer",
            "format": "int64"
          },
          "varde": {
            "type": "integer",
            "format": "int64"
          },
          "riktvarde": {
            "type": "integer",
            "format": "int64"
          },
          "vardeomrade": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Vardeomrade"
          },
          "justeringar": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Justering"
            },
            "nullable": true
          },
          "arligtUttag": {
            "type": "integer",
            "format": "int64"
          },
          "vantetid": {
            "type": "integer",
            "format": "int64"
          },
          "brytningstid": {
            "type": "integer",
            "format": "int64"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_Taktmark+MaterialEnum": {
        "enum": [
          "ALUN_A",
          "BERG_B",
          "GRA_GRANIT_GGR",
          "GRUS_SAND_GS",
          "INDUSTRILERA_IL",
          "KALKSTENSKROSS_KK",
          "KRITA_KR",
          "KALKSTEN_KST",
          "KVARTSIT_KV",
          "MORAN_M",
          "MARMOR_MMR",
          "OLIVIN_O",
          "OVRIG_GRANIT_OGR",
          "PEGMATIT_FALTSPAT_PF",
          "ROD_GRANIT_RGR",
          "SKIFFER_SFR",
          "SVART_GRANIT_SGR",
          "SANDSTEN_SST",
          "TORV_ENERGI_TOE",
          "TORV_STRO_TOS",
          "TALJSTEN_TST",
          "OVRIGT_O"
        ],
        "type": "string"
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_Takttaxeringsenhet": {
        "required": [
          "fastigheter",
          "taxeringsenhetsnummer",
          "typAvTaxeringsenhet",
          "typkod"
        ],
        "type": "object",
        "properties": {
          "typAvTaxeringsenhet": {
            "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_TypAvTaxeringsenhetEnum"
          },
          "areal": {
            "type": "integer",
            "format": "int64"
          },
          "taxeringsenhetsnummer": {
            "type": "string",
            "nullable": true
          },
          "typkod": {
            "type": "integer",
            "format": "int32"
          },
          "taxeringsvarde": {
            "type": "integer",
            "format": "int64"
          },
          "avregistrerad": {
            "type": "boolean",
            "nullable": true
          },
          "fastigheter": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Fastighet"
            },
            "nullable": true
          },
          "delvarden": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Delvarde"
            },
            "nullable": true
          },
          "industritillbehor": {
            "type": "boolean"
          },
          "taktmarker": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_Taktmark"
            },
            "nullable": true
          },
          "avkastningsberaknadUnderUppforande": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_IndustriAvkastningsberaknadUnderUppforande"
            },
            "nullable": true
          },
          "avkastningsberaknadProduktionslokaler": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_IndustriAvkastningsberaknadProduktionslokal"
            },
            "nullable": true
          },
          "avkastningsberaknadKontor": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_IndustriAvkastningsberaknadKontor"
            },
            "nullable": true
          },
          "avkastningsberaknadLager": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_IndustriAvkastningsberaknadLager"
            },
            "nullable": true
          },
          "produktionskostnadsberaknade": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Skatteverket_Schemas_Model_IndustriProduktionskostnadsberaknad"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_TypAvTaxeringsenhetEnum": {
        "enum": [
          "LANTBRUK",
          "SMAHUS",
          "HYRESHUS",
          "INDUSTRI",
          "AGARLAGENHET",
          "TAKT",
          "ELPRODUKTION",
          "SPECIAL"
        ],
        "type": "string"
      },
      "Ormeo_Library_Skatteverket_Schemas_Model_Vardeomrade": {
        "required": [
          "id",
          "vardeomradesnummer"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "integer",
            "format": "int64"
          },
          "vardeomradesnummer": {
            "type": "integer",
            "format": "int64"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Skatteverket_Skatteverket_TF_ANST_Dto": {
        "type": "object",
        "properties": {
          "transactionMonth": {
            "type": "string",
            "nullable": true
          },
          "grantedAmount": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "takedBackAmount": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "ceasedAmount": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "outstandingAmount": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Views_View_Bolagsverket_FIREG1": {
        "type": "object",
        "properties": {
          "companyBusinessMortgageId": {
            "type": "integer",
            "format": "int32"
          },
          "inteckningOrdningsnummer": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "inteckningOrdningsnummerDescription": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "inteckningsNummer": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "mappnummer": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "lopnummerBeslutInomMapp": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "tillaggLopnummerBeslut": {
            "type": "string",
            "nullable": true
          },
          "inteckningsbelopp": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "iso4217CurrencyCode": {
            "type": "string",
            "nullable": true
          },
          "inteckningEjBeviljad": {
            "type": "boolean",
            "nullable": true
          },
          "lagenOmInteckningar": {
            "type": "boolean",
            "nullable": true
          },
          "likaRattLagreOrdningsnummer": {
            "type": "boolean",
            "nullable": true
          },
          "inteckningSkriftlig": {
            "type": "string",
            "nullable": true
          },
          "diariedag": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "firstSeenAtUtc": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "inteckningInnehavareNamn": {
            "type": "string",
            "nullable": true
          },
          "noteringar": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_Library_Views_View_Bolagsverket_FIREG1+View_Bolagsverket_FIREG_InteckningNotering"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Views_View_Bolagsverket_FIREG1+View_Bolagsverket_FIREG_InteckningNotering": {
        "type": "object",
        "properties": {
          "bolagsverket_FIREG_InteckningNoteringId": {
            "type": "integer",
            "format": "int32"
          },
          "notering": {
            "type": "string",
            "nullable": true
          },
          "noteringsTyp": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Views_View_FastigheterAgande": {
        "type": "object",
        "properties": {
          "fastighetObjektIdentitet": {
            "type": "string",
            "format": "uuid",
            "nullable": true
          },
          "inskrivningsdag": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "beviljadAndelTaljare": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "beviljadAndelNamnare": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "agandeTyp": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_LantmaterietAgandeTyp"
          },
          "agandeTypBeskrivning": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "fastighetTyp": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_LantmaterietFastighetTyp"
          },
          "lanskod": {
            "type": "string",
            "nullable": true
          },
          "kommunkod": {
            "type": "string",
            "nullable": true
          },
          "status": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_LantmaterietFastighetStatus"
          },
          "totalLandareal": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "totalVattenareal": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "totalareal": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "arealuppgiftOsaker": {
            "type": "boolean",
            "nullable": true
          },
          "registeromrade": {
            "type": "string",
            "nullable": true
          },
          "trakt": {
            "type": "string",
            "nullable": true
          },
          "block": {
            "type": "string",
            "nullable": true
          },
          "enhet": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "etikett": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "lantmateriet_OrderFileId": {
            "type": "integer",
            "format": "int32"
          },
          "senasteLantmateriet_OrderFileId": {
            "type": "integer",
            "format": "int32"
          },
          "aktuellAgare": {
            "type": "boolean",
            "readOnly": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_Library_Watchlist_WatchListMemberEvent_Dto": {
        "type": "object",
        "properties": {
          "teamWatchListMemberEventId": {
            "type": "integer",
            "format": "int32"
          },
          "teamWatchListMemberId": {
            "type": "integer",
            "format": "int32"
          },
          "teamWatchListId": {
            "type": "integer",
            "format": "int32"
          },
          "externalId": {
            "type": "string",
            "nullable": true
          },
          "companyId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "personId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "watchListMemberEventType": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_WatchListMemberEventType"
          },
          "watchListMemberSubType": {
            "type": "string",
            "nullable": true
          },
          "eventDate": {
            "type": "string",
            "format": "date-time"
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Base_CompanySummary_Dto": {
        "type": "object",
        "properties": {
          "legalName": {
            "type": "string",
            "nullable": true
          },
          "purpose": {
            "type": "string",
            "nullable": true
          },
          "sniCodes": {
            "type": "string",
            "nullable": true
          },
          "mailingAddressCO": {
            "type": "string",
            "nullable": true
          },
          "mailingAddressStreet": {
            "type": "string",
            "nullable": true
          },
          "mailingAddressPostalCode": {
            "type": "string",
            "nullable": true
          },
          "mailingAddressCity": {
            "type": "string",
            "nullable": true
          },
          "mailingAddressState": {
            "type": "string",
            "nullable": true
          },
          "mailingAddressCounty": {
            "type": "string",
            "nullable": true
          },
          "mailingAddressDistrict": {
            "type": "string",
            "nullable": true
          },
          "mailingAddressCountryName": {
            "type": "string",
            "nullable": true
          },
          "mailingAddressCountryCodeAlpha3": {
            "type": "string",
            "nullable": true
          },
          "mailingAddressLatitude": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "mailingAddressLongitude": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "mailingAddressId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "hasAuditor": {
            "type": "boolean",
            "nullable": true
          },
          "companyRepresentativeBornYear": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "registeredVAT": {
            "type": "boolean",
            "nullable": true
          },
          "registeredFTax": {
            "type": "boolean",
            "nullable": true
          },
          "registeredPayroll": {
            "type": "boolean",
            "nullable": true
          },
          "period1": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "period1_IS_NetSalesK": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "period1_FN_NumberOfEmployees": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "period1_IS_OperatingProfitOrLossK": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "period1_IsAudited": {
            "type": "boolean",
            "nullable": true
          },
          "period2": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "period2_IS_NetSalesK": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "period2_FN_NumberOfEmployees": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "period2_IS_OperatingProfitOrLossK": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "period2_IsAudited": {
            "type": "boolean",
            "nullable": true
          },
          "period3": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "period3_IS_NetSalesK": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "period3_FN_NumberOfEmployees": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "period3_IS_OperatingProfitOrLossK": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "period3_IsAudited": {
            "type": "boolean",
            "nullable": true
          },
          "intelligenceScoreTotal": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "intelligenceNumberOfMax": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "kfm_DebtBalanceTotalAmountInSEK": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "kfm_RecordOfNonPaymentNumberOfCases": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "numberOfEmailAddresses": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "lastCompanyStatusType": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "lastCompanyStatusDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "lastCompanyStatusDescription": {
            "type": "string",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Company_Bolagsverket_BeneficialOwnerGovern_Dto": {
        "type": "object",
        "properties": {
          "bolagsverket_BeneficialOwnerGovernId": {
            "type": "integer",
            "format": "int32"
          },
          "bolagsverket_BeneficialOwnerId": {
            "type": "integer",
            "format": "int32"
          },
          "governCode": {
            "type": "string",
            "nullable": true
          },
          "governDescription": {
            "type": "string",
            "nullable": true
          },
          "name": {
            "type": "string",
            "nullable": true
          },
          "registrationNumber": {
            "type": "string",
            "nullable": true
          },
          "companyId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Company_Bolagsverket_BeneficialOwnerNotification_Dto": {
        "type": "object",
        "properties": {
          "bolagsverket_BeneficialOwnerNotificationId": {
            "type": "integer",
            "format": "int32"
          },
          "registration": {
            "type": "string",
            "format": "uuid",
            "nullable": true
          },
          "notificationDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fromDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "caseNumber": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "caseYear": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "registrationNumber": {
            "type": "string",
            "nullable": true
          },
          "companyName": {
            "type": "string",
            "nullable": true
          },
          "companyCode": {
            "type": "string",
            "nullable": true
          },
          "companyCodeDescription": {
            "type": "string",
            "nullable": true
          },
          "statusCode": {
            "type": "string",
            "nullable": true
          },
          "statusDescription": {
            "type": "string",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time"
          },
          "bolagsverket_BeneficialOwnerSuspectNotificationId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "companyId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "bolagsverket_BeneficialOwner": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Company_Bolagsverket_BeneficialOwner_Dto"
            },
            "nullable": true
          },
          "bolagsverket_BeneficialOwnerRepresentative": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Company_Bolagsverket_BeneficialOwnerRepresentative_Dto"
            },
            "nullable": true
          },
          "bolagsverket_BeneficialOwnerSuspectNotification": {
            "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Company_Bolagsverket_BeneficialOwnerSuspectNotification_Dto"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Company_Bolagsverket_BeneficialOwnerRepresentative_Dto": {
        "type": "object",
        "properties": {
          "bolagsverket_BeneficialOwnerRepresentativeId": {
            "type": "integer",
            "format": "int32"
          },
          "bolagsverket_BeneficialOwnerNotificationId": {
            "type": "integer",
            "format": "int32"
          },
          "personId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "personalIdentityNumber": {
            "type": "string",
            "nullable": true
          },
          "firstName": {
            "type": "string",
            "nullable": true
          },
          "middleName": {
            "type": "string",
            "nullable": true
          },
          "lastName": {
            "type": "string",
            "nullable": true
          },
          "citizenshipCountryCode": {
            "type": "string",
            "nullable": true
          },
          "countryOfResidenceCode": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Company_Bolagsverket_BeneficialOwnerSuspectNotification_Dto": {
        "type": "object",
        "properties": {
          "bolagsverket_BeneficialOwnerSuspectNotificationId": {
            "type": "integer",
            "format": "int32"
          },
          "registrationDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "caseNumber": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "caseYear": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "originCaseNumber": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "originCaseYear": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "suspectCode": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Company_Bolagsverket_BeneficialOwner_Dto": {
        "type": "object",
        "properties": {
          "bolagsverket_BeneficialOwnerId": {
            "type": "integer",
            "format": "int32"
          },
          "bolagsverket_BeneficialOwnerNotificationId": {
            "type": "integer",
            "format": "int32"
          },
          "personId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "personalIdentityNumber": {
            "type": "string",
            "nullable": true
          },
          "fallbackPersonalIdentityNumber": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "firstName": {
            "type": "string",
            "nullable": true
          },
          "middleName": {
            "type": "string",
            "nullable": true
          },
          "lastName": {
            "type": "string",
            "nullable": true
          },
          "fallbackName": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "citizenshipCountryCode": {
            "type": "string",
            "nullable": true
          },
          "countryOfResidenceCode": {
            "type": "string",
            "nullable": true
          },
          "extentCode": {
            "type": "string",
            "nullable": true
          },
          "extentDescription": {
            "type": "string",
            "nullable": true
          },
          "bolagsverket_BeneficialOwnerGovern": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Company_Bolagsverket_BeneficialOwnerGovern_Dto"
            },
            "nullable": true
          },
          "person": {
            "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Persons_Person_Dto"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Company_CompanyAddress_Dto": {
        "type": "object",
        "properties": {
          "companyAddressId": {
            "type": "integer",
            "format": "int32"
          },
          "addressType": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_CompanyAddressType"
          },
          "label": {
            "type": "string",
            "nullable": true
          },
          "houseNumber": {
            "type": "string",
            "nullable": true
          },
          "co": {
            "type": "string",
            "nullable": true
          },
          "street": {
            "type": "string",
            "nullable": true
          },
          "postalCode": {
            "type": "string",
            "nullable": true
          },
          "city": {
            "type": "string",
            "nullable": true
          },
          "state": {
            "type": "string",
            "nullable": true
          },
          "county": {
            "type": "string",
            "nullable": true
          },
          "district": {
            "type": "string",
            "nullable": true
          },
          "countryName": {
            "type": "string",
            "nullable": true
          },
          "countryCodeAlpha3": {
            "type": "string",
            "nullable": true
          },
          "locality": {
            "type": "string",
            "nullable": true
          },
          "localityType": {
            "type": "string",
            "nullable": true
          },
          "latitude": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "longitude": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Company_CompanyAuthorization_Dto": {
        "type": "object",
        "properties": {
          "companyAuthorizationId": {
            "type": "integer",
            "format": "int32"
          },
          "generalMeetingDateShareIssue": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "mustOccurBeforeYearShareIssue": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "mustOccurOtherDateShareIssue": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "markedAsShareIssue": {
            "type": "boolean",
            "nullable": true
          },
          "markedAsPromissoryNote": {
            "type": "boolean",
            "nullable": true
          },
          "markedAsConvertiblePromissoryNote": {
            "type": "boolean",
            "nullable": true
          },
          "markedAsWarrants": {
            "type": "boolean",
            "nullable": true
          },
          "generalMeetingDatePromissoryNote": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "mustOccurBeforeYearPromissoryNote": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "mustOccurOtherDatePromissoryNote": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "registrationDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "notes": {
            "type": "string",
            "nullable": true
          },
          "firstSeenAtUtc": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time"
          },
          "caseYear": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "caseNumber": {
            "type": "integer",
            "format": "int32"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Company_CompanyBankAccount_Dto": {
        "type": "object",
        "properties": {
          "bankAccountType": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_BankAccountType"
          },
          "accountNumber": {
            "type": "string",
            "nullable": true
          },
          "swift_BIC": {
            "type": "string",
            "nullable": true
          },
          "firstSeenAtUtc": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "lastSeenAtUtc": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Company_CompanyBeneficialOwnerSv_Dto": {
        "type": "object",
        "properties": {
          "notifications": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Company_Bolagsverket_BeneficialOwnerNotification_Dto"
            },
            "nullable": true
          },
          "exempts": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Company_CompanyBeneficiaryExempt_Dto"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Company_CompanyBeneficiaryExempt_Dto": {
        "type": "object",
        "properties": {
          "from": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "to": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Company_CompanyBonusIssue_Dto": {
        "type": "object",
        "properties": {
          "companyBonusIssueId": {
            "type": "integer",
            "format": "int32"
          },
          "iso4217CurrencyCode": {
            "type": "string",
            "nullable": true
          },
          "decisionDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "decidedByCode": {
            "type": "string",
            "nullable": true
          },
          "decidedBy": {
            "type": "string",
            "nullable": true
          },
          "issuedByCode": {
            "type": "string",
            "nullable": true
          },
          "issuedBy": {
            "type": "string",
            "nullable": true
          },
          "amount": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "nominalValue": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "numberOfBonusShares": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "notes": {
            "type": "string",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time"
          },
          "firstSeenAtUtc": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "caseYear": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "caseNumber": {
            "type": "integer",
            "format": "int32"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Company_CompanyContributionsEmployementService_Dto": {
        "type": "object",
        "properties": {
          "period": {
            "type": "integer",
            "format": "int32"
          },
          "contributionType": {
            "type": "string",
            "nullable": true
          },
          "amount": {
            "type": "number",
            "format": "double"
          },
          "iso4217CurrencyCode": {
            "type": "string",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Company_CompanyCreditReportCreate_Dto": {
        "required": [
          "consentToPricing"
        ],
        "type": "object",
        "properties": {
          "sendSMSToE164MobileNumber": {
            "type": "string",
            "nullable": true
          },
          "sendEmailToEmailAddress": {
            "type": "string",
            "format": "email",
            "nullable": true
          },
          "consentToPricing": {
            "type": "boolean"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Company_CompanyCreditReport_Dto": {
        "type": "object",
        "properties": {
          "deliveryGuid": {
            "type": "string",
            "format": "uuid"
          },
          "creditReportUrl": {
            "type": "string",
            "nullable": true
          },
          "description": {
            "type": "string",
            "nullable": true
          },
          "priceExclVat": {
            "type": "number",
            "format": "double",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Company_CompanyCreditScore_Dto": {
        "type": "object",
        "properties": {
          "creditScore": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "creditScoreDescriptions": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Company_CompanyDocument_Dto": {
        "type": "object",
        "properties": {
          "companyDocumentId": {
            "type": "integer",
            "format": "int32"
          },
          "companyDocumentType": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_CompanyDocumentType"
          },
          "externalDocumentId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "documentDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "documentTitle": {
            "type": "string",
            "nullable": true
          },
          "documentVersion": {
            "type": "string",
            "nullable": true
          },
          "documentValue1": {
            "type": "string",
            "nullable": true
          },
          "documentValue2": {
            "type": "string",
            "nullable": true
          },
          "documentValue3": {
            "type": "string",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "foundAtUtc": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Company_CompanyDomain_Dto": {
        "type": "object",
        "properties": {
          "companyDomainId": {
            "type": "integer",
            "format": "int32"
          },
          "domainId": {
            "type": "integer",
            "format": "int32"
          },
          "domainName": {
            "type": "string",
            "nullable": true
          },
          "monitoringEnabled": {
            "type": "boolean"
          },
          "lastErrorMessage": {
            "type": "string",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time"
          },
          "firstSeenAtUtc": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "lastSeenAtUtc": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Company_CompanyEmail_Dto": {
        "type": "object",
        "properties": {
          "emailAddressType": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_EmailAddressType"
          },
          "emailAddress": {
            "type": "string",
            "nullable": true
          },
          "firstSeenAtUtc": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "lastSeenAtUtc": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Company_CompanyFinancialSummary_Dto": {
        "type": "object",
        "properties": {
          "periodStart": {
            "type": "string",
            "format": "date-time"
          },
          "periodEnd": {
            "type": "string",
            "format": "date-time"
          },
          "rs_NetSalesK": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "rs_OtherOperatingIncomeK": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "rs_OperatingProfitOrLossK": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "rs_SumFinancialItemsK": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "rs_ProfitAfterFinancialItemsK": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "bs_TotalAssetsK": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "fn_NumberOfEmployees": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "km_OperatingMargin": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "km_NetProfitMargin": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "km_EquityAssetsRatio": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "km_GrossMargin": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "isAudited": {
            "type": "boolean",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Company_CompanyHyperlink_Dto": {
        "type": "object",
        "properties": {
          "companyLinkType": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_CompanyLinkType"
          },
          "hyperlink": {
            "type": "string",
            "nullable": true
          },
          "webpageTitle": {
            "type": "string",
            "nullable": true
          },
          "webpageDescription": {
            "type": "string",
            "nullable": true
          },
          "firstSeenAtUtc": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "lastSeenAtUtc": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Company_CompanyIntelligence_Dto": {
        "type": "object",
        "properties": {
          "companyIntelligenceType": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_CompanyIntelligenceType"
          },
          "companyIntelligenceTypeDescription": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "companyIntelligenceSubType": {
            "type": "string",
            "nullable": true
          },
          "companyIntelligenceSubTypeDescription": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "notes": {
            "type": "string",
            "nullable": true
          },
          "notesEn": {
            "type": "string",
            "nullable": true
          },
          "notesSv": {
            "type": "string",
            "nullable": true
          },
          "score": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "firstSeenAtUtc": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time"
          },
          "externalId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "intelligenceNotesType": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "notesValue1": {
            "type": "string",
            "nullable": true
          },
          "notesValue2": {
            "type": "string",
            "nullable": true
          },
          "notesValue3": {
            "type": "string",
            "nullable": true
          },
          "notesValue4": {
            "type": "string",
            "nullable": true
          },
          "sourceUrl": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Company_CompanyName_Dto": {
        "type": "object",
        "properties": {
          "companyNamingType": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_CompanyNamingType"
          },
          "companyNamingTypeDescription": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "nameOrIdentifier": {
            "type": "string",
            "nullable": true
          },
          "firstSeenAtUtc": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "companyNameDecidedAt": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "specialPurpose": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Company_CompanyPayrollDetail_Dto": {
        "type": "object",
        "properties": {
          "companyPayrollDetailId": {
            "type": "integer",
            "format": "int32"
          },
          "period": {
            "type": "integer",
            "format": "int32"
          },
          "amount": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "sequenceNumber": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "changeFromSamePeriodLastSequence": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Company_CompanyPayrollSummary_Dto": {
        "type": "object",
        "properties": {
          "companyPayrollSummaryId": {
            "type": "integer",
            "format": "int32"
          },
          "periodStart": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "periodEnd": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "payrollPeriods": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "sumPayrollTax": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "numberOfPeriods": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "numberOfPeriodsWithZero": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "personnelCostsInAnnualReport": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "calculatedPersonnelCosts": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "deviationInCosts": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "deviationInCostsChange": {
            "type": "number",
            "format": "double",
            "nullable": true,
            "readOnly": true
          },
          "deviationInAmount": {
            "type": "number",
            "format": "double",
            "nullable": true,
            "readOnly": true
          },
          "numberOfEmployees": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "numberOfLateFeesForPeriod": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "taxSurchangeAmountForPeriod": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Company_CompanyPayroll_Dto": {
        "type": "object",
        "properties": {
          "summary": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Company_CompanyPayrollSummary_Dto"
            },
            "nullable": true
          },
          "details": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Company_CompanyPayrollDetail_Dto"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Company_CompanyPerson_Dto": {
        "type": "object",
        "properties": {
          "positionType": {
            "type": "string",
            "nullable": true
          },
          "positionDescription": {
            "type": "string",
            "nullable": true
          },
          "positionStart": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "positionEnd": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fullName": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "givenName": {
            "type": "string",
            "nullable": true
          },
          "firstName": {
            "type": "string",
            "nullable": true
          },
          "middleName": {
            "type": "string",
            "nullable": true
          },
          "lastName": {
            "type": "string",
            "nullable": true
          },
          "isProtected": {
            "type": "boolean",
            "nullable": true
          },
          "roleByCompanyName": {
            "type": "string",
            "nullable": true
          },
          "roleByCompanyRegistrationNumber": {
            "type": "string",
            "nullable": true
          },
          "roleByPersonalIdentityNumber": {
            "type": "string",
            "nullable": true
          },
          "auditorType": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_AuditorType"
          },
          "employeeRepresentative": {
            "type": "boolean",
            "nullable": true
          },
          "personId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "personalIdentityNumber": {
            "type": "string",
            "nullable": true
          },
          "birthday": {
            "type": "string",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Company_CompanyPhoneNumber_Dto": {
        "type": "object",
        "properties": {
          "e164PhoneNumber": {
            "type": "string",
            "nullable": true
          },
          "phoneNumberType": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_PhoneNumberType"
          },
          "firstSeenAtUtc": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "lastSeenAtUtc": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Company_CompanyPurpose_Dto": {
        "type": "object",
        "properties": {
          "companyPurposeId": {
            "type": "integer",
            "format": "int32"
          },
          "purpose": {
            "type": "string",
            "nullable": true
          },
          "firstSeenAtUtc": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Company_CompanyRegisteredOffice_Dto": {
        "type": "object",
        "properties": {
          "companyRegisteredOfficeId": {
            "type": "integer",
            "format": "int32"
          },
          "registeredOfficeLocation": {
            "type": "string",
            "nullable": true
          },
          "municipality": {
            "type": "string",
            "nullable": true
          },
          "municipalityCode": {
            "type": "string",
            "nullable": true
          },
          "county": {
            "type": "string",
            "nullable": true
          },
          "countyCode": {
            "type": "string",
            "nullable": true
          },
          "latitude": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "longitude": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "firstSeenAtUtc": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time"
          },
          "caseYear": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "caseNumber": {
            "type": "integer",
            "format": "int32"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Company_CompanyRegistration_Dto": {
        "type": "object",
        "properties": {
          "companyRegistrationType": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_CompanyRegistrationType"
          },
          "isRegistered": {
            "type": "boolean",
            "nullable": true
          },
          "registeredFrom": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "registeredTo": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "terminationReasonIfAny": {
            "type": "string",
            "nullable": true
          },
          "firstSeenAtUtc": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "lastSeenAtUtc": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "companyRegistrationSubType": {
            "type": "string",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Company_CompanySNI_Dto": {
        "type": "object",
        "properties": {
          "sni_2007Code": {
            "type": "string",
            "nullable": true
          },
          "sni_2007Name": {
            "type": "string",
            "nullable": true
          },
          "sni_2007Section": {
            "type": "string",
            "nullable": true
          },
          "sni_2025Code": {
            "type": "string",
            "nullable": true
          },
          "sni_2025Name": {
            "type": "string",
            "nullable": true
          },
          "sni_2025Section": {
            "type": "string",
            "nullable": true
          },
          "rank": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "firstSeenAtUtc": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "lastSeenAtUtc": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Company_CompanyShareCapital_Dto": {
        "type": "object",
        "properties": {
          "companyShareCapitalId": {
            "type": "integer",
            "format": "int32"
          },
          "shareCapitalAmount": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "shareCapitalLowerLimitAmount": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "shareCapitalHigherLimitAmount": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "shareCapitalISO4217CurrencyCode": {
            "type": "string",
            "nullable": true
          },
          "numberOfShares": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "numberOfSharesLowerLimit": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "numberOfSharesHigherLimit": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "nominalValue": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "firstSeenAtUtc": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time"
          },
          "caseYear": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "caseNumber": {
            "type": "integer",
            "format": "int32"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Company_CompanyShareClass_Dto": {
        "type": "object",
        "properties": {
          "companyShareClassId": {
            "type": "integer",
            "format": "int32"
          },
          "shareClass": {
            "type": "string",
            "nullable": true
          },
          "shareVotingValue": {
            "type": "string",
            "nullable": true
          },
          "numberOfShares": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "lowestNumberOfShares": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "highestNumberOfShares": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "notes": {
            "type": "string",
            "nullable": true
          },
          "firstSeenAtUtc": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time"
          },
          "caseYear": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "caseNumber": {
            "type": "integer",
            "format": "int32"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Company_CompanyShareIssue_Dto": {
        "type": "object",
        "properties": {
          "companyShareIssueId": {
            "type": "integer",
            "format": "int32"
          },
          "iso4217CurrencyCode": {
            "type": "string",
            "nullable": true
          },
          "decidedByCode": {
            "type": "string",
            "nullable": true
          },
          "decidedBy": {
            "type": "string",
            "nullable": true
          },
          "decisionDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "hasNotBeenFullyPaid": {
            "type": "boolean",
            "nullable": true
          },
          "amount": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "lowerAmount": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "highestAmount": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "nominalValue": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "numberOfShares": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "paidAmountWithPremium": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "sharesPaidInPartial": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "partiallyPaidAmount": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "sharesPaidInFull": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "paidInFullAmount": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "reduceShareCapitalByNotPaidInFull": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "reduceNumberOfSharesByNotPaidInFull": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "paidInCash": {
            "type": "boolean",
            "nullable": true
          },
          "paidByPropertyInKind": {
            "type": "boolean",
            "nullable": true
          },
          "paidByOffset": {
            "type": "boolean",
            "nullable": true
          },
          "isPartialRegistration": {
            "type": "boolean",
            "nullable": true
          },
          "notes": {
            "type": "string",
            "nullable": true
          },
          "firstSeenAtUtc": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time"
          },
          "caseYear": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "caseNumber": {
            "type": "integer",
            "format": "int32"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Company_CompanyShareRegister_Dto": {
        "type": "object",
        "properties": {
          "holderCompanyId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "holderCompanyMostRecentLegalName": {
            "type": "string",
            "nullable": true
          },
          "holderPersonId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "numberOfShares": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "numberOfVotes": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "shareType": {
            "type": "string",
            "nullable": true
          },
          "shareClass": {
            "type": "string",
            "nullable": true
          },
          "paidUp": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "nominalValuePerShareInUSD": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "nominalValuePerShareInCurrencyCode": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "currencyCode": {
            "type": "string",
            "nullable": true
          },
          "representedBy": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Company_CompanySignatory_Dto": {
        "type": "object",
        "properties": {
          "signatureDescription": {
            "type": "string",
            "nullable": true
          },
          "firstSeenAtUtc": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "lastSeenAtUtc": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Company_CompanyStatus_Dto": {
        "type": "object",
        "properties": {
          "companyStatusId": {
            "type": "integer",
            "format": "int32"
          },
          "companyStatusType": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_CompanyStatusType"
          },
          "statusDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "statusData": {
            "type": "string",
            "nullable": true
          },
          "statusData2": {
            "type": "string",
            "nullable": true
          },
          "externalId1": {
            "type": "string",
            "nullable": true
          },
          "statusDescription": {
            "type": "string",
            "nullable": true
          },
          "firstSeenAtUtc": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Company_CompanyTrademark_Dto": {
        "type": "object",
        "properties": {
          "trademarkId": {
            "type": "integer",
            "format": "int32"
          },
          "applicationNumber": {
            "type": "string",
            "nullable": true
          },
          "registeredCountryCode": {
            "type": "string",
            "nullable": true
          },
          "registered": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "expire": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "status": {
            "type": "string",
            "nullable": true
          },
          "feature": {
            "type": "string",
            "nullable": true
          },
          "word": {
            "type": "string",
            "nullable": true
          },
          "mediaUrl": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Company_ListCompanyAuthorization_Dto": {
        "type": "object",
        "properties": {
          "companyAuthorizationId": {
            "type": "integer",
            "format": "int32"
          },
          "companyId": {
            "type": "integer",
            "format": "int32"
          },
          "generalMeetingDateShareIssue": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "mustOccurBeforeYearShareIssue": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "mustOccurOtherDateShareIssue": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "markedAsShareIssue": {
            "type": "boolean",
            "nullable": true
          },
          "markedAsPromissoryNote": {
            "type": "boolean",
            "nullable": true
          },
          "markedAsConvertiblePromissoryNote": {
            "type": "boolean",
            "nullable": true
          },
          "markedAsWarrants": {
            "type": "boolean",
            "nullable": true
          },
          "generalMeetingDatePromissoryNote": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "mustOccurBeforeYearPromissoryNote": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "mustOccurOtherDatePromissoryNote": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "registrationDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "notes": {
            "type": "string",
            "nullable": true
          },
          "firstSeenAtUtc": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time"
          },
          "caseYear": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "caseNumber": {
            "type": "integer",
            "format": "int32"
          },
          "companySummary": {
            "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Base_CompanySummary_Dto"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Company_ListCompanyAuthorization_DtoItemsPagination": {
        "type": "object",
        "properties": {
          "pageSize": {
            "type": "integer",
            "format": "int32"
          },
          "lastItemId": {
            "type": "integer",
            "format": "int64"
          },
          "totalItems": {
            "type": "integer",
            "format": "int32"
          },
          "items": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Company_ListCompanyAuthorization_Dto"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Company_ListCompanyBonusIssue_Dto": {
        "type": "object",
        "properties": {
          "companyBonusIssueId": {
            "type": "integer",
            "format": "int32"
          },
          "companyId": {
            "type": "integer",
            "format": "int32"
          },
          "iso4217CurrencyCode": {
            "type": "string",
            "nullable": true
          },
          "decisionDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "decidedByCode": {
            "type": "string",
            "nullable": true
          },
          "decidedBy": {
            "type": "string",
            "nullable": true
          },
          "issuedByCode": {
            "type": "string",
            "nullable": true
          },
          "issuedBy": {
            "type": "string",
            "nullable": true
          },
          "amount": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "nominalValue": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "numberOfBonusShares": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "notes": {
            "type": "string",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time"
          },
          "firstSeenAtUtc": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "caseYear": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "caseNumber": {
            "type": "integer",
            "format": "int32"
          },
          "companySummary": {
            "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Base_CompanySummary_Dto"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Company_ListCompanyBonusIssue_DtoItemsPagination": {
        "type": "object",
        "properties": {
          "pageSize": {
            "type": "integer",
            "format": "int32"
          },
          "lastItemId": {
            "type": "integer",
            "format": "int64"
          },
          "totalItems": {
            "type": "integer",
            "format": "int32"
          },
          "items": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Company_ListCompanyBonusIssue_Dto"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_EuropeanCommission_EC_CORDISOrganization_Dto": {
        "type": "object",
        "properties": {
          "orderInProject": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "role": {
            "type": "string",
            "nullable": true
          },
          "pic": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "legalName": {
            "type": "string",
            "nullable": true
          },
          "shortName": {
            "type": "string",
            "nullable": true
          },
          "countryCodeAlpha2": {
            "type": "string",
            "nullable": true
          },
          "city": {
            "type": "string",
            "nullable": true
          },
          "postCode": {
            "type": "string",
            "nullable": true
          },
          "companyId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "longitude": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "latitude": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "contactForm": {
            "type": "string",
            "nullable": true
          },
          "organizationURL": {
            "type": "string",
            "nullable": true
          },
          "sme": {
            "type": "boolean",
            "nullable": true
          },
          "active": {
            "type": "string",
            "nullable": true
          },
          "activityType": {
            "type": "string",
            "nullable": true
          },
          "contentUpdate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "ecContribution": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "endOfParticipation": {
            "type": "boolean",
            "nullable": true
          },
          "netECContribution": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "nutsCode": {
            "type": "string",
            "nullable": true
          },
          "rcn": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "totalCost": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_EuropeanCommission_EC_CORDIS_Project_Dto": {
        "type": "object",
        "properties": {
          "projectId": {
            "type": "integer",
            "format": "int32"
          },
          "acronym": {
            "type": "string",
            "nullable": true
          },
          "contentUpdateDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "ecMaxContribution": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "ecSignatureDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "endDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "frameworkProgramme": {
            "type": "string",
            "nullable": true
          },
          "fundingScheme": {
            "type": "string",
            "nullable": true
          },
          "grantDOI": {
            "type": "string",
            "nullable": true
          },
          "legalBasis": {
            "type": "string",
            "nullable": true
          },
          "masterCall": {
            "type": "string",
            "nullable": true
          },
          "nature": {
            "type": "string",
            "nullable": true
          },
          "objective": {
            "type": "string",
            "nullable": true
          },
          "rcn": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "startDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "status": {
            "type": "string",
            "nullable": true
          },
          "subCall": {
            "type": "string",
            "nullable": true
          },
          "title": {
            "type": "string",
            "nullable": true
          },
          "topics": {
            "type": "string",
            "nullable": true
          },
          "totalCost": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_EuropeanCommission_EC_CORDIS_Project_DtoItemsPagination": {
        "type": "object",
        "properties": {
          "pageSize": {
            "type": "integer",
            "format": "int32"
          },
          "lastItemId": {
            "type": "integer",
            "format": "int64"
          },
          "totalItems": {
            "type": "integer",
            "format": "int32"
          },
          "items": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_EuropeanCommission_EC_CORDIS_Project_Dto"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_EuropeanCommission_EC_ParticipantDetail_Dto": {
        "type": "object",
        "properties": {
          "pic": {
            "type": "integer",
            "format": "int32"
          },
          "legalName": {
            "type": "string",
            "nullable": true
          },
          "businessName": {
            "type": "string",
            "nullable": true
          },
          "vat": {
            "type": "string",
            "nullable": true
          },
          "registrationNumber": {
            "type": "string",
            "nullable": true
          },
          "status": {
            "type": "string",
            "nullable": true
          },
          "address": {
            "type": "string",
            "nullable": true
          },
          "cpLink": {
            "type": "string",
            "nullable": true
          },
          "erasmusCode": {
            "type": "string",
            "nullable": true
          },
          "empty": {
            "type": "boolean",
            "nullable": true
          },
          "valid": {
            "type": "boolean",
            "nullable": true
          },
          "legalNameSearch": {
            "type": "boolean",
            "nullable": true
          },
          "countryName": {
            "type": "string",
            "nullable": true
          },
          "countryCodeAlpha2": {
            "type": "string",
            "nullable": true
          },
          "countryCodeInternal": {
            "type": "string",
            "nullable": true
          },
          "companyId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time"
          },
          "netECContribution": {
            "type": "number",
            "format": "double",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_EuropeanCommission_EC_ParticipantProject_Dto": {
        "type": "object",
        "properties": {
          "projectId": {
            "type": "integer",
            "format": "int32"
          },
          "acronym": {
            "type": "string",
            "nullable": true
          },
          "ecMaxContribution": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "ecSignatureDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "endDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "frameworkProgramme": {
            "type": "string",
            "nullable": true
          },
          "fundingScheme": {
            "type": "string",
            "nullable": true
          },
          "grantDOI": {
            "type": "string",
            "nullable": true
          },
          "legalBasis": {
            "type": "string",
            "nullable": true
          },
          "masterCall": {
            "type": "string",
            "nullable": true
          },
          "nature": {
            "type": "string",
            "nullable": true
          },
          "objective": {
            "type": "string",
            "nullable": true
          },
          "startDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "status": {
            "type": "string",
            "nullable": true
          },
          "subCall": {
            "type": "string",
            "nullable": true
          },
          "title": {
            "type": "string",
            "nullable": true
          },
          "topics": {
            "type": "string",
            "nullable": true
          },
          "projectTotalCost": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "orderInProject": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "role": {
            "type": "string",
            "nullable": true
          },
          "ecContribution": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "endOfParticipation": {
            "type": "boolean",
            "nullable": true
          },
          "netECContribution": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "nutsCode": {
            "type": "string",
            "nullable": true
          },
          "rcn": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "participantTotalCost": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_EuropeanCommission_EC_Participant_Dto": {
        "type": "object",
        "properties": {
          "pic": {
            "type": "integer",
            "format": "int32"
          },
          "legalName": {
            "type": "string",
            "nullable": true
          },
          "businessName": {
            "type": "string",
            "nullable": true
          },
          "vat": {
            "type": "string",
            "nullable": true
          },
          "registrationNumber": {
            "type": "string",
            "nullable": true
          },
          "status": {
            "type": "string",
            "nullable": true
          },
          "address": {
            "type": "string",
            "nullable": true
          },
          "cpLink": {
            "type": "string",
            "nullable": true
          },
          "erasmusCode": {
            "type": "string",
            "nullable": true
          },
          "empty": {
            "type": "boolean",
            "nullable": true
          },
          "valid": {
            "type": "boolean",
            "nullable": true
          },
          "legalNameSearch": {
            "type": "boolean",
            "nullable": true
          },
          "countryName": {
            "type": "string",
            "nullable": true
          },
          "countryCodeAlpha2": {
            "type": "string",
            "nullable": true
          },
          "countryCodeInternal": {
            "type": "string",
            "nullable": true
          },
          "companyId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_EuropeanCommission_EC_Participant_DtoItemsPagination": {
        "type": "object",
        "properties": {
          "pageSize": {
            "type": "integer",
            "format": "int32"
          },
          "lastItemId": {
            "type": "integer",
            "format": "int64"
          },
          "totalItems": {
            "type": "integer",
            "format": "int32"
          },
          "items": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_EuropeanCommission_EC_Participant_Dto"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Lists_ListCompanyShareIssue_Dto": {
        "type": "object",
        "properties": {
          "companyShareIssueId": {
            "type": "integer",
            "format": "int32"
          },
          "companyId": {
            "type": "integer",
            "format": "int32"
          },
          "iso4217CurrencyCode": {
            "type": "string",
            "nullable": true
          },
          "decidedByCode": {
            "type": "string",
            "nullable": true
          },
          "decidedBy": {
            "type": "string",
            "nullable": true
          },
          "decisionDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "hasNotBeenFullyPaid": {
            "type": "boolean",
            "nullable": true
          },
          "amount": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "lowerAmount": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "highestAmount": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "nominalValue": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "numberOfShares": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "paidAmountWithPremium": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "sharesPaidInPartial": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "partiallyPaidAmount": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "sharesPaidInFull": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "paidInFullAmount": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "reduceShareCapitalByNotPaidInFull": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "reduceNumberOfSharesByNotPaidInFull": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "paidInCash": {
            "type": "boolean",
            "nullable": true
          },
          "paidByPropertyInKind": {
            "type": "boolean",
            "nullable": true
          },
          "paidByOffset": {
            "type": "boolean",
            "nullable": true
          },
          "isPartialRegistration": {
            "type": "boolean",
            "nullable": true
          },
          "notes": {
            "type": "string",
            "nullable": true
          },
          "firstSeenAtUtc": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time"
          },
          "caseYear": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "caseNumber": {
            "type": "integer",
            "format": "int32"
          },
          "companySummary": {
            "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Base_CompanySummary_Dto"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Lists_ListCompanyShareIssue_DtoItemsPagination": {
        "type": "object",
        "properties": {
          "pageSize": {
            "type": "integer",
            "format": "int32"
          },
          "lastItemId": {
            "type": "integer",
            "format": "int64"
          },
          "totalItems": {
            "type": "integer",
            "format": "int32"
          },
          "items": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Lists_ListCompanyShareIssue_Dto"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Persons_PersonAddress_Dto": {
        "type": "object",
        "properties": {
          "personAddressId": {
            "type": "integer",
            "format": "int32"
          },
          "addressType": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_PersonAddressType"
          },
          "co": {
            "type": "string",
            "nullable": true
          },
          "street": {
            "type": "string",
            "nullable": true
          },
          "postalCode": {
            "type": "string",
            "nullable": true
          },
          "city": {
            "type": "string",
            "nullable": true
          },
          "countryName": {
            "type": "string",
            "nullable": true
          },
          "countryCodeAlpha3": {
            "type": "string",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time"
          },
          "foundAtUtc": {
            "type": "string",
            "format": "date-time"
          },
          "countyCode": {
            "type": "string",
            "nullable": true
          },
          "municipalityCode": {
            "type": "string",
            "nullable": true
          },
          "belagenhetsadressObjektIdentitet": {
            "type": "string",
            "format": "uuid",
            "nullable": true
          },
          "lastSeenAtUtc": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "addressId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "source": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Persons_PersonCompany_Dto": {
        "type": "object",
        "properties": {
          "companyPersonId": {
            "type": "integer",
            "format": "int32"
          },
          "companyId": {
            "type": "integer",
            "format": "int32"
          },
          "companyRegistrationNumber": {
            "type": "string",
            "nullable": true
          },
          "positionType": {
            "type": "string",
            "nullable": true
          },
          "positionDescription": {
            "type": "string",
            "nullable": true
          },
          "positionStart": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "positionEnd": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time"
          },
          "companySummary": {
            "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Base_CompanySummary_Dto"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Persons_PersonCompany_DtoItemsPagination": {
        "type": "object",
        "properties": {
          "pageSize": {
            "type": "integer",
            "format": "int32"
          },
          "lastItemId": {
            "type": "integer",
            "format": "int64"
          },
          "totalItems": {
            "type": "integer",
            "format": "int32"
          },
          "items": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Persons_PersonCompany_Dto"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Persons_Person_Dto": {
        "type": "object",
        "properties": {
          "personId": {
            "type": "integer",
            "format": "int32"
          },
          "nationalityCountryCodeAlpha2": {
            "type": "string",
            "nullable": true
          },
          "personalIdentityNumber": {
            "type": "string",
            "nullable": true
          },
          "isProtected": {
            "type": "boolean",
            "nullable": true
          },
          "isMarried": {
            "type": "boolean",
            "nullable": true
          },
          "givenName": {
            "type": "string",
            "nullable": true
          },
          "firstName": {
            "type": "string",
            "nullable": true
          },
          "middleName": {
            "type": "string",
            "nullable": true
          },
          "lastName": {
            "type": "string",
            "nullable": true
          },
          "fullName": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "sex": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_PersonSexType"
          },
          "isCoordinationNumber": {
            "type": "boolean",
            "nullable": true
          },
          "birthday": {
            "type": "string",
            "nullable": true
          },
          "age": {
            "type": "integer",
            "format": "int32",
            "nullable": true,
            "readOnly": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Persons_Person_DtoItemsPagination": {
        "type": "object",
        "properties": {
          "pageSize": {
            "type": "integer",
            "format": "int32"
          },
          "lastItemId": {
            "type": "integer",
            "format": "int64"
          },
          "totalItems": {
            "type": "integer",
            "format": "int32"
          },
          "items": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Persons_Person_Dto"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Sweden_Finansinspektionen_FI_InsiderTradingExtended_Dto": {
        "type": "object",
        "properties": {
          "fI_InsynshandelRapportId": {
            "type": "integer",
            "format": "int32"
          },
          "foundAtUtc": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "forstaPubliceringsDatum": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "forstaTransaktionsDatum": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "arendeNummer": {
            "type": "string",
            "nullable": true
          },
          "instrumentISIN": {
            "type": "string",
            "nullable": true
          },
          "instrumentnamn": {
            "type": "string",
            "nullable": true
          },
          "branchName": {
            "type": "string",
            "nullable": true
          },
          "sectorName": {
            "type": "string",
            "nullable": true
          },
          "senastEV": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "personILedandeStallning": {
            "type": "string",
            "nullable": true
          },
          "befattning": {
            "type": "string",
            "nullable": true
          },
          "senastKurs": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "viktatSnittPris": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "nettoSumma": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "nettoVolym": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "valutaKod": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Sweden_Finansinspektionen_FI_InsiderTradingExtended_DtoItemsPagination": {
        "type": "object",
        "properties": {
          "pageSize": {
            "type": "integer",
            "format": "int32"
          },
          "lastItemId": {
            "type": "integer",
            "format": "int64"
          },
          "totalItems": {
            "type": "integer",
            "format": "int32"
          },
          "items": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Sweden_Finansinspektionen_FI_InsiderTradingExtended_Dto"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Sweden_Finansinspektionen_FI_InsiderTradingTransaction_Dto": {
        "type": "object",
        "properties": {
          "karaktar": {
            "type": "string",
            "nullable": true
          },
          "instrumentnamn": {
            "type": "string",
            "nullable": true
          },
          "instrumentTyp": {
            "type": "string",
            "nullable": true
          },
          "instrumentISIN": {
            "type": "string",
            "nullable": true
          },
          "transaktionsDatum": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "volym": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "volymsenhet": {
            "type": "string",
            "nullable": true
          },
          "pris": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "valutaKod": {
            "type": "string",
            "nullable": true
          },
          "platsForTransaktionen": {
            "type": "string",
            "nullable": true
          },
          "koppladTillGenomforandetAvAktieOptionsprogram": {
            "type": "boolean",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time"
          },
          "foundAtUtc": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Sweden_Finansinspektionen_FI_InsiderTrading_Dto": {
        "type": "object",
        "properties": {
          "fI_InsynshandelRapportId": {
            "type": "integer",
            "format": "int32"
          },
          "reportId": {
            "type": "integer",
            "format": "int32"
          },
          "arendeNummer": {
            "type": "string",
            "nullable": true
          },
          "arendeRevision": {
            "type": "integer",
            "format": "int32"
          },
          "arendeStatus": {
            "type": "string",
            "nullable": true
          },
          "publiceringsDatum": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "namnPaAnmalningsskyldig": {
            "type": "string",
            "nullable": true
          },
          "emittentNamn": {
            "type": "string",
            "nullable": true
          },
          "emittentLEIKod": {
            "type": "string",
            "nullable": true
          },
          "personILedandeStallning": {
            "type": "string",
            "nullable": true
          },
          "befattning": {
            "type": "string",
            "nullable": true
          },
          "narstaende": {
            "type": "boolean",
            "nullable": true
          },
          "nyRapporting": {
            "type": "boolean",
            "nullable": true
          },
          "korrigering": {
            "type": "boolean",
            "nullable": true
          },
          "beskrivningAvKorrigering": {
            "type": "string",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time"
          },
          "foundAtUtc": {
            "type": "string",
            "format": "date-time"
          },
          "transaktionerFoundAtUtc": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Sweden_Finansinspektionen_FI_InsiderTrading_DtoItemsPagination": {
        "type": "object",
        "properties": {
          "pageSize": {
            "type": "integer",
            "format": "int32"
          },
          "lastItemId": {
            "type": "integer",
            "format": "int64"
          },
          "totalItems": {
            "type": "integer",
            "format": "int32"
          },
          "items": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Sweden_Finansinspektionen_FI_InsiderTrading_Dto"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Sweden_Finansinspektionen_FI_NotificationExtended_Dto": {
        "type": "object",
        "properties": {
          "fI_FlaggningId": {
            "type": "integer",
            "format": "int32"
          },
          "fI_FlaggningsmeddelandeId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "instrumentISIN": {
            "type": "string",
            "nullable": true
          },
          "companyName": {
            "type": "string",
            "nullable": true
          },
          "branchName": {
            "type": "string",
            "nullable": true
          },
          "sectorName": {
            "type": "string",
            "nullable": true
          },
          "senasteEV": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "senasteKurs": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "emittent": {
            "type": "string",
            "nullable": true
          },
          "skalForFlaggning": {
            "type": "string",
            "nullable": true
          },
          "transaktionsdatum": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "publiceringsDatum": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "innehavare": {
            "type": "string",
            "nullable": true
          },
          "foundAtUtc": {
            "type": "string",
            "format": "date-time"
          },
          "foreTransaktionenAntalAktier": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "efterTransaktionenAntalAktier": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "netto": {
            "type": "number",
            "format": "double",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Sweden_Finansinspektionen_FI_NotificationExtended_DtoItemsPagination": {
        "type": "object",
        "properties": {
          "pageSize": {
            "type": "integer",
            "format": "int32"
          },
          "lastItemId": {
            "type": "integer",
            "format": "int64"
          },
          "totalItems": {
            "type": "integer",
            "format": "int32"
          },
          "items": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Sweden_Finansinspektionen_FI_NotificationExtended_Dto"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Sweden_Finansinspektionen_FI_Notification_Dto": {
        "type": "object",
        "properties": {
          "fI_FlaggningId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "fI_FlaggningsmeddelandeId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "skalForFlaggning": {
            "type": "string",
            "nullable": true
          },
          "transaktionsdatum": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "gransvardeAntalAktier": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "gransvardeAntalRostratter": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "emittent": {
            "type": "string",
            "nullable": true
          },
          "innehavare": {
            "type": "string",
            "nullable": true
          },
          "instrumentTyp": {
            "type": "string",
            "nullable": true
          },
          "instrumentISIN": {
            "type": "string",
            "nullable": true
          },
          "foreTransaktionenAntalAktier": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "foreTransaktionenAntalRostratter": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "efterTransaktionenAntalAktier": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "efterTransaktionenAntalDirektaRostratter": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "efterTransaktionenAntalIndirektaRostratter": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "efterTransaktionenAndelAktier": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "efterTransaktionenAndelDirektaRostratter": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "efterTransaktionenAndelIndirektaRostratter": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "publiceringsDatum": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time"
          },
          "foundAtUtc": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Sweden_Finansinspektionen_FI_Notification_DtoItemsPagination": {
        "type": "object",
        "properties": {
          "pageSize": {
            "type": "integer",
            "format": "int32"
          },
          "lastItemId": {
            "type": "integer",
            "format": "int64"
          },
          "totalItems": {
            "type": "integer",
            "format": "int32"
          },
          "items": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Sweden_Finansinspektionen_FI_Notification_Dto"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Sweden_ICA_ICA_CatalogItem_Dto": {
        "type": "object",
        "properties": {
          "icA_CatalogItemId": {
            "type": "integer",
            "format": "int32"
          },
          "gtin": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "sku": {
            "type": "string",
            "nullable": true
          },
          "ci": {
            "type": "string",
            "nullable": true
          },
          "productName": {
            "type": "string",
            "nullable": true
          },
          "brand": {
            "type": "string",
            "nullable": true
          },
          "approxPrice": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "category": {
            "type": "string",
            "nullable": true
          },
          "productType": {
            "type": "string",
            "nullable": true
          },
          "lastUpdatedUtc": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "gS1OwnerName": {
            "type": "string",
            "nullable": true
          },
          "gS1OwnerStreet": {
            "type": "string",
            "nullable": true
          },
          "gS1OwnerZipCode": {
            "type": "string",
            "nullable": true
          },
          "gS1OwnerCity": {
            "type": "string",
            "nullable": true
          },
          "gS1OwnerCountry": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Sweden_ICA_ICA_CatalogItem_DtoItemsPagination": {
        "type": "object",
        "properties": {
          "pageSize": {
            "type": "integer",
            "format": "int32"
          },
          "lastItemId": {
            "type": "integer",
            "format": "int64"
          },
          "totalItems": {
            "type": "integer",
            "format": "int32"
          },
          "items": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Sweden_ICA_ICA_CatalogItem_Dto"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Sweden_ICA_ICA_StoreNote_Dto": {
        "type": "object",
        "properties": {
          "icA_StoreNoteId": {
            "type": "integer",
            "format": "int32"
          },
          "icA_StoreId": {
            "type": "integer",
            "format": "int32"
          },
          "period": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "date": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "type": {
            "type": "string",
            "nullable": true
          },
          "notes": {
            "type": "string",
            "nullable": true
          },
          "attribute1": {
            "type": "string",
            "nullable": true
          },
          "attribute2": {
            "type": "string",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Sweden_ICA_ICA_Store_Dto": {
        "type": "object",
        "properties": {
          "ica_StoreId": {
            "type": "integer",
            "format": "int32"
          },
          "companyId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "icaExternalStoreId": {
            "type": "string",
            "nullable": true
          },
          "icaStoreOwnerId": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "storeName": {
            "type": "string",
            "nullable": true
          },
          "city": {
            "type": "string",
            "nullable": true
          },
          "street": {
            "type": "string",
            "nullable": true
          },
          "zipCode": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "area": {
            "type": "string",
            "nullable": true
          },
          "storeFormat": {
            "type": "string",
            "nullable": true
          },
          "marketingText": {
            "type": "string",
            "nullable": true
          },
          "latitude": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "longitude": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "deliveryMethods": {
            "type": "string",
            "nullable": true
          },
          "customerTypes": {
            "type": "string",
            "nullable": true
          },
          "hasKlarna": {
            "type": "string",
            "nullable": true
          },
          "onlineVersion": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "hasPriceAdjustment": {
            "type": "boolean",
            "nullable": true
          },
          "accountId": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "retailerSiteId": {
            "type": "string",
            "nullable": true
          },
          "storeProfileId": {
            "type": "string",
            "nullable": true
          },
          "slug": {
            "type": "string",
            "nullable": true
          },
          "isEhl": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "retailerSiteIds": {
            "type": "string",
            "nullable": true
          },
          "cfcSiteId": {
            "type": "string",
            "nullable": true
          },
          "storePickingSiteId": {
            "type": "string",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "phone": {
            "type": "string",
            "nullable": true
          },
          "email": {
            "type": "string",
            "nullable": true
          },
          "organizationNumber": {
            "type": "string",
            "nullable": true
          },
          "bhsUrl": {
            "type": "string",
            "nullable": true
          },
          "onlineUrl": {
            "type": "string",
            "nullable": true
          },
          "onlinePlatform": {
            "type": "string",
            "nullable": true
          },
          "onlineRegionId": {
            "type": "string",
            "format": "uuid",
            "nullable": true
          },
          "legalName": {
            "type": "string",
            "nullable": true
          },
          "statusHigh": {
            "type": "string",
            "nullable": true
          },
          "capital": {
            "type": "string",
            "nullable": true
          },
          "companyFormed": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "companyRegistered": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "currentCompanyRegistered": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "stockCompany": {
            "type": "boolean",
            "nullable": true
          },
          "vatRegistered": {
            "type": "boolean",
            "nullable": true
          },
          "payrollRegistered": {
            "type": "boolean",
            "nullable": true
          },
          "fTaxRegistered": {
            "type": "boolean",
            "nullable": true
          },
          "companyDescription": {
            "type": "string",
            "nullable": true
          },
          "sniCodesSeparatedByDelimeter": {
            "type": "string",
            "nullable": true
          },
          "subsidaryToICA": {
            "type": "boolean",
            "nullable": true
          },
          "subsidaryToICAOwnershipInPercentage": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "customSlug": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Sweden_ICA_ICA_Store_DtoItemsPagination": {
        "type": "object",
        "properties": {
          "pageSize": {
            "type": "integer",
            "format": "int32"
          },
          "lastItemId": {
            "type": "integer",
            "format": "int64"
          },
          "totalItems": {
            "type": "integer",
            "format": "int32"
          },
          "items": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Sweden_ICA_ICA_Store_Dto"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Sweden_PTSPortings_PTSPorting": {
        "type": "object",
        "properties": {
          "snStart": {
            "type": "string",
            "nullable": true
          },
          "snEnd": {
            "type": "string",
            "nullable": true
          },
          "nrl": {
            "type": "integer",
            "format": "int32"
          },
          "numberOfNumbers": {
            "type": "integer",
            "format": "int64"
          },
          "operator": {
            "type": "string",
            "nullable": true
          },
          "status": {
            "type": "string",
            "nullable": true
          },
          "serviceType": {
            "type": "string",
            "nullable": true
          },
          "creationDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "decisionDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "validFrom": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "caseNumber": {
            "type": "string",
            "nullable": true
          },
          "portingHistory": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Datasets_Sweden_PTSPortings_PTSPortingHistory"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Sweden_PTSPortings_PTSPortingHistory": {
        "type": "object",
        "properties": {
          "portedFromOperator": {
            "type": "string",
            "nullable": true
          },
          "portedToOperator": {
            "type": "string",
            "nullable": true
          },
          "portingDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Datasets_Vehicle_VehicleEvent_Dto": {
        "type": "object",
        "properties": {
          "vehicleEventId": {
            "type": "integer",
            "format": "int32"
          },
          "eventStartDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "eventStartDate2": {
            "type": "string",
            "nullable": true
          },
          "eventEndDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "eventType": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_Transportstyrelsen_VehicleSummaryEventType"
          },
          "eventDescription": {
            "type": "string",
            "nullable": true
          },
          "eventMetadata": {
            "type": "string",
            "nullable": true
          },
          "companyId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Documents_CompanyFinancialDocumentMetadata_Dto": {
        "type": "object",
        "properties": {
          "financialDocumentReference": {
            "type": "string",
            "nullable": true
          },
          "companyName": {
            "type": "string",
            "nullable": true
          },
          "registrationNumber": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "arrivalDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "ruleset": {
            "type": "string",
            "nullable": true
          },
          "code": {
            "type": "string",
            "nullable": true
          },
          "formatDescription": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "periodStart": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "periodEnd": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "annualGeneralMeetingDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "lastSignatureDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "auditorFullName": {
            "type": "string",
            "nullable": true
          },
          "auditCompanyName": {
            "type": "string",
            "nullable": true
          },
          "hasReportXBRL": {
            "type": "boolean",
            "readOnly": true
          },
          "hasReportiXBRL": {
            "type": "boolean",
            "readOnly": true
          },
          "hasReportPDF": {
            "type": "boolean",
            "readOnly": true
          },
          "hasAuditLetterXBRL": {
            "type": "boolean",
            "readOnly": true
          },
          "hasAuditLetteriXBRL": {
            "type": "boolean",
            "readOnly": true
          },
          "hasAuditLetterPDF": {
            "type": "boolean",
            "readOnly": true
          },
          "reportSoftwareMetaTag": {
            "type": "string",
            "nullable": true
          },
          "reportSoftwareVersionMetaTag": {
            "type": "string",
            "nullable": true
          },
          "reportApplicationName": {
            "type": "string",
            "nullable": true
          },
          "reportAuditReportHashMetaTag": {
            "type": "string",
            "nullable": true
          },
          "reportOriginatorMetaTag": {
            "type": "string",
            "nullable": true
          },
          "reportAuditorMetaTag": {
            "type": "string",
            "nullable": true
          },
          "auditorSoftwareMetaTag": {
            "type": "string",
            "nullable": true
          },
          "auditorSoftwareVersionMetaTag": {
            "type": "string",
            "nullable": true
          },
          "auditorApplicationName": {
            "type": "string",
            "nullable": true
          },
          "auditorReportHashMetaTag": {
            "type": "string",
            "nullable": true
          },
          "auditorOriginatorMetaTag": {
            "type": "string",
            "nullable": true
          },
          "caseRegistrationDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "caseNumber": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "caseYear": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "notificationDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Documents_CompanyFinancialDocument_Dto": {
        "type": "object",
        "properties": {
          "financialDocumentReference": {
            "type": "string",
            "nullable": true
          },
          "isElectronic": {
            "type": "boolean",
            "nullable": true
          },
          "caseNumber": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "caseYear": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "caseRegistrationDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "availableFiles": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Documents_FinancialDocumentFile"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Documents_FinancialDocumentFile": {
        "type": "object",
        "properties": {
          "fileType": {
            "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Documents_FinancialDocumentFileType"
          },
          "url": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Documents_FinancialDocumentFileType": {
        "enum": [
          "reportPDF",
          "reportXBRL",
          "reportXHTML",
          "auditLetterPDF",
          "auditLetterXBRL",
          "auditLetteriXBRL",
          "errorXHTML",
          "metadata"
        ],
        "type": "string"
      },
      "Ormeo_WebAPI_Models_External_HealthSearchLimits_Dto": {
        "type": "object",
        "properties": {
          "rateLimitReset": {
            "type": "integer",
            "format": "int32"
          },
          "rateLimit": {
            "type": "integer",
            "format": "int32"
          },
          "rateLimitRemaining": {
            "type": "integer",
            "format": "int32"
          },
          "rateLimitMinute": {
            "type": "integer",
            "format": "int32"
          },
          "rateLimitIP": {
            "type": "integer",
            "format": "int32"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_External_HealthSearch_Dto": {
        "type": "object",
        "properties": {
          "ok": {
            "type": "boolean"
          },
          "upcomingServiceWindows": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_WebAPI_Models_External_SLA_ServiceWindow_Dto"
            },
            "nullable": true
          },
          "limits": {
            "$ref": "#/components/schemas/Ormeo_WebAPI_Models_External_HealthSearchLimits_Dto"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_External_SLA_ServiceWindow_Dto": {
        "type": "object",
        "properties": {
          "startDateUtc": {
            "type": "string",
            "format": "date-time"
          },
          "endDateUtc": {
            "type": "string",
            "format": "date-time"
          },
          "notes": {
            "type": "string",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Media_TrademarkMediaSE_dto": {
        "type": "object",
        "properties": {
          "fileName": {
            "type": "string",
            "nullable": true
          },
          "mediaFileFormat": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Reseller_ResellerCustomer_Dto": {
        "type": "object",
        "properties": {
          "teamId": {
            "type": "integer",
            "format": "int32"
          },
          "teamGuid": {
            "type": "string",
            "format": "uuid"
          },
          "teamName": {
            "type": "string",
            "nullable": true
          },
          "teamDescription": {
            "type": "string",
            "nullable": true
          },
          "teamEmail": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Resellers_CreateCustomerRequest_Dto": {
        "type": "object",
        "properties": {
          "domainOrCompanyName": {
            "type": "string",
            "nullable": true
          },
          "emailAddress": {
            "type": "string",
            "nullable": true
          },
          "externalReference": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Resellers_CreateCustomerResponse_Dto": {
        "type": "object",
        "properties": {
          "teamId": {
            "type": "integer",
            "format": "int32"
          },
          "teamGuid": {
            "type": "string",
            "format": "uuid"
          },
          "teamName": {
            "type": "string",
            "nullable": true
          },
          "teamDescription": {
            "type": "string",
            "nullable": true
          },
          "teamEmail": {
            "type": "string",
            "nullable": true
          },
          "apiKey": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Teams_TeamCORSCreate_Dto": {
        "required": [
          "domain"
        ],
        "type": "object",
        "properties": {
          "domain": {
            "minLength": 1,
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_Teams_TeamCORS_Dto": {
        "type": "object",
        "properties": {
          "teamId": {
            "type": "integer",
            "format": "int32"
          },
          "corsType": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_TeamCORSType"
          },
          "domain": {
            "type": "string",
            "nullable": true
          },
          "userId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_WatchLists_WatchListCreate_Dto": {
        "required": [
          "watchListName"
        ],
        "type": "object",
        "properties": {
          "watchListName": {
            "maxLength": 255,
            "minLength": 1,
            "type": "string"
          },
          "watchListDescription": {
            "maxLength": 255,
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_WatchLists_WatchListDetail_Dto": {
        "type": "object",
        "properties": {
          "teamWatchListId": {
            "type": "integer",
            "format": "int32"
          },
          "watchListName": {
            "type": "string",
            "nullable": true
          },
          "watchListDescription": {
            "type": "string",
            "nullable": true
          },
          "numberOfMembersOnWatchList": {
            "type": "integer",
            "format": "int32"
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_WatchLists_WatchListEdit_Dto": {
        "required": [
          "watchListName"
        ],
        "type": "object",
        "properties": {
          "watchListName": {
            "maxLength": 255,
            "minLength": 1,
            "type": "string"
          },
          "watchListDescription": {
            "maxLength": 255,
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_WatchLists_WatchListMember2_Dto": {
        "type": "object",
        "properties": {
          "teamWatchListMemberId": {
            "type": "integer",
            "format": "int32"
          },
          "companyId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "personId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "externalId": {
            "type": "string",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_WatchLists_WatchListMemberCreate2_Dto": {
        "type": "object",
        "properties": {
          "companyIds": {
            "type": "array",
            "items": {
              "type": "integer",
              "format": "int32"
            },
            "nullable": true
          },
          "personIds": {
            "type": "array",
            "items": {
              "type": "integer",
              "format": "int32"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_WatchLists_WatchListMemberCreate_Dto": {
        "type": "object",
        "properties": {
          "companyId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "personId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "externalId": {
            "maxLength": 255,
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_WatchLists_WatchListMemberDetail_Dto": {
        "type": "object",
        "properties": {
          "teamWatchListMemberId": {
            "type": "integer",
            "format": "int32"
          },
          "companyId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "personId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "externalId": {
            "type": "string",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "companySummary": {
            "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Base_CompanySummary_Dto"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_WatchLists_WatchListMemberEdit_Dto": {
        "type": "object",
        "properties": {
          "externalId": {
            "maxLength": 255,
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_WatchLists_WatchListMember_Dto": {
        "type": "object",
        "properties": {
          "teamWatchListMemberId": {
            "type": "integer",
            "format": "int32"
          },
          "companyId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "personId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "externalId": {
            "type": "string",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "companySummary": {
            "$ref": "#/components/schemas/Ormeo_WebAPI_Models_Base_CompanySummary_Dto"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_WatchLists_WatchListMember_DtoItemsPagination": {
        "type": "object",
        "properties": {
          "pageSize": {
            "type": "integer",
            "format": "int32"
          },
          "lastItemId": {
            "type": "integer",
            "format": "int64"
          },
          "totalItems": {
            "type": "integer",
            "format": "int32"
          },
          "items": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_WebAPI_Models_WatchLists_WatchListMember_Dto"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_WatchLists_WatchListTriggerCreate_Dto": {
        "required": [
          "destination"
        ],
        "type": "object",
        "properties": {
          "destination": {
            "minLength": 1,
            "type": "string"
          },
          "destinationType": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_DestinationType"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_WatchLists_WatchListTriggerDetail_Dto": {
        "type": "object",
        "properties": {
          "teamWatchListTriggerId": {
            "type": "integer",
            "format": "int32"
          },
          "destination": {
            "type": "string",
            "nullable": true
          },
          "destinationType": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_DestinationType"
          },
          "hasBeenValidated": {
            "type": "boolean"
          },
          "lastMessageSentAtUtc": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_WatchLists_WatchListTriggerEdit_Dto": {
        "required": [
          "destination"
        ],
        "type": "object",
        "properties": {
          "destination": {
            "minLength": 1,
            "type": "string"
          },
          "destinationType": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_DestinationType"
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_WatchLists_WatchListTrigger_Dto": {
        "type": "object",
        "properties": {
          "teamWatchListTriggerId": {
            "type": "integer",
            "format": "int32"
          },
          "destination": {
            "type": "string",
            "nullable": true
          },
          "destinationType": {
            "$ref": "#/components/schemas/Ormeo_Library_Entities_DestinationType"
          },
          "hasBeenValidated": {
            "type": "boolean"
          },
          "lastMessageSentAtUtc": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_WatchLists_WatchListTrigger_DtoItemsPagination": {
        "type": "object",
        "properties": {
          "pageSize": {
            "type": "integer",
            "format": "int32"
          },
          "lastItemId": {
            "type": "integer",
            "format": "int64"
          },
          "totalItems": {
            "type": "integer",
            "format": "int32"
          },
          "items": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_WebAPI_Models_WatchLists_WatchListTrigger_Dto"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_WatchLists_WatchList_Dto": {
        "type": "object",
        "properties": {
          "teamWatchListId": {
            "type": "integer",
            "format": "int32"
          },
          "watchListName": {
            "type": "string",
            "nullable": true
          },
          "watchListDescription": {
            "type": "string",
            "nullable": true
          },
          "lastUpdatedAtUtc": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Ormeo_WebAPI_Models_WatchLists_WatchList_DtoItemsPagination": {
        "type": "object",
        "properties": {
          "pageSize": {
            "type": "integer",
            "format": "int32"
          },
          "lastItemId": {
            "type": "integer",
            "format": "int64"
          },
          "totalItems": {
            "type": "integer",
            "format": "int32"
          },
          "items": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Ormeo_WebAPI_Models_WatchLists_WatchList_Dto"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      }
    },
    "securitySchemes": {
      "ApiKey": {
        "type": "apiKey",
        "name": "x-api-key",
        "in": "header"
      }
    }
  },
  "security": [
    {
      "ApiKey": [ ]
    }
  ],
  "tags": [
    {
      "name": "BolagsverketStatistics"
    },
    {
      "name": "Companies"
    },
    {
      "name": "Companies_SE_"
    },
    {
      "name": "DocumentDelivery"
    },
    {
      "name": "EuropeanCommission"
    },
    {
      "name": "FinancialDocuments"
    },
    {
      "name": "Finansinspektionen"
    },
    {
      "name": "Free"
    },
    {
      "name": "ICA"
    },
    {
      "name": "ICAStatistics"
    },
    {
      "name": "Lists"
    },
    {
      "name": "Media"
    },
    {
      "name": "Persons"
    },
    {
      "name": "Persons_SE_"
    },
    {
      "name": "Properties_SE_"
    },
    {
      "name": "PTSPortings"
    },
    {
      "name": "Reseller"
    },
    {
      "name": "SearchBankruptciesReports"
    },
    {
      "name": "SearchCompanies"
    },
    {
      "name": "SearchCompaniesReports"
    },
    {
      "name": "SearchCompanyWorkplaces"
    },
    {
      "name": "SearchPerson"
    },
    {
      "name": "SearchProperties_SE_"
    },
    {
      "name": "SearchVehicles"
    },
    {
      "name": "TeamDocumentOrders"
    },
    {
      "name": "Teams"
    },
    {
      "name": "User"
    },
    {
      "name": "Vehicles_SE_"
    },
    {
      "name": "WatchLists"
    }
  ]
}