{ "openapi" : "3.0.1", "info" : { "title" : "Tripletex API", "description" : " [ Base URL: https://kkpqfuj-amager.tripletex.dev/v2 ]\n\n## Usage\n\n- **Download the spec** [openapi.json](/v2/openapi.json) file, it is a [OpenAPI Specification](https://github.com/OAI/OpenAPI-Specification).\n\n- **Generating a client** can easily be done using tools like [openapi-generator](https://github.com/OpenAPITools/openapi-generator) or [swagger-codegen](https://github.com/swagger-api/swagger-codegen) or other that accepts [OpenAPI Specification](https://github.com/OAI/OpenAPI-Specification) specs.\n\n - For swagger codegen it is recommended to use the flag: **--removeOperationIdPrefix**.\n Unique operation ids are about to be introduced to the spec, and this ensures forward compatibility - and results in less verbose generated code.\n\n- **Please note** that Tripletex offers several packages. Some endpoints are only supported in certain packages. You can see the Tripletex packages [here](https://www.tripletex.no/priser/).\n\n## Overview\n\n- Partial resource updating is done using the `PUT` method with optional fields instead of the `PATCH` method.\n\n- **Actions** or **commands** are represented in our RESTful path with a prefixed `:`. Example: `/hours/123/:approve`.\n\n- **Summaries** or **aggregated** results are represented in our RESTful path with a prefixed `>`. Example: `/hours/>thisWeeksBillables`.\n\n- **Request ID** is a key found in all responses in the header with the name `x-tlx-request-id`. For validation and error responses it is also in the response body. If additional log information is absolutely necessary, our support division can locate the key value.\n\n- **version** This is a revision number found on all persisted resources. If included, it will prevent your PUT/POST from overriding any updates to the resource since your GET.\n\n- **Date** follows the **[ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)** standard, meaning the format `YYYY-MM-DD`.\n\n- **DateTime** follows the **[ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)** standard, meaning the format `YYYY-MM-DDThh:mm:ss`.\n\n- **Searching** is done by entering values in the optional fields for each API call. The values fall into the following categories: range, in, exact and like.\n\n- **Missing fields** or even **no response data** can occur because result objects and fields are filtered on authorization.\n\n- **See [GitHub](https://github.com/Tripletex/tripletex-api2) for more documentation, code examples, changelog and more.**\n\n- **See [Tripletex for developers](https://developer.tripletex.no/) for more practical information, support, updates and access form**\n\n## Authentication\n\n[Read more here](https://developer.tripletex.no/docs/documentation/authentication-and-tokens/)\n\n- **Tokens:** The Tripletex API uses 3 different tokens\n\n - **consumerToken** is a token provided to the consumer by Tripletex after the API 2.0 registration is completed.\n\n - **employeeToken** is a token created by an administrator in your Tripletex account via the user settings and the tab \"API access\". Each employee token must be given a set of entitlements.\n\n - **sessionToken** is the token from `/token/session/:create` which requires a consumerToken and an employeeToken created with the same consumer token, but not an authentication header.\n\n- **Authentication** is done via [Basic access authentication](https://en.wikipedia.org/wiki/Basic_access_authentication)\n\n - **username** is used to specify what company to access.\n\n - `0` or blank means the company of the employee.\n\n - Any other value means accountant clients. Use `/company/>withLoginAccess` to get a list of those.\n\n - **password** is the **sessionToken**.\n\n - If you need to create the header yourself use `Authorization: Basic ` where `encoded token` is the string `:` Base64 encoded.\n\n## Tags\n\n- `[BETA]` This is a beta endpoint and can be subject to change.\n- `[DEPRECATED]` Deprecated means that we intend to remove/change this feature or capability in a future \"major\" API release. We therefore discourage all use of this feature/capability.\n\n## Fields\n\nUse the `fields` parameter to specify which fields should be returned. This also supports fields from sub elements, done via `()`. `*` means all fields for that resource. Example values:\n\n- `project,activity,hours` returns `{project:..., activity:...., hours:...}`.\n- just `project` returns `\"project\" : { \"id\": 12345, \"url\": \"tripletex.no/v2/projects/12345\" }`.\n- `project(*)` returns `\"project\" : { \"id\": 12345 \"name\":\"ProjectName\" \"number.....startDate\": \"2013-01-07\" }`.\n- `project(name)` returns `\"project\" : { \"name\":\"ProjectName\" }`.\n- All resources and some subResources : `*,activity(name),employee(*)`.\n\n## Sorting\n\nUse the `sorting` parameter to specify sorting. It takes a comma separated list, where a `-` prefix denotes descending. You can sort by sub object with the following format: `.`. Example values:\n\n- `date`\n- `project.name`\n- `project.name, -date`\n\n## Changes\n\nTo get the changes for a resource, `changes` have to be explicitly specified as part of the `fields` parameter, e.g. `*,changes`.\nThere are currently two types of change available:\n\n- `CREATE` for when the resource was created\n- `UPDATE` for when the resource was updated\n\n**NOTE**\n\n> For objects created prior to October 24th 2018 the list may be incomplete, but will always contain the CREATE and the last change (if the object has been changed after creation).\n\n## Rate limiting\n\nRate limiting is performed on the API calls for an employee for each API consumer. Status regarding the rate limit is returned as headers:\n\n- `X-Rate-Limit-Limit` - The number of allowed requests in the current period.\n- `X-Rate-Limit-Remaining` - The number of remaining requests.\n- `X-Rate-Limit-Reset` - The number of seconds left in the current period.\n\nOnce the rate limit is hit, all requests will return HTTP status code `429` for the remainder of the current period.\n\n## Response envelope\n\n#### Multiple values\n\n```json\n{\n \"fullResultSize\": ###, // {number} [DEPRECATED]\n \"from\": ###, // {number} Paging starting from\n \"count\": ###, // {number} Paging count\n \"versionDigest\": \"###\", // {string} Hash of full result, null if no result\n \"values\": [...{...object...},{...object...},{...object...}...]\n}\n```\n\n#### Single value\n\n```json\n{\n \"value\": {...single object...}\n}\n```\n\n## WebHook envelope\n\n```json\n{\n \"subscriptionId\": ###, // Subscription id\n \"event\": \"object.verb\", // As listed from /v2/event/\n \"id\": ###, // Id of object this event is for\n \"value\": {... single object, null if object.deleted ...}\n}\n```\n\n## Error/warning envelope\n\n```json\n{\n \"status\": ###, // {number} HTTP status code\n \"code\": #####, // {number} internal status code of event\n \"message\": \"###\", // {string} Basic feedback message in your language\n \"link\": \"###\", // {string} Link to doc\n \"developerMessage\": \"###\", // {string} More technical message\n \"validationMessages\": [ // {array} List of validation messages, can be null\n {\n \"field\": \"###\", // {string} Name of field\n \"message\": \"###\" // {string} Validation message for field\n }\n ],\n \"requestId\": \"###\" // {string} Same as x-tlx-request-id\n}\n```\n\n## Status codes / Error codes\n\n- **200 OK**\n- **201 Created** - From POSTs that create something new.\n- **204 No Content** - When there is no answer, ex: \"/:anAction\" or DELETE.\n- **400 Bad request** -\n - **4000** Bad Request Exception\n - **11000** Illegal Filter Exception\n - **12000** Path Param Exception\n - **24000** Cryptography Exception\n- **401 Unauthorized** - When authentication is required and has failed or has not yet been provided\n - **3000** Authentication Exception\n- **403 Forbidden** - When AuthorisationManager says no.\n - **9000** Security Exception\n- **404 Not Found** - For resources that does not exist.\n - **6000** Not Found Exception\n- **409 Conflict** - Such as an edit conflict between multiple simultaneous updates\n - **7000** Object Exists Exception\n - **8000** Revision Exception\n - **10000** Locked Exception\n - **14000** Duplicate entry\n- **422 Bad Request** - For Required fields or things like malformed payload.\n - **15000** Value Validation Exception\n - **16000** Mapping Exception\n - **17000** Sorting Exception\n - **18000** Validation Exception\n - **21000** Param Exception\n - **22000** Invalid JSON Exception\n - **23000** Result Set Too Large Exception\n- **429 Too Many Requests** - Request rate limit hit\n- **500 Internal Error** - Unexpected condition was encountered and no more specific message is suitable\n - **1000** Exception\n", "contact" : { "name" : "tripletex-api2 on GitHub", "url" : "https://github.com/Tripletex/tripletex-api2" }, "version" : "2.74.00" }, "servers" : [ { "url" : "https://kkpqfuj-amager.tripletex.dev/v2", "description" : "Tripletex API Server" } ], "tags" : [ { "name" : "accountingOffice/reconciliations", "description" : "API for managing reconciliation controls" }, { "name" : "penneo", "description" : "Penneo Digital Signature API" } ], "paths" : { "/accountantDashboard/news" : { "get" : { "tags" : [ "accountantDashboard/news" ], "summary" : "Get public news articles", "operationId" : "AccountantDashboardNews_get", "parameters" : [ { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseAccountantDashboardPublicNewsArticle" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/accountantDashboard/news/tags" : { "get" : { "tags" : [ "accountantDashboard/news" ], "summary" : "Get all existing news tags", "operationId" : "AccountantDashboardNewsTags_getTags", "parameters" : [ { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseAccountantDashboardTag" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/activity/{id}" : { "get" : { "tags" : [ "activity" ], "summary" : "Find activity by ID.", "operationId" : "Activity_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperActivity" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/activity/list" : { "post" : { "tags" : [ "activity" ], "summary" : "Add multiple activities.", "operationId" : "ActivityList_postList", "requestBody" : { "description" : "JSON representing a list of new objects to be created. Should not have ID and version set.", "content" : { "application/json" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/Activity" } } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseActivity" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/activity/>forTimeSheet" : { "get" : { "tags" : [ "activity" ], "summary" : "Find applicable time sheet activities for an employee on a specific day.", "operationId" : "ActivityForTimeSheet_getForTimeSheet", "parameters" : [ { "name" : "projectId", "in" : "query", "description" : "Project ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "employeeId", "in" : "query", "description" : "Employee ID. Defaults to ID of token owner.", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "date", "in" : "query", "description" : "yyyy-MM-dd. Defaults to today.", "schema" : { "type" : "string" } }, { "name" : "filterExistingHours", "in" : "query", "description" : "Whether to filter out activities that have registered hours.", "schema" : { "type" : "boolean", "default" : true } }, { "name" : "query", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseActivity" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/activity" : { "get" : { "tags" : [ "activity" ], "summary" : "Find activities corresponding with sent data.", "operationId" : "Activity_search", "parameters" : [ { "name" : "id", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "name", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "number", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "description", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "isProjectActivity", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "isGeneral", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "isChargeable", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "isTask", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "isInactive", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseActivity" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "activity" ], "summary" : "Add activity.", "operationId" : "Activity_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/Activity" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperActivity" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/deliveryAddress/{id}" : { "get" : { "tags" : [ "deliveryAddress" ], "summary" : "Get address by ID.", "operationId" : "DeliveryAddress_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "schema" : { "type" : "string" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperDeliveryAddress" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "deliveryAddress" ], "summary" : "Update address.", "operationId" : "DeliveryAddress_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/DeliveryAddress" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperDeliveryAddress" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/deliveryAddress" : { "get" : { "tags" : [ "deliveryAddress" ], "summary" : "Find addresses corresponding with sent data.", "operationId" : "DeliveryAddress_search", "parameters" : [ { "name" : "id", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "addressLine1", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "addressLine2", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "postalCode", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "city", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "name", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseDeliveryAddress" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/balance/reconciliation/annual/context" : { "post" : { "tags" : [ "balance/reconciliation" ], "summary" : "Create a annualBalance reconciliation context for a customer", "operationId" : "BalanceReconciliationAnnualContext_postAnnualContext", "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/AnnualBalanceContextRequest" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperAnnualBalanceContext" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/balance/reconciliation/attachment/{attachmentId}/pdf" : { "get" : { "tags" : [ "balance/reconciliation" ], "description" : "Get an attached voucher as PDF", "operationId" : "BalanceReconciliationAttachmentPdf_getAttachment", "parameters" : [ { "name" : "attachmentId", "in" : "path", "description" : "Id of the attachment", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "200" : { "description" : "The attachment in PDF format", "content" : { "application/pdf" : { "schema" : { "type" : "string", "format" : "binary" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/balance/reconciliation/{reconciliationId}/account/{accountId}/vouchers" : { "get" : { "tags" : [ "balance/reconciliation" ], "description" : "Find vouchers for an account in the period of the balance reconciliation", "operationId" : "BalanceReconciliationAccountVouchers_getVouchers", "parameters" : [ { "name" : "reconciliationId", "in" : "path", "description" : "Id of the balance reconciliation", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "accountId", "in" : "path", "description" : "Id of the account", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fromDate", "in" : "query", "description" : "Format is yyyy-MM-dd", "schema" : { "type" : "string" } }, { "name" : "toDateExclusive", "in" : "query", "description" : "Format is yyyy-MM-dd", "schema" : { "type" : "string" } }, { "name" : "query", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "schema" : { "type" : "string", "default" : "*, comments(*), attachments(*)" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseBalanceReconciliationVoucher" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/accountingOffice/reconciliations/{reconciliationId}/control/:controlReconciliation" : { "put" : { "tags" : [ "accountingOffice/reconciliations/{reconciliationId}/control/:controlReconciliation", "accountingOffice/reconciliations" ], "summary" : "Mark a reconciliation as controlled", "operationId" : "AccountingOfficeReconciliationsControlControlReconciliation_controlReconciliation", "parameters" : [ { "name" : "reconciliationId", "in" : "path", "description" : "The ID of the reconciliation", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperReconciliationControl" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/accountingOffice/reconciliations/{reconciliationId}/control" : { "get" : { "tags" : [ "accountingOffice/reconciliations/{reconciliationId}/control", "accountingOffice/reconciliations" ], "summary" : "Returns a list of reconciliation controls with the given reconciliationId", "operationId" : "AccountingOfficeReconciliationsControl_get", "parameters" : [ { "name" : "reconciliationId", "in" : "path", "description" : "The ID of the reconciliation to get control entries for", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseReconciliationControl" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/accountingOffice/reconciliations/{reconciliationId}/control/:reconcile" : { "put" : { "tags" : [ "accountingOffice/reconciliations/{reconciliationId}/control/:reconcile", "accountingOffice/reconciliations" ], "summary" : "Mark a reconciliation as reconciled", "operationId" : "AccountingOfficeReconciliationsControlReconcile_reconcile", "parameters" : [ { "name" : "reconciliationId", "in" : "path", "description" : "The ID of the reconciliation", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperReconciliationControl" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/accountingOffice/reconciliations/{reconciliationId}/control/:requestControl" : { "put" : { "tags" : [ "accountingOffice/reconciliations/{reconciliationId}/control/:requestControl", "accountingOffice/reconciliations" ], "summary" : "Request control of a reconciliation", "operationId" : "AccountingOfficeReconciliationsControlRequestControl_requestControl", "parameters" : [ { "name" : "reconciliationId", "in" : "path", "description" : "The ID of the reconciliation", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "List of employee IDs to request control from", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "type" : "integer", "format" : "int32" } } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseReconciliationControl" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/salary/financeTax/reconciliation/{reconciliationId}/overview" : { "get" : { "tags" : [ "financeTax/reconciliation" ], "summary" : "Get finance tax overview for a specific reconciliation term", "operationId" : "SalaryFinanceTaxReconciliationOverview_getOverview", "parameters" : [ { "name" : "reconciliationId", "in" : "path", "description" : "The reconciliation id", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperFinanceTaxOverview" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/salary/financeTax/reconciliation/{reconciliationId}/paymentsOverview" : { "get" : { "tags" : [ "financeTax/reconciliation" ], "summary" : "Get finance tax payment overview from start of year to the current reconciliation term", "operationId" : "SalaryFinanceTaxReconciliationPaymentsOverview_getPayments", "parameters" : [ { "name" : "reconciliationId", "in" : "path", "description" : "The reconciliation id", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperAmeldingPeriodicPaymentOverview" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/salary/financeTax/reconciliation/context" : { "post" : { "tags" : [ "financeTax/reconciliation" ], "summary" : "Create a financeTax reconciliation context for a customer", "operationId" : "SalaryFinanceTaxReconciliationContext_postContext", "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/FinanceTaxContextRequest" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperFinanceTaxContext" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/salary/holidayAllowance/reconciliation/{reconciliationId}/holidayAllowanceDetails" : { "get" : { "tags" : [ "salary/holidayAllowance/reconciliation" ], "summary" : "Get a holiday allowance details for the current reconciliation term", "operationId" : "SalaryHolidayAllowanceReconciliationHolidayAllowanceDetails_getHolidayAllowanceDetails", "parameters" : [ { "name" : "reconciliationId", "in" : "path", "description" : "The reconciliation id", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperHolidayAllowanceDetails" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/salary/holidayAllowance/reconciliation/{reconciliationId}/holidayAllowanceSummary" : { "get" : { "tags" : [ "salary/holidayAllowance/reconciliation" ], "summary" : "Salary holiday allowance reconciliation summary", "operationId" : "SalaryHolidayAllowanceReconciliationHolidayAllowanceSummary_getHolidayAllowanceSummary", "parameters" : [ { "name" : "reconciliationId", "in" : "path", "description" : "The reconciliation id", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperHolidayAllowanceSummary" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/salary/holidayAllowance/reconciliation/context" : { "post" : { "tags" : [ "salary/holidayAllowance/reconciliation" ], "summary" : "Create a holiday allowance reconciliation context for a customer", "operationId" : "SalaryHolidayAllowanceReconciliationContext_postContext", "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/HolidayAllowanceContextRequest" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperHolidayAllowanceContext" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/salary/mandatoryDeduction/reconciliation/{reconciliationId}/overview" : { "get" : { "tags" : [ "salary/mandatoryDeduction/reconciliation" ], "summary" : "Salary mandatory deduction reconciliation overview", "operationId" : "SalaryMandatoryDeductionReconciliationOverview_getOverview", "parameters" : [ { "name" : "reconciliationId", "in" : "path", "description" : "The reconciliation id", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperMandatoryDeductionOverview" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/salary/mandatoryDeduction/reconciliation/{reconciliationId}/paymentsOverview" : { "get" : { "tags" : [ "salary/mandatoryDeduction/reconciliation" ], "summary" : "Get mandatory deduction payments overview from start of year to the current reconciliation term", "operationId" : "SalaryMandatoryDeductionReconciliationPaymentsOverview_getPayments", "parameters" : [ { "name" : "reconciliationId", "in" : "path", "description" : "The reconciliation id", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperAmeldingPeriodicPaymentOverview" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/salary/mandatoryDeduction/reconciliation/context" : { "post" : { "tags" : [ "salary/mandatoryDeduction/reconciliation" ], "summary" : "Create a mandatoryDeduction reconciliation context for a customer", "operationId" : "SalaryMandatoryDeductionReconciliationContext_postContext", "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/MandatoryDeductionContextRequest" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperMandatoryDeductionContext" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/salary/payrollTax/reconciliation/{reconciliationId}/overview" : { "get" : { "tags" : [ "salary/payrollTax/reconciliation" ], "summary" : "Salary payroll tax reconciliation overview", "operationId" : "SalaryPayrollTaxReconciliationOverview_getOverview", "parameters" : [ { "name" : "reconciliationId", "in" : "path", "description" : "The reconciliation id", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperPayrollTaxOverview" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/salary/payrollTax/reconciliation/{reconciliationId}/paymentsOverview" : { "get" : { "tags" : [ "salary/payrollTax/reconciliation" ], "summary" : "Get a payroll tax payments from start of year to the current reconciliation term", "operationId" : "SalaryPayrollTaxReconciliationPaymentsOverview_getPayments", "parameters" : [ { "name" : "reconciliationId", "in" : "path", "description" : "The reconciliation id", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperAmeldingPeriodicPaymentOverview" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/salary/payrollTax/reconciliation/context" : { "post" : { "tags" : [ "salary/payrollTax/reconciliation" ], "summary" : "Create a payroll tax reconciliation context for a customer", "operationId" : "SalaryPayrollTaxReconciliationContext_postContext", "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/PayrollTaxContextRequest" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperPayrollTaxContext" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/salary/taxDeduction/reconciliation/{reconciliationId}/overview" : { "get" : { "tags" : [ "salary/taxDeduction/reconciliation" ], "summary" : "Get salary tax deduction data for the reconciliation table", "operationId" : "SalaryTaxDeductionReconciliationOverview_getOverview", "parameters" : [ { "name" : "reconciliationId", "in" : "path", "description" : "The reconciliation id", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperTaxDeductionOverview" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/salary/taxDeduction/reconciliation/{reconciliationId}/paymentsOverview" : { "get" : { "tags" : [ "salary/taxDeduction/reconciliation" ], "summary" : "Get salary tax deduction payment overview from start of year to the current reconciliation term", "operationId" : "SalaryTaxDeductionReconciliationPaymentsOverview_getPayments", "parameters" : [ { "name" : "reconciliationId", "in" : "path", "description" : "The reconciliation id", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperAmeldingPeriodicPaymentOverview" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/salary/taxDeduction/reconciliation/{reconciliationId}/balanceAndOwedAmount" : { "get" : { "tags" : [ "salary/reconciliation/tax-deduction", "salary/taxDeduction/reconciliation" ], "summary" : "Get tax deduction details for a reconciliation", "operationId" : "SalaryTaxDeductionReconciliationBalanceAndOwedAmount_getTaxDeductionDetails", "parameters" : [ { "name" : "reconciliationId", "in" : "path", "description" : "The reconciliationId to fetch tax deduction balance for", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperSalaryTaxDeductionReconciliation" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/salary/taxDeduction/reconciliation/context" : { "post" : { "tags" : [ "salary/taxDeduction/reconciliation" ], "summary" : "Create a taxDeduction reconciliation context for a customer", "operationId" : "SalaryTaxDeductionReconciliationContext_postContext", "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/TaxDeductionContextRequest" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperTaxDeductionContext" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/asset/balanceAccountsSum" : { "get" : { "tags" : [ "asset" ], "summary" : "Get balanceAccountsSum.", "operationId" : "AssetBalanceAccountsSum_balanceAccountsSum", "parameters" : [ { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperNumber" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/asset/canDelete/{id}" : { "get" : { "tags" : [ "asset" ], "summary" : "Validate delete asset", "operationId" : "AssetCanDelete_canDelete", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperBoolean" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/asset/{id}" : { "get" : { "tags" : [ "asset" ], "summary" : "Get asset by ID.", "operationId" : "Asset_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperAsset" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "asset" ], "summary" : "Update asset.", "operationId" : "Asset_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/Asset" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperAsset" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "asset" ], "summary" : "Delete asset.", "operationId" : "Asset_delete", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/asset/list" : { "post" : { "tags" : [ "asset" ], "summary" : "Create several assets.", "operationId" : "AssetList_postList", "requestBody" : { "description" : "JSON representing a list of new objects to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/Asset" } } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseAsset" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/asset/deleteImport" : { "delete" : { "tags" : [ "asset" ], "summary" : "[BETA] Delete most recent assets import.", "operationId" : "AssetDeleteImport_deleteImport", "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/asset/deleteStartingBalance" : { "delete" : { "tags" : [ "asset" ], "summary" : "[BETA] Delete the asset starting balance.", "operationId" : "AssetDeleteStartingBalance_deleteStartingBalance", "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/asset/assetsExist" : { "get" : { "tags" : [ "asset" ], "summary" : "Get if AssetOverview details is empty.", "operationId" : "AssetAssetsExist_getAssetsExist", "parameters" : [ { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperBoolean" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/asset/{id}/postings" : { "get" : { "tags" : [ "asset" ], "summary" : "Get postings associated with asset", "operationId" : "AssetPostings_getPostings", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "dateFrom", "in" : "query", "description" : "yyyy-MM-dd. Defaults to today.", "schema" : { "type" : "string" } }, { "name" : "dateToExclusive", "in" : "query", "description" : "yyyy-MM-dd. Defaults to today.", "schema" : { "type" : "string" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "schema" : { "type" : "string", "default" : "*" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponsePosting" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/asset" : { "get" : { "tags" : [ "asset" ], "summary" : "Find assets corresponding with sent data.", "operationId" : "Asset_search", "parameters" : [ { "name" : "id", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "name", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "description", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseAsset" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "asset" ], "summary" : "Create one asset.", "operationId" : "Asset_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/Asset" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperAsset" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/asset/duplicate/{id}" : { "post" : { "tags" : [ "asset" ], "summary" : "Create copy of one asset", "operationId" : "AssetDuplicate_postDuplicate", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/asset/upload" : { "post" : { "tags" : [ "asset" ], "summary" : "[BETA] Upload Excel file with Assets in the standard Tripletex defined format.", "operationId" : "AssetUpload_upload", "parameters" : [ { "name" : "isPreview", "in" : "query", "description" : "Is the import a preview, or a real import.", "required" : true, "schema" : { "type" : "boolean" } }, { "name" : "startDate", "in" : "query", "description" : "Start date for asset registry. Should always be on the first day of the year.", "required" : true, "schema" : { "type" : "string" } } ], "requestBody" : { "content" : { "multipart/form-data" : { "schema" : { "required" : [ "file" ], "type" : "object", "properties" : { "file" : { "type" : "string", "description" : "The Excel file with assets", "format" : "binary" } } } } } }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseAssetAccountRow" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/attestation/:addApprover" : { "put" : { "tags" : [ "attestation" ], "operationId" : "AttestationAddApprover_addApprover", "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/NewApproverBody" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperAttestation" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/attestation/addApproverPermission" : { "get" : { "tags" : [ "attestation" ], "operationId" : "AttestationAddApproverPermission_addApproverPermission", "parameters" : [ { "name" : "attestationObjectId", "in" : "query", "description" : "Attestation object ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "attestationType", "in" : "query", "description" : "Attestation type", "required" : true, "schema" : { "type" : "string", "enum" : [ "SUPPLIER_INVOICE", "TRAVELS_AND_EXPENSES" ] } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperAddApproverPermission" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/attestation/companyModules" : { "get" : { "tags" : [ "attestation_company_modules" ], "summary" : "Get attestation company modules", "operationId" : "AttestationCompanyModules_get", "parameters" : [ { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperAttestationCompanyModules" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/balanceSheet" : { "get" : { "tags" : [ "balanceSheet" ], "summary" : "Get balance sheet (saldobalanse).", "operationId" : "BalanceSheet_search", "parameters" : [ { "name" : "dateFrom", "in" : "query", "description" : "Format is yyyy-MM-dd (from and incl.).", "required" : true, "schema" : { "type" : "string" } }, { "name" : "dateTo", "in" : "query", "description" : "Format is yyyy-MM-dd (to and excl.).", "required" : true, "schema" : { "type" : "string" } }, { "name" : "accountNumberFrom", "in" : "query", "description" : "From and including", "schema" : { "type" : "integer", "format" : "int32" } }, { "name" : "accountNumberTo", "in" : "query", "description" : "To and excluding", "schema" : { "type" : "integer", "format" : "int32" } }, { "name" : "customerId", "in" : "query", "description" : "Element ID for filtering", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "employeeId", "in" : "query", "description" : "Element ID for filtering", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "departmentId", "in" : "query", "description" : "Element ID for filtering", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "projectId", "in" : "query", "description" : "Element ID for filtering", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "includeSubProjects", "in" : "query", "description" : "Should sub projects of the given project be included", "schema" : { "type" : "boolean", "default" : false } }, { "name" : "includeActiveAccountsWithoutMovements", "in" : "query", "description" : "Should active accounts with no movements be included", "schema" : { "type" : "boolean", "default" : false } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseBalanceSheetAccount" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/bank/{id}" : { "get" : { "tags" : [ "bank" ], "summary" : "Get bank.", "operationId" : "Bank_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperBank" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/bank" : { "get" : { "tags" : [ "bank" ], "summary" : "Find bank corresponding with sent data.", "operationId" : "Bank_search", "parameters" : [ { "name" : "id", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "registerNumbers", "in" : "query", "description" : "Bank register number (four digits)", "schema" : { "type" : "string" } }, { "name" : "isBankReconciliationSupport", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "isAutoPaySupported", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "isZtlSupported", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "query", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseBank" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/platformAgnostic/bank/onboarding/fetchOdpCustomerId" : { "get" : { "tags" : [ "platformAgnostic/bank/onboarding" ], "operationId" : "PlatformAgnosticBankOnboardingFetchOdpCustomerId_fetchOdpCustomerId", "parameters" : [ { "name" : "companyId", "in" : "query", "description" : "Equals", "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperString" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/bank/reconciliation/{id}/:adjustment" : { "put" : { "tags" : [ "bank/reconciliation" ], "summary" : "Add an adjustment to reconciliation by ID.", "operationId" : "BankReconciliationAdjustment_adjustment", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Adjustments", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/BankReconciliationAdjustment" } } } } }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseBankReconciliationAdjustment" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/bank/reconciliation/closedWithUnmatchedTransactions" : { "get" : { "tags" : [ "bank/reconciliation" ], "summary" : "Get the last closed reconciliation with unmached transactions by account ID.", "operationId" : "BankReconciliationClosedWithUnmatchedTransactions_closedWithUnmatchedTransactions", "parameters" : [ { "name" : "accountId", "in" : "query", "description" : "Account ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "start", "in" : "query", "description" : "Format is yyyy-MM-dd", "schema" : { "type" : "string" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperBankReconciliation" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/bank/reconciliation/transactions/unmatched:csv" : { "put" : { "tags" : [ "bank/reconciliation" ], "summary" : "Get all unmatched transactions in csv format", "operationId" : "BankReconciliationTransactionsUnmatchedcsv_csvTransactions", "parameters" : [ { "name" : "reconciliationId", "in" : "query", "description" : "ID for reconciliation", "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "200" : { "description" : "CSV file containing unmatched transactions", "content" : { "text/csv; charset=utf-8" : { "schema" : { "type" : "string", "format" : "binary" } }, "text/csv; charset=iso-8859-1" : { "schema" : { "type" : "string", "format" : "binary" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/bank/reconciliation/{id}" : { "get" : { "tags" : [ "bank/reconciliation" ], "summary" : "Get bank reconciliation.", "operationId" : "BankReconciliation_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperBankReconciliation" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "bank/reconciliation" ], "summary" : "Update a bank reconciliation.", "operationId" : "BankReconciliation_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/BankReconciliation" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperBankReconciliation" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "bank/reconciliation" ], "summary" : "Delete bank reconciliation by ID.", "operationId" : "BankReconciliation_delete", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/bank/reconciliation/>last" : { "get" : { "tags" : [ "bank/reconciliation" ], "summary" : "Get the last created reconciliation by account ID.", "operationId" : "BankReconciliationLast_last", "parameters" : [ { "name" : "accountId", "in" : "query", "description" : "Account ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperBankReconciliation" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/bank/reconciliation/>lastClosed" : { "get" : { "tags" : [ "bank/reconciliation" ], "summary" : "Get last closed reconciliation by account ID.", "operationId" : "BankReconciliationLastClosed_lastClosed", "parameters" : [ { "name" : "accountId", "in" : "query", "description" : "Account ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "after", "in" : "query", "description" : "Format is yyyy-MM-dd", "schema" : { "type" : "string" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperBankReconciliation" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/bank/reconciliation" : { "get" : { "tags" : [ "bank/reconciliation" ], "summary" : "Find bank reconciliation corresponding with sent data.", "operationId" : "BankReconciliation_search", "parameters" : [ { "name" : "id", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "accountingPeriodId", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "accountId", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseBankReconciliation" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "bank/reconciliation" ], "summary" : "Post a bank reconciliation.", "operationId" : "BankReconciliation_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/BankReconciliation" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperBankReconciliation" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/bank/reconciliation/match/count" : { "get" : { "tags" : [ "bank/reconciliation/match" ], "summary" : "Get the total number of matches", "operationId" : "BankReconciliationMatchCount_count", "parameters" : [ { "name" : "bankReconciliationId", "in" : "query", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperInteger" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/bank/reconciliation/match/{id}" : { "get" : { "tags" : [ "bank/reconciliation/match" ], "summary" : "Get bank reconciliation match by ID.", "operationId" : "BankReconciliationMatch_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperBankReconciliationMatch" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "bank/reconciliation/match" ], "summary" : "Update a bank reconciliation match by ID.", "operationId" : "BankReconciliationMatch_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/BankReconciliationMatch" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperBankReconciliationMatch" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "bank/reconciliation/match" ], "summary" : "Delete a bank reconciliation match by ID.", "operationId" : "BankReconciliationMatch_delete", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/bank/reconciliation/match" : { "get" : { "tags" : [ "bank/reconciliation/match" ], "summary" : "Find bank reconciliation match corresponding with sent data.", "operationId" : "BankReconciliationMatch_search", "parameters" : [ { "name" : "id", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "bankReconciliationId", "in" : "query", "description" : "List of bank reconciliation IDs", "schema" : { "type" : "string" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "schema" : { "type" : "integer", "format" : "int32", "default" : 5000 } }, { "name" : "approved", "in" : "query", "description" : "Approved or unapproved matches", "schema" : { "type" : "boolean" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseBankReconciliationMatch" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "bank/reconciliation/match" ], "summary" : "Create a bank reconciliation match.", "operationId" : "BankReconciliationMatch_post", "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/BankReconciliationMatch" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperBankReconciliationMatch" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/bank/reconciliation/match/query" : { "get" : { "tags" : [ "bank/reconciliation/match" ], "summary" : "[INTERNAL] Wildcard search.", "operationId" : "BankReconciliationMatchQuery_query", "parameters" : [ { "name" : "bankReconciliationId", "in" : "query", "description" : "The bank reconciliation id", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "approved", "in" : "query", "description" : "Approved or unapproved matches", "schema" : { "type" : "boolean" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "schema" : { "type" : "integer", "format" : "int32" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseBankReconciliationMatch" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/bank/reconciliation/match/:suggest" : { "put" : { "tags" : [ "bank/reconciliation/match" ], "summary" : "Suggest matches for a bank reconciliation by ID.", "operationId" : "BankReconciliationMatchSuggest_suggest", "parameters" : [ { "name" : "bankReconciliationId", "in" : "query", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseBankReconciliationMatch" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/bank/reconciliation/matches/counter" : { "get" : { "tags" : [ "bank/reconciliation/match", "bank/reconciliation/matches/counter" ], "summary" : "[BETA] Get number of matches since last page access.", "operationId" : "BankReconciliationMatchesCounter_get", "parameters" : [ { "name" : "bankReconciliationId", "in" : "query", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperBankReconciliationMatchesCounter" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "bank/reconciliation/match", "bank/reconciliation/matches/counter" ], "summary" : "[BETA] Reset the number of matches after the page has been accessed.", "operationId" : "BankReconciliationMatchesCounter_post", "parameters" : [ { "name" : "bankReconciliationId", "in" : "query", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/bank/reconciliation/paymentType/{id}" : { "get" : { "tags" : [ "bank/reconciliation/paymentType" ], "summary" : "Get payment type by ID.", "operationId" : "BankReconciliationPaymentType_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperBankReconciliationPaymentType" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/bank/reconciliation/paymentType" : { "get" : { "tags" : [ "bank/reconciliation/paymentType" ], "summary" : "Find payment type corresponding with sent data.", "operationId" : "BankReconciliationPaymentType_search", "parameters" : [ { "name" : "id", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "description", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseBankReconciliationPaymentType" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/bank/reconciliation/settings" : { "get" : { "tags" : [ "bank/reconciliation/settings" ], "summary" : "Get bank reconciliation settings.", "operationId" : "BankReconciliationSettings_get", "parameters" : [ { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperBankReconciliationSettings" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "bank/reconciliation/settings" ], "summary" : "Post bank reconciliation settings.", "operationId" : "BankReconciliationSettings_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/BankReconciliationSettings" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperBankReconciliationSettings" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/bank/reconciliation/settings/{id}" : { "put" : { "tags" : [ "bank/reconciliation/settings" ], "summary" : "Update bank reconciliation settings.", "operationId" : "BankReconciliationSettings_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/BankReconciliationSettings" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperBankReconciliationSettings" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/bank/statement/{id}" : { "get" : { "tags" : [ "bank/statement" ], "summary" : "Get bank statement.", "operationId" : "BankStatement_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperBankStatement" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "bank/statement" ], "summary" : "Delete bank statement by ID.", "operationId" : "BankStatement_delete", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/bank/statement/import" : { "post" : { "tags" : [ "bank/statement" ], "summary" : "Upload bank statement file.", "operationId" : "BankStatementImport_importBankStatement", "parameters" : [ { "name" : "bankId", "in" : "query", "description" : "Bank ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "accountId", "in" : "query", "description" : "Account ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fromDate", "in" : "query", "description" : "Format is yyyy-MM-dd (from and incl.).", "required" : true, "schema" : { "type" : "string" } }, { "name" : "toDate", "in" : "query", "description" : "Format is yyyy-MM-dd (to and excl.).", "required" : true, "schema" : { "type" : "string" } }, { "name" : "externalId", "in" : "query", "description" : "External ID", "schema" : { "type" : "string" } }, { "name" : "fileFormat", "in" : "query", "description" : "File format", "required" : true, "schema" : { "type" : "string", "enum" : [ "DNB_CSV", "EIKA_TELEPAY", "SPAREBANK1_TELEPAY", "VISMA_ACCOUNT_STATEMENT", "HANDELSBANKEN_TELEPAY", "SPAREBANKEN_VEST_TELEPAY", "NORDEA_CSV", "TRANSFERWISE", "SPAREBANKEN_SOR_TELEPAY", "SPAREBANKEN_OST_TELEPAY", "DANSKE_BANK_CSV", "CULTURA_BANK_TELEPAY", "SBANKEN_PRIVAT_CSV", "HAUGESUND_SPAREBANK_CSV", "VISMA_ACCOUNT_STATEMENT_PSD2", "SBANKEN_BEDRIFT_CSV", "LANDKREDITT_TELEPAY", "ZTL", "VISMA_ACCOUNT_STATEMENT_PLATFORM_AGNOSTIC", "VISMA_ACCOUNT_STATEMENT_PDS2_PLATFORM_AGNOSTIC" ] } } ], "requestBody" : { "content" : { "multipart/form-data" : { "schema" : { "required" : [ "file" ], "type" : "object", "properties" : { "file" : { "type" : "string", "description" : "The bank statement file", "format" : "binary" } } } } } }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperBankStatement" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/bank/statement" : { "get" : { "tags" : [ "bank/statement" ], "summary" : "Find bank statement corresponding with sent data.", "operationId" : "BankStatement_search", "parameters" : [ { "name" : "id", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "accountId", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "fileFormats", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseBankStatement" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/bank/statement/transaction/{id}" : { "get" : { "tags" : [ "bank/statement/transaction" ], "summary" : "Get bank transaction by ID.", "operationId" : "BankStatementTransaction_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperBankTransaction" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/bank/statement/transaction/{id}/details" : { "get" : { "tags" : [ "bank/statement/transaction" ], "summary" : "Get additional details about transaction by ID.", "operationId" : "BankStatementTransactionDetails_getDetails", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperObject" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/bank/statement/transaction" : { "get" : { "tags" : [ "bank/statement/transaction" ], "summary" : "Find bank transaction corresponding with sent data.", "operationId" : "BankStatementTransaction_search", "parameters" : [ { "name" : "bankStatementId", "in" : "query", "description" : "Bank statement ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseBankTransaction" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/token/consumer/byToken" : { "get" : { "tags" : [ "token/consumer" ], "summary" : "Get consumer token by token string.", "operationId" : "TokenConsumerByToken_getByToken", "parameters" : [ { "name" : "token", "in" : "query", "description" : "Element ID", "required" : true, "schema" : { "type" : "string" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperConsumerToken" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/token/employee/:create" : { "put" : { "tags" : [ "token/employee" ], "summary" : "Create an employee token. Only selected consumers are allowed", "operationId" : "TokenEmployeeCreate_create", "parameters" : [ { "name" : "tokenName", "in" : "query", "description" : "A user defined name for the new token", "required" : true, "schema" : { "type" : "string" } }, { "name" : "consumerName", "in" : "query", "description" : "The name of the consumer", "required" : true, "schema" : { "type" : "string" } }, { "name" : "employeeId", "in" : "query", "description" : "The id of the employee", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "companyOwned", "in" : "query", "description" : "Is the key company owned", "required" : true, "schema" : { "type" : "boolean" } }, { "name" : "expirationDate", "in" : "query", "description" : "Expiration date for the employeeToken", "required" : true, "schema" : { "type" : "string" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperEmployeeToken" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/token/session/:create" : { "put" : { "tags" : [ "token/session" ], "summary" : "Create session token.", "description" : "Legacy endpoint using query parameters. Please use POST :create to create session tokens.", "operationId" : "TokenSessionCreate_create", "parameters" : [ { "name" : "consumerToken", "in" : "query", "description" : "Token of the API consumer", "required" : true, "schema" : { "type" : "string" } }, { "name" : "employeeToken", "in" : "query", "description" : "The employee's token", "required" : true, "schema" : { "type" : "string" } }, { "name" : "expirationDate", "in" : "query", "description" : "Expiration date for the combined token", "required" : true, "schema" : { "type" : "string" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperSessionToken" } } } } }, "deprecated" : true }, "post" : { "tags" : [ "token/session" ], "summary" : "Create session token.", "description" : "Preferred endpoint using request body instead of query parameters for better security.", "operationId" : "TokenSessionCreate_createWithBody", "requestBody" : { "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/PostSessionTokenBody" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperSessionToken" } } } } } } }, "/token/session/{token}" : { "delete" : { "tags" : [ "token/session" ], "summary" : "Delete session token.", "operationId" : "TokenSession_delete", "parameters" : [ { "name" : "token", "in" : "path", "description" : "The login token string to delete", "required" : true, "schema" : { "type" : "string" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/token/session/>whoAmI" : { "get" : { "tags" : [ "token/session" ], "summary" : "Find information about the current user.", "operationId" : "TokenSessionWhoAmI_whoAmI", "parameters" : [ { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperLoggedInUserInfo" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/company/>withLoginAccess" : { "get" : { "tags" : [ "company" ], "summary" : "Returns client customers (with accountant/auditor relation) where the current user has login access (proxy login).", "operationId" : "CompanyWithLoginAccess_getWithLoginAccess", "parameters" : [ { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseClient" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/company/{id}" : { "get" : { "tags" : [ "company" ], "summary" : "Find company by ID.", "operationId" : "Company_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperCompany" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/company/divisions" : { "get" : { "tags" : [ "company" ], "summary" : "[DEPRECATED] Find divisions.", "operationId" : "CompanyDivisions_getDivisions", "parameters" : [ { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseCompany" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/company" : { "put" : { "tags" : [ "company" ], "summary" : "Update company information.", "operationId" : "Company_put", "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/Company" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperCompany" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/company/settings/altinn" : { "get" : { "tags" : [ "company/altinn", "company/settings/altinn" ], "summary" : "Find Altinn id for login in company.", "operationId" : "CompanySettingsAltinn_search", "parameters" : [ { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperAltinnCompanyModule" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "company/altinn", "company/settings/altinn" ], "summary" : "Update AltInn id and password.", "operationId" : "CompanySettingsAltinn_put", "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/AltinnCompanyModule" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperAltinnCompanyModule" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/company/salesmodules" : { "get" : { "tags" : [ "company/salesmodules" ], "summary" : "[BETA] Get active sales modules.", "operationId" : "CompanySalesmodules_get", "parameters" : [ { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseSalesModule" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "company/salesmodules" ], "summary" : "[BETA] Add (activate) a new sales module.", "operationId" : "CompanySalesmodules_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/SalesModule" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperSalesModule" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/contact/{id}" : { "get" : { "tags" : [ "contact" ], "summary" : "Get contact by ID.", "operationId" : "Contact_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperContact" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "contact" ], "summary" : "Update contact.", "operationId" : "Contact_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/Contact" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperContact" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/contact/list" : { "post" : { "tags" : [ "contact" ], "summary" : "Create multiple contacts.", "operationId" : "ContactList_postList", "requestBody" : { "description" : "JSON representing a list of new objects to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/Contact" } } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseContact" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "contact" ], "summary" : "[BETA] Delete multiple contacts.", "operationId" : "ContactList_deleteByIds", "parameters" : [ { "name" : "ids", "in" : "query", "description" : "ID of the elements", "required" : true, "schema" : { "type" : "string" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/contact" : { "get" : { "tags" : [ "contact" ], "summary" : "Find contacts corresponding with sent data.", "operationId" : "Contact_search", "parameters" : [ { "name" : "id", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "firstName", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "lastName", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "email", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "customerId", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "departmentId", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseContact" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "contact" ], "summary" : "Create contact.", "operationId" : "Contact_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/Contact" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperContact" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/country/{id}" : { "get" : { "tags" : [ "country" ], "summary" : "Get country by ID.", "operationId" : "Country_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperCountry" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/country" : { "get" : { "tags" : [ "country" ], "summary" : "Find countries corresponding with sent data.", "operationId" : "Country_search", "parameters" : [ { "name" : "id", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "code", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "isDisabled", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "supportedInZtl", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseCountry" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/currency/{id}" : { "get" : { "tags" : [ "currency" ], "summary" : "Get currency by ID.", "operationId" : "Currency_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperCurrency" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/currency" : { "get" : { "tags" : [ "currency" ], "summary" : "Find currencies corresponding with sent data.", "operationId" : "Currency_search", "parameters" : [ { "name" : "id", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "code", "in" : "query", "description" : "Currency codes", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseCurrency" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/currency/{fromCurrencyID}/{toCurrencyID}/exchangeRate" : { "get" : { "tags" : [ "currency" ], "summary" : "Returns the amount in the specified currency, where the input amount is in fromCurrency, using the newest exchange rate available for the given date", "operationId" : "CurrencyExchangeRate_convertCurrencyAmount", "parameters" : [ { "name" : "fromCurrencyID", "in" : "path", "description" : "From Currency ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "toCurrencyID", "in" : "path", "description" : "To Currency ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "amount", "in" : "query", "description" : "Amount to be exchanged", "required" : true, "schema" : { "type" : "number" } }, { "name" : "date", "in" : "query", "description" : "Voucher date", "required" : true, "schema" : { "type" : "string" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperNumber" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/currency/{fromCurrencyID}/exchangeRate" : { "get" : { "tags" : [ "currency" ], "summary" : "Returns the amount in the company currency, where the input amount is in fromCurrency, using the newest exchange rate available for the given date", "operationId" : "CurrencyExchangeRate_getAmountCurrency", "parameters" : [ { "name" : "fromCurrencyID", "in" : "path", "description" : "From Currency ID", "required" : true, "schema" : { "type" : "integer", "format" : "int32" } }, { "name" : "amount", "in" : "query", "description" : "Amount to be exchanged", "required" : true, "schema" : { "type" : "number" } }, { "name" : "date", "in" : "query", "description" : "Voucher date", "required" : true, "schema" : { "type" : "string" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperNumber" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/currency/{id}/rate" : { "get" : { "tags" : [ "currency" ], "summary" : "Find currency exchange rate corresponding with sent data.", "operationId" : "CurrencyRate_getRate", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Currency id", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "date", "in" : "query", "description" : "Format is yyyy-MM-dd", "required" : true, "schema" : { "type" : "string" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperCurrencyExchangeRate" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/customer/{id}" : { "get" : { "tags" : [ "customer" ], "summary" : "Get customer by ID.", "operationId" : "Customer_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperCustomer" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "customer" ], "summary" : "Update customer. ", "operationId" : "Customer_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/Customer" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperCustomer" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "customer" ], "summary" : "[BETA] Delete customer by ID", "operationId" : "Customer_delete", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/customer" : { "get" : { "tags" : [ "customer" ], "summary" : "Find customers corresponding with sent data.", "operationId" : "Customer_search", "parameters" : [ { "name" : "id", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "customerAccountNumber", "in" : "query", "description" : "List of customer numbers", "schema" : { "type" : "string" } }, { "name" : "organizationNumber", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "email", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "invoiceEmail", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "customerName", "in" : "query", "description" : "Name", "schema" : { "type" : "string" } }, { "name" : "phoneNumberMobile", "in" : "query", "description" : "Phone number mobile", "schema" : { "type" : "string" } }, { "name" : "isInactive", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean", "default" : false } }, { "name" : "accountManagerId", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "changedSince", "in" : "query", "description" : "Only return elements that have changed since this date and time", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseCustomer" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "customer" ], "summary" : "Create customer. Related customer addresses may also be created.", "operationId" : "Customer_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/Customer" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperCustomer" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/customer/list" : { "put" : { "tags" : [ "customer" ], "summary" : "[BETA] Update multiple customers. Addresses can also be updated.", "operationId" : "CustomerList_putList", "requestBody" : { "description" : "JSON representing updates to objects. Should have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/Customer" } } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseCustomer" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "customer" ], "summary" : "[BETA] Create multiple customers. Related supplier addresses may also be created.", "operationId" : "CustomerList_postList", "requestBody" : { "description" : "JSON representing a list of new objects to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/Customer" } } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseCustomer" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/customer/category/{id}" : { "get" : { "tags" : [ "customer/category" ], "summary" : "Find customer/supplier category by ID.", "operationId" : "CustomerCategory_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperCustomerCategory" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "customer/category" ], "summary" : "Update customer/supplier category.", "operationId" : "CustomerCategory_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/CustomerCategory" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperCustomerCategory" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/customer/category" : { "get" : { "tags" : [ "customer/category" ], "summary" : "Find customer/supplier categories corresponding with sent data.", "operationId" : "CustomerCategory_search", "parameters" : [ { "name" : "id", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "name", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "number", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "description", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "type", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseCustomerCategory" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "customer/category" ], "summary" : "Add new customer/supplier category.", "operationId" : "CustomerCategory_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/CustomerCategory" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperCustomerCategory" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/internal/debtCollector/deactivate" : { "delete" : { "tags" : [ "debtCollector/internal", "internal/debtCollector" ], "summary" : "Deactivate debt collector relation", "operationId" : "InternalDebtCollectorDeactivate_deactivate", "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/internal/debtCollector" : { "get" : { "tags" : [ "debtCollector/internal", "internal/debtCollector" ], "summary" : "Get last select debt collector", "operationId" : "InternalDebtCollector_get", "parameters" : [ { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperDebtCollector" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/department/{id}" : { "get" : { "tags" : [ "department" ], "summary" : "Get department by ID.", "operationId" : "Department_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperDepartment" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "department" ], "summary" : "Update department.", "operationId" : "Department_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/Department" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperDepartment" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "department" ], "summary" : "Delete department by ID", "operationId" : "Department_delete", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/department" : { "get" : { "tags" : [ "department" ], "summary" : "Find department corresponding with sent data.", "operationId" : "Department_search", "parameters" : [ { "name" : "id", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "name", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "departmentNumber", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "departmentManagerId", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "isInactive", "in" : "query", "description" : "true - return only inactive departments; false - return only active departments; unspecified - return both types", "schema" : { "type" : "boolean" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseDepartment" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "department" ], "summary" : "Add new department.", "operationId" : "Department_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/Department" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperDepartment" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/department/list" : { "put" : { "tags" : [ "department" ], "summary" : "Update multiple departments.", "operationId" : "DepartmentList_putList", "requestBody" : { "description" : "JSON representing updates to objects. Should have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/Department" } } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseDepartment" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "department" ], "summary" : "Register new departments.", "operationId" : "DepartmentList_postList", "requestBody" : { "description" : "JSON representing a list of new objects to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/Department" } } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseDepartment" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/department/query" : { "get" : { "tags" : [ "department" ], "summary" : "Wildcard search.", "operationId" : "DepartmentQuery_query", "parameters" : [ { "name" : "id", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "query", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "schema" : { "type" : "integer", "format" : "int32", "default" : 25 } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "schema" : { "type" : "string", "default" : "id, name" } }, { "name" : "isInactive", "in" : "query", "description" : "true - return only inactive departments; false - return only active departments; unspecified - return both types", "schema" : { "type" : "boolean" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseDepartment" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/division" : { "get" : { "tags" : [ "division" ], "summary" : "Get divisions.", "operationId" : "Division_search", "parameters" : [ { "name" : "query", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseDivision" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "division" ], "summary" : "Create division.", "operationId" : "Division_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/Division" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperDivision" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/division/list" : { "put" : { "tags" : [ "division" ], "summary" : "Update multiple divisions.", "operationId" : "DivisionList_putList", "requestBody" : { "description" : "JSON representing updates to objects. Should have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/Division" } } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseDivision" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "division" ], "summary" : "Create divisions.", "operationId" : "DivisionList_postList", "requestBody" : { "description" : "JSON representing a list of new objects to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/Division" } } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseDivision" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/division/{id}" : { "put" : { "tags" : [ "division" ], "summary" : "Update division information.", "operationId" : "Division_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/Division" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperDivision" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/document/{id}/content" : { "get" : { "tags" : [ "document" ], "summary" : "[BETA] Get content of document given by ID.", "operationId" : "DocumentContent_downloadContent", "parameters" : [ { "name" : "id", "in" : "path", "description" : "ID of document to download content from.", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "download", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean", "default" : true } } ], "responses" : { "200" : { "description" : "Successfully fetched the document", "content" : { "application/octet-stream" : { "schema" : { "type" : "string", "format" : "byte" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/document/{id}" : { "get" : { "tags" : [ "document" ], "summary" : "[BETA] Get document by ID.", "operationId" : "Document_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperDocument" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/documentArchive/account/{id}" : { "get" : { "tags" : [ "documentArchive" ], "summary" : "[BETA] Find documents archived associated with account object type.", "operationId" : "DocumentArchiveAccount_getAccount", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "periodDateFrom", "in" : "query", "description" : "From and including", "schema" : { "type" : "string" } }, { "name" : "periodDateTo", "in" : "query", "description" : "To and excluding", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseDocumentArchive" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "documentArchive" ], "summary" : "[BETA] Upload file to Account Document Archive.", "operationId" : "DocumentArchiveAccount_accountPost", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "content" : { "multipart/form-data" : { "schema" : { "required" : [ "file" ], "type" : "object", "properties" : { "file" : { "type" : "string", "description" : "The file", "format" : "binary" } } } } } }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperDocumentArchive" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/documentArchive/customer/{id}" : { "get" : { "tags" : [ "documentArchive" ], "summary" : "[BETA] Find documents archived associated with customer object type.", "operationId" : "DocumentArchiveCustomer_getCustomer", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "periodDateFrom", "in" : "query", "description" : "From and including", "schema" : { "type" : "string" } }, { "name" : "periodDateTo", "in" : "query", "description" : "To and excluding", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseDocumentArchive" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "documentArchive" ], "summary" : "[BETA] Upload file to Customer Document Archive.", "operationId" : "DocumentArchiveCustomer_customerPost", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "content" : { "multipart/form-data" : { "schema" : { "required" : [ "file" ], "type" : "object", "properties" : { "file" : { "type" : "string", "description" : "The file", "format" : "binary" } } } } } }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperDocumentArchive" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/documentArchive/{id}" : { "put" : { "tags" : [ "documentArchive" ], "summary" : "[BETA] Update document archive.", "operationId" : "DocumentArchive_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/DocumentArchive" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperDocumentArchive" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "documentArchive" ], "summary" : "[BETA] Delete document archive.", "operationId" : "DocumentArchive_delete", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/documentArchive/dynamicControlForm/{id}" : { "get" : { "tags" : [ "documentArchive" ], "summary" : "[BETA] Find documents archived associated with control form object type.", "operationId" : "DocumentArchiveDynamicControlForm_getDynamicControlForm", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "periodDateFrom", "in" : "query", "description" : "From and including", "schema" : { "type" : "string" } }, { "name" : "periodDateTo", "in" : "query", "description" : "To and excluding", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseDocumentArchive" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "documentArchive" ], "summary" : "[BETA] Upload file to Control Form Document Archive.", "operationId" : "DocumentArchiveDynamicControlForm_dynamicControlFormPost", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "content" : { "multipart/form-data" : { "schema" : { "required" : [ "file" ], "type" : "object", "properties" : { "file" : { "type" : "string", "description" : "The file", "format" : "binary" } } } } } }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperDocumentArchive" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/documentArchive/employee/{id}" : { "get" : { "tags" : [ "documentArchive" ], "summary" : "[BETA] Find documents archived associated with employee object type.", "operationId" : "DocumentArchiveEmployee_getEmployee", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "periodDateFrom", "in" : "query", "description" : "From and including", "schema" : { "type" : "string" } }, { "name" : "periodDateTo", "in" : "query", "description" : "To and excluding", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseDocumentArchive" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "documentArchive" ], "summary" : "[BETA] Upload file to Employee Document Archive.", "operationId" : "DocumentArchiveEmployee_employeePost", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "content" : { "multipart/form-data" : { "schema" : { "required" : [ "file" ], "type" : "object", "properties" : { "file" : { "type" : "string", "description" : "The file", "format" : "binary" } } } } } }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperDocumentArchive" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/documentArchive/product/{id}" : { "get" : { "tags" : [ "documentArchive" ], "summary" : "[BETA] Find documents archived associated with product object type.", "operationId" : "DocumentArchiveProduct_getProduct", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "periodDateFrom", "in" : "query", "description" : "From and including", "schema" : { "type" : "string" } }, { "name" : "periodDateTo", "in" : "query", "description" : "To and excluding", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseDocumentArchive" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "documentArchive" ], "summary" : "[BETA] Upload file to Product Document Archive.", "operationId" : "DocumentArchiveProduct_productPost", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "content" : { "multipart/form-data" : { "schema" : { "required" : [ "file" ], "type" : "object", "properties" : { "file" : { "type" : "string", "description" : "The file", "format" : "binary" } } } } } }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperDocumentArchive" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/documentArchive/project/{id}" : { "get" : { "tags" : [ "documentArchive" ], "summary" : "[BETA] Find documents archived associated with project object type.", "operationId" : "DocumentArchiveProject_getProject", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "periodDateFrom", "in" : "query", "description" : "From and including", "schema" : { "type" : "string" } }, { "name" : "periodDateTo", "in" : "query", "description" : "To and excluding", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseDocumentArchive" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "documentArchive" ], "summary" : "[BETA] Upload file to Project Document Archive.", "operationId" : "DocumentArchiveProject_projectPost", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "content" : { "multipart/form-data" : { "schema" : { "required" : [ "file" ], "type" : "object", "properties" : { "file" : { "type" : "string", "description" : "The file", "format" : "binary" } } } } } }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperDocumentArchive" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/documentArchive/supplier/{id}" : { "get" : { "tags" : [ "documentArchive" ], "summary" : "[BETA] Find documents archived associated with supplier object type.", "operationId" : "DocumentArchiveSupplier_getSupplier", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "periodDateFrom", "in" : "query", "description" : "From and including", "schema" : { "type" : "string" } }, { "name" : "periodDateTo", "in" : "query", "description" : "To and excluding", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseDocumentArchive" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "documentArchive" ], "summary" : "[BETA] Upload file to Supplier Document Archive.", "operationId" : "DocumentArchiveSupplier_supplierPost", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "content" : { "multipart/form-data" : { "schema" : { "required" : [ "file" ], "type" : "object", "properties" : { "file" : { "type" : "string", "description" : "The file", "format" : "binary" } } } } } }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperDocumentArchive" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/documentArchive/reception" : { "post" : { "tags" : [ "documentArchive" ], "summary" : "[BETA] Upload a file to the document archive reception. Send as multipart form.", "operationId" : "DocumentArchiveReception_receptionPost", "requestBody" : { "content" : { "multipart/form-data" : { "schema" : { "required" : [ "file" ], "type" : "object", "properties" : { "file" : { "type" : "string", "description" : "The file", "format" : "binary" } } } } } }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperDocumentArchive" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/employee/{id}" : { "get" : { "tags" : [ "employee" ], "summary" : "Get employee by ID.", "operationId" : "Employee_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperEmployee" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "employee" ], "summary" : "Update employee.", "operationId" : "Employee_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/Employee" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperEmployee" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/employee/list" : { "post" : { "tags" : [ "employee" ], "summary" : "Create several employees.", "operationId" : "EmployeeList_postList", "requestBody" : { "description" : "JSON representing a list of new objects to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/Employee" } } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseEmployee" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/employee" : { "get" : { "tags" : [ "employee" ], "summary" : "Find employees corresponding with sent data.", "operationId" : "Employee_search", "parameters" : [ { "name" : "id", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "firstName", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "lastName", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "employeeNumber", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "email", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "allowInformationRegistration", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "includeContacts", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean", "default" : false } }, { "name" : "departmentId", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "onlyProjectManagers", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "onlyContacts", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean", "default" : false } }, { "name" : "assignableProjectManagers", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "periodStart", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "periodEnd", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "hasSystemAccess", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "onlyEmployeeTokens", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseEmployee" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "employee" ], "summary" : "Create one employee.", "operationId" : "Employee_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/Employee" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperEmployee" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/employee/searchForEmployeesAndContacts" : { "get" : { "tags" : [ "employee" ], "summary" : "Get employees and contacts by parameters. Include contacts by default.", "operationId" : "EmployeeSearchForEmployeesAndContacts_searchForEmployeesAndContacts", "parameters" : [ { "name" : "id", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "firstName", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "lastName", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "email", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "includeContacts", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean", "default" : true } }, { "name" : "isInactive", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "hasSystemAccess", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "excludeReadOnly", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "schema" : { "type" : "string", "default" : "id, employeeNumber, firstName, lastName, email, pictureId" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseEmployee" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/employee/category/{id}" : { "get" : { "tags" : [ "employee/category" ], "summary" : "Get employee category by ID.", "operationId" : "EmployeeCategory_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperEmployeeCategory" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "employee/category" ], "summary" : "Update employee category information.", "operationId" : "EmployeeCategory_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/EmployeeCategory" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperEmployeeCategory" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "employee/category" ], "summary" : "Delete employee category by ID", "operationId" : "EmployeeCategory_delete", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/employee/category/list" : { "put" : { "tags" : [ "employee/category" ], "summary" : "Update multiple employee categories.", "operationId" : "EmployeeCategoryList_putList", "requestBody" : { "description" : "JSON representing updates to objects. Should have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/EmployeeCategory" } } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseEmployeeCategory" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "employee/category" ], "summary" : "Create new employee categories.", "operationId" : "EmployeeCategoryList_postList", "requestBody" : { "description" : "JSON representing a list of new objects to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/EmployeeCategory" } } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseEmployeeCategory" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "employee/category" ], "summary" : "Delete multiple employee categories", "operationId" : "EmployeeCategoryList_deleteByIds", "parameters" : [ { "name" : "ids", "in" : "query", "description" : "ID of the elements", "required" : true, "schema" : { "type" : "string" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/employee/category" : { "get" : { "tags" : [ "employee/category" ], "summary" : "Find employee category corresponding with sent data.", "operationId" : "EmployeeCategory_search", "parameters" : [ { "name" : "id", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "name", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "number", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "query", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseEmployeeCategory" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "employee/category" ], "summary" : "Create a new employee category.", "operationId" : "EmployeeCategory_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/EmployeeCategory" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperEmployeeCategory" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/employee/employment/{id}" : { "get" : { "tags" : [ "employee/employment" ], "summary" : "Find employment by ID.", "operationId" : "EmployeeEmployment_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperEmployment" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "employee/employment" ], "summary" : "Update employemnt. ", "operationId" : "EmployeeEmployment_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/Employment" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperEmployment" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/employee/employment" : { "get" : { "tags" : [ "employee/employment" ], "summary" : "Find all employments for employee.", "operationId" : "EmployeeEmployment_search", "parameters" : [ { "name" : "employeeId", "in" : "query", "description" : "Element ID", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseEmployment" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "employee/employment" ], "summary" : "Create employment.", "operationId" : "EmployeeEmployment_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/Employment" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperEmployment" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/employee/employment/details/{id}" : { "get" : { "tags" : [ "employee/employment/details" ], "summary" : "Find employment details by ID.", "operationId" : "EmployeeEmploymentDetails_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperEmploymentDetails" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "employee/employment/details" ], "summary" : "Update employment details. ", "operationId" : "EmployeeEmploymentDetails_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/EmploymentDetails" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperEmploymentDetails" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/employee/employment/details" : { "get" : { "tags" : [ "employee/employment/details" ], "summary" : "Find all employmentdetails for employment.", "operationId" : "EmployeeEmploymentDetails_search", "parameters" : [ { "name" : "employmentId", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseEmploymentDetails" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "employee/employment/details" ], "summary" : "Create employment details.", "operationId" : "EmployeeEmploymentDetails_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/EmploymentDetails" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperEmploymentDetails" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/employee/employment/employmentType/employmentEndReasonType" : { "get" : { "tags" : [ "employee/employment/employmentType" ], "summary" : "Find all employment end reason type IDs.", "operationId" : "EmployeeEmploymentEmploymentTypeEmploymentEndReasonType_getEmploymentEndReasonType", "parameters" : [ { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseEmploymentType" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/employee/employment/employmentType/employmentFormType" : { "get" : { "tags" : [ "employee/employment/employmentType" ], "summary" : "Find all employment form type IDs.", "operationId" : "EmployeeEmploymentEmploymentTypeEmploymentFormType_getEmploymentFormType", "parameters" : [ { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseEmploymentType" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/employee/employment/employmentType/maritimeEmploymentType" : { "get" : { "tags" : [ "employee/employment/employmentType" ], "summary" : "Find all maritime employment type IDs.", "operationId" : "EmployeeEmploymentEmploymentTypeMaritimeEmploymentType_getMaritimeEmploymentType", "parameters" : [ { "name" : "type", "in" : "query", "description" : "maritimeEmploymentType", "required" : true, "schema" : { "type" : "string", "enum" : [ "SHIP_REGISTER", "SHIP_TYPE", "TRADE_AREA" ] } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseEmploymentType" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/employee/employment/employmentType/salaryType" : { "get" : { "tags" : [ "employee/employment/employmentType" ], "summary" : "Find all salary type IDs.", "operationId" : "EmployeeEmploymentEmploymentTypeSalaryType_getSalaryType", "parameters" : [ { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseEmploymentType" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/employee/employment/employmentType/scheduleType" : { "get" : { "tags" : [ "employee/employment/employmentType" ], "summary" : "Find all schedule type IDs.", "operationId" : "EmployeeEmploymentEmploymentTypeScheduleType_getScheduleType", "parameters" : [ { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseEmploymentType" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/employee/employment/employmentType" : { "get" : { "tags" : [ "employee/employment/employmentType" ], "summary" : "Find all employment type IDs.", "operationId" : "EmployeeEmploymentEmploymentType_search", "parameters" : [ { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseEmploymentType" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/employee/employment/leaveOfAbsence/{id}" : { "get" : { "tags" : [ "employee/employment/leaveOfAbsence" ], "summary" : "Find leave of absence by ID.", "operationId" : "EmployeeEmploymentLeaveOfAbsence_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperLeaveOfAbsence" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "employee/employment/leaveOfAbsence" ], "summary" : "Update leave of absence.", "operationId" : "EmployeeEmploymentLeaveOfAbsence_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/LeaveOfAbsence" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperLeaveOfAbsence" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/employee/employment/leaveOfAbsence" : { "get" : { "tags" : [ "employee/employment/leaveOfAbsence" ], "summary" : "Find all leave of absence corresponding with the sent data.", "operationId" : "EmployeeEmploymentLeaveOfAbsence_search", "parameters" : [ { "name" : "employmentIds", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "date", "in" : "query", "description" : "yyyy-MM-dd. Defaults to today.", "schema" : { "type" : "string" } }, { "name" : "minPercentage", "in" : "query", "description" : "Must be between 0-100.", "schema" : { "type" : "integer", "format" : "int32", "default" : 0 } }, { "name" : "maxPercentage", "in" : "query", "description" : "Must be between 0-100.", "schema" : { "type" : "integer", "format" : "int32", "default" : 100 } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseLeaveOfAbsence" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "employee/employment/leaveOfAbsence" ], "summary" : "Create leave of absence.", "operationId" : "EmployeeEmploymentLeaveOfAbsence_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/LeaveOfAbsence" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperLeaveOfAbsence" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/employee/employment/leaveOfAbsence/list" : { "post" : { "tags" : [ "employee/employment/leaveOfAbsence" ], "summary" : "Create multiple leave of absences.", "operationId" : "EmployeeEmploymentLeaveOfAbsenceList_postList", "requestBody" : { "description" : "JSON representing a list of new objects to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/LeaveOfAbsence" } } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseLeaveOfAbsence" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/employee/employment/leaveOfAbsenceType" : { "get" : { "tags" : [ "employee/employment/leaveOfAbsenceType" ], "summary" : "Find all leave of absence type IDs.", "operationId" : "EmployeeEmploymentLeaveOfAbsenceType_search", "parameters" : [ { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseLeaveOfAbsenceType" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/employee/employment/occupationCode/{id}" : { "get" : { "tags" : [ "employee/employment/occupationCode" ], "summary" : "Get occupation by ID.", "operationId" : "EmployeeEmploymentOccupationCode_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperOccupationCode" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/employee/employment/occupationCode" : { "get" : { "tags" : [ "employee/employment/occupationCode" ], "summary" : "Find all profession codes.", "operationId" : "EmployeeEmploymentOccupationCode_search", "parameters" : [ { "name" : "id", "in" : "query", "description" : "Element ID", "schema" : { "type" : "string" } }, { "name" : "nameNO", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "code", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseOccupationCode" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/employee/employment/remunerationType" : { "get" : { "tags" : [ "employee/employment/remunerationType" ], "summary" : "Find all remuneration type IDs.", "operationId" : "EmployeeEmploymentRemunerationType_search", "parameters" : [ { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseRemunerationType" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/employee/employment/workingHoursScheme" : { "get" : { "tags" : [ "employee/employment/workingHoursScheme" ], "summary" : "Find working hours scheme ID.", "operationId" : "EmployeeEmploymentWorkingHoursScheme_search", "parameters" : [ { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseWorkingHoursScheme" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/employee/hourlyCostAndRate/{id}" : { "get" : { "tags" : [ "employee/hourlyCostAndRate" ], "summary" : "Find hourly cost and rate by ID.", "operationId" : "EmployeeHourlyCostAndRate_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperHourlyCostAndRate" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "employee/hourlyCostAndRate" ], "summary" : "Update hourly cost and rate. ", "operationId" : "EmployeeHourlyCostAndRate_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/HourlyCostAndRate" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperHourlyCostAndRate" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/employee/hourlyCostAndRate" : { "get" : { "tags" : [ "employee/hourlyCostAndRate" ], "summary" : "Find all hourly cost and rates for employee.", "operationId" : "EmployeeHourlyCostAndRate_search", "parameters" : [ { "name" : "employeeId", "in" : "query", "description" : "Employee ID. Defaults to ID of token owner.", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseHourlyCostAndRate" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "employee/hourlyCostAndRate" ], "summary" : "Create hourly cost and rate.", "operationId" : "EmployeeHourlyCostAndRate_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/HourlyCostAndRate" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperHourlyCostAndRate" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/employee/nextOfKin/{id}" : { "get" : { "tags" : [ "employee/nextOfKin" ], "summary" : "Find next of kin by ID.", "operationId" : "EmployeeNextOfKin_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperNextOfKin" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "employee/nextOfKin" ], "summary" : "Update next of kin. ", "operationId" : "EmployeeNextOfKin_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/NextOfKin" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperNextOfKin" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/employee/nextOfKin" : { "get" : { "tags" : [ "employee/nextOfKin" ], "summary" : "Find all next of kin for employee.", "operationId" : "EmployeeNextOfKin_search", "parameters" : [ { "name" : "employeeId", "in" : "query", "description" : "Employee ID. Defaults to ID of token owner.", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseNextOfKin" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "employee/nextOfKin" ], "summary" : "Create next of kin.", "operationId" : "EmployeeNextOfKin_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/NextOfKin" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperNextOfKin" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/employee/preferences/:changeLanguage" : { "put" : { "tags" : [ "employee/preferences" ], "summary" : "Change current employees language to the given language", "operationId" : "EmployeePreferencesChangeLanguage_changeLanguage", "parameters" : [ { "name" : "language", "in" : "query", "description" : "Language to change to", "schema" : { "type" : "string", "enum" : [ "NO", "EN" ] } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperEmployeePreferences" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/employee/preferences/>loggedInEmployeePreferences" : { "get" : { "tags" : [ "employee/preferences" ], "summary" : "Get employee preferences for current user", "operationId" : "EmployeePreferencesLoggedInEmployeePreferences_loggedInEmployeePreferences", "parameters" : [ { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperEmployeePreferences" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/employee/preferences/{id}" : { "put" : { "tags" : [ "employee/preferences" ], "summary" : "Update employee preferences information.", "operationId" : "EmployeePreferences_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/EmployeePreferences" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperEmployeePreferences" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/employee/preferences/list" : { "put" : { "tags" : [ "employee/preferences" ], "summary" : "Update multiple employee preferences.", "operationId" : "EmployeePreferencesList_putList", "requestBody" : { "description" : "JSON representing updates to objects. Should have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/EmployeePreferences" } } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseEmployeePreferences" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/employee/preferences" : { "get" : { "tags" : [ "employee/preferences" ], "summary" : "Find employee preferences corresponding with sent data.", "operationId" : "EmployeePreferences_search", "parameters" : [ { "name" : "id", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "employeeId", "in" : "query", "description" : "Equals", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperEmployeePreferences" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/employee/standardTime/{id}" : { "get" : { "tags" : [ "employee/standardTime" ], "summary" : "Find standard time by ID.", "operationId" : "EmployeeStandardTime_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperStandardTime" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "employee/standardTime" ], "summary" : "Update standard time. ", "operationId" : "EmployeeStandardTime_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/StandardTime" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperStandardTime" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/employee/standardTime/byDate" : { "get" : { "tags" : [ "employee/standardTime" ], "summary" : "Find standard time for employee by date.", "operationId" : "EmployeeStandardTimeByDate_getByDate", "parameters" : [ { "name" : "employeeId", "in" : "query", "description" : "Employee ID. Defaults to ID of token owner.", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "date", "in" : "query", "description" : "yyyy-MM-dd. Defaults to today.", "schema" : { "type" : "string" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperStandardTime" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/employee/standardTime" : { "get" : { "tags" : [ "employee/standardTime" ], "summary" : "Find all standard times for employee.", "operationId" : "EmployeeStandardTime_search", "parameters" : [ { "name" : "employeeId", "in" : "query", "description" : "Employee ID. Defaults to ID of token owner.", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseStandardTime" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "employee/standardTime" ], "summary" : "Create standard time.", "operationId" : "EmployeeStandardTime_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/StandardTime" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperStandardTime" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/employee/entitlement/client" : { "get" : { "tags" : [ "employee/entitlement" ], "summary" : "[BETA] Find all entitlements at client for user.", "operationId" : "EmployeeEntitlementClient_client", "parameters" : [ { "name" : "employeeId", "in" : "query", "description" : "Employee ID. Defaults to ID of token owner.", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "customerId", "in" : "query", "description" : "Client ID", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseEntitlement" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/employee/entitlement/{id}" : { "get" : { "tags" : [ "employee/entitlement" ], "summary" : "Get entitlement by ID.", "operationId" : "EmployeeEntitlement_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperEntitlement" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/employee/entitlement/:grantClientEntitlementsByTemplate" : { "put" : { "tags" : [ "employee/entitlement" ], "summary" : "[BETA] Update employee entitlements in client account.", "operationId" : "EmployeeEntitlementGrantClientEntitlementsByTemplate_grantClientEntitlementsByTemplate", "parameters" : [ { "name" : "employeeId", "in" : "query", "description" : "Employee ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "customerId", "in" : "query", "description" : "Client ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "template", "in" : "query", "description" : "Template", "required" : true, "schema" : { "type" : "string", "enum" : [ "NONE_PRIVILEGES", "STANDARD_PRIVILEGES_ACCOUNTANT", "STANDARD_PRIVILEGES_AUDITOR", "ALL_PRIVILEGES", "AGRO_READ_ONLY", "AGRO_READ_APPROVE", "AGRO_READ_WRITE", "AGRO_READ_WRITE_APPROVE", "AGRO_PAYROLL_ADMIN", "AGRO_PAYROLL_CLERK", "AGRO_INVOICE_ADMIN", "AGRO_INVOICE_CLERK" ] } }, { "name" : "addToExisting", "in" : "query", "description" : "Add template to existing entitlements", "schema" : { "type" : "boolean", "default" : false } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/employee/entitlement/:grantEntitlementsByTemplate" : { "put" : { "tags" : [ "employee/entitlement" ], "summary" : "[BETA] Update employee entitlements.", "description" : "The user will only receive the entitlements which are possible with the registered user type", "operationId" : "EmployeeEntitlementGrantEntitlementsByTemplate_grantEntitlementsByTemplate", "parameters" : [ { "name" : "employeeId", "in" : "query", "description" : "Employee ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "template", "in" : "query", "description" : "Template", "required" : true, "schema" : { "type" : "string", "enum" : [ "NONE_PRIVILEGES", "ALL_PRIVILEGES", "INVOICING_MANAGER", "PERSONELL_MANAGER", "ACCOUNTANT", "AUDITOR", "DEPARTMENT_LEADER" ] } } ], "responses" : { "200" : { "description" : "Employee entitlements updated successfully", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/employee/entitlement" : { "get" : { "tags" : [ "employee/entitlement" ], "summary" : "Find all entitlements for user.", "operationId" : "EmployeeEntitlement_search", "parameters" : [ { "name" : "employeeId", "in" : "query", "description" : "Employee ID. Defaults to ID of token owner.", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseEntitlement" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/event/{eventType}" : { "get" : { "tags" : [ "event" ], "summary" : "[BETA] Get example webhook payload", "operationId" : "Event_example", "parameters" : [ { "name" : "eventType", "in" : "path", "description" : "Event type, from /event endpoint", "required" : true, "schema" : { "type" : "string" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperEventInfo" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/event" : { "get" : { "tags" : [ "event" ], "summary" : "[BETA] Get all (WebHook) event keys.", "operationId" : "Event_get", "parameters" : [ { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperMapStringEventInfoDescription" } } } } } } }, "/event/subscription/{id}" : { "get" : { "tags" : [ "event/subscription" ], "summary" : "[BETA] Get subscription by ID.", "operationId" : "EventSubscription_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperSubscription" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "event/subscription" ], "summary" : "[BETA] Change a current subscription, based on id.", "operationId" : "EventSubscription_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/Subscription" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperSubscription" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "event/subscription" ], "summary" : "[BETA] Delete the given subscription.", "operationId" : "EventSubscription_delete", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/event/subscription/list" : { "put" : { "tags" : [ "event/subscription" ], "summary" : "[BETA] Update multiple subscription.", "operationId" : "EventSubscriptionList_putList", "requestBody" : { "description" : "JSON representing updates to objects. Should have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/Subscription" } } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseSubscription" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "event/subscription" ], "summary" : "[BETA] Create multiple subscriptions for current EmployeeToken.", "operationId" : "EventSubscriptionList_postList", "requestBody" : { "description" : "JSON representing a list of new objects to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/Subscription" } } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseSubscription" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "event/subscription" ], "summary" : "[BETA] Delete multiple subscriptions.", "operationId" : "EventSubscriptionList_deleteByIds", "parameters" : [ { "name" : "ids", "in" : "query", "description" : "ID of the elements", "required" : true, "schema" : { "type" : "string" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/event/subscription" : { "get" : { "tags" : [ "event/subscription" ], "summary" : "[BETA] Find all ongoing subscriptions.", "operationId" : "EventSubscription_search", "parameters" : [ { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseSubscription" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "event/subscription" ], "summary" : "[BETA] Create a new subscription for current EmployeeToken.", "operationId" : "EventSubscription_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/Subscription" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperSubscription" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/incomingInvoice/{voucherId}/addPayment" : { "post" : { "tags" : [ "incomingInvoice" ], "summary" : "[BETA] create a payment for voucher/invoice", "description" : "Restricted API for pilot customers", "operationId" : "IncomingInvoiceAddPayment_addPayment", "parameters" : [ { "name" : "voucherId", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/IncomingInvoicePaymentExternalWrite" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperIncomingInvoicePaymentResult" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/incomingInvoice/{voucherId}" : { "get" : { "tags" : [ "incomingInvoice" ], "summary" : "[BETA] Get an invoice by voucherId", "description" : "Restricted API for pilot customers", "operationId" : "IncomingInvoice_get", "parameters" : [ { "name" : "voucherId", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperIncomingInvoiceAggregateExternalRead" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "incomingInvoice" ], "summary" : "[BETA] update an invoice by voucherId", "description" : "Restricted API for pilot customers", "operationId" : "IncomingInvoice_put", "parameters" : [ { "name" : "voucherId", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "sendTo", "in" : "query", "description" : "'inbox' | 'nonPosted' | 'ledger' | null. When null: preserves current state.", "schema" : { "type" : "string" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/IncomingInvoiceAggregateExternalWrite" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperIncomingInvoiceSaveResult" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/incomingInvoice" : { "post" : { "tags" : [ "incomingInvoice" ], "summary" : "[BETA] create an invoice", "description" : "Restricted API for pilot customers", "operationId" : "IncomingInvoice_post", "parameters" : [ { "name" : "sendTo", "in" : "query", "description" : "'inbox' | 'nonPosted' | 'ledger' | null. When null: defaults to 'inbox'.", "schema" : { "type" : "string" } } ], "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/IncomingInvoiceAggregateExternalWrite" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperIncomingInvoiceSaveResult" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/incomingInvoice/search" : { "get" : { "tags" : [ "incomingInvoice" ], "summary" : "[BETA] Get a list of invoices", "description" : "Restricted API for pilot customers", "operationId" : "IncomingInvoiceSearch_search", "parameters" : [ { "name" : "voucherId", "in" : "query", "description" : "Element ID", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "invoiceDateFrom", "in" : "query", "description" : "From and including", "schema" : { "type" : "string" } }, { "name" : "invoiceDateTo", "in" : "query", "description" : "To and excluding", "schema" : { "type" : "string" } }, { "name" : "invoiceNumber", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "vendorId", "in" : "query", "description" : "Element ID", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "status", "in" : "query", "description" : "List of invoice status: 'inbox' | 'nonPosted' | 'approval' | 'ledger'. separated by comma. defaults to 'ledger' when null.", "schema" : { "type" : "string", "default" : "ledger" } }, { "name" : "from", "in" : "query", "description" : "Offset for pagination. Pagination is approximate when filtering by both draft and posted statuses, as the underlying data is fetched from two different sources and merged in memory.", "schema" : { "type" : "integer", "format" : "int64", "default" : 0 } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "schema" : { "type" : "integer", "format" : "int64", "default" : 1000 } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseIncomingInvoiceAggregateExternalRead" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/inventory/{id}" : { "get" : { "tags" : [ "inventory" ], "summary" : "Get inventory by ID.", "operationId" : "Inventory_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperInventory" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "inventory" ], "summary" : "Update inventory.", "operationId" : "Inventory_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/Inventory" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperInventory" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "inventory" ], "summary" : "Delete inventory.", "operationId" : "Inventory_delete", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/inventory" : { "get" : { "tags" : [ "inventory" ], "summary" : "Find inventory corresponding with sent data.", "operationId" : "Inventory_search", "parameters" : [ { "name" : "id", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "name", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "isMainInventory", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "isInactive", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "query", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseInventory" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "inventory" ], "summary" : "Create new inventory.", "operationId" : "Inventory_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/Inventory" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperInventory" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/inventory/inventories" : { "get" : { "tags" : [ "inventory/inventories" ], "summary" : "Find inventories corresponding with sent data.", "operationId" : "InventoryInventories_search", "parameters" : [ { "name" : "dateFrom", "in" : "query", "description" : "Format is yyyy-MM-dd (from and incl.).", "required" : true, "schema" : { "type" : "string" } }, { "name" : "dateTo", "in" : "query", "description" : "Format is yyyy-MM-dd (to and incl.).", "required" : true, "schema" : { "type" : "string" } }, { "name" : "productId", "in" : "query", "description" : "Element ID for filtering", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "inventoryId", "in" : "query", "description" : "Element ID for filtering", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "onlyProductWithChangedStatus", "in" : "query", "schema" : { "type" : "boolean", "default" : false } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseInventories" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/inventory/location/{id}" : { "get" : { "tags" : [ "inventory/location" ], "summary" : "Get inventory location by ID. Only available for Logistics Basic.", "operationId" : "InventoryLocation_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperInventoryLocation" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "inventory/location" ], "summary" : "Update inventory location. Only available for Logistics Basic.", "operationId" : "InventoryLocation_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/InventoryLocation" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperInventoryLocation" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "inventory/location" ], "summary" : "Delete inventory location. Only available for Logistics Basic.", "operationId" : "InventoryLocation_delete", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/inventory/location/list" : { "put" : { "tags" : [ "inventory/location" ], "summary" : "Update multiple inventory locations. Only available for Logistics Basic.", "operationId" : "InventoryLocationList_putList", "requestBody" : { "description" : "JSON representing updates to objects. Should have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/InventoryLocation" } } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseInventoryLocation" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "inventory/location" ], "summary" : "Add multiple inventory locations. Only available for Logistics Basic.", "operationId" : "InventoryLocationList_postList", "requestBody" : { "description" : "JSON representing a list of new objects to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/InventoryLocation" } } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseInventoryLocation" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "inventory/location" ], "summary" : "Delete inventory location. Only available for Logistics Basic.", "operationId" : "InventoryLocationList_deleteByIds", "parameters" : [ { "name" : "ids", "in" : "query", "description" : "ID of the elements", "required" : true, "schema" : { "type" : "string" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/inventory/location" : { "get" : { "tags" : [ "inventory/location" ], "summary" : "Find inventory locations by inventory ID. Only available for Logistics Basic.", "operationId" : "InventoryLocation_search", "parameters" : [ { "name" : "warehouseId", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "isInactive", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "name", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseInventoryLocation" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "inventory/location" ], "summary" : "Create new inventory location. Only available for Logistics Basic.", "operationId" : "InventoryLocation_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/InventoryLocation" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperInventoryLocation" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/inventory/stocktaking/{id}" : { "get" : { "tags" : [ "inventory/stocktaking" ], "summary" : "Get stocktaking by ID.", "operationId" : "InventoryStocktaking_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperStocktaking" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "inventory/stocktaking" ], "summary" : "Update stocktaking.", "operationId" : "InventoryStocktaking_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/Stocktaking" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperStocktaking" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "inventory/stocktaking" ], "summary" : "Delete stocktaking.", "operationId" : "InventoryStocktaking_delete", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/inventory/stocktaking" : { "get" : { "tags" : [ "inventory/stocktaking" ], "summary" : "Find stocktaking corresponding with sent data.", "operationId" : "InventoryStocktaking_search", "parameters" : [ { "name" : "id", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "isCompleted", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "inventoryId", "in" : "query", "description" : "Equals", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseStocktaking" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "inventory/stocktaking" ], "summary" : "Create new stocktaking.", "operationId" : "InventoryStocktaking_post", "parameters" : [ { "name" : "typeOfStocktaking", "in" : "query", "schema" : { "type" : "string", "enum" : [ "ALL_PRODUCTS_WITH_INVENTORIES", "INCLUDE_PRODUCTS", "NO_PRODUCTS" ] } } ], "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/Stocktaking" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperStocktaking" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/inventory/stocktaking/productline/{id}/:changeLocation" : { "put" : { "tags" : [ "inventory/stocktaking/productline" ], "summary" : "[Beta] Change location on order line.", "operationId" : "InventoryStocktakingProductlineChangeLocation_changeLocation", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Product Line id", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "warehouseLocationId", "in" : "query", "description" : "Warehouse location id", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperProductLine" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/inventory/stocktaking/productline/{id}" : { "get" : { "tags" : [ "inventory/stocktaking/productline" ], "summary" : "Get order line by ID.", "operationId" : "InventoryStocktakingProductline_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperProductLine" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "inventory/stocktaking/productline" ], "summary" : "Update order line.", "operationId" : "InventoryStocktakingProductline_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/ProductLine" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperProductLine" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "inventory/stocktaking/productline" ], "summary" : "Delete order line.", "operationId" : "InventoryStocktakingProductline_delete", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/inventory/stocktaking/productline" : { "get" : { "tags" : [ "inventory/stocktaking/productline" ], "summary" : "Find all order lines by stocktaking ID.", "operationId" : "InventoryStocktakingProductline_search", "parameters" : [ { "name" : "stocktakingId", "in" : "query", "description" : "Equals", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "query", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "productGroupIds", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "locationIds", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "productLineStatus", "in" : "query", "description" : "Productline status", "schema" : { "type" : "string", "enum" : [ "ALL_PRODUCTS", "COUNTED_PRODUCTS", "NOT_COUNTED_PRODUCTS" ], "default" : "ALL_PRODUCTS" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "schema" : { "type" : "integer", "format" : "int32", "default" : 10000 } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseProductLine" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "inventory/stocktaking/productline" ], "summary" : "Create order line. When creating several order lines, use /list for better performance.", "operationId" : "InventoryStocktakingProductline_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/ProductLine" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperProductLine" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/invoice/{id}/:createCreditNote" : { "put" : { "tags" : [ "invoice" ], "summary" : "Creates a new Invoice representing a credit memo that nullifies the given invoice. Updates this invoice and any pre-existing inverse invoice.", "operationId" : "InvoiceCreateCreditNote_createCreditNote", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Invoice id", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "date", "in" : "query", "description" : "Credit note date", "required" : true, "schema" : { "type" : "string" } }, { "name" : "comment", "in" : "query", "description" : "Comment", "schema" : { "type" : "string" } }, { "name" : "creditNoteEmail", "in" : "query", "description" : "The credit note will not be sent if the customer send type is email and this field is empty", "schema" : { "type" : "string" } }, { "name" : "sendToCustomer", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean", "default" : true } }, { "name" : "sendType", "in" : "query", "description" : "Equals", "schema" : { "type" : "string", "enum" : [ "EMAIL", "EHF", "EFAKTURA", "AVTALEGIRO", "VIPPS", "PAPER", "MANUAL", "DIRECT", "AUTOINVOICE_EHF_OUTBOUND", "AUTOINVOICE_EHF_INCOMING", "PEPPOL_EHF_INCOMING" ] } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperInvoice" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/invoice/{id}/:createReminder" : { "put" : { "tags" : [ "invoice" ], "summary" : "Create invoice reminder and sends it by the given dispatch type. Supports the reminder types SOFT_REMINDER, REMINDER and NOTICE_OF_DEBT_COLLECTION. DispatchType NETS_PRINT must have type NOTICE_OF_DEBT_COLLECTION. SMS and NETS_PRINT must be activated prior to usage in the API.", "operationId" : "InvoiceCreateReminder_createReminder", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "type", "in" : "query", "description" : "type", "required" : true, "schema" : { "type" : "string", "enum" : [ "SOFT_REMINDER", "REMINDER", "NOTICE_OF_DEBT_COLLECTION", "DEBT_COLLECTION" ] } }, { "name" : "date", "in" : "query", "description" : "yyyy-MM-dd. Defaults to today.", "required" : true, "schema" : { "type" : "string" } }, { "name" : "includeCharge", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean", "default" : false } }, { "name" : "includeInterest", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean", "default" : false } }, { "name" : "dispatchType", "in" : "query", "description" : "dispatchType", "schema" : { "type" : "string", "enum" : [ "NETS_PRINT", "EMAIL", "OWN_PRINTER", "SFTP", "API", "SMS" ] } }, { "name" : "dispatchTypes", "in" : "query", "description" : "List of dispatch types (comma separated enum values)", "schema" : { "type" : "string" } }, { "name" : "smsNumber", "in" : "query", "description" : "SMS number (must be a valid Norwegian telephone number)", "schema" : { "type" : "string" } }, { "name" : "email", "in" : "query", "description" : "Email address to send the reminder to. (Defaults to to the same email list as the invoice if not provided)", "schema" : { "type" : "string" } }, { "name" : "address", "in" : "query", "description" : "Address to send the reminder to. (Defaults to the customer address if not provided)", "schema" : { "type" : "string" } }, { "name" : "postalCode", "in" : "query", "description" : "Postal code to send the reminder to (Defaults to the customer postal code if not provided)", "schema" : { "type" : "string" } }, { "name" : "city", "in" : "query", "description" : "City to send the reminder to (Defaults to the customer city if not provided)", "schema" : { "type" : "string" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperInteger" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/invoice/{id}" : { "get" : { "tags" : [ "invoice" ], "summary" : "Get invoice by ID.", "operationId" : "Invoice_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperInvoice" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/invoice/{invoiceId}/pdf" : { "get" : { "tags" : [ "invoice" ], "summary" : "Get invoice document by invoice ID.", "operationId" : "InvoicePdf_downloadPdf", "parameters" : [ { "name" : "invoiceId", "in" : "path", "description" : "Invoice ID from which PDF is downloaded.", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "download", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean", "default" : true } } ], "responses" : { "200" : { "description" : "PDF document", "content" : { "application/octet-stream" : { "schema" : { "type" : "string", "format" : "binary" } }, "application/pdf" : { "schema" : { "type" : "string", "format" : "binary" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/invoice/{id}/:payment" : { "put" : { "tags" : [ "invoice" ], "summary" : "Update invoice. The invoice is updated with payment information. The amount is in the invoice’s currency.", "operationId" : "InvoicePayment_payment", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Invoice id", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "paymentDate", "in" : "query", "description" : "Payment date", "required" : true, "schema" : { "type" : "string" } }, { "name" : "paymentTypeId", "in" : "query", "description" : "PaymentType id", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "paidAmount", "in" : "query", "description" : "Amount paid by the customer in the currency determined by the account of the paymentType", "required" : true, "schema" : { "type" : "number" } }, { "name" : "paidAmountCurrency", "in" : "query", "description" : "Amount paid by customer in the invoice currency. Optional, but required for invoices in alternate currencies.", "schema" : { "type" : "number" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperInvoice" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/invoice" : { "get" : { "tags" : [ "invoice" ], "summary" : "Find invoices corresponding with sent data. Includes charged outgoing invoices only.", "operationId" : "Invoice_search", "parameters" : [ { "name" : "id", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "invoiceDateFrom", "in" : "query", "description" : "From and including", "required" : true, "schema" : { "type" : "string" } }, { "name" : "invoiceDateTo", "in" : "query", "description" : "To and excluding", "required" : true, "schema" : { "type" : "string" } }, { "name" : "invoiceNumber", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "kid", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "voucherId", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "customerId", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseInvoice" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "invoice" ], "summary" : "Create invoice. Related Order and OrderLines can be created first, or included as new objects inside the Invoice.", "operationId" : "Invoice_post", "parameters" : [ { "name" : "sendToCustomer", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean", "default" : true } }, { "name" : "paymentTypeId", "in" : "query", "description" : "Payment type to register prepayment of the invoice. paymentTypeId and paidAmount are optional, but both must be provided if the invoice has already been paid.", "schema" : { "type" : "integer", "format" : "int32" } }, { "name" : "paidAmount", "in" : "query", "description" : "Paid amount to register prepayment of the invoice, in invoice currency. paymentTypeId and paidAmount are optional, but both must be provided if the invoice has already been paid.", "schema" : { "type" : "number" } } ], "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/Invoice" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperInvoice" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/invoice/list" : { "post" : { "tags" : [ "invoice" ], "summary" : "[BETA] Create multiple invoices. Max 100 at a time.", "operationId" : "InvoiceList_postList", "parameters" : [ { "name" : "sendToCustomer", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean", "default" : true } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "schema" : { "type" : "string", "default" : "*" } } ], "requestBody" : { "description" : "JSON representing a list of new objects to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/Invoice" } } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseInvoice" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/invoice/{id}/:send" : { "put" : { "tags" : [ "invoice" ], "summary" : "Send invoice by ID and sendType. Optionally override email recipient.", "operationId" : "InvoiceSend_send", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "sendType", "in" : "query", "description" : "SendType", "required" : true, "schema" : { "type" : "string", "enum" : [ "EMAIL", "EHF", "AVTALEGIRO", "EFAKTURA", "VIPPS", "PAPER", "MANUAL" ] } }, { "name" : "overrideEmailAddress", "in" : "query", "description" : "Will override email address if sendType = EMAIL", "schema" : { "type" : "string" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/invoiceRemark/{id}" : { "get" : { "tags" : [ "invoiceRemark" ], "summary" : "Get invoice remark by ID.", "operationId" : "InvoiceRemark_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperInvoiceRemark" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/invoice/paymentType/{id}" : { "get" : { "tags" : [ "invoice/paymentType" ], "summary" : "Get payment type by ID.", "operationId" : "InvoicePaymentType_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperPaymentType" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/invoice/paymentType" : { "get" : { "tags" : [ "invoice/paymentType" ], "summary" : "Find payment type corresponding with sent data.", "operationId" : "InvoicePaymentType_search", "parameters" : [ { "name" : "id", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "description", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "query", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponsePaymentType" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/invoice/details/{id}" : { "get" : { "tags" : [ "invoice/details" ], "summary" : "Get ProjectInvoiceDetails by ID.", "operationId" : "InvoiceDetails_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperProjectInvoiceDetails" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/invoice/details" : { "get" : { "tags" : [ "invoice/details" ], "summary" : "Find ProjectInvoiceDetails corresponding with sent data.", "operationId" : "InvoiceDetails_search", "parameters" : [ { "name" : "id", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "invoiceDateFrom", "in" : "query", "description" : "From and including", "required" : true, "schema" : { "type" : "string" } }, { "name" : "invoiceDateTo", "in" : "query", "description" : "To and excluding", "required" : true, "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseProjectInvoiceDetails" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/ledger/openPost" : { "get" : { "tags" : [ "ledger" ], "summary" : "Find open posts corresponding with sent data.", "operationId" : "LedgerOpenPost_openPost", "parameters" : [ { "name" : "date", "in" : "query", "description" : "Invoice date. Format is yyyy-MM-dd (to and excl.).", "required" : true, "schema" : { "type" : "string" } }, { "name" : "accountId", "in" : "query", "description" : "Element ID for filtering", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "supplierId", "in" : "query", "description" : "Element ID for filtering", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "customerId", "in" : "query", "description" : "Element ID for filtering", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "employeeId", "in" : "query", "description" : "Element ID for filtering", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "departmentId", "in" : "query", "description" : "Element ID for filtering", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "projectId", "in" : "query", "description" : "Element ID for filtering", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "productId", "in" : "query", "description" : "Element ID for filtering", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "accountingDimensionValue1Id", "in" : "query", "description" : "Id of first free accounting dimension.", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "accountingDimensionValue2Id", "in" : "query", "description" : "Id of second free accounting dimension.", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "accountingDimensionValue3Id", "in" : "query", "description" : "Id of third free accounting dimension.", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseLedgerAccount" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/ledger" : { "get" : { "tags" : [ "ledger" ], "summary" : "Get ledger (hovedbok).", "operationId" : "Ledger_search", "parameters" : [ { "name" : "dateFrom", "in" : "query", "description" : "Format is yyyy-MM-dd (from and incl.).", "required" : true, "schema" : { "type" : "string" } }, { "name" : "dateTo", "in" : "query", "description" : "Format is yyyy-MM-dd (to and excl.).", "required" : true, "schema" : { "type" : "string" } }, { "name" : "openPostings", "in" : "query", "description" : "Deprecated", "schema" : { "type" : "string" } }, { "name" : "accountId", "in" : "query", "description" : "Element ID for filtering", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "supplierId", "in" : "query", "description" : "Element ID for filtering", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "customerId", "in" : "query", "description" : "Element ID for filtering", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "employeeId", "in" : "query", "description" : "Element ID for filtering", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "departmentId", "in" : "query", "description" : "Element ID for filtering", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "projectId", "in" : "query", "description" : "Element ID for filtering", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "productId", "in" : "query", "description" : "Element ID for filtering", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "accountingDimensionValue1Id", "in" : "query", "description" : "Id of the first free accounting dimension.", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "accountingDimensionValue2Id", "in" : "query", "description" : "Id of the second free accounting dimension.", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "accountingDimensionValue3Id", "in" : "query", "description" : "Id of the third free accounting dimension.", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseLedgerAccount" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/ledger/account/{id}" : { "get" : { "tags" : [ "ledger/account" ], "summary" : "Get account by ID.", "operationId" : "LedgerAccount_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperAccount" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "ledger/account" ], "summary" : "Update account.", "operationId" : "LedgerAccount_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/Account" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperAccount" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "ledger/account" ], "summary" : "Delete account.", "operationId" : "LedgerAccount_delete", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/ledger/account/list" : { "put" : { "tags" : [ "ledger/account" ], "summary" : "Update multiple accounts.", "operationId" : "LedgerAccountList_putList", "requestBody" : { "description" : "JSON representing updates to objects. Should have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/Account" } } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseAccount" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "ledger/account" ], "summary" : "Create several accounts.", "operationId" : "LedgerAccountList_postList", "requestBody" : { "description" : "JSON representing a list of new objects to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/Account" } } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseAccount" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "ledger/account" ], "summary" : "Delete multiple accounts.", "operationId" : "LedgerAccountList_deleteByIds", "parameters" : [ { "name" : "ids", "in" : "query", "description" : "ID of the elements", "required" : true, "schema" : { "type" : "string" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/ledger/account" : { "get" : { "tags" : [ "ledger/account" ], "summary" : "Find accounts corresponding with sent data.", "operationId" : "LedgerAccount_search", "parameters" : [ { "name" : "id", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "number", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "isBankAccount", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "isInactive", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "isApplicableForSupplierInvoice", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "ledgerType", "in" : "query", "description" : "Ledger type", "schema" : { "type" : "string", "enum" : [ "GENERAL", "CUSTOMER", "VENDOR", "EMPLOYEE", "ASSET" ] } }, { "name" : "isBalanceAccount", "in" : "query", "description" : "Balance account", "schema" : { "type" : "boolean" } }, { "name" : "saftCode", "in" : "query", "description" : "SAF-T code", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseAccount" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "ledger/account" ], "summary" : "Create a new account.", "operationId" : "LedgerAccount_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/Account" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperAccount" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/ledger/accountingDimensionName/{id}" : { "get" : { "tags" : [ "accountingDimensionName", "ledger/accountingDimensionName" ], "summary" : "Get a single accounting dimension name by ID", "operationId" : "LedgerAccountingDimensionName_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "The ID of the accounting dimension name to retrieve", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperAccountingDimensionName" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "accountingDimensionName", "ledger/accountingDimensionName" ], "summary" : "Update an accounting dimension", "operationId" : "LedgerAccountingDimensionName_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Id of the dimension to update", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Accounting dimension name", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/AccountingDimensionName" } } } }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperAccountingDimensionName" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "accountingDimensionName", "ledger/accountingDimensionName" ], "summary" : "Delete an accounting dimension name by ID", "description" : "Dimensions with values that have been used in postings cannot be deleted, only made inactive or renamed.", "operationId" : "LedgerAccountingDimensionName_delete", "parameters" : [ { "name" : "id", "in" : "path", "description" : "ID of the accounting dimension name to delete", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/ledger/accountingDimensionName" : { "get" : { "tags" : [ "accountingDimensionName", "ledger/accountingDimensionName" ], "summary" : "Get all accounting dimension names.", "operationId" : "LedgerAccountingDimensionName_getAll", "parameters" : [ { "name" : "activeOnly", "in" : "query", "description" : "Whether to only return active dimensions (optional)", "schema" : { "type" : "boolean" } }, { "name" : "fields", "in" : "query", "description" : "Fields to include in response.", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseAccountingDimensionName" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "accountingDimensionName", "ledger/accountingDimensionName" ], "summary" : "Create a new free (aka 'user defined') accounting dimension", "description" : "Creates a new dimension, will be given the next unused dimension index, up to the maximum of 3 free dimensions", "operationId" : "LedgerAccountingDimensionName_post", "requestBody" : { "description" : "Dimension name data", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/AccountingDimensionName" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperAccountingDimensionName" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/ledger/accountingDimensionName/search" : { "get" : { "tags" : [ "accountingDimensionName", "ledger/accountingDimensionName" ], "summary" : "Search for accounting dimension names according to criteria.", "operationId" : "LedgerAccountingDimensionNameSearch_search", "parameters" : [ { "name" : "dimensionIndex", "in" : "query", "description" : "Dimension index to filter by (1, 2, or 3)", "schema" : { "type" : "integer", "format" : "int32" } }, { "name" : "activeOnly", "in" : "query", "description" : "Whether to only return active dimensions (optional)", "schema" : { "type" : "boolean" } }, { "name" : "onlyDimensionsWithActiveValues", "in" : "query", "description" : "Whether to only return active dimensions with active values which are shown in voucher registration (optional)", "schema" : { "type" : "boolean" } }, { "name" : "fields", "in" : "query", "description" : "Fields to include in response.", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseAccountingDimensionName" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/ledger/accountingDimensionValue/{id}" : { "get" : { "tags" : [ "accountingDimensionValue", "ledger/accountingDimensionValue" ], "summary" : "Find accounting dimension values by ID.", "operationId" : "LedgerAccountingDimensionValue_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperAccountingDimensionValue" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "accountingDimensionValue", "ledger/accountingDimensionValue" ], "summary" : "Delete an accounting dimension value. Values that have been used in postings can not be deleted.", "operationId" : "LedgerAccountingDimensionValue_delete", "parameters" : [ { "name" : "id", "in" : "path", "description" : "ID of the accounting dimension value to delete", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/ledger/accountingDimensionValue" : { "post" : { "tags" : [ "accountingDimensionValue", "ledger/accountingDimensionValue" ], "summary" : "Create a new value for one of the free (aka 'user defined') accounting dimensions", "operationId" : "LedgerAccountingDimensionValue_post", "requestBody" : { "description" : "Dimension value data", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/AccountingDimensionValue" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperAccountingDimensionValue" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/ledger/accountingDimensionValue/list" : { "put" : { "tags" : [ "accountingDimensionValue", "ledger/accountingDimensionValue" ], "summary" : "Update accounting dimension values", "operationId" : "LedgerAccountingDimensionValueList_putList", "requestBody" : { "description" : "List of accounting dimension values to update", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/AccountingDimensionValue" } } } } }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseAccountingDimensionValue" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/ledger/accountingDimensionValue/search" : { "get" : { "tags" : [ "accountingDimensionValue", "ledger/accountingDimensionValue" ], "summary" : "Search for accounting dimension values according to criteria.", "operationId" : "LedgerAccountingDimensionValueSearch_searchAccountingDimensionValues", "parameters" : [ { "name" : "dimensionIndex", "in" : "query", "description" : "Dimension index to filter by (1, 2, or 3)", "schema" : { "type" : "integer", "format" : "int32" } }, { "name" : "activeOnly", "in" : "query", "description" : "Whether to only return active dimension values (optional)", "schema" : { "type" : "boolean" } }, { "name" : "showInVoucherRegistration", "in" : "query", "description" : "Return only values shown in voucher registration (optional)", "schema" : { "type" : "boolean" } }, { "name" : "fields", "in" : "query", "description" : "Fields to include in response.", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseAccountingDimensionValue" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/ledger/accountingPeriod/{id}" : { "get" : { "tags" : [ "ledger/accountingPeriod" ], "summary" : "Get accounting period by ID.", "operationId" : "LedgerAccountingPeriod_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperAccountingPeriod" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/ledger/accountingPeriod" : { "get" : { "tags" : [ "ledger/accountingPeriod" ], "summary" : "Find accounting periods corresponding with sent data.", "operationId" : "LedgerAccountingPeriod_search", "parameters" : [ { "name" : "id", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "numberFrom", "in" : "query", "description" : "From and including", "schema" : { "type" : "integer", "format" : "int32" } }, { "name" : "numberTo", "in" : "query", "description" : "To and excluding", "schema" : { "type" : "integer", "format" : "int32" } }, { "name" : "startFrom", "in" : "query", "description" : "From and including", "schema" : { "type" : "string" } }, { "name" : "startTo", "in" : "query", "description" : "To and excluding", "schema" : { "type" : "string" } }, { "name" : "endFrom", "in" : "query", "description" : "From and including", "schema" : { "type" : "string" } }, { "name" : "endTo", "in" : "query", "description" : "To and excluding", "schema" : { "type" : "string" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "schema" : { "type" : "integer", "format" : "int32", "default" : 1400 } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseAccountingPeriod" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/ledger/annualAccount/{id}" : { "get" : { "tags" : [ "ledger/annualAccount" ], "summary" : "Get annual account by ID.", "operationId" : "LedgerAnnualAccount_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperAnnualAccount" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/ledger/annualAccount" : { "get" : { "tags" : [ "ledger/annualAccount" ], "summary" : "Find annual accounts corresponding with sent data.", "operationId" : "LedgerAnnualAccount_search", "parameters" : [ { "name" : "id", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "yearFrom", "in" : "query", "description" : "From and including", "schema" : { "type" : "integer", "format" : "int32" } }, { "name" : "yearTo", "in" : "query", "description" : "To and excluding", "schema" : { "type" : "integer", "format" : "int32" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseAnnualAccount" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/ledger/closeGroup/{id}" : { "get" : { "tags" : [ "ledger/closeGroup" ], "summary" : "Get close group by ID.", "operationId" : "LedgerCloseGroup_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperCloseGroup" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/ledger/closeGroup" : { "get" : { "tags" : [ "ledger/closeGroup" ], "summary" : "Find close groups corresponding with sent data.", "operationId" : "LedgerCloseGroup_search", "parameters" : [ { "name" : "id", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "dateFrom", "in" : "query", "description" : "From and including", "required" : true, "schema" : { "type" : "string" } }, { "name" : "dateTo", "in" : "query", "description" : "To and excluding", "required" : true, "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseCloseGroup" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/ledger/paymentTypeOut/{id}" : { "get" : { "tags" : [ "ledger/paymentTypeOut" ], "summary" : "[BETA] Get payment type for outgoing payments by ID.", "operationId" : "LedgerPaymentTypeOut_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperPaymentTypeOut" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "ledger/paymentTypeOut" ], "summary" : "[BETA] Update existing payment type for outgoing payments", "operationId" : "LedgerPaymentTypeOut_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/PaymentTypeOut" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperPaymentTypeOut" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "ledger/paymentTypeOut" ], "summary" : "[BETA] Delete payment type for outgoing payments by ID.", "operationId" : "LedgerPaymentTypeOut_delete", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/ledger/paymentTypeOut" : { "get" : { "tags" : [ "ledger/paymentTypeOut" ], "summary" : "[BETA] Gets payment types for outgoing payments", "description" : "This is an API endpoint for getting payment types for outgoing payments. This is equivalent to the section 'Outgoing Payments' under Accounts Settings in Tripletex. These are the payment types listed in supplier invoices, vat returns, salary payments and Tax/ENI", "operationId" : "LedgerPaymentTypeOut_search", "parameters" : [ { "name" : "id", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "description", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "isInactive", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponsePaymentTypeOut" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "ledger/paymentTypeOut" ], "summary" : "[BETA] Create new payment type for outgoing payments", "operationId" : "LedgerPaymentTypeOut_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/PaymentTypeOut" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperPaymentTypeOut" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/ledger/paymentTypeOut/list" : { "put" : { "tags" : [ "ledger/paymentTypeOut" ], "summary" : "[BETA] Update multiple payment types for outgoing payments at once", "operationId" : "LedgerPaymentTypeOutList_putList", "requestBody" : { "description" : "JSON representing updates to objects. Should have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/PaymentTypeOut" } } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponsePaymentTypeOut" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "ledger/paymentTypeOut" ], "summary" : "[BETA] Create multiple payment types for outgoing payments at once", "operationId" : "LedgerPaymentTypeOutList_postList", "requestBody" : { "description" : "JSON representing a list of new objects to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/PaymentTypeOut" } } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponsePaymentTypeOut" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/ledger/posting/:closePostings" : { "put" : { "tags" : [ "ledger/posting" ], "summary" : "Close postings.", "operationId" : "LedgerPostingClosePostings_closePostings", "requestBody" : { "description" : "JSON object containing a list of Posting IDs to close.", "content" : { "application/json" : { "schema" : { "type" : "array", "items" : { "type" : "integer", "format" : "int64" } } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponsePostingValidationMessage" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/ledger/posting/{id}" : { "get" : { "tags" : [ "ledger/posting" ], "summary" : "Find postings by ID.", "operationId" : "LedgerPosting_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperPosting" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/ledger/posting/openPost" : { "get" : { "tags" : [ "ledger/posting" ], "summary" : "Find open posts corresponding with sent data.", "operationId" : "LedgerPostingOpenPost_openPost", "parameters" : [ { "name" : "date", "in" : "query", "description" : "Invoice date. Format is yyyy-MM-dd (to and excl.).", "required" : true, "schema" : { "type" : "string" } }, { "name" : "accountId", "in" : "query", "description" : "Element ID for filtering", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "supplierId", "in" : "query", "description" : "Element ID for filtering", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "customerId", "in" : "query", "description" : "Element ID for filtering", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "employeeId", "in" : "query", "description" : "Element ID for filtering", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "departmentId", "in" : "query", "description" : "Element ID for filtering", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "projectId", "in" : "query", "description" : "Element ID for filtering", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "productId", "in" : "query", "description" : "Element ID for filtering", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "accountNumberFrom", "in" : "query", "description" : "Element ID for filtering", "schema" : { "type" : "integer", "format" : "int32" } }, { "name" : "accountNumberTo", "in" : "query", "description" : "Element ID for filtering", "schema" : { "type" : "integer", "format" : "int32" } }, { "name" : "accountingDimensionValue1Id", "in" : "query", "description" : "Id of first free accounting dimension.", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "accountingDimensionValue2Id", "in" : "query", "description" : "Id of second free accounting dimension.", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "accountingDimensionValue3Id", "in" : "query", "description" : "Id of third free accounting dimension.", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponsePosting" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/ledger/posting" : { "get" : { "tags" : [ "ledger/posting" ], "summary" : "Find postings corresponding with sent data.", "operationId" : "LedgerPosting_search", "parameters" : [ { "name" : "dateFrom", "in" : "query", "description" : "Format is yyyy-MM-dd (from and incl.).", "required" : true, "schema" : { "type" : "string" } }, { "name" : "dateTo", "in" : "query", "description" : "Format is yyyy-MM-dd (to and excl.).", "required" : true, "schema" : { "type" : "string" } }, { "name" : "openPostings", "in" : "query", "description" : "Deprecated", "schema" : { "type" : "string" } }, { "name" : "accountId", "in" : "query", "description" : "Element ID for filtering", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "supplierId", "in" : "query", "description" : "Element ID for filtering", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "customerId", "in" : "query", "description" : "Element ID for filtering", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "employeeId", "in" : "query", "description" : "Element ID for filtering", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "departmentId", "in" : "query", "description" : "Element ID for filtering", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "projectId", "in" : "query", "description" : "Element ID for filtering", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "productId", "in" : "query", "description" : "Element ID for filtering", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "accountNumberFrom", "in" : "query", "description" : "Element ID for filtering", "schema" : { "type" : "integer", "format" : "int32" } }, { "name" : "accountNumberTo", "in" : "query", "description" : "Element ID for filtering", "schema" : { "type" : "integer", "format" : "int32" } }, { "name" : "type", "in" : "query", "description" : "Element ID for filtering", "schema" : { "type" : "string", "enum" : [ "INCOMING_PAYMENT", "INCOMING_PAYMENT_OPPOSITE", "INCOMING_INVOICE_CUSTOMER_POSTING", "INVOICE_EXPENSE", "OUTGOING_INVOICE_CUSTOMER_POSTING", "WAGE" ] } }, { "name" : "accountingDimensionValue1Id", "in" : "query", "description" : "Id of first free accounting dimension.", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "accountingDimensionValue2Id", "in" : "query", "description" : "Id of second free accounting dimension.", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "accountingDimensionValue3Id", "in" : "query", "description" : "Id of third free accounting dimension.", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponsePosting" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/ledger/postingByDate" : { "get" : { "tags" : [ "ledger/postingByDate" ], "summary" : "Get postings by date range with pagination. Returns the same PostingDTO as /ledger/posting. Simplified endpoint for better performance. Fields and Changes are not supported. Token must have access to all vouchers in the company, otherwise a validation error is returned. If access control for salary information is activated, the token must have access to salary information as well.", "operationId" : "LedgerPostingByDate_get", "parameters" : [ { "name" : "dateFrom", "in" : "query", "description" : "Format is yyyy-MM-dd (from and incl.).", "required" : true, "schema" : { "type" : "string" } }, { "name" : "dateTo", "in" : "query", "description" : "Format is yyyy-MM-dd (to and excl.).", "required" : true, "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponsePosting" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/ledger/vatSettings" : { "get" : { "tags" : [ "ledger/vatSettings" ], "summary" : "Get VAT settings for the logged in company.", "operationId" : "LedgerVatSettings_get", "parameters" : [ { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperVatSettings" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "ledger/vatSettings" ], "summary" : "Update VAT settings for the logged in company.", "operationId" : "LedgerVatSettings_put", "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/VatSettings" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperVatSettings" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/ledger/vatType/createRelativeVatType" : { "put" : { "tags" : [ "ledger/vatType" ], "summary" : "Create a new relative VAT Type. These are used if the company has 'forholdsmessig fradrag for inngående MVA'.", "operationId" : "LedgerVatTypeCreateRelativeVatType_createRelativeVatType", "parameters" : [ { "name" : "name", "in" : "query", "description" : "VAT type name, max 8 characters.", "required" : true, "schema" : { "type" : "string" } }, { "name" : "vatTypeId", "in" : "query", "description" : "VAT type ID. The relative VAT type will behave like this VAT type, except for the basis for calculating the VAT deduction, which is decided by the basis percentage.", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "percentage", "in" : "query", "description" : "Basis percentage. This percentage will be multiplied with the transaction amount to find the amount that will be the basis for calculating the deduction amount.", "required" : true, "schema" : { "type" : "number" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperVatType" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/ledger/vatType/{id}" : { "get" : { "tags" : [ "ledger/vatType" ], "summary" : "Get vat type by ID.", "operationId" : "LedgerVatType_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperVatType" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/ledger/vatType" : { "get" : { "tags" : [ "ledger/vatType" ], "summary" : "Find vat types corresponding with sent data.", "operationId" : "LedgerVatType_search", "parameters" : [ { "name" : "id", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "number", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "typeOfVat", "in" : "query", "description" : "Type of VAT", "schema" : { "type" : "string", "enum" : [ "OUTGOING", "INCOMING", "INCOMING_INVOICE", "PROJECT", "LEDGER" ] } }, { "name" : "vatDate", "in" : "query", "description" : "yyyy-MM-dd. Defaults to today. Note that this is only used in combination with typeOfVat-parameter. Only valid vatTypes on the given date are returned.", "schema" : { "type" : "string" } }, { "name" : "shouldIncludeSpecificationTypes", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseVatType" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/ledger/voucher/openingBalance/>correctionVoucher" : { "get" : { "tags" : [ "ledger/voucher/openingBalance" ], "summary" : "[BETA] Get the correction voucher for the opening balance.", "operationId" : "LedgerVoucherOpeningBalanceCorrectionVoucher_correctionVoucher", "parameters" : [ { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperVoucher" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/ledger/voucher/openingBalance" : { "get" : { "tags" : [ "ledger/voucher/openingBalance" ], "summary" : "[BETA] Get the voucher for the opening balance.", "operationId" : "LedgerVoucherOpeningBalance_get", "parameters" : [ { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperVoucher" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "ledger/voucher/openingBalance" ], "summary" : "[BETA] Add an opening balance on the given date. All movements before this date will be 'zeroed out' in a separate correction voucher. The opening balance must have the first day of a month as the date, and it's also recommended to have the first day of the year as the date. If the postings provided don't balance the voucher, the difference will automatically be posted to a help account", "operationId" : "LedgerVoucherOpeningBalance_post", "parameters" : [ { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "schema" : { "type" : "string", "default" : "*" } } ], "requestBody" : { "description" : "dto", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/OpeningBalance" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperVoucher" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "ledger/voucher/openingBalance" ], "summary" : "[BETA] Delete the opening balance. The correction voucher will also be deleted", "operationId" : "LedgerVoucherOpeningBalance_delete", "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/ledger/voucher/{id}" : { "get" : { "tags" : [ "ledger/voucher" ], "summary" : "Get voucher by ID.", "operationId" : "LedgerVoucher_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperVoucher" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "ledger/voucher" ], "summary" : "Update voucher. Postings with guiRow==0 will be deleted and regenerated.", "operationId" : "LedgerVoucher_put", "parameters" : [ { "name" : "sendToLedger", "in" : "query", "description" : "Should the voucher be sent to ledger? Requires the \"Advanced Voucher\" permission.", "schema" : { "type" : "boolean", "default" : true } }, { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/Voucher" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperVoucher" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "ledger/voucher" ], "summary" : "Delete voucher by ID.", "operationId" : "LedgerVoucher_delete", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/ledger/voucher/{voucherId}/attachment" : { "post" : { "tags" : [ "ledger/voucher" ], "summary" : "Upload attachment to voucher. If the voucher already has an attachment the content will be appended to the existing attachment as new PDF page(s). Valid document formats are PDF, PNG, JPEG and TIFF. Non PDF formats will be converted to PDF. Send as multipart form.", "operationId" : "LedgerVoucherAttachment_uploadAttachment", "parameters" : [ { "name" : "voucherId", "in" : "path", "description" : "Voucher ID to upload attachment to.", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "content" : { "multipart/form-data" : { "schema" : { "required" : [ "file" ], "type" : "object", "properties" : { "file" : { "type" : "string", "description" : "The file", "format" : "binary" } } } } } }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperVoucher" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "ledger/voucher" ], "summary" : "Delete attachment.", "operationId" : "LedgerVoucherAttachment_deleteAttachment", "parameters" : [ { "name" : "voucherId", "in" : "path", "description" : "ID of voucher containing the attachment to delete.", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "version", "in" : "query", "description" : "Version of voucher containing the attachment to delete.", "schema" : { "minimum" : 0, "type" : "integer", "format" : "int32" } }, { "name" : "sendToInbox", "in" : "query", "description" : "Should the attachment be sent to inbox rather than deleted?", "schema" : { "type" : "boolean", "default" : false } }, { "name" : "split", "in" : "query", "description" : "If sendToInbox is true, should the attachment be split into one voucher per page?", "schema" : { "type" : "boolean", "default" : false } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/ledger/voucher/{voucherId}/pdf" : { "get" : { "tags" : [ "ledger/voucher" ], "summary" : "Get PDF representation of voucher by ID.", "operationId" : "LedgerVoucherPdf_downloadPdf", "parameters" : [ { "name" : "voucherId", "in" : "path", "description" : "Voucher ID from which PDF is downloaded.", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "200" : { "description" : "PDF representation of the voucher", "content" : { "application/octet-stream" : { "schema" : { "type" : "string", "format" : "binary" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/ledger/voucher/>externalVoucherNumber" : { "get" : { "tags" : [ "ledger/voucher" ], "summary" : "Find vouchers based on the external voucher number.", "operationId" : "LedgerVoucherExternalVoucherNumber_externalVoucherNumber", "parameters" : [ { "name" : "externalVoucherNumber", "in" : "query", "description" : "The external voucher number, when voucher is created from import.", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseVoucher" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/ledger/voucher/importDocument" : { "post" : { "tags" : [ "ledger/voucher" ], "summary" : "Upload a document to create one or more vouchers. Valid document formats are PDF, PNG, JPEG and TIFF. EHF/XML is possible with agreement with Tripletex. Send as multipart form.", "operationId" : "LedgerVoucherImportDocument_importDocument", "parameters" : [ { "name" : "split", "in" : "query", "description" : "If the document consists of several pages, should the document be split into one voucher per page?", "schema" : { "type" : "boolean", "default" : false } } ], "requestBody" : { "content" : { "multipart/form-data" : { "schema" : { "required" : [ "file" ], "type" : "object", "properties" : { "file" : { "type" : "string", "description" : "The file", "format" : "binary" }, "description" : { "type" : "string", "description" : "Optional description to use for the voucher(s). If omitted the file name will be used." } } } } } }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseVoucher" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/ledger/voucher/importGbat10" : { "post" : { "tags" : [ "ledger/voucher" ], "summary" : "Import GBAT10. Send as multipart form.", "operationId" : "LedgerVoucherImportGbat10_importGbat10", "requestBody" : { "content" : { "multipart/form-data" : { "schema" : { "required" : [ "file", "generateVatPostings" ], "type" : "object", "properties" : { "generateVatPostings" : { "type" : "boolean", "description" : "If the import should generate VAT postings" }, "file" : { "type" : "string", "description" : "The file", "format" : "binary" }, "encoding" : { "type" : "string", "description" : "The file encoding", "default" : "utf-8" } } } } } }, "responses" : { "200" : { "description" : "List of imported voucher IDs", "content" : { "application/json" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/IdOnlyDTO" } } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/ledger/voucher/>nonPosted" : { "get" : { "tags" : [ "ledger/voucher" ], "summary" : "Find non-posted vouchers.", "operationId" : "LedgerVoucherNonPosted_nonPosted", "parameters" : [ { "name" : "dateFrom", "in" : "query", "description" : "From and including", "schema" : { "type" : "string" } }, { "name" : "dateTo", "in" : "query", "description" : "To and excluding", "schema" : { "type" : "string" } }, { "name" : "includeNonApproved", "in" : "query", "description" : "Include non-approved vouchers in the result.", "required" : true, "schema" : { "type" : "boolean", "default" : false } }, { "name" : "changedSince", "in" : "query", "description" : "Only return elements that have changed since this date and time", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseVoucher" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/ledger/voucher/{id}/options" : { "get" : { "tags" : [ "ledger/voucher" ], "summary" : "Returns a data structure containing meta information about operations that are available for this voucher. Currently only implemented for DELETE: It is possible to check if the voucher is deletable.", "operationId" : "LedgerVoucherOptions_options", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperVoucherOptions" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/ledger/voucher" : { "get" : { "tags" : [ "ledger/voucher" ], "summary" : "Find vouchers corresponding with sent data.", "operationId" : "LedgerVoucher_search", "parameters" : [ { "name" : "id", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "number", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "numberFrom", "in" : "query", "description" : "From and including", "schema" : { "type" : "integer", "format" : "int32" } }, { "name" : "numberTo", "in" : "query", "description" : "To and excluding", "schema" : { "type" : "integer", "format" : "int32" } }, { "name" : "typeId", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "dateFrom", "in" : "query", "description" : "From and including", "required" : true, "schema" : { "type" : "string" } }, { "name" : "dateTo", "in" : "query", "description" : "To and excluding", "required" : true, "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/VoucherSearchResponse" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "ledger/voucher" ], "summary" : "Add new voucher. IMPORTANT: Also creates postings. Only the gross amounts will be used. Amounts should be rounded to 2 decimals.", "operationId" : "LedgerVoucher_post", "parameters" : [ { "name" : "sendToLedger", "in" : "query", "description" : "Should the voucher be sent to ledger? Requires the \"Advanced Voucher\" permission.", "schema" : { "type" : "boolean", "default" : true } } ], "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/Voucher" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperVoucher" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/ledger/voucher/list" : { "put" : { "tags" : [ "ledger/voucher" ], "summary" : "Update multiple vouchers. Postings with guiRow==0 will be deleted and regenerated.", "operationId" : "LedgerVoucherList_putList", "parameters" : [ { "name" : "sendToLedger", "in" : "query", "description" : "Should the voucher be sent to ledger? Requires the \"Advanced Voucher\" permission.", "schema" : { "type" : "boolean", "default" : true } } ], "requestBody" : { "description" : "JSON representing updates to objects. Should have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/Voucher" } } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseVoucher" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/ledger/voucher/{id}/:reverse" : { "put" : { "tags" : [ "ledger/voucher" ], "summary" : "Reverses the voucher, and returns the reversed voucher. Supports reversing most voucher types, except salary transactions.", "operationId" : "LedgerVoucherReverse_reverse", "parameters" : [ { "name" : "id", "in" : "path", "description" : "ID of voucher that should be reversed.", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "date", "in" : "query", "description" : "Reverse voucher date", "required" : true, "schema" : { "type" : "string" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperVoucher" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/ledger/voucher/{id}/:sendToInbox" : { "put" : { "tags" : [ "ledger/voucher" ], "summary" : "Send voucher to inbox.", "operationId" : "LedgerVoucherSendToInbox_sendToInbox", "parameters" : [ { "name" : "id", "in" : "path", "description" : "ID of voucher that should be sent to inbox.", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "version", "in" : "query", "description" : "Version of voucher that should be sent to inbox.", "schema" : { "minimum" : 0, "type" : "integer", "format" : "int32" } }, { "name" : "comment", "in" : "query", "description" : "Description of why the voucher was rejected. This parameter is only used if the approval feature is enabled.", "schema" : { "type" : "string" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperVoucher" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/ledger/voucher/{id}/:sendToLedger" : { "put" : { "tags" : [ "ledger/voucher" ], "summary" : "Send voucher to ledger.", "operationId" : "LedgerVoucherSendToLedger_sendToLedger", "parameters" : [ { "name" : "id", "in" : "path", "description" : "ID of voucher that should be sent to ledger.", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "version", "in" : "query", "description" : "Version of voucher that should be sent to ledger.", "schema" : { "minimum" : 0, "type" : "integer", "format" : "int32" } }, { "name" : "number", "in" : "query", "description" : "Voucher number to use. If omitted or 0 the system will assign the number.", "schema" : { "minimum" : 0, "type" : "integer", "format" : "int32", "default" : 0 } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperVoucher" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/ledger/voucher/{voucherId}/pdf/{fileName}" : { "post" : { "tags" : [ "ledger/voucher" ], "summary" : "[DEPRECATED] Use POST ledger/voucher/{voucherId}/attachment instead.", "operationId" : "LedgerVoucherPdf_uploadPdf", "parameters" : [ { "name" : "voucherId", "in" : "path", "description" : "Voucher ID to upload PDF to.", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fileName", "in" : "path", "description" : "File name to store the pdf under. Will not be the same as the filename on the file returned.", "required" : true, "schema" : { "type" : "string" } } ], "requestBody" : { "content" : { "multipart/form-data" : { "schema" : { "required" : [ "file" ], "type" : "object", "properties" : { "file" : { "type" : "string", "description" : "The file", "format" : "binary" } } } } } }, "responses" : { "200" : { "description" : "PDF uploaded successfully", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/ledger/voucher/>voucherReception" : { "get" : { "tags" : [ "ledger/voucher" ], "summary" : "Find vouchers in voucher reception.", "operationId" : "LedgerVoucherVoucherReception_voucherReception", "parameters" : [ { "name" : "dateFrom", "in" : "query", "description" : "From and including", "schema" : { "type" : "string" } }, { "name" : "dateTo", "in" : "query", "description" : "To and excluding", "schema" : { "type" : "string" } }, { "name" : "searchText", "in" : "query", "description" : "Search", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseVoucher" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/ledger/voucher/historical/:closePostings" : { "put" : { "tags" : [ "ledger/voucher/historical" ], "summary" : "[BETA] Close postings.", "operationId" : "LedgerVoucherHistoricalClosePostings_closePostings", "parameters" : [ { "name" : "postingIds", "in" : "query", "description" : "[Deprecated] List of Posting IDs to close separated by comma. The postings should have the same customer, supplier or employee. The sum of amount for all postings MUST be 0.0, otherwise an exception will be thrown.", "schema" : { "type" : "string" } } ], "requestBody" : { "description" : "List of Posting IDs to close separated by comma. The postings should have the same customer, supplier or employee. The sum of amount for all postings MUST be 0.0, otherwise an exception will be thrown.", "content" : { "application/json" : { "schema" : { "type" : "string" } } } }, "responses" : { "200" : { "description" : "Postings closed successfully", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/ledger/voucher/historical/employee" : { "post" : { "tags" : [ "ledger/voucher/historical" ], "summary" : "[BETA] Create one employee, based on import from external system. Validation is less strict, ie. employee department isn't required.", "operationId" : "LedgerVoucherHistoricalEmployee_postEmployee", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/Employee" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperEmployee" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/ledger/voucher/historical/historical" : { "post" : { "tags" : [ "ledger/voucher/historical" ], "summary" : "API endpoint for creating historical vouchers. These are vouchers created outside Tripletex, and should be from closed accounting years. The intended usage is to get access to historical transcations in Tripletex. Also creates postings. All amount fields in postings will be used. VAT postings must be included, these are not generated automatically like they are for normal vouchers in Tripletex. Requires the \\\"All vouchers\\\" and \\\"Advanced Voucher\\\" permissions.", "operationId" : "LedgerVoucherHistoricalHistorical_postHistorical", "parameters" : [ { "name" : "comment", "in" : "query", "description" : "Import comment, include the name and version of the source system.", "schema" : { "type" : "string" } }, { "name" : "useCustomNumberSeries", "in" : "query", "description" : "Use custom number series (true), or use default number series for historical vouchers (false).", "schema" : { "type" : "boolean" } } ], "requestBody" : { "description" : "List of vouchers and related postings to import. Max 500. ", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/HistoricalVoucher" } } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseHistoricalVoucher" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/ledger/voucher/historical/:reverseHistoricalVouchers" : { "put" : { "tags" : [ "ledger/voucher/historical" ], "summary" : "[BETA] Deletes all historical vouchers. Requires the \"All vouchers\" and \"Advanced Voucher\" permissions.", "operationId" : "LedgerVoucherHistoricalReverseHistoricalVouchers_reverseHistoricalVouchers", "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/ledger/voucher/historical/{voucherId}/attachment" : { "post" : { "tags" : [ "ledger/voucher/historical" ], "summary" : "Upload attachment to voucher. If the voucher already has an attachment the content will be appended to the existing attachment as new PDF page(s). Valid document formats are PDF, PNG, JPEG and TIFF. Non PDF formats will be converted to PDF. Send as multipart form.", "operationId" : "LedgerVoucherHistoricalAttachment_uploadAttachment", "parameters" : [ { "name" : "voucherId", "in" : "path", "description" : "Voucher ID to upload attachment to.", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "content" : { "multipart/form-data" : { "schema" : { "required" : [ "file" ], "type" : "object", "properties" : { "file" : { "type" : "string", "description" : "The file", "format" : "binary" } } } } } }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperHistoricalVoucher" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/ledger/voucherType/{id}" : { "get" : { "tags" : [ "ledger/voucherType" ], "summary" : "Get voucher type by ID.", "operationId" : "LedgerVoucherType_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperVoucherType" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/ledger/voucherType" : { "get" : { "tags" : [ "ledger/voucherType" ], "summary" : "Find voucher types corresponding with sent data.", "operationId" : "LedgerVoucherType_search", "parameters" : [ { "name" : "name", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseVoucherType" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/municipality/query" : { "get" : { "tags" : [ "municipality" ], "summary" : "[BETA] Wildcard search.", "operationId" : "MunicipalityQuery_query", "parameters" : [ { "name" : "id", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "query", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "schema" : { "type" : "string", "default" : "id, displayName" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "schema" : { "type" : "integer", "format" : "int32", "default" : 25 } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseMunicipality" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/municipality" : { "get" : { "tags" : [ "municipality" ], "summary" : "Get municipalities.", "operationId" : "Municipality_search", "parameters" : [ { "name" : "includePayrollTaxZones", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean", "default" : true } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseMunicipality" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/subscription/cancel" : { "put" : { "tags" : [ "subscription" ], "summary" : "Close account with/without read access", "operationId" : "SubscriptionCancel_cancel", "requestBody" : { "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/AccountClosureInfo" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/subscription/packages" : { "get" : { "tags" : [ "subscription" ], "summary" : "Returns the packages that can exist for an account.", "operationId" : "SubscriptionPackages_getPackages", "parameters" : [ { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperListMySubscriptionModuleDTO" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/subscription/reactivate" : { "put" : { "tags" : [ "subscription" ], "summary" : "Reopen account with previous modules", "operationId" : "SubscriptionReactivate_reactivate", "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/internal/nhoAdmin/:abort" : { "put" : { "tags" : [ "internal/nhoAdmin" ], "summary" : "Aborts all scheduled NHO membership events", "operationId" : "InternalNhoAdminAbort_abort", "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/order/{id}/:approveSubscriptionInvoice" : { "put" : { "tags" : [ "order" ], "summary" : "To create a subscription invoice, first create a order with the subscription enabled, then approve it with this method. This approves the order for subscription invoicing.", "operationId" : "OrderApproveSubscriptionInvoice_approveSubscriptionInvoice", "parameters" : [ { "name" : "id", "in" : "path", "description" : "ID of order to approve for subscription invoicing.", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "invoiceDate", "in" : "query", "description" : "The approval date for the subscription.", "required" : true, "schema" : { "type" : "string" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperInvoice" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/order/{id}/:attach" : { "put" : { "tags" : [ "order" ], "summary" : "Attach document to specified order ID.", "operationId" : "OrderAttach_attach", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "content" : { "multipart/form-data" : { "schema" : { "required" : [ "file" ], "type" : "object", "properties" : { "file" : { "type" : "string", "description" : "The file", "format" : "binary" } } } } } }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperDocumentArchive" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/order/{id}" : { "get" : { "tags" : [ "order" ], "summary" : "Get order by ID.", "operationId" : "Order_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperOrder" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "order" ], "summary" : "Update order.", "operationId" : "Order_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "updateLinesAndGroups", "in" : "query", "description" : "Should order lines and order groups be saved and not included lines/groups be removed? Only applies if non null list of order lines or order groups is set.", "schema" : { "type" : "boolean", "default" : false } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/Order" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperOrder" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "order" ], "summary" : "Delete order.", "operationId" : "Order_delete", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/order/packingNote/{orderId}/pdf" : { "get" : { "tags" : [ "order" ], "summary" : "Get PDF representation of packing note by ID.", "operationId" : "OrderPackingNotePdf_downloadPackingNotePdf", "parameters" : [ { "name" : "orderId", "in" : "path", "description" : "Order ID from which PDF is downloaded.", "required" : true, "schema" : { "type" : "integer", "format" : "int32" } }, { "name" : "type", "in" : "query", "description" : "Type of packing note to download.", "schema" : { "type" : "string", "enum" : [ "ALL_ORDER_LINES", "STOCK_ITEMS_ONLY" ], "default" : "ALL_ORDER_LINES" } }, { "name" : "download", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean", "default" : true } } ], "responses" : { "200" : { "description" : "PDF representation of the packing note", "content" : { "application/octet-stream" : { "schema" : { "type" : "string", "format" : "binary" } }, "application/pdf" : { "schema" : { "type" : "string", "format" : "binary" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/order/orderConfirmation/{orderId}/pdf" : { "get" : { "tags" : [ "order" ], "summary" : "Get PDF representation of order by ID.", "operationId" : "OrderOrderConfirmationPdf_downloadPdf", "parameters" : [ { "name" : "orderId", "in" : "path", "description" : "Order ID from which PDF is downloaded.", "required" : true, "schema" : { "type" : "integer", "format" : "int32" } }, { "name" : "download", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean", "default" : true } } ], "responses" : { "200" : { "description" : "PDF representation of the order confirmation", "content" : { "application/octet-stream" : { "schema" : { "type" : "string", "format" : "binary" } }, "application/pdf" : { "schema" : { "type" : "string", "format" : "binary" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/order/{id}/:invoice" : { "put" : { "tags" : [ "order" ], "summary" : "Create new invoice or subscription invoice from order.", "operationId" : "OrderInvoice_invoice", "parameters" : [ { "name" : "id", "in" : "path", "description" : "ID of order to invoice.", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "invoiceDate", "in" : "query", "description" : "The invoice date", "required" : true, "schema" : { "type" : "string" } }, { "name" : "sendToCustomer", "in" : "query", "description" : "Send invoice to customer", "schema" : { "type" : "boolean", "default" : true } }, { "name" : "sendType", "in" : "query", "description" : "Send type used for sending the invoice", "schema" : { "type" : "string", "enum" : [ "EMAIL", "EHF", "AVTALEGIRO", "EFAKTURA", "VIPPS", "PAPER", "MANUAL" ] } }, { "name" : "paymentTypeId", "in" : "query", "description" : "Payment type to register prepayment of the invoice. paymentTypeId and paidAmount are optional, but both must be provided if the invoice has already been paid. The payment type must be related to an account with the same currency as the invoice.", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "paidAmount", "in" : "query", "description" : "Paid amount to register prepayment of the invoice, in invoice currency. paymentTypeId and paidAmount are optional, but both must be provided if the invoice has already been paid. This amount is in the invoice currency.", "schema" : { "type" : "number" } }, { "name" : "paidAmountAccountCurrency", "in" : "query", "description" : "Amount paid in payment type currency", "schema" : { "type" : "number" } }, { "name" : "paymentTypeIdRestAmount", "in" : "query", "description" : "Payment type of rest amount. It is possible to have two prepaid payments when invoicing. If paymentTypeIdRestAmount > 0, this second payment will be calculated as invoice amount - paidAmount", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "paidAmountAccountCurrencyRest", "in" : "query", "description" : "Amount rest in payment type currency", "schema" : { "type" : "number" } }, { "name" : "createOnAccount", "in" : "query", "description" : "Create on account(a konto)", "schema" : { "type" : "string", "enum" : [ "NONE", "WITH_VAT", "WITHOUT_VAT" ] } }, { "name" : "amountOnAccount", "in" : "query", "description" : "Amount on account", "schema" : { "type" : "number", "default" : 0 } }, { "name" : "onAccountComment", "in" : "query", "description" : "On account comment", "schema" : { "type" : "string", "default" : "" } }, { "name" : "createBackorder", "in" : "query", "description" : "Create a backorder for this order, available only for pilot users", "schema" : { "type" : "boolean", "default" : false } }, { "name" : "invoiceIdIfIsCreditNote", "in" : "query", "description" : "Id of the invoice a credit note refers to", "schema" : { "type" : "integer", "format" : "int64", "default" : 0 } }, { "name" : "overrideEmailAddress", "in" : "query", "description" : "Will override email address if sendType = EMAIL", "schema" : { "type" : "string" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperInvoice" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/order/:invoiceMultipleOrders" : { "put" : { "tags" : [ "order" ], "summary" : "[BETA] Charges a single customer invoice from multiple orders. The orders must be to the same customer, currency, due date, receiver email, attn. and smsNotificationNumber", "operationId" : "OrderInvoiceMultipleOrders_invoiceMultipleOrders", "parameters" : [ { "name" : "id", "in" : "query", "description" : "List of Order IDs - to the same customer, separated by comma.", "required" : true, "schema" : { "type" : "string" } }, { "name" : "invoiceDate", "in" : "query", "description" : "The invoice date", "required" : true, "schema" : { "type" : "string" } }, { "name" : "sendToCustomer", "in" : "query", "description" : "Send invoice to customer", "schema" : { "type" : "boolean", "default" : true } }, { "name" : "createBackorders", "in" : "query", "description" : "Create a backorder for all any orders that delivers less than ordered amount", "schema" : { "type" : "boolean", "default" : false } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperInvoice" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/order" : { "get" : { "tags" : [ "order" ], "summary" : "Find orders corresponding with sent data.", "operationId" : "Order_search", "parameters" : [ { "name" : "id", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "number", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "customerId", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "orderDateFrom", "in" : "query", "description" : "From and including", "required" : true, "schema" : { "type" : "string" } }, { "name" : "orderDateTo", "in" : "query", "description" : "To and excluding", "required" : true, "schema" : { "type" : "string" } }, { "name" : "deliveryComment", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "isClosed", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "isSubscription", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseOrder" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "order" ], "summary" : "Create order.", "operationId" : "Order_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/Order" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperOrder" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/order/sendInvoicePreview/{orderId}" : { "put" : { "tags" : [ "order" ], "summary" : "Send Invoice Preview to customer by email.", "operationId" : "OrderSendInvoicePreview_postInvoicePreview", "parameters" : [ { "name" : "orderId", "in" : "path", "description" : "orderId", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "email", "in" : "query", "description" : "email", "schema" : { "type" : "string" } }, { "name" : "message", "in" : "query", "description" : "message", "schema" : { "type" : "string" } }, { "name" : "saveAsDefault", "in" : "query", "description" : "saveAsDefault", "schema" : { "type" : "boolean" } } ], "responses" : { "204" : { "description" : "Invoice preview email sent successfully" } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/order/list" : { "post" : { "tags" : [ "order" ], "summary" : "[BETA] Create multiple Orders with OrderLines. Max 100 at a time.", "operationId" : "OrderList_postList", "requestBody" : { "description" : "JSON representing a list of new objects to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/Order" } } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseOrder" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/order/sendOrderConfirmation/{orderId}" : { "put" : { "tags" : [ "order" ], "summary" : "Send Order Confirmation to customer by email.", "operationId" : "OrderSendOrderConfirmation_postOrderConfirmation", "parameters" : [ { "name" : "orderId", "in" : "path", "description" : "orderId", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "email", "in" : "query", "description" : "email", "schema" : { "type" : "string" } }, { "name" : "message", "in" : "query", "description" : "message", "schema" : { "type" : "string" } }, { "name" : "saveAsDefault", "in" : "query", "description" : "saveAsDefault", "schema" : { "type" : "boolean" } } ], "responses" : { "204" : { "description" : "Order confirmation email sent successfully" } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/order/sendPackingNote/{orderId}" : { "put" : { "tags" : [ "order" ], "summary" : "Send Packing Note to customer by email.", "operationId" : "OrderSendPackingNote_postPackingNote", "parameters" : [ { "name" : "orderId", "in" : "path", "description" : "orderId", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "email", "in" : "query", "description" : "email", "schema" : { "type" : "string" } }, { "name" : "message", "in" : "query", "description" : "message", "schema" : { "type" : "string" } }, { "name" : "saveAsDefault", "in" : "query", "description" : "saveAsDefault", "schema" : { "type" : "boolean" } }, { "name" : "type", "in" : "query", "description" : "Type of packing note to send.", "schema" : { "type" : "string", "enum" : [ "ALL_ORDER_LINES", "STOCK_ITEMS_ONLY" ], "default" : "ALL_ORDER_LINES" } } ], "responses" : { "204" : { "description" : "Packing note email sent successfully" } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/order/{id}/:unApproveSubscriptionInvoice" : { "put" : { "tags" : [ "order" ], "summary" : "Unapproves the order for subscription invoicing.", "operationId" : "OrderUnApproveSubscriptionInvoice_unApproveSubscriptionInvoice", "parameters" : [ { "name" : "id", "in" : "path", "description" : "ID of order to unapprove for subscription invoicing.", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "200" : { "description" : "Order unapproved for subscription invoicing successfully", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/order/orderGroup/{id}" : { "get" : { "tags" : [ "order/orderGroup" ], "summary" : "Get orderGroup by ID. A orderGroup is a way to group orderLines, and add comments and subtotals", "operationId" : "OrderOrderGroup_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperOrderGroup" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "order/orderGroup" ], "summary" : "Delete orderGroup by ID.", "operationId" : "OrderOrderGroup_delete", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/order/orderGroup" : { "get" : { "tags" : [ "order/orderGroup" ], "summary" : "Find orderGroups corresponding with sent data.", "operationId" : "OrderOrderGroup_search", "parameters" : [ { "name" : "ids", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "orderIds", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseOrderGroup" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "order/orderGroup" ], "summary" : "[Beta] Put orderGroup.", "operationId" : "OrderOrderGroup_put", "parameters" : [ { "name" : "OrderLineIds", "in" : "query", "description" : "Deprecated. Put order lines in the dto instead.", "schema" : { "type" : "string" } }, { "name" : "removeExistingOrderLines", "in" : "query", "description" : "Deprecated. Should existing orderLines be removed from this orderGroup. This will always happen if orderLineIds is not empty.", "schema" : { "type" : "boolean", "default" : false } } ], "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/OrderGroup" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperOrderGroup" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "order/orderGroup" ], "summary" : "[Beta] Post orderGroup.", "operationId" : "OrderOrderGroup_post", "parameters" : [ { "name" : "orderLineIds", "in" : "query", "description" : "Deprecated. Put order lines in the dto instead.", "schema" : { "type" : "string" } } ], "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/OrderGroup" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperOrderGroup" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/order/orderline/{id}" : { "get" : { "tags" : [ "order/orderline" ], "summary" : "Get order line by ID.", "operationId" : "OrderOrderline_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperOrderLine" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "order/orderline" ], "summary" : "[BETA] Put order line", "operationId" : "OrderOrderline_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/OrderLine" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperOrderLine" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "order/orderline" ], "summary" : "[BETA] Delete order line by ID.", "operationId" : "OrderOrderline_delete", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/order/orderline/list" : { "post" : { "tags" : [ "order/orderline" ], "summary" : "Create multiple order lines.", "operationId" : "OrderOrderlineList_postList", "requestBody" : { "description" : "JSON representing a list of new objects to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/OrderLine" } } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseOrderLine" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/order/orderline/orderLineTemplate" : { "get" : { "tags" : [ "order/orderline" ], "summary" : "[BETA] Get order line template from order and product", "operationId" : "OrderOrderlineOrderLineTemplate_orderLineTemplate", "parameters" : [ { "name" : "orderId", "in" : "query", "description" : "Equals", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "productId", "in" : "query", "description" : "Equals", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperOrderLine" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/order/orderline/{id}/:pickLine" : { "put" : { "tags" : [ "order/orderline" ], "summary" : "[BETA] Pick order line. This is only available for customers who have Logistics and who activated the available inventory functionality.", "operationId" : "OrderOrderlinePickLine_pickLine", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Order line id", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "inventoryId", "in" : "query", "description" : "Optional inventory id. If no inventory is sent, default inventory will be used.", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "inventoryLocationId", "in" : "query", "description" : "Optional inventory location id", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "pickDate", "in" : "query", "description" : "Optional pick date. If not sent, current date will be used.", "schema" : { "type" : "string" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperOrderLine" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/order/orderline" : { "post" : { "tags" : [ "order/orderline" ], "summary" : "Create order line. When creating several order lines, use /list for better performance.", "operationId" : "OrderOrderline_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/OrderLine" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperOrderLine" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/order/orderline/{id}/:unpickLine" : { "put" : { "tags" : [ "order/orderline" ], "summary" : "[BETA] Unpick order line.This is only available for customers who have Logistics and who activated the available inventory functionality.", "operationId" : "OrderOrderlineUnpickLine_unpickLine", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Order line id", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperOrderLine" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/yearEnd/penneo/casefiles/{caseFileId}/activate" : { "post" : { "tags" : [ "penneo" ], "summary" : "Fully activate a case file for signing (links signers, configures emails, and activates)", "operationId" : "YearEndPenneoCasefilesActivate_activateCaseFile", "parameters" : [ { "name" : "caseFileId", "in" : "path", "description" : "Case file ID from Penneo", "required" : true, "schema" : { "minimum" : 1, "type" : "integer", "format" : "int64" } }, { "name" : "year", "in" : "query", "description" : "Year for which to find signers", "schema" : { "type" : "integer", "format" : "int32" } } ], "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperString" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/yearEnd/penneo/session" : { "get" : { "tags" : [ "penneo" ], "summary" : "Authenticate and get case files from Penneo for a specific year", "operationId" : "YearEndPenneoSession_authenticateAndListCaseFiles", "parameters" : [ { "name" : "year", "in" : "query", "description" : "Year to fetch case files for", "schema" : { "type" : "integer", "format" : "int32" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperString" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/yearEnd/penneo/signature-lines" : { "post" : { "tags" : [ "penneo" ], "summary" : "Create signature line, link signer, and configure email in one operation", "operationId" : "YearEndPenneoSignature-lines_createAndLinkSignatureLine", "requestBody" : { "description" : "Signature line creation request", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/CreateAndLinkSignatureLineRequest" } } } }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperString" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/yearEnd/penneo/casefiles" : { "get" : { "tags" : [ "penneo" ], "summary" : "Get case files from Penneo for a specific year", "operationId" : "YearEndPenneoCasefiles_getCaseFiles", "parameters" : [ { "name" : "year", "in" : "query", "description" : "Year to fetch case files for", "schema" : { "type" : "integer", "format" : "int32" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperString" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "penneo" ], "summary" : "Create a new case file in Penneo", "operationId" : "YearEndPenneoCasefiles_createCaseFile", "requestBody" : { "description" : "Case file request", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/CaseFileRequest" } } } }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperString" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/yearEnd/penneo/documents" : { "post" : { "tags" : [ "penneo" ], "summary" : "Add a document to an existing case file", "operationId" : "YearEndPenneoDocuments_createDocument", "requestBody" : { "description" : "Document creation request", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/AddDocumentRequest" } } } }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperString" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/yearEnd/penneo/casefiles/{caseFileId}" : { "delete" : { "tags" : [ "penneo" ], "summary" : "Delete a case file from Penneo", "operationId" : "YearEndPenneoCasefiles_deleteCaseFile", "parameters" : [ { "name" : "caseFileId", "in" : "path", "description" : "Case file ID from Penneo", "required" : true, "schema" : { "minimum" : 1, "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperString" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/yearEnd/penneo/documents/{documentId}" : { "put" : { "tags" : [ "penneo" ], "summary" : "Update an existing document in a case file", "operationId" : "YearEndPenneoDocuments_updateDocument", "parameters" : [ { "name" : "documentId", "in" : "path", "description" : "Document ID from Penneo", "required" : true, "schema" : { "minimum" : 1, "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Document update request", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/UpdateDocumentRequest" } } } }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperString" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "penneo" ], "summary" : "Delete a document from a case file", "operationId" : "YearEndPenneoDocuments_deleteDocument", "parameters" : [ { "name" : "documentId", "in" : "path", "description" : "Document ID from Penneo", "required" : true, "schema" : { "minimum" : 1, "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperString" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/yearEnd/penneo/recipients/{id}" : { "delete" : { "tags" : [ "penneo" ], "summary" : "Delete a recipient from a case file", "operationId" : "YearEndPenneoRecipients_deleteRecipients", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Recipient ID from Penneo", "required" : true, "schema" : { "minimum" : 1, "type" : "integer", "format" : "int64" } }, { "name" : "caseFileId", "in" : "query", "description" : "Case file ID from Penneo", "required" : true, "schema" : { "minimum" : 1, "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperString" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/yearEnd/penneo/casefiles/{caseFileId}/signers/{signerId}" : { "delete" : { "tags" : [ "penneo" ], "summary" : "Delete a signer from a case file", "operationId" : "YearEndPenneoCasefilesSigners_deleteSigner", "parameters" : [ { "name" : "caseFileId", "in" : "path", "description" : "Case file ID from Penneo", "required" : true, "schema" : { "minimum" : 1, "type" : "integer", "format" : "int64" } }, { "name" : "signerId", "in" : "path", "description" : "Signer ID from Penneo", "required" : true, "schema" : { "minimum" : 1, "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperString" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/yearEnd/penneo/documents/{documentId}/download" : { "get" : { "tags" : [ "penneo" ], "summary" : "Download a document from Penneo", "operationId" : "YearEndPenneoDocumentsDownload_downloadDocument", "parameters" : [ { "name" : "documentId", "in" : "path", "description" : "Document ID from Penneo", "required" : true, "schema" : { "minimum" : 1, "type" : "integer", "format" : "int64" } } ], "responses" : { "200" : { "description" : "Document downloaded successfully", "content" : { "application/pdf" : { } } }, "404" : { "description" : "Document not found", "content" : { "text/plain" : { } } }, "500" : { "description" : "Failed to download document", "content" : { "text/plain" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/yearEnd/penneo/recipients" : { "get" : { "tags" : [ "penneo" ], "summary" : "Get all recipients for a case file", "operationId" : "YearEndPenneoRecipients_getRecipients", "parameters" : [ { "name" : "caseFileId", "in" : "query", "description" : "Case file ID from Penneo", "required" : true, "schema" : { "minimum" : 1, "type" : "integer", "format" : "int64" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperString" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "penneo" ], "summary" : "Add a copy recipient to a case file", "operationId" : "YearEndPenneoRecipients_postRecipients", "requestBody" : { "description" : "Recipient request", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/AddRecipientRequest" } } } }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperString" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/yearEnd/penneo/casefiles/{caseFileId}/signers/{signerId}/reactivate" : { "post" : { "tags" : [ "penneo" ], "summary" : "Reactivate a signer in a case file", "operationId" : "YearEndPenneoCasefilesSignersReactivate_reactivateSigner", "parameters" : [ { "name" : "caseFileId", "in" : "path", "description" : "Case file ID from Penneo", "required" : true, "schema" : { "minimum" : 1, "type" : "integer", "format" : "int64" } }, { "name" : "signerId", "in" : "path", "description" : "Signer ID from Penneo", "required" : true, "schema" : { "minimum" : 1, "type" : "integer", "format" : "int64" } } ], "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperString" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/yearEnd/penneo/casefiles/{caseFileId}/signers/{signerId}/resend" : { "post" : { "tags" : [ "penneo" ], "summary" : "Resend a sign link to a specific signer", "operationId" : "YearEndPenneoCasefilesSignersResend_resendSignLink", "parameters" : [ { "name" : "caseFileId", "in" : "path", "description" : "Case file ID from Penneo", "required" : true, "schema" : { "minimum" : 1, "type" : "integer", "format" : "int64" } }, { "name" : "signerId", "in" : "path", "description" : "Signer ID from Penneo", "required" : true, "schema" : { "minimum" : 1, "type" : "integer", "format" : "int64" } } ], "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperString" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/yearEnd/penneo/sync" : { "post" : { "tags" : [ "penneo" ], "summary" : "Synchronize database with current Penneo casefile state", "operationId" : "YearEndPenneoSync_sync", "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperString" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/yearEnd/penneo/updateCompletedStatus" : { "post" : { "tags" : [ "penneo" ], "summary" : "Update completed status for current company's casefiles from global API", "operationId" : "YearEndPenneoUpdateCompletedStatus_updateCompletedStatus", "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperString" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/ledger/postingRules" : { "get" : { "tags" : [ "ledger/postingRules" ], "summary" : "Get posting rules for current company. The posting rules defined which accounts from the chart of accounts that are used for postings when the system creates postings.", "operationId" : "LedgerPostingRules_get", "parameters" : [ { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperPostingRules" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/product/external/{id}" : { "get" : { "tags" : [ "product/external" ], "summary" : "[BETA] Get external product by ID.", "operationId" : "ProductExternal_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperExternalProduct" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/product/external" : { "get" : { "tags" : [ "product/external" ], "summary" : "[BETA] Find external products corresponding with sent data. The sorting-field is not in use on this endpoint.", "operationId" : "ProductExternal_search", "parameters" : [ { "name" : "name", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "wholesaler", "in" : "query", "description" : "Wholesaler", "schema" : { "type" : "string", "enum" : [ "AHLSELL", "BROEDRENE_DAHL", "ELEKTROSKANDIA", "HEIDENREICH", "ONNINEN", "SONEPAR", "SOLAR", "BERGAARD_AMUNDSEN", "BERGAARD_AMUNDSEN_STAVANGER", "SORLANDET_ELEKTRO", "ETMAN_DISTRIBUSJON", "ETM_OST", "CENIKA", "EP_ENGROS", "BETEK", "DGROUP", "FAGERHULT", "GLAMOX", "SCHNEIDER", "STOKKAN", "WURTH", "ELEKTROIMPORTOEREN", "THERMOFLOOR", "LYSKOMPONENTER", "NORDESIGN", "TECE" ] } }, { "name" : "organizationNumber", "in" : "query", "description" : "Wholesaler organization number. Mandatory if Wholesaler is not selected. If Wholesaler is selected, this field is ignored.", "schema" : { "type" : "string" } }, { "name" : "elNumber", "in" : "query", "description" : "List of valid el numbers", "schema" : { "type" : "string" } }, { "name" : "nrfNumber", "in" : "query", "description" : "List of valid nrf numbers", "schema" : { "type" : "string" } }, { "name" : "isInactive", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseExternalProduct" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/product/{id}" : { "get" : { "tags" : [ "product" ], "summary" : "Get product by ID.", "operationId" : "Product_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperProduct" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "product" ], "summary" : "Update product.", "operationId" : "Product_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/Product" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperProduct" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "product" ], "summary" : "Delete product.", "operationId" : "Product_delete", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/product/{id}/image" : { "post" : { "tags" : [ "product" ], "summary" : "Upload image to product. Existing image on product will be replaced if exists", "operationId" : "ProductImage_uploadImage", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Product ID to upload image to.", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "content" : { "multipart/form-data" : { "schema" : { "required" : [ "file" ], "type" : "object", "properties" : { "file" : { "type" : "string", "description" : "The file", "format" : "binary" } } } } } }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperProduct" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "product" ], "summary" : "Delete image.", "operationId" : "ProductImage_deleteImage", "parameters" : [ { "name" : "id", "in" : "path", "description" : "ID of Product containing the image to delete.", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/product/list" : { "put" : { "tags" : [ "product" ], "summary" : "Update a list of products.", "operationId" : "ProductList_putList", "requestBody" : { "description" : "JSON representing updates to objects. Should have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/Product" } } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseProduct" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "product" ], "summary" : "Add multiple products.", "operationId" : "ProductList_postList", "requestBody" : { "description" : "JSON representing a list of new objects to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/Product" } } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseProduct" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/product" : { "get" : { "tags" : [ "product" ], "summary" : "Find products corresponding with sent data.", "operationId" : "Product_search", "parameters" : [ { "name" : "number", "in" : "query", "description" : "DEPRECATED. List of product numbers (Integer only)", "schema" : { "type" : "string" } }, { "name" : "ids", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "productNumber", "in" : "query", "description" : "List of valid product numbers", "schema" : { "type" : "array", "items" : { "type" : "string" } } }, { "name" : "name", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "ean", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "isInactive", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "isStockItem", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "isSupplierProduct", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "supplierId", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "currencyId", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "vatTypeId", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "productUnitId", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "departmentId", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "accountId", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "costExcludingVatCurrencyFrom", "in" : "query", "description" : "From and including", "schema" : { "type" : "number" } }, { "name" : "costExcludingVatCurrencyTo", "in" : "query", "description" : "To and excluding", "schema" : { "type" : "number" } }, { "name" : "priceExcludingVatCurrencyFrom", "in" : "query", "description" : "From and including", "schema" : { "type" : "number" } }, { "name" : "priceExcludingVatCurrencyTo", "in" : "query", "description" : "To and excluding", "schema" : { "type" : "number" } }, { "name" : "priceIncludingVatCurrencyFrom", "in" : "query", "description" : "From and including", "schema" : { "type" : "number" } }, { "name" : "priceIncludingVatCurrencyTo", "in" : "query", "description" : "To and excluding", "schema" : { "type" : "number" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseProduct" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "product" ], "summary" : "Create new product.", "operationId" : "Product_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/Product" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperProduct" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/product/supplierProduct/{id}" : { "get" : { "tags" : [ "product/supplierProduct" ], "summary" : "Get supplierProduct by ID.", "operationId" : "ProductSupplierProduct_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperSupplierProduct" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "product/supplierProduct" ], "summary" : "Update supplierProduct.", "operationId" : "ProductSupplierProduct_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/SupplierProduct" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperSupplierProduct" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "product/supplierProduct" ], "summary" : "Delete supplierProduct.", "operationId" : "ProductSupplierProduct_delete", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/product/supplierProduct/getSupplierProductsByIds" : { "post" : { "tags" : [ "product/supplierProduct" ], "summary" : "Find the products by ids. Method was added as a POST because GET request header has a maximum size that we can exceed with customers that a lot of products.", "operationId" : "ProductSupplierProductGetSupplierProductsByIds_getSupplierProductsByIds", "requestBody" : { "description" : "JSON representing updates to objects. Should have ID and version set.", "content" : { "application/json" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/SupplierProduct" } } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseSupplierProduct" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/product/supplierProduct" : { "get" : { "tags" : [ "product/supplierProduct" ], "summary" : "Find products corresponding with sent data.", "operationId" : "ProductSupplierProduct_search", "parameters" : [ { "name" : "productId", "in" : "query", "description" : "Id of product to find supplier products for.", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "resaleIds", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "vendorId", "in" : "query", "description" : "Id of vendor to find supplier products for.", "schema" : { "type" : "string" } }, { "name" : "query", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "isInactive", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "productGroupId", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "schema" : { "type" : "integer", "format" : "int32" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "schema" : { "type" : "string", "default" : "id, name, number" } }, { "name" : "targetCurrencyId", "in" : "query", "description" : "The target currency ID for price conversion.", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseSupplierProduct" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "product/supplierProduct" ], "summary" : "Create new supplierProduct.", "operationId" : "ProductSupplierProduct_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/SupplierProduct" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperSupplierProduct" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/product/supplierProduct/list" : { "put" : { "tags" : [ "product/supplierProduct" ], "summary" : "Update a list of supplierProduct.", "operationId" : "ProductSupplierProductList_putList", "requestBody" : { "description" : "JSON representing updates to objects. Should have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/SupplierProduct" } } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseSupplierProduct" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "product/supplierProduct" ], "summary" : "Create list of new supplierProduct.", "operationId" : "ProductSupplierProductList_postList", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/SupplierProduct" } } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseSupplierProduct" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/product/discountGroup/{id}" : { "get" : { "tags" : [ "product/discountGroup" ], "summary" : "Get discount group by ID.", "operationId" : "ProductDiscountGroup_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperDiscountGroup" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/product/discountGroup" : { "get" : { "tags" : [ "product/discountGroup" ], "summary" : "Find discount groups corresponding with sent data.", "operationId" : "ProductDiscountGroup_search", "parameters" : [ { "name" : "id", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "name", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "number", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseDiscountGroup" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/product/inventoryLocation/{id}" : { "get" : { "tags" : [ "product/inventoryLocation" ], "summary" : "Get inventory location by ID. Only available for Logistics Basic.", "operationId" : "ProductInventoryLocation_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperProductInventoryLocation" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "product/inventoryLocation" ], "summary" : "Update product inventory location. Only available for Logistics Basic.", "operationId" : "ProductInventoryLocation_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/ProductInventoryLocation" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperProductInventoryLocation" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "product/inventoryLocation" ], "summary" : "Delete product inventory location. Only available for Logistics Basic.", "operationId" : "ProductInventoryLocation_delete", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/product/inventoryLocation" : { "get" : { "tags" : [ "product/inventoryLocation" ], "summary" : "Find inventory locations by product ID. Only available for Logistics Basic.", "operationId" : "ProductInventoryLocation_search", "parameters" : [ { "name" : "productId", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "inventoryId", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "isMainLocation", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseProductInventoryLocation" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "product/inventoryLocation" ], "summary" : "Create new product inventory location. Only available for Logistics Basic.", "operationId" : "ProductInventoryLocation_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/ProductInventoryLocation" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperProductInventoryLocation" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/product/inventoryLocation/list" : { "put" : { "tags" : [ "product/inventoryLocation" ], "summary" : "Update multiple product inventory locations. Only available for Logistics Basic.", "operationId" : "ProductInventoryLocationList_putList", "requestBody" : { "description" : "JSON representing updates to objects. Should have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ProductInventoryLocation" } } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseProductInventoryLocation" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "product/inventoryLocation" ], "summary" : "Add multiple product inventory locations. Only available for Logistics Basic.", "operationId" : "ProductInventoryLocationList_postList", "requestBody" : { "description" : "JSON representing a list of new objects to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ProductInventoryLocation" } } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseProductInventoryLocation" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/product/logisticsSettings" : { "get" : { "tags" : [ "product/logisticsSettings" ], "summary" : "Get logistics settings for the logged in company.", "operationId" : "ProductLogisticsSettings_get", "parameters" : [ { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperLogisticsSettings" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "product/logisticsSettings" ], "summary" : "Update logistics settings for the logged in company.", "operationId" : "ProductLogisticsSettings_put", "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/LogisticsSettings" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperLogisticsSettings" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/product/group/{id}" : { "get" : { "tags" : [ "product/group" ], "summary" : "Find product group by ID. Only available for Logistics Basic.", "operationId" : "ProductGroup_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperProductGroup" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "product/group" ], "summary" : "Update product group. Only available for Logistics Basic.", "operationId" : "ProductGroup_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/ProductGroup" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperProductGroup" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "product/group" ], "summary" : "Delete product group. Only available for Logistics Basic.", "operationId" : "ProductGroup_delete", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/product/group/list" : { "put" : { "tags" : [ "product/group" ], "summary" : "Update a list of product groups. Only available for Logistics Basic.", "operationId" : "ProductGroupList_putList", "requestBody" : { "description" : "JSON representing updates to objects. Should have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ProductGroup" } } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseProductGroup" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "product/group" ], "summary" : "Add multiple products groups. Only available for Logistics Basic.", "operationId" : "ProductGroupList_postList", "requestBody" : { "description" : "JSON representing a list of new objects to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ProductGroup" } } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseProductGroup" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "product/group" ], "summary" : "Delete multiple product groups. Only available for Logistics Basic.", "operationId" : "ProductGroupList_deleteByIds", "parameters" : [ { "name" : "ids", "in" : "query", "description" : "ID of the elements", "required" : true, "schema" : { "type" : "string" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/product/group" : { "get" : { "tags" : [ "product/group" ], "summary" : "Find product group with sent data. Only available for Logistics Basic.", "operationId" : "ProductGroup_search", "parameters" : [ { "name" : "id", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "name", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "query", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseProductGroup" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "product/group" ], "summary" : "Create new product group. Only available for Logistics Basic.", "operationId" : "ProductGroup_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/ProductGroup" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperProductGroup" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/product/group/query" : { "get" : { "tags" : [ "product/group" ], "summary" : "Wildcard search. Only available for Logistics Basic.", "operationId" : "ProductGroupQuery_query", "parameters" : [ { "name" : "query", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "name", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "schema" : { "type" : "string", "default" : "id, name" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "schema" : { "type" : "integer", "format" : "int32" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseProductGroup" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/product/groupRelation/{id}" : { "get" : { "tags" : [ "product/groupRelation" ], "summary" : "Find product group relation by ID. Only available for Logistics Basic.", "operationId" : "ProductGroupRelation_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperProductGroupRelation" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "product/groupRelation" ], "summary" : "Delete product group relation. Only available for Logistics Basic.", "operationId" : "ProductGroupRelation_delete", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/product/groupRelation/list" : { "post" : { "tags" : [ "product/groupRelation" ], "summary" : "Add multiple products group relations. Only available for Logistics Basic.", "operationId" : "ProductGroupRelationList_postList", "requestBody" : { "description" : "JSON representing a list of new objects to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ProductGroupRelation" } } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseProductGroupRelation" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "product/groupRelation" ], "summary" : "Delete multiple product group relations. Only available for Logistics Basic.", "operationId" : "ProductGroupRelationList_deleteList", "requestBody" : { "description" : "JSON representing a list of new objects to be created. Should not have ID and version set.", "content" : { "application/json" : { "schema" : { "type" : "array", "items" : { "type" : "integer", "format" : "int64" } } } }, "required" : true }, "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/product/groupRelation" : { "get" : { "tags" : [ "product/groupRelation" ], "summary" : "Find product group relation with sent data. Only available for Logistics Basic.", "operationId" : "ProductGroupRelation_search", "parameters" : [ { "name" : "id", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "productId", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "productGroupId", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseProductGroupRelation" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "product/groupRelation" ], "summary" : "Create new product group relation. Only available for Logistics Basic.", "operationId" : "ProductGroupRelation_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/ProductGroupRelation" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperProductGroupRelation" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/product/productPrice" : { "get" : { "tags" : [ "product/productPrice" ], "summary" : "Find prices for a product. Only available for Logistics Basic.", "operationId" : "ProductProductPrice_search", "parameters" : [ { "name" : "productId", "in" : "query", "description" : "Equals", "required" : true, "schema" : { "type" : "string" } }, { "name" : "fromDate", "in" : "query", "description" : "From and including", "schema" : { "type" : "string" } }, { "name" : "toDate", "in" : "query", "description" : "To and excluding", "schema" : { "type" : "string" } }, { "name" : "showOnlyLastPrice", "in" : "query", "description" : "If showOnlyLastPrice is true, fromDate and toDate are ignored and only last price of the product is send back.", "schema" : { "type" : "boolean" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseProductPrice" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/product/unit/{id}" : { "get" : { "tags" : [ "product/unit" ], "summary" : "Get product unit by ID.", "operationId" : "ProductUnit_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperProductUnit" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "product/unit" ], "summary" : "Update product unit.", "operationId" : "ProductUnit_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/ProductUnit" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperProductUnit" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "product/unit" ], "summary" : "Delete product unit by ID.", "operationId" : "ProductUnit_delete", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/product/unit" : { "get" : { "tags" : [ "product/unit" ], "summary" : "Find product units corresponding with sent data.", "operationId" : "ProductUnit_search", "parameters" : [ { "name" : "id", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "name", "in" : "query", "description" : "Names", "schema" : { "type" : "string" } }, { "name" : "nameShort", "in" : "query", "description" : "Short names", "schema" : { "type" : "string" } }, { "name" : "commonCode", "in" : "query", "description" : "Common codes", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseProductUnit" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "product/unit" ], "summary" : "Create new product unit.", "operationId" : "ProductUnit_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/ProductUnit" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperProductUnit" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/product/unit/list" : { "put" : { "tags" : [ "product/unit" ], "summary" : "Update list of product units.", "operationId" : "ProductUnitList_putList", "requestBody" : { "description" : "JSON representing updates to objects. Should have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ProductUnit" } } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseProductUnit" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "product/unit" ], "summary" : "Create multiple product units.", "operationId" : "ProductUnitList_postList", "requestBody" : { "description" : "JSON representing a list of new objects to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ProductUnit" } } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseProductUnit" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/product/unit/query" : { "get" : { "tags" : [ "product/unit" ], "summary" : "Wildcard search.", "operationId" : "ProductUnitQuery_query", "parameters" : [ { "name" : "query", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "schema" : { "type" : "integer", "format" : "int32", "default" : 25 } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "schema" : { "type" : "string", "default" : "id, name" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseProductUnit" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/product/unit/master/{id}" : { "get" : { "tags" : [ "product/unit/master" ], "summary" : "Get product unit master by ID.", "operationId" : "ProductUnitMaster_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperProductUnitMaster" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/product/unit/master" : { "get" : { "tags" : [ "product/unit/master" ], "summary" : "Find product units master corresponding with sent data.", "operationId" : "ProductUnitMaster_search", "parameters" : [ { "name" : "id", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "name", "in" : "query", "description" : "Names", "schema" : { "type" : "string" } }, { "name" : "nameShort", "in" : "query", "description" : "Short names", "schema" : { "type" : "string" } }, { "name" : "commonCode", "in" : "query", "description" : "Common codes", "schema" : { "type" : "string" } }, { "name" : "peppolName", "in" : "query", "description" : "Peppol names", "schema" : { "type" : "string" } }, { "name" : "peppolSymbol", "in" : "query", "description" : "Peppol symbols", "schema" : { "type" : "string" } }, { "name" : "isInactive", "in" : "query", "description" : "Inactive units", "schema" : { "type" : "boolean" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "schema" : { "type" : "integer", "format" : "int32", "default" : 2400 } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseProductUnitMaster" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/project/{id}" : { "get" : { "tags" : [ "project" ], "summary" : "Find project by ID.", "operationId" : "Project_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperProject" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "project" ], "summary" : "[BETA] Update project.", "operationId" : "Project_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/Project" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperProject" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "project" ], "summary" : "[BETA] Delete project.", "operationId" : "Project_delete", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/project/list" : { "put" : { "tags" : [ "project" ], "summary" : "[BETA] Update multiple projects.", "operationId" : "ProjectList_putList", "requestBody" : { "description" : "JSON representing updates to objects. Should have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/Project" } } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseProject" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "project" ], "summary" : "[BETA] Register new projects. Multiple projects for different users can be sent in the same request.", "operationId" : "ProjectList_postList", "requestBody" : { "description" : "JSON representing a list of new objects to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/Project" } } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseProject" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "project" ], "summary" : "[BETA] Delete projects.", "operationId" : "ProjectList_deleteByIds", "parameters" : [ { "name" : "ids", "in" : "query", "description" : "ID of the elements", "required" : true, "schema" : { "type" : "string" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/project" : { "get" : { "tags" : [ "project" ], "summary" : "Find projects corresponding with sent data.", "operationId" : "Project_search", "parameters" : [ { "name" : "id", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "name", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "number", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "isOffer", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "projectManagerId", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "customerAccountManagerId", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "employeeInProjectId", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "departmentId", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "startDateFrom", "in" : "query", "description" : "From and including", "schema" : { "type" : "string" } }, { "name" : "startDateTo", "in" : "query", "description" : "To and excluding", "schema" : { "type" : "string" } }, { "name" : "endDateFrom", "in" : "query", "description" : "From and including", "schema" : { "type" : "string" } }, { "name" : "endDateTo", "in" : "query", "description" : "To and excluding", "schema" : { "type" : "string" } }, { "name" : "isClosed", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "isFixedPrice", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "customerId", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "externalAccountsNumber", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "includeRecentlyClosed", "in" : "query", "description" : "If isClosed is false, include projects that have been closed within the last 3 months. Equals", "schema" : { "type" : "boolean", "default" : false } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseProject" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "project" ], "summary" : "Add new project.", "operationId" : "Project_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/Project" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperProject" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "project" ], "summary" : "[BETA] Delete multiple projects.", "operationId" : "Project_deleteList", "requestBody" : { "description" : "JSON representing objects to delete. Should have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/Project" } } } }, "required" : true }, "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/project/number/{number}" : { "get" : { "tags" : [ "project" ], "summary" : "Find project by number.", "operationId" : "ProjectNumber_getByNumber", "parameters" : [ { "name" : "number", "in" : "path", "description" : "Number of the project", "required" : true, "schema" : { "type" : "string" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperProject" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/project/>forTimeSheet" : { "get" : { "tags" : [ "project" ], "summary" : "Find projects applicable for time sheet registration on a specific day.", "operationId" : "ProjectForTimeSheet_getForTimeSheet", "parameters" : [ { "name" : "includeProjectOffers", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean", "default" : false } }, { "name" : "employeeId", "in" : "query", "description" : "Employee ID. Defaults to ID of token owner.", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "date", "in" : "query", "description" : "yyyy-MM-dd. Defaults to today.", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseProject" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/project/import" : { "post" : { "tags" : [ "project/import", "project" ], "summary" : "Upload project import file.", "operationId" : "ProjectImport_importProjectStatement", "parameters" : [ { "name" : "fileFormat", "in" : "query", "description" : "File format", "required" : true, "schema" : { "type" : "string", "enum" : [ "XLS", "CSV" ] } }, { "name" : "encoding", "in" : "query", "description" : "Encoding", "schema" : { "type" : "string" } }, { "name" : "delimiter", "in" : "query", "description" : "Delimiter", "schema" : { "type" : "string" } }, { "name" : "ignoreFirstRow", "in" : "query", "description" : "Ignore first row", "schema" : { "type" : "boolean" } } ], "requestBody" : { "content" : { "multipart/form-data" : { "schema" : { "required" : [ "file" ], "type" : "object", "properties" : { "file" : { "type" : "string", "description" : "The project import file", "format" : "binary" } } } } } }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseProject" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/project/category/{id}" : { "get" : { "tags" : [ "project/category" ], "summary" : "Find project category by ID.", "operationId" : "ProjectCategory_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperProjectCategory" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "project/category" ], "summary" : "Update project category.", "operationId" : "ProjectCategory_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/ProjectCategory" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperProjectCategory" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/project/category" : { "get" : { "tags" : [ "project/category" ], "summary" : "Find project categories corresponding with sent data.", "operationId" : "ProjectCategory_search", "parameters" : [ { "name" : "id", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "name", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "number", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "description", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseProjectCategory" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "project/category" ], "summary" : "Add new project category.", "operationId" : "ProjectCategory_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/ProjectCategory" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperProjectCategory" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/project/dynamicControlForm/{id}/:copyFieldValuesFromLastEditedForm" : { "put" : { "tags" : [ "project/dynamicControlForm" ], "summary" : "Into each section in the specified form that only has empty or default values, and copyFieldValuesByDefault set as true in the form's template, copy field values from the equivalent section in the most recently edited control form. Signed or completed forms will not be affected.", "operationId" : "ProjectDynamicControlFormCopyFieldValuesFromLastEditedForm_copyFieldValuesFromLastEditedForm", "parameters" : [ { "name" : "id", "in" : "path", "description" : "The ID of the form that the values will be copied to", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/project/orderline/{id}" : { "get" : { "tags" : [ "project/orderline" ], "summary" : "[BETA] Get order line by ID.", "operationId" : "ProjectOrderline_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperProjectOrderLine" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "project/orderline" ], "summary" : "[BETA] Update project orderline.", "operationId" : "ProjectOrderline_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/ProjectOrderLine" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperProjectOrderLine" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "project/orderline" ], "summary" : "Delete order line by ID.", "operationId" : "ProjectOrderline_delete", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/project/orderline/list" : { "post" : { "tags" : [ "project/orderline" ], "summary" : "[BETA] Create multiple order lines.", "operationId" : "ProjectOrderlineList_postList", "requestBody" : { "description" : "JSON representing a list of new objects to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ProjectOrderLine" } } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseProjectOrderLine" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/project/orderline/orderLineTemplate" : { "get" : { "tags" : [ "project/orderline" ], "summary" : "[BETA] Get order line template from project and product", "operationId" : "ProjectOrderlineOrderLineTemplate_orderLineTemplate", "parameters" : [ { "name" : "projectId", "in" : "query", "description" : "Equals", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "productId", "in" : "query", "description" : "Equals", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperProjectOrderLine" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/project/orderline" : { "get" : { "tags" : [ "project/orderline" ], "summary" : "[BETA] Find all order lines for project.", "operationId" : "ProjectOrderline_search", "parameters" : [ { "name" : "projectId", "in" : "query", "description" : "Equals", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "isBudget", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseProjectOrderLine" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "project/orderline" ], "summary" : "[BETA] Create order line. When creating several order lines, use /list for better performance.", "operationId" : "ProjectOrderline_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/ProjectOrderLine" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperProjectOrderLine" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/project/orderline/query" : { "get" : { "tags" : [ "project/orderline" ], "summary" : "[BETA] Wildcard search.", "operationId" : "ProjectOrderlineQuery_query", "parameters" : [ { "name" : "id", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "projectId", "in" : "query", "description" : "Equals", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "query", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "isBudget", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseProjectOrderLine" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/project/participant/list" : { "post" : { "tags" : [ "project/participant" ], "summary" : "[BETA] Add new project participant. Multiple project participants can be sent in the same request.", "operationId" : "ProjectParticipantList_postList", "requestBody" : { "description" : "JSON representing a list of new objects to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ProjectParticipant" } } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseProjectParticipant" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "project/participant" ], "summary" : "[BETA] Delete project participants.", "operationId" : "ProjectParticipantList_deleteByIds", "parameters" : [ { "name" : "ids", "in" : "query", "description" : "ID of the elements", "required" : true, "schema" : { "type" : "string" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/project/participant/{id}" : { "get" : { "tags" : [ "project/participant" ], "summary" : "[BETA] Find project participant by ID.", "operationId" : "ProjectParticipant_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperProjectParticipant" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "project/participant" ], "summary" : "[BETA] Update project participant.", "operationId" : "ProjectParticipant_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/ProjectParticipant" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperProjectParticipant" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/project/participant" : { "post" : { "tags" : [ "project/participant" ], "summary" : "[BETA] Add new project participant.", "operationId" : "ProjectParticipant_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/ProjectParticipant" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperProjectParticipant" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/project/batchPeriod/budgetStatusByProjectIds" : { "get" : { "tags" : [ "project/batchPeriod" ], "summary" : "Get the budget status for the projects in the specific period.", "operationId" : "ProjectBatchPeriodBudgetStatusByProjectIds_budgetStatusByProjectIds", "parameters" : [ { "name" : "ids", "in" : "query", "description" : "ID of the elements", "required" : true, "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseProjectBudgetStatus" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/project/batchPeriod/invoicingReserveByProjectIds" : { "get" : { "tags" : [ "project/batchPeriod" ], "summary" : "Get the invoicing reserve for the projects in the specific period.", "operationId" : "ProjectBatchPeriodInvoicingReserveByProjectIds_invoicingReserveByProjectIds", "parameters" : [ { "name" : "ids", "in" : "query", "description" : "ID of the elements", "required" : true, "schema" : { "type" : "string" } }, { "name" : "dateFrom", "in" : "query", "description" : "Format is yyyy-MM-dd (from and incl.).", "required" : true, "schema" : { "type" : "string" } }, { "name" : "dateTo", "in" : "query", "description" : "Format is yyyy-MM-dd (to and excl.).", "required" : true, "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseProjectPeriodInvoicingReserve" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/project/{id}/period/budgetStatus" : { "get" : { "tags" : [ "project/period", "project/{id}/period" ], "summary" : "Get the budget status for the project period", "operationId" : "ProjectPeriodBudgetStatus_getBudgetStatus", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID for filtering", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperProjectBudgetStatus" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/project/{id}/period/hourlistReport" : { "get" : { "tags" : [ "project/period", "project/{id}/period" ], "summary" : "Find hourlist report by project period.", "operationId" : "ProjectPeriodHourlistReport_hourlistReport", "parameters" : [ { "name" : "dateFrom", "in" : "query", "description" : "Format is yyyy-MM-dd (from and incl.).", "required" : true, "schema" : { "type" : "string" } }, { "name" : "dateTo", "in" : "query", "description" : "Format is yyyy-MM-dd (to and excl.).", "required" : true, "schema" : { "type" : "string" } }, { "name" : "id", "in" : "path", "description" : "Element ID for filtering", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperProjectPeriodHourlyReport" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/project/{id}/period/invoiced" : { "get" : { "tags" : [ "project/period", "project/{id}/period" ], "summary" : "Find invoiced info by project period.", "operationId" : "ProjectPeriodInvoiced_invoiced", "parameters" : [ { "name" : "dateFrom", "in" : "query", "description" : "Format is yyyy-MM-dd (from and incl.).", "required" : true, "schema" : { "type" : "string" } }, { "name" : "dateTo", "in" : "query", "description" : "Format is yyyy-MM-dd (to and excl.).", "required" : true, "schema" : { "type" : "string" } }, { "name" : "id", "in" : "path", "description" : "Element ID for filtering", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperProjectPeriodInvoiced" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/project/{id}/period/invoicingReserve" : { "get" : { "tags" : [ "project/period", "project/{id}/period" ], "summary" : "Find invoicing reserve by project period.", "operationId" : "ProjectPeriodInvoicingReserve_invoicingReserve", "parameters" : [ { "name" : "dateFrom", "in" : "query", "description" : "Format is yyyy-MM-dd (from and incl.).", "required" : true, "schema" : { "type" : "string" } }, { "name" : "dateTo", "in" : "query", "description" : "Format is yyyy-MM-dd (to and excl.).", "required" : true, "schema" : { "type" : "string" } }, { "name" : "id", "in" : "path", "description" : "Element ID for filtering", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperProjectPeriodInvoicingReserve" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/project/{id}/period/monthlyStatus" : { "get" : { "tags" : [ "project/period", "project/{id}/period" ], "summary" : "Find overall status by project period.", "operationId" : "ProjectPeriodMonthlyStatus_monthlyStatus", "parameters" : [ { "name" : "dateFrom", "in" : "query", "description" : "Will be set to the first day of the provided date's month. Format is yyyy-MM-dd (from and incl.).", "required" : true, "schema" : { "type" : "string" } }, { "name" : "dateTo", "in" : "query", "description" : "Must be in the same year as dateFrom. Will be set to the last day of the provided date's month. Format is yyyy-MM-dd (to and incl.).", "required" : true, "schema" : { "type" : "string" } }, { "name" : "id", "in" : "path", "description" : "Element ID for filtering", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseProjectPeriodMonthlyStatus" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/project/{id}/period/overallStatus" : { "get" : { "tags" : [ "project/period", "project/{id}/period" ], "summary" : "Find overall status by project period.", "operationId" : "ProjectPeriodOverallStatus_overallStatus", "parameters" : [ { "name" : "dateFrom", "in" : "query", "description" : "Format is yyyy-MM-dd (from and incl.).", "required" : true, "schema" : { "type" : "string" } }, { "name" : "dateTo", "in" : "query", "description" : "Format is yyyy-MM-dd (to and excl.).", "required" : true, "schema" : { "type" : "string" } }, { "name" : "id", "in" : "path", "description" : "Element ID for filtering", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperProjectPeriodOverallStatus" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/project/projectActivity/{id}" : { "get" : { "tags" : [ "project/projectActivity" ], "summary" : "Find project activity by id", "operationId" : "ProjectProjectActivity_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperProjectActivity" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "project/projectActivity" ], "summary" : "Delete project activity", "operationId" : "ProjectProjectActivity_delete", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/project/projectActivity/list" : { "delete" : { "tags" : [ "project/projectActivity" ], "summary" : "Delete project activities", "operationId" : "ProjectProjectActivityList_deleteByIds", "parameters" : [ { "name" : "ids", "in" : "query", "description" : "ID of the elements", "required" : true, "schema" : { "type" : "string" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/project/projectActivity" : { "post" : { "tags" : [ "project/projectActivity" ], "summary" : "Add project activity.", "operationId" : "ProjectProjectActivity_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/ProjectActivity" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperProjectActivity" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/project/controlForm/{id}" : { "get" : { "tags" : [ "project/controlForm" ], "summary" : "[BETA] Get project control form by ID.", "operationId" : "ProjectControlForm_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperProjectControlForm" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/project/controlForm" : { "get" : { "tags" : [ "project/controlForm" ], "summary" : "[BETA] Get project control forms by project ID.", "operationId" : "ProjectControlForm_search", "parameters" : [ { "name" : "projectId", "in" : "query", "description" : "Project ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseProjectControlForm" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/project/controlFormType/{id}" : { "get" : { "tags" : [ "project/controlFormType" ], "summary" : "[BETA] Get project control form type by ID.", "operationId" : "ProjectControlFormType_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperProjectControlFormType" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/project/controlFormType" : { "get" : { "tags" : [ "project/controlFormType" ], "summary" : "[BETA] Get project control form types", "operationId" : "ProjectControlFormType_search", "parameters" : [ { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseProjectControlFormType" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/project/hourlyRates/{id}" : { "get" : { "tags" : [ "project/hourlyRates" ], "summary" : "Find project hourly rate by ID.", "operationId" : "ProjectHourlyRates_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperProjectHourlyRate" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "project/hourlyRates" ], "summary" : "Update a project hourly rate.", "operationId" : "ProjectHourlyRates_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/ProjectHourlyRate" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperProjectHourlyRate" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "project/hourlyRates" ], "summary" : "Delete Project Hourly Rate ", "operationId" : "ProjectHourlyRates_delete", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/project/hourlyRates/list" : { "put" : { "tags" : [ "project/hourlyRates" ], "summary" : "Update multiple project hourly rates.", "operationId" : "ProjectHourlyRatesList_putList", "requestBody" : { "description" : "JSON representing updates to objects. Should have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ProjectHourlyRate" } } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseProjectHourlyRate" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "project/hourlyRates" ], "summary" : "Create multiple project hourly rates.", "operationId" : "ProjectHourlyRatesList_postList", "requestBody" : { "description" : "JSON representing a list of new objects to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ProjectHourlyRate" } } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseProjectHourlyRate" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "project/hourlyRates" ], "summary" : "Delete project hourly rates.", "operationId" : "ProjectHourlyRatesList_deleteByIds", "parameters" : [ { "name" : "ids", "in" : "query", "description" : "ID of the elements", "required" : true, "schema" : { "type" : "string" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/project/hourlyRates/deleteByProjectIds" : { "delete" : { "tags" : [ "project/hourlyRates" ], "summary" : "Delete project hourly rates by project id.", "operationId" : "ProjectHourlyRatesDeleteByProjectIds_deleteByProjectIds", "parameters" : [ { "name" : "ids", "in" : "query", "description" : "ID of the elements", "required" : true, "schema" : { "type" : "string" } }, { "name" : "date", "in" : "query", "description" : "yyyy-MM-dd. Defaults to today.", "required" : true, "schema" : { "type" : "string" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseProject" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/project/hourlyRates" : { "get" : { "tags" : [ "project/hourlyRates" ], "summary" : "Find project hourly rates corresponding with sent data.", "operationId" : "ProjectHourlyRates_search", "parameters" : [ { "name" : "id", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "projectId", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "type", "in" : "query", "description" : "Equals", "schema" : { "type" : "string", "enum" : [ "TYPE_PREDEFINED_HOURLY_RATES", "TYPE_PROJECT_SPECIFIC_HOURLY_RATES", "TYPE_FIXED_HOURLY_RATE" ] } }, { "name" : "startDateFrom", "in" : "query", "description" : "From and including", "schema" : { "type" : "string" } }, { "name" : "startDateTo", "in" : "query", "description" : "To and excluding", "schema" : { "type" : "string" } }, { "name" : "showInProjectOrder", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseProjectHourlyRate" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "project/hourlyRates" ], "summary" : "Create a project hourly rate. ", "operationId" : "ProjectHourlyRates_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/ProjectHourlyRate" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperProjectHourlyRate" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/project/hourlyRates/updateOrAddHourRates" : { "put" : { "tags" : [ "project/hourlyRates" ], "summary" : "Update or add the same project hourly rate from project overview.", "operationId" : "ProjectHourlyRatesUpdateOrAddHourRates_updateOrAddHourRates", "parameters" : [ { "name" : "ids", "in" : "query", "description" : "ID of the elements", "required" : true, "schema" : { "type" : "string" } } ], "requestBody" : { "description" : "JSON representing updates to objects. Should have ID and version set.", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/HourlyRate" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseProjectHourlyRate" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/project/hourlyRates/projectSpecificRates/{id}" : { "get" : { "tags" : [ "project/hourlyRates/projectSpecificRates" ], "summary" : "Find project specific rate by ID.", "operationId" : "ProjectHourlyRatesProjectSpecificRates_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperProjectSpecificRate" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "project/hourlyRates/projectSpecificRates" ], "summary" : "Update a project specific rate.", "operationId" : "ProjectHourlyRatesProjectSpecificRates_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/ProjectSpecificRate" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperProjectSpecificRate" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "project/hourlyRates/projectSpecificRates" ], "summary" : "Delete project specific rate ", "operationId" : "ProjectHourlyRatesProjectSpecificRates_delete", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/project/hourlyRates/projectSpecificRates/list" : { "put" : { "tags" : [ "project/hourlyRates/projectSpecificRates" ], "summary" : "Update multiple project specific rates.", "operationId" : "ProjectHourlyRatesProjectSpecificRatesList_putList", "requestBody" : { "description" : "JSON representing updates to objects. Should have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ProjectSpecificRate" } } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseProjectSpecificRate" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "project/hourlyRates/projectSpecificRates" ], "summary" : "Create multiple new project specific rates.", "operationId" : "ProjectHourlyRatesProjectSpecificRatesList_postList", "requestBody" : { "description" : "JSON representing a list of new objects to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ProjectSpecificRate" } } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseProjectSpecificRate" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "project/hourlyRates/projectSpecificRates" ], "summary" : "Delete project specific rates.", "operationId" : "ProjectHourlyRatesProjectSpecificRatesList_deleteByIds", "parameters" : [ { "name" : "ids", "in" : "query", "description" : "ID of the elements", "required" : true, "schema" : { "type" : "string" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/project/hourlyRates/projectSpecificRates" : { "get" : { "tags" : [ "project/hourlyRates/projectSpecificRates" ], "summary" : "Find project specific rates corresponding with sent data.", "operationId" : "ProjectHourlyRatesProjectSpecificRates_search", "parameters" : [ { "name" : "id", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "projectHourlyRateId", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "employeeId", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "activityId", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseProjectSpecificRate" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "project/hourlyRates/projectSpecificRates" ], "summary" : "Create new project specific rate. ", "operationId" : "ProjectHourlyRatesProjectSpecificRates_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/ProjectSpecificRate" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperProjectSpecificRate" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/project/subcontract/{id}" : { "get" : { "tags" : [ "project/subcontract" ], "summary" : "Find project sub-contract by ID.", "operationId" : "ProjectSubcontract_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperProjectSubContract" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "project/subcontract" ], "summary" : "Update project sub-contract.", "operationId" : "ProjectSubcontract_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/ProjectSubContract" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperProjectSubContract" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "project/subcontract" ], "summary" : "Delete project sub-contract by ID.", "operationId" : "ProjectSubcontract_delete", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/project/subcontract" : { "get" : { "tags" : [ "project/subcontract" ], "summary" : "Find project sub-contracts corresponding with sent data.", "operationId" : "ProjectSubcontract_search", "parameters" : [ { "name" : "projectId", "in" : "query", "description" : "Equals", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseProjectSubContract" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "project/subcontract" ], "summary" : "Add new project sub-contract.", "operationId" : "ProjectSubcontract_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/ProjectSubContract" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperProjectSubContract" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/project/subcontract/query" : { "get" : { "tags" : [ "project/subcontract" ], "summary" : "Wildcard search.", "operationId" : "ProjectSubcontractQuery_query", "parameters" : [ { "name" : "id", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "projectId", "in" : "query", "description" : "Equals", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "query", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseProjectSubContract" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/project/resourcePlanBudget" : { "get" : { "tags" : [ "project/resourceplan", "project/resourcePlanBudget" ], "summary" : "Get resource plan entries in the specified period.", "operationId" : "ProjectResourcePlanBudget_get", "parameters" : [ { "name" : "projectId", "in" : "query", "description" : "Equals", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "periodStart", "in" : "query", "description" : "From and including", "required" : true, "schema" : { "type" : "string" } }, { "name" : "periodEnd", "in" : "query", "description" : "To and excluding", "required" : true, "schema" : { "type" : "string" } }, { "name" : "periodType", "in" : "query", "description" : "Equals", "required" : true, "schema" : { "type" : "string", "enum" : [ "HOUR", "DAY", "WEEK", "MONTH" ] } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperResourcePlanBudget" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/project/settings" : { "get" : { "tags" : [ "project/settings" ], "summary" : "Get project settings of logged in company.", "operationId" : "ProjectSettings_get", "parameters" : [ { "name" : "useNkode", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean", "default" : false } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperProjectSettings" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "project/settings" ], "summary" : "Update project settings for company", "operationId" : "ProjectSettings_put", "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/ProjectSettings" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperProjectSettings" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/project/task" : { "get" : { "tags" : [ "project/task" ], "summary" : "Find all tasks for project.", "operationId" : "ProjectTask_search", "parameters" : [ { "name" : "projectId", "in" : "query", "description" : "Equals", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseTask" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/project/template/{id}" : { "get" : { "tags" : [ "project/template" ], "summary" : "Get project template by ID.", "operationId" : "ProjectTemplate_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "schema" : { "type" : "string", "default" : "*" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperProjectTemplate" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/crm/prospect/{id}" : { "get" : { "tags" : [ "crm/prospect" ], "summary" : "Get prospect by ID.", "operationId" : "CrmProspect_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperObject" } } } } }, "deprecated" : true, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/crm/prospect" : { "get" : { "tags" : [ "crm/prospect" ], "summary" : "Find prospects corresponding with sent data.", "operationId" : "CrmProspect_search", "parameters" : [ { "name" : "name", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "description", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "createdDateFrom", "in" : "query", "description" : "From and including", "schema" : { "type" : "string" } }, { "name" : "createdDateTo", "in" : "query", "description" : "To and excluding", "schema" : { "type" : "string" } }, { "name" : "customerId", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "salesEmployeeId", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "isClosed", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "closedReason", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "closedDateFrom", "in" : "query", "description" : "From and including", "schema" : { "type" : "string" } }, { "name" : "closedDateTo", "in" : "query", "description" : "To and excluding", "schema" : { "type" : "string" } }, { "name" : "competitor", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "prospectType", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "projectId", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "projectOfferId", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseObject" } } } } }, "deprecated" : true, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/pickupPoint/{id}" : { "get" : { "tags" : [ "pickupPoint" ], "summary" : "[DEPRECATED] Find pickup point by ID.", "operationId" : "PickupPoint_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperPickupPoint" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/pickupPoint" : { "get" : { "tags" : [ "pickupPoint" ], "summary" : "[DEPRECATED] Search pickup points.", "operationId" : "PickupPoint_search", "parameters" : [ { "name" : "supplierId", "in" : "query", "description" : "Valid ids.", "schema" : { "type" : "array", "items" : { "type" : "integer", "format" : "int32" } } }, { "name" : "transportTypeId", "in" : "query", "description" : "Valid TransportType ids.", "schema" : { "type" : "array", "items" : { "type" : "integer", "format" : "int32" } } }, { "name" : "code", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "name", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponsePickupPoint" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/purchaseOrder/{id}" : { "get" : { "tags" : [ "purchaseOrder" ], "summary" : "Find purchase order by ID. Only available for Logistics Basic.", "operationId" : "PurchaseOrder_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperPurchaseOrder" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "purchaseOrder" ], "summary" : " Update purchase order. Only available for Logistics Basic.", "operationId" : "PurchaseOrder_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/PurchaseOrder" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperPurchaseOrder" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "purchaseOrder" ], "summary" : " Delete purchase order. Only available for Logistics Basic.", "operationId" : "PurchaseOrder_delete", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/purchaseOrder/{id}/attachment" : { "post" : { "tags" : [ "purchaseOrder" ], "summary" : "Upload attachment to purchase order. Only available for Logistics Basic.", "operationId" : "PurchaseOrderAttachment_uploadAttachment", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Purchase Order ID to upload attachment to.", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "schema" : { "type" : "string", "default" : "*" } } ], "requestBody" : { "content" : { "multipart/form-data" : { "schema" : { "required" : [ "file" ], "type" : "object", "properties" : { "file" : { "type" : "string", "description" : "The file", "format" : "binary" } } } } } }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperPurchaseOrder" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "purchaseOrder" ], "summary" : "Delete attachment. Only available for Logistics Basic.", "operationId" : "PurchaseOrderAttachment_deleteAttachment", "parameters" : [ { "name" : "id", "in" : "path", "description" : "ID of purchase order containing the attachment to delete.", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/purchaseOrder" : { "get" : { "tags" : [ "purchaseOrder" ], "summary" : "Find purchase orders with send data. Only available for Logistics Basic.", "operationId" : "PurchaseOrder_search", "parameters" : [ { "name" : "number", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "deliveryDateFrom", "in" : "query", "description" : "Format is yyyy-MM-dd (from and incl.).", "schema" : { "type" : "string" } }, { "name" : "deliveryDateTo", "in" : "query", "description" : "Format is yyyy-MM-dd (to and incl.).", "schema" : { "type" : "string" } }, { "name" : "creationDateFrom", "in" : "query", "description" : "Format is yyyy-MM-dd (from and incl.).", "schema" : { "type" : "string" } }, { "name" : "creationDateTo", "in" : "query", "description" : "Format is yyyy-MM-dd (to and incl.).", "schema" : { "type" : "string" } }, { "name" : "id", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "supplierId", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "projectId", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "isClosed", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "withDeviationOnly", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean", "default" : false } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponsePurchaseOrder" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "purchaseOrder" ], "summary" : "Creates a new purchase order. Only available for Logistics Basic.", "operationId" : "PurchaseOrder_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/PurchaseOrder" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperPurchaseOrder" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/purchaseOrder/{id}/:send" : { "put" : { "tags" : [ "purchaseOrder" ], "summary" : "Send purchase order by ID and sendType. Only available for Logistics Basic.", "operationId" : "PurchaseOrderSend_send", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "sendType", "in" : "query", "description" : "Send type.DEFAULT will determine the send parameter based on the supplier type.If supplier is not wholesaler, receiverEmail from the PO will be used if it's specified.If receiverEmail empty it will take the vendor email.", "schema" : { "type" : "string", "enum" : [ "DEFAULT", "EMAIL", "FTP" ], "default" : "DEFAULT" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperPurchaseOrder" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/purchaseOrder/{id}/:sendByEmail" : { "put" : { "tags" : [ "purchaseOrder" ], "summary" : "Send purchase order by customisable email. Only available for Logistics Basic.", "operationId" : "PurchaseOrderSendByEmail_sendByEmail", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/PurchaseOrderEmail" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperPurchaseOrder" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/purchaseOrder/{id}/attachment/list" : { "post" : { "tags" : [ "purchaseOrder" ], "summary" : "Upload multiple attachments to Purchase Order. Only available for Logistics Basic.", "operationId" : "PurchaseOrderAttachmentList_uploadAttachments", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Purchase Order ID to upload attachment to.", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Upload multiple files", "content" : { "multipart/form-data" : { "schema" : { "type" : "object", "properties" : { "file" : { "type" : "array", "items" : { "type" : "string", "format" : "binary" } } } } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperPurchaseOrder" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/transportType/{id}" : { "get" : { "tags" : [ "transportType" ], "summary" : " [BETA] Find transport type by ID.", "operationId" : "TransportType_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperTransportType" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/transportType" : { "get" : { "tags" : [ "transportType" ], "summary" : "[BETA] Search transport type by supplier.", "operationId" : "TransportType_search", "parameters" : [ { "name" : "supplier", "in" : "query", "description" : "Transport type supplier", "required" : true, "schema" : { "type" : "string", "description" : "Transport type supplier", "enum" : [ "DEFAULT_SUPPLIER", "AHLSELL", "SONEPAR", "ONNINEN", "SOLAR", "ELEKTROSKANDIA", "BERGAARD_AMUNDSEN", "BROEDRENE_DAHL", "HEIDENREICH", "ELEKTROIMPORTOEREN" ] } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "schema" : { "type" : "integer", "format" : "int32", "default" : 3 } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "schema" : { "type" : "string", "default" : "id, nameKey, code, isPickUp" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseTransportType" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/purchaseOrder/deviation/{id}/:approve" : { "put" : { "tags" : [ "purchaseOrder/deviation" ], "summary" : "Approve deviations. Only available for Logistics Basic.", "operationId" : "PurchaseOrderDeviationApprove_approve", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Purchase Order ID.", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperPurchaseOrder" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/purchaseOrder/deviation/{id}" : { "get" : { "tags" : [ "purchaseOrder/deviation" ], "summary" : "Get deviation by order line ID. Only available for Logistics Basic.", "operationId" : "PurchaseOrderDeviation_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperDeviation" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "purchaseOrder/deviation" ], "summary" : "Update deviation. Only available for Logistics Basic.", "operationId" : "PurchaseOrderDeviation_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/Deviation" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperDeviation" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "purchaseOrder/deviation" ], "summary" : "Delete goods receipt by purchase order ID. Only available for Logistics Basic.", "operationId" : "PurchaseOrderDeviation_delete", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/purchaseOrder/deviation/{id}/:deliver" : { "put" : { "tags" : [ "purchaseOrder/deviation" ], "summary" : "Send deviations to approval. Only available for Logistics Basic.", "operationId" : "PurchaseOrderDeviationDeliver_deliver", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Purchase Order ID.", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperPurchaseOrder" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/purchaseOrder/deviation" : { "get" : { "tags" : [ "purchaseOrder/deviation" ], "summary" : "Find handled deviations for purchase order. Only available for Logistics Basic.", "operationId" : "PurchaseOrderDeviation_search", "parameters" : [ { "name" : "purchaseOrderId", "in" : "query", "description" : "Equals", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseDeviation" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "purchaseOrder/deviation" ], "summary" : "Register deviation on goods receipt. Only available for Logistics Basic.", "operationId" : "PurchaseOrderDeviation_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/Deviation" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperDeviation" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/purchaseOrder/deviation/list" : { "put" : { "tags" : [ "purchaseOrder/deviation" ], "summary" : "Update multiple deviations. Only available for Logistics Basic.", "operationId" : "PurchaseOrderDeviationList_putList", "requestBody" : { "description" : "JSON representing updates to objects. Should have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/Deviation" } } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseDeviation" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "purchaseOrder/deviation" ], "summary" : "Register multiple deviations. Only available for Logistics Basic.", "operationId" : "PurchaseOrderDeviationList_postList", "requestBody" : { "description" : "JSON representing a list of new objects to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/Deviation" } } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseDeviation" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/purchaseOrder/deviation/{id}/:undeliver" : { "put" : { "tags" : [ "purchaseOrder/deviation" ], "summary" : "Set status to Not delivered for deviations. Only available for Logistics Basic.", "operationId" : "PurchaseOrderDeviationUndeliver_undeliver", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Purchase Order ID.", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperPurchaseOrder" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/purchaseOrder/goodsReceipt/{id}/:confirm" : { "put" : { "tags" : [ "purchaseOrder/goodsReceipt" ], "summary" : "Confirm goods receipt. Only available for Logistics Basic.", "operationId" : "PurchaseOrderGoodsReceiptConfirm_confirm", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Purchase Order ID.", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "createRestOrder", "in" : "query", "description" : "Create restorder if quantity received is less than ordered", "schema" : { "type" : "boolean", "default" : false } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "schema" : { "type" : "string", "default" : "*" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperPurchaseOrder" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/purchaseOrder/goodsReceipt/{id}" : { "get" : { "tags" : [ "purchaseOrder/goodsReceipt" ], "summary" : "Get goods receipt by purchase order ID. Only available for Logistics Basic.", "operationId" : "PurchaseOrderGoodsReceipt_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperGoodsReceipt" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "purchaseOrder/goodsReceipt" ], "summary" : "Update goods receipt. Only available for Logistics Basic.", "operationId" : "PurchaseOrderGoodsReceipt_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Goods Receipt ID.", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "schema" : { "type" : "string", "default" : "*" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/GoodsReceipt" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperGoodsReceipt" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "purchaseOrder/goodsReceipt" ], "summary" : "Delete goods receipt by ID. Only available for Logistics Basic.", "operationId" : "PurchaseOrderGoodsReceipt_delete", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/purchaseOrder/goodsReceipt/list" : { "post" : { "tags" : [ "purchaseOrder/goodsReceipt" ], "summary" : "Register multiple goods receipts without an existing purchase order. Only available for Logistics Basic.", "operationId" : "PurchaseOrderGoodsReceiptList_postList", "parameters" : [ { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "schema" : { "type" : "string", "default" : "*" } } ], "requestBody" : { "description" : "JSON representing a list of new objects to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/GoodsReceipt" } } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseGoodsReceipt" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "purchaseOrder/goodsReceipt" ], "summary" : "Delete multiple goods receipts by ID. Only available for Logistics Basic.", "operationId" : "PurchaseOrderGoodsReceiptList_deleteByIds", "parameters" : [ { "name" : "ids", "in" : "query", "description" : "ID of the elements", "required" : true, "schema" : { "type" : "string" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/purchaseOrder/goodsReceipt" : { "get" : { "tags" : [ "purchaseOrder/goodsReceipt" ], "summary" : "Get goods receipt. Only available for Logistics Basic.", "operationId" : "PurchaseOrderGoodsReceipt_search", "parameters" : [ { "name" : "receivedDateFrom", "in" : "query", "description" : "Format is yyyy-MM-dd (from and incl.).", "schema" : { "type" : "string" } }, { "name" : "receivedDateTo", "in" : "query", "description" : "Format is yyyy-MM-dd (to and incl.).", "schema" : { "type" : "string" } }, { "name" : "status", "in" : "query", "description" : "Equals", "schema" : { "type" : "string", "enum" : [ "STATUS_OPEN", "STATUS_CONFIRMED" ] } }, { "name" : "withoutPurchase", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean", "default" : false } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseGoodsReceipt" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "purchaseOrder/goodsReceipt" ], "summary" : "Register goods receipt without an existing purchase order. When registration of several goods receipt, use /list for better performance. Only available for Logistics Basic.", "operationId" : "PurchaseOrderGoodsReceipt_post", "parameters" : [ { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "schema" : { "type" : "string", "default" : "*" } } ], "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/GoodsReceipt" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperGoodsReceipt" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/purchaseOrder/goodsReceipt/{id}/:receiveAndConfirm" : { "put" : { "tags" : [ "purchaseOrder/goodsReceipt" ], "summary" : " Receive all ordered products and approve goods receipt. Only available for Logistics Basic.", "operationId" : "PurchaseOrderGoodsReceiptReceiveAndConfirm_receiveAndConfirm", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Purchase Order ID.", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "receivedDate", "in" : "query", "description" : "The approval date for the subscription.", "required" : true, "schema" : { "type" : "string" } }, { "name" : "inventoryId", "in" : "query", "description" : "ID of inventory. Main inventory is set as default", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "schema" : { "type" : "string", "default" : "*" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperPurchaseOrder" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/purchaseOrder/goodsReceipt/{id}/:registerGoodsReceipt" : { "put" : { "tags" : [ "purchaseOrder/goodsReceipt" ], "summary" : "Register goods receipt. Quantity received on the products is set to the same as quantity ordered. To update the quantity received, use PUT /purchaseOrder/goodsReceiptLine/{id}. Only available for Logistics Basic.", "operationId" : "PurchaseOrderGoodsReceiptRegisterGoodsReceipt_registerGoodsReceipt", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Purchase Order ID.", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "registrationDate", "in" : "query", "description" : "yyyy-MM-dd. Defaults to today.", "required" : true, "schema" : { "type" : "string" } }, { "name" : "inventoryId", "in" : "query", "description" : "ID of inventory. Main inventory is set as default", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "comment", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "schema" : { "type" : "string", "default" : "*" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperGoodsReceipt" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/purchaseOrder/goodsReceiptLine/{id}" : { "get" : { "tags" : [ "purchaseOrder/goodsReceiptLine" ], "summary" : "Get goods receipt line by purchase order line ID. Only available for Logistics Basic.", "operationId" : "PurchaseOrderGoodsReceiptLine_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperGoodsReceiptLine" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "purchaseOrder/goodsReceiptLine" ], "summary" : "Update a goods receipt line on a goods receipt. Only available for Logistics Basic.", "operationId" : "PurchaseOrderGoodsReceiptLine_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Goods receipt Line ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/GoodsReceiptLine" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperGoodsReceiptLine" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "purchaseOrder/goodsReceiptLine" ], "summary" : "Delete goods receipt line by ID. Only available for Logistics Basic.", "operationId" : "PurchaseOrderGoodsReceiptLine_delete", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/purchaseOrder/goodsReceiptLine/list" : { "put" : { "tags" : [ "purchaseOrder/goodsReceiptLine" ], "summary" : "Update goods receipt lines on a goods receipt. Only available for Logistics Basic.", "operationId" : "PurchaseOrderGoodsReceiptLineList_putList", "requestBody" : { "description" : "JSON representing updates to objects. Should have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/GoodsReceiptLine" } } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseGoodsReceiptLine" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "purchaseOrder/goodsReceiptLine" ], "summary" : "Register multiple new goods receipts on an existing purchase order. Only available for Logistics Basic.", "operationId" : "PurchaseOrderGoodsReceiptLineList_postList", "requestBody" : { "description" : "JSON representing a list of new objects to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/GoodsReceiptLine" } } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseGoodsReceiptLine" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "purchaseOrder/goodsReceiptLine" ], "summary" : "Delete goods receipt lines by ID. Only available for Logistics Basic.", "operationId" : "PurchaseOrderGoodsReceiptLineList_deleteList", "requestBody" : { "description" : "JSON representing objects to delete. Should have ID and version set.", "content" : { "application/json" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/GoodsReceiptLine" } } } }, "required" : true }, "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/purchaseOrder/goodsReceiptLine" : { "get" : { "tags" : [ "purchaseOrder/goodsReceiptLine" ], "summary" : "Find goods receipt lines for purchase order. Only available for Logistics Basic.", "operationId" : "PurchaseOrderGoodsReceiptLine_search", "parameters" : [ { "name" : "purchaseOrderId", "in" : "query", "description" : "Equals", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseGoodsReceiptLine" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "purchaseOrder/goodsReceiptLine" ], "summary" : "Register new goods receipt; new product on an existing purchase order. When registration of several goods receipts, use /list for better performance. Only available for Logistics Basic.", "operationId" : "PurchaseOrderGoodsReceiptLine_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/GoodsReceiptLine" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperGoodsReceiptLine" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/purchaseOrder/purchaseOrderIncomingInvoiceRelation/{id}" : { "get" : { "tags" : [ "purchaseOrder/purchaseOrderIncomingInvoiceRelation" ], "summary" : "Find purchase order relation to voucher by ID. Only available for Logistics Basic.", "operationId" : "PurchaseOrderPurchaseOrderIncomingInvoiceRelation_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperPurchaseOrderIncomingInvoiceRelation" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "purchaseOrder/purchaseOrderIncomingInvoiceRelation" ], "summary" : "Delete purchase order voucher relation. Only available for Logistics Basic.", "operationId" : "PurchaseOrderPurchaseOrderIncomingInvoiceRelation_delete", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/purchaseOrder/purchaseOrderIncomingInvoiceRelation/list" : { "post" : { "tags" : [ "purchaseOrder/purchaseOrderIncomingInvoiceRelation" ], "summary" : "Create a new list of relations between purchase order and voucher. Only available for Logistics Basic.", "operationId" : "PurchaseOrderPurchaseOrderIncomingInvoiceRelationList_postList", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/PurchaseOrderIncomingInvoiceRelation" } } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponsePurchaseOrderIncomingInvoiceRelation" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "purchaseOrder/purchaseOrderIncomingInvoiceRelation" ], "summary" : "Delete multiple purchase order voucher relations. Only available for Logistics Basic.", "operationId" : "PurchaseOrderPurchaseOrderIncomingInvoiceRelationList_deleteByIds", "parameters" : [ { "name" : "ids", "in" : "query", "description" : "ID of the elements", "required" : true, "schema" : { "type" : "string" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/purchaseOrder/purchaseOrderIncomingInvoiceRelation" : { "get" : { "tags" : [ "purchaseOrder/purchaseOrderIncomingInvoiceRelation" ], "summary" : "Find purchase order relation to voucher with sent data. Only available for Logistics Basic.", "operationId" : "PurchaseOrderPurchaseOrderIncomingInvoiceRelation_search", "parameters" : [ { "name" : "id", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "orderOutId", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "voucherId", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponsePurchaseOrderIncomingInvoiceRelation" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "purchaseOrder/purchaseOrderIncomingInvoiceRelation" ], "summary" : "Create new relation between purchase order and a voucher. Only available for Logistics Basic.", "operationId" : "PurchaseOrderPurchaseOrderIncomingInvoiceRelation_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/PurchaseOrderIncomingInvoiceRelation" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperPurchaseOrderIncomingInvoiceRelation" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/purchaseOrder/orderline/{id}" : { "get" : { "tags" : [ "purchaseOrder/orderline" ], "summary" : "Find purchase order line by ID. Only available for Logistics Basic.", "operationId" : "PurchaseOrderOrderline_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperPurchaseOrderline" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "purchaseOrder/orderline" ], "summary" : "Updates purchase order line. Only available for Logistics Basic.", "operationId" : "PurchaseOrderOrderline_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/PurchaseOrderline" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperPurchaseOrderline" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "purchaseOrder/orderline" ], "summary" : "Delete purchase order line. Only available for Logistics Basic.", "operationId" : "PurchaseOrderOrderline_delete", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/purchaseOrder/orderline/list" : { "put" : { "tags" : [ "purchaseOrder/orderline" ], "summary" : "Update a list of purchase order lines. Only available for Logistics Basic.", "operationId" : "PurchaseOrderOrderlineList_putList", "requestBody" : { "description" : "JSON representing updates to objects. Should have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/PurchaseOrderline" } } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponsePurchaseOrderline" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "purchaseOrder/orderline" ], "summary" : "Create list of new purchase order lines. Only available for Logistics Basic.", "operationId" : "PurchaseOrderOrderlineList_postList", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/PurchaseOrderline" } } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponsePurchaseOrderline" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "purchaseOrder/orderline" ], "summary" : "Delete purchase order lines by ID. Only available for Logistics Basic.", "operationId" : "PurchaseOrderOrderlineList_deleteList", "requestBody" : { "description" : "JSON representing objects to delete. Should have ID and version set.", "content" : { "application/json" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/PurchaseOrderline" } } } }, "required" : true }, "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/purchaseOrder/orderline" : { "post" : { "tags" : [ "purchaseOrder/orderline" ], "summary" : "Creates purchase order line. Only available for Logistics Basic.", "operationId" : "PurchaseOrderOrderline_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/PurchaseOrderline" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperPurchaseOrderline" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/reminder/{reminderId}/pdf" : { "get" : { "tags" : [ "reminder" ], "summary" : "Get reminder document by reminder ID.", "operationId" : "ReminderPdf_downloadPdf", "parameters" : [ { "name" : "reminderId", "in" : "path", "description" : "Reminder ID from which PDF is downloaded.", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "200" : { "description" : "PDF document of the reminder", "content" : { "application/octet-stream" : { "schema" : { "type" : "string", "format" : "binary" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/reminder/{id}" : { "get" : { "tags" : [ "reminder" ], "summary" : "Get reminder by ID.", "operationId" : "Reminder_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperReminder" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/reminder" : { "get" : { "tags" : [ "reminder" ], "summary" : "Find reminders corresponding with sent data.", "operationId" : "Reminder_search", "parameters" : [ { "name" : "id", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "dateFrom", "in" : "query", "description" : "From and including", "required" : true, "schema" : { "type" : "string" } }, { "name" : "dateTo", "in" : "query", "description" : "To and excluding", "required" : true, "schema" : { "type" : "string" } }, { "name" : "termOfPaymentTo", "in" : "query", "description" : "To and excluding", "schema" : { "type" : "string" } }, { "name" : "termOfPaymentFrom", "in" : "query", "description" : "From and including", "schema" : { "type" : "string" } }, { "name" : "invoiceId", "in" : "query", "description" : "Equals", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "customerId", "in" : "query", "description" : "Equals", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseReminder" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/resultbudget/company" : { "get" : { "tags" : [ "resultbudget" ], "summary" : "Get result budget for company", "operationId" : "ResultbudgetCompany_getCompanyResultBudget", "parameters" : [ { "name" : "year", "in" : "query", "description" : "Must be between 1900-2100. Defaults to current year.", "schema" : { "type" : "integer", "format" : "int32" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseResultBudget" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/resultbudget/department/{id}" : { "get" : { "tags" : [ "resultbudget" ], "summary" : "Get result budget associated with a departmentId", "operationId" : "ResultbudgetDepartment_getDepartmentResultBudget", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "year", "in" : "query", "description" : "Must be between 1900-2100. Defaults to current year.", "schema" : { "type" : "integer", "format" : "int32" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseResultBudget" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/resultbudget/employee/{id}" : { "get" : { "tags" : [ "resultbudget" ], "summary" : "Get result budget associated with an employeeId", "operationId" : "ResultbudgetEmployee_getEmployeeResultBudget", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "year", "in" : "query", "description" : "Must be between 1900-2100. Defaults to current year.", "schema" : { "type" : "integer", "format" : "int32" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseResultBudget" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/resultbudget/product/{id}" : { "get" : { "tags" : [ "resultbudget" ], "summary" : "Get result budget associated with a productId", "operationId" : "ResultbudgetProduct_getProductResultBudget", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "year", "in" : "query", "description" : "Must be between 1900-2100. Defaults to current year.", "schema" : { "type" : "integer", "format" : "int32" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseResultBudget" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/resultbudget/project/{id}" : { "get" : { "tags" : [ "resultbudget" ], "summary" : "Get result budget associated with a projectId", "operationId" : "ResultbudgetProject_getProjectResultBudget", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "year", "in" : "query", "description" : "Must be between 1900-2100. Defaults to current year.", "schema" : { "type" : "integer", "format" : "int32" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseResultBudget" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/resultbudget" : { "get" : { "tags" : [ "resultbudget" ], "summary" : "Find result budgets corresponding with sent data. Either specify the ids of the departments, projects, products or employees to return result budgets for, or use the boolean parameters includeAll***ResultBudgets to get all results budgets.", "operationId" : "Resultbudget_search", "parameters" : [ { "name" : "departmentIds", "in" : "query", "description" : "List of department ids to return result budgets for", "schema" : { "type" : "string" } }, { "name" : "projectIds", "in" : "query", "description" : "List of project ids to return result budgets for", "schema" : { "type" : "string" } }, { "name" : "productIds", "in" : "query", "description" : "List of product ids to return result budgets for", "schema" : { "type" : "string" } }, { "name" : "employeeIds", "in" : "query", "description" : "List of employee ids to return result budgets for", "schema" : { "type" : "string" } }, { "name" : "year", "in" : "query", "description" : "Must be between 1900-2100. Defaults to current year.", "schema" : { "type" : "integer", "format" : "int32" } }, { "name" : "includeAllDepartmentResultBudgets", "in" : "query", "description" : "Include all department result budgets for active departments", "schema" : { "type" : "boolean" } }, { "name" : "includeAllProjectResultBudgets", "in" : "query", "description" : "Include all project result budgets for active projects", "schema" : { "type" : "boolean" } }, { "name" : "includeAllProductResultBudgets", "in" : "query", "description" : "Include all product result budgets for active products", "schema" : { "type" : "boolean" } }, { "name" : "includeAllEmployeeResultBudgets", "in" : "query", "description" : "Include all employee result budgets for active employees", "schema" : { "type" : "boolean" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseResultBudget" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/saft/exportSAFT" : { "get" : { "tags" : [ "saft" ], "summary" : "[BETA] Create SAF-T export for the Tripletex account.", "operationId" : "SaftExportSAFT_exportSAFT", "parameters" : [ { "name" : "year", "in" : "query", "description" : "Year to export", "required" : true, "schema" : { "type" : "integer", "format" : "int32" } } ], "responses" : { "200" : { "description" : "SAF-T export successful. Returns a zip file containing the SAF-T export.", "content" : { "application/octet-stream" : { "schema" : { "type" : "string", "format" : "binary" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/saft/importSAFT" : { "post" : { "tags" : [ "saft" ], "summary" : "[BETA] Import SAF-T. Send XML file as multipart form.", "operationId" : "SaftImportSAFT_importSAFT", "requestBody" : { "content" : { "multipart/form-data" : { "schema" : { "required" : [ "createCustomerIB", "createMissingAccounts", "createVendorIB", "importCustomerVendors", "importDepartments", "importProjects", "importStartBalanceFromClosing", "importStartBalanceFromOpening", "importVouchers", "mappingFile", "onlyActiveAccounts", "onlyActiveCustomers", "overrideVoucherDateOnDiscrepancy", "overwriteCustomersContacts", "saftFile", "tripletexGeneratesCustomerNumbers", "updateAccountNames", "updateStartBalance" ], "type" : "object", "properties" : { "saftFile" : { "type" : "string", "description" : "The SAF-T file (XML)", "format" : "binary" }, "mappingFile" : { "type" : "string", "description" : "Mapping of chart of accounts (Excel). See https://tripletex.no/resources/examples/saft_account_mapping.xls", "format" : "binary" }, "importCustomerVendors" : { "type" : "boolean", "description" : "Create customers and suppliers" }, "createMissingAccounts" : { "type" : "boolean", "description" : "Create new accounts" }, "importStartBalanceFromOpening" : { "type" : "boolean", "description" : "Create an opening balance from the import file's starting balance." }, "importStartBalanceFromClosing" : { "type" : "boolean", "description" : "Create an opening balance from the import file's outgoing balance." }, "importVouchers" : { "type" : "boolean", "description" : "Create vouchers" }, "importDepartments" : { "type" : "boolean", "description" : "Create departments" }, "importProjects" : { "type" : "boolean", "description" : "Create projects" }, "tripletexGeneratesCustomerNumbers" : { "type" : "boolean", "description" : "Let Tripletex create customer and supplier numbers and ignore the numbers in the import file." }, "createCustomerIB" : { "type" : "boolean", "description" : "Create an opening balance on accounts receivable from customers" }, "updateAccountNames" : { "type" : "boolean", "description" : "Overwrite existing names on accounts" }, "createVendorIB" : { "type" : "boolean", "description" : "Create an opening balance on accounts payable" }, "overrideVoucherDateOnDiscrepancy" : { "type" : "boolean", "description" : "Overwrite transaction date on period discrepancies." }, "overwriteCustomersContacts" : { "type" : "boolean", "description" : "Overwrite existing customers/contacts" }, "onlyActiveCustomers" : { "type" : "boolean", "description" : "Only active customers" }, "onlyActiveAccounts" : { "type" : "boolean", "description" : "Only active accounts" }, "updateStartBalance" : { "type" : "boolean", "description" : "Update the opening balance of main ledger accounts from the import file by import before the opening balance." } } } } } }, "responses" : { "200" : { "description" : "SAF-T import successful. Returns true if the import was successful.", "content" : { "application/json" : { "schema" : { "type" : "boolean" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/salary/type/{id}" : { "get" : { "tags" : [ "salary/type" ], "summary" : "Find salary type by ID.", "operationId" : "SalaryType_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperSalaryType" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/salary/type" : { "get" : { "tags" : [ "salary/type" ], "summary" : "Find salary type corresponding with sent data.", "operationId" : "SalaryType_search", "parameters" : [ { "name" : "id", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "number", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "name", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "description", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "showInTimesheet", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "isInactive", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "employeeIds", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseSalaryType" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/salary/compilation/pdf" : { "get" : { "tags" : [ "salary/compilation" ], "summary" : "Find salary compilation (PDF document) by employee.", "operationId" : "SalaryCompilationPdf_downloadPdf", "parameters" : [ { "name" : "employeeId", "in" : "query", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "year", "in" : "query", "description" : "Must be between 1900-2100. Defaults to previous year.", "schema" : { "type" : "integer", "format" : "int32" } } ], "responses" : { "200" : { "description" : "PDF document containing salary compilation for the specified employee and year.", "content" : { "application/octet-stream" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/salary/compilation" : { "get" : { "tags" : [ "salary/compilation" ], "summary" : "Find salary compilation by employee.", "operationId" : "SalaryCompilation_get", "parameters" : [ { "name" : "employeeId", "in" : "query", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "year", "in" : "query", "description" : "Must be between 1900-2100. Defaults to previous year.", "schema" : { "type" : "integer", "format" : "int32" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperSalaryCompilation" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/salary/payslip/{id}/pdf" : { "get" : { "tags" : [ "salary/payslip" ], "summary" : "Find payslip (PDF document) by ID.", "operationId" : "SalaryPayslipPdf_downloadPdf", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "200" : { "description" : "Returns the payslip as a PDF document.", "content" : { "application/octet-stream" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/salary/payslip/{id}" : { "get" : { "tags" : [ "salary/payslip" ], "summary" : "Find payslip by ID.", "operationId" : "SalaryPayslip_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperPayslip" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/salary/payslip" : { "get" : { "tags" : [ "salary/payslip" ], "summary" : "Find payslips corresponding with sent data.", "operationId" : "SalaryPayslip_search", "parameters" : [ { "name" : "id", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "employeeId", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "wageTransactionId", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "activityId", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "yearFrom", "in" : "query", "description" : "From and including", "schema" : { "type" : "integer", "format" : "int32" } }, { "name" : "yearTo", "in" : "query", "description" : "To and excluding", "schema" : { "type" : "integer", "format" : "int32" } }, { "name" : "monthFrom", "in" : "query", "description" : "From and including", "schema" : { "type" : "integer", "format" : "int32" } }, { "name" : "monthTo", "in" : "query", "description" : "To and excluding", "schema" : { "type" : "integer", "format" : "int32" } }, { "name" : "voucherDateFrom", "in" : "query", "description" : "From and including", "schema" : { "type" : "string" } }, { "name" : "voucherDateTo", "in" : "query", "description" : "To and excluding", "schema" : { "type" : "string" } }, { "name" : "comment", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponsePayslip" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/salary/settings" : { "get" : { "tags" : [ "salary/settings" ], "summary" : "Get salary settings of logged in company.", "operationId" : "SalarySettings_get", "parameters" : [ { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperSalarySettings" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "salary/settings" ], "summary" : "Update settings of logged in company.", "operationId" : "SalarySettings_put", "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/SalarySettings" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperSalarySettings" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/salary/settings/holiday/list" : { "put" : { "tags" : [ "salary/settings/holiday" ], "summary" : "Update multiple holiday settings of current logged in company.", "operationId" : "SalarySettingsHolidayList_putList", "requestBody" : { "description" : "JSON representing updates to objects. Should have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/CompanyHoliday" } } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseCompanyHoliday" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "salary/settings/holiday" ], "summary" : "Create multiple holiday settings of current logged in company.", "operationId" : "SalarySettingsHolidayList_postList", "requestBody" : { "description" : "JSON representing a list of new objects to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/CompanyHoliday" } } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseCompanyHoliday" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "salary/settings/holiday" ], "summary" : "Delete multiple holiday settings of current logged in company.", "operationId" : "SalarySettingsHolidayList_deleteByIds", "parameters" : [ { "name" : "ids", "in" : "query", "description" : "ID of the elements", "required" : true, "schema" : { "type" : "string" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/salary/settings/holiday" : { "get" : { "tags" : [ "salary/settings/holiday" ], "summary" : "Find holiday settings of current logged in company.", "operationId" : "SalarySettingsHoliday_search", "parameters" : [ { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseCompanyHoliday" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "salary/settings/holiday" ], "summary" : "Create a holiday setting of current logged in company.", "operationId" : "SalarySettingsHoliday_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/CompanyHoliday" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperCompanyHoliday" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/salary/settings/holiday/{id}" : { "put" : { "tags" : [ "salary/settings/holiday" ], "summary" : "Update a holiday setting of current logged in company.", "operationId" : "SalarySettingsHoliday_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/CompanyHoliday" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperCompanyHoliday" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/pension" : { "get" : { "tags" : [ "pension" ], "summary" : "Find countries corresponding with sent data.", "operationId" : "Pension_search", "parameters" : [ { "name" : "query", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "startDate", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseGlobalPension" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/salary/settings/pensionScheme/{id}" : { "get" : { "tags" : [ "salary/settings/pensionScheme" ], "summary" : "Get Pension Scheme for a specific ID", "operationId" : "SalarySettingsPensionScheme_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperPensionScheme" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "salary/settings/pensionScheme" ], "summary" : "Update a Pension Scheme", "operationId" : "SalarySettingsPensionScheme_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/PensionScheme" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperPensionScheme" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "salary/settings/pensionScheme" ], "summary" : "Delete a Pension Scheme", "operationId" : "SalarySettingsPensionScheme_delete", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/salary/settings/pensionScheme/list" : { "put" : { "tags" : [ "salary/settings/pensionScheme" ], "summary" : "Update multiple Pension Schemes.", "operationId" : "SalarySettingsPensionSchemeList_putList", "requestBody" : { "description" : "JSON representing updates to objects. Should have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/PensionScheme" } } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponsePensionScheme" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "salary/settings/pensionScheme" ], "summary" : "Create multiple Pension Schemes.", "operationId" : "SalarySettingsPensionSchemeList_postList", "requestBody" : { "description" : "JSON representing a list of new objects to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/PensionScheme" } } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponsePensionScheme" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "salary/settings/pensionScheme" ], "summary" : "Delete multiple Pension Schemes.", "operationId" : "SalarySettingsPensionSchemeList_deleteByIds", "parameters" : [ { "name" : "ids", "in" : "query", "description" : "ID of the elements", "required" : true, "schema" : { "type" : "string" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/salary/settings/pensionScheme" : { "get" : { "tags" : [ "salary/settings/pensionScheme" ], "summary" : "Find pension schemes.", "operationId" : "SalarySettingsPensionScheme_search", "parameters" : [ { "name" : "number", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponsePensionScheme" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "salary/settings/pensionScheme" ], "summary" : "Create a Pension Scheme.", "operationId" : "SalarySettingsPensionScheme_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/PensionScheme" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperPensionScheme" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/salary/settings/standardTime/{id}" : { "get" : { "tags" : [ "salary/settings/standardTime" ], "summary" : "Find standard time by ID.", "operationId" : "SalarySettingsStandardTime_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperCompanyStandardTime" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "salary/settings/standardTime" ], "summary" : "Update standard time. ", "operationId" : "SalarySettingsStandardTime_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/CompanyStandardTime" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperCompanyStandardTime" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/salary/settings/standardTime/byDate" : { "get" : { "tags" : [ "salary/settings/standardTime" ], "summary" : "Find standard time by date", "operationId" : "SalarySettingsStandardTimeByDate_getByDate", "parameters" : [ { "name" : "date", "in" : "query", "description" : "yyyy-MM-dd. Defaults to today.", "schema" : { "type" : "string" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperCompanyStandardTime" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/salary/settings/standardTime" : { "get" : { "tags" : [ "salary/settings/standardTime" ], "summary" : "Get all standard times.", "operationId" : "SalarySettingsStandardTime_search", "parameters" : [ { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseCompanyStandardTime" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "salary/settings/standardTime" ], "summary" : "Create standard time.", "operationId" : "SalarySettingsStandardTime_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/CompanyStandardTime" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperCompanyStandardTime" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/salary/transaction/{id}" : { "get" : { "tags" : [ "salary/transaction" ], "summary" : "Find salary transaction by ID.", "operationId" : "SalaryTransaction_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperSalaryTransaction" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "salary/transaction" ], "summary" : "Delete salary transaction by ID.", "operationId" : "SalaryTransaction_delete", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/salary/transaction/{id}/deleteAttachment" : { "put" : { "tags" : [ "salary/transaction" ], "summary" : "Delete attachment.", "operationId" : "SalaryTransactionDeleteAttachment_deleteAttachment", "parameters" : [ { "name" : "id", "in" : "path", "description" : "ID of transaction containing the attachment to delete.", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "sendToVoucherInbox", "in" : "query", "description" : "Should the attachment be sent to inbox rather than deleted?", "schema" : { "type" : "boolean", "default" : false } }, { "name" : "split", "in" : "query", "description" : "If sendToInbox is true, should the attachment be split into one voucher per page?", "schema" : { "type" : "boolean", "default" : false } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/salary/transaction" : { "post" : { "tags" : [ "salary/transaction" ], "summary" : "Create a new salary transaction.", "operationId" : "SalaryTransaction_post", "parameters" : [ { "name" : "generateTaxDeduction", "in" : "query", "description" : "Generate tax deduction", "schema" : { "type" : "boolean", "default" : false } } ], "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/SalaryTransaction" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperSalaryTransaction" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/salary/transaction/{id}/attachment" : { "post" : { "tags" : [ "salary/transaction" ], "summary" : "Upload an attachment to a salary transaction", "operationId" : "SalaryTransactionAttachment_uploadAttachment", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Salary Transaction Id to upload attachment to.", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "content" : { "multipart/form-data" : { "schema" : { "required" : [ "file" ], "type" : "object", "properties" : { "file" : { "type" : "string", "description" : "The file", "format" : "binary" } } } } } }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperLong" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/salary/transaction/{id}/attachment/list" : { "post" : { "tags" : [ "salary/transaction" ], "summary" : "Upload multiple attachments to a salary transaction", "operationId" : "SalaryTransactionAttachmentList_uploadAttachments", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Salary Transaction Id to upload attachments to.", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Upload multiple files", "content" : { "multipart/form-data" : { "schema" : { "type" : "object", "properties" : { "file" : { "type" : "array", "items" : { "type" : "string", "format" : "binary" } } } } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperLong" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/supplier/{id}" : { "get" : { "tags" : [ "supplier" ], "summary" : "Get supplier by ID.", "operationId" : "Supplier_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperSupplier" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "supplier" ], "summary" : "Update supplier. ", "operationId" : "Supplier_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/Supplier" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperSupplier" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "supplier" ], "summary" : "Delete supplier by ID", "operationId" : "Supplier_delete", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/supplier" : { "get" : { "tags" : [ "supplier" ], "summary" : "Find suppliers corresponding with sent data.", "operationId" : "Supplier_search", "parameters" : [ { "name" : "id", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "supplierNumber", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "organizationNumber", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "email", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "invoiceEmail", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "isInactive", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean", "default" : false } }, { "name" : "accountManagerId", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "changedSince", "in" : "query", "description" : "Only return elements that have changed since this date and time", "schema" : { "type" : "string" } }, { "name" : "isWholesaler", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "showProducts", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseSupplier" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "supplier" ], "summary" : "Create supplier. Related supplier addresses may also be created.", "operationId" : "Supplier_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/Supplier" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperSupplier" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/supplier/list" : { "put" : { "tags" : [ "supplier" ], "summary" : "Update multiple suppliers. Addresses can also be updated.", "operationId" : "SupplierList_putList", "requestBody" : { "description" : "JSON representing updates to objects. Should have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/Supplier" } } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseSupplier" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "supplier" ], "summary" : "Create multiple suppliers. Related supplier addresses may also be created.", "operationId" : "SupplierList_postList", "requestBody" : { "description" : "JSON representing a list of new objects to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/Supplier" } } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseSupplier" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/supplierInvoice/{invoiceId}/:addPayment" : { "post" : { "tags" : [ "supplierInvoice" ], "summary" : "Register payment, paymentType == 0 finds the last paymentType for this vendor.Use of this method requires setup done by Tripletex.", "operationId" : "SupplierInvoiceAddPayment_addPayment", "parameters" : [ { "name" : "invoiceId", "in" : "path", "description" : "Invoice ID.", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "paymentType", "in" : "query", "required" : true, "schema" : { "type" : "integer", "format" : "int32" } }, { "name" : "amount", "in" : "query", "schema" : { "type" : "number" } }, { "name" : "kidOrReceiverReference", "in" : "query", "schema" : { "type" : "string" } }, { "name" : "bban", "in" : "query", "schema" : { "type" : "string" } }, { "name" : "paymentDate", "in" : "query", "schema" : { "type" : "string" } }, { "name" : "useDefaultPaymentType", "in" : "query", "description" : "Set paymentType to last type for vendor, autopay, nets or first available other type", "schema" : { "type" : "boolean", "default" : false } }, { "name" : "partialPayment", "in" : "query", "description" : "Set to true to allow multiple payments registered.", "schema" : { "type" : "boolean", "default" : false } } ], "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperSupplierInvoice" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/supplierInvoice/{invoiceId}/:addRecipient" : { "put" : { "tags" : [ "supplierInvoice" ], "summary" : "Add recipient to supplier invoices.", "operationId" : "SupplierInvoiceAddRecipient_addRecipient", "parameters" : [ { "name" : "invoiceId", "in" : "path", "description" : "Invoice ID.", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "employeeId", "in" : "query", "description" : "ID of the elements", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "comment", "in" : "query", "description" : "comment", "schema" : { "type" : "string" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperSupplierInvoice" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/supplierInvoice/:addRecipient" : { "put" : { "tags" : [ "supplierInvoice" ], "summary" : "Add recipient.", "operationId" : "SupplierInvoiceAddRecipient_addRecipientToMany", "parameters" : [ { "name" : "employeeId", "in" : "query", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "invoiceIds", "in" : "query", "description" : "ID of the elements", "schema" : { "type" : "string" } }, { "name" : "comment", "in" : "query", "description" : "comment", "schema" : { "type" : "string" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseSupplierInvoice" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/supplierInvoice/{invoiceId}/:approve" : { "put" : { "tags" : [ "supplierInvoice" ], "summary" : "Approve supplier invoice.", "operationId" : "SupplierInvoiceApprove_approve", "parameters" : [ { "name" : "invoiceId", "in" : "path", "description" : "ID of the elements", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "comment", "in" : "query", "description" : "comment", "schema" : { "type" : "string" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperSupplierInvoice" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/supplierInvoice/:approve" : { "put" : { "tags" : [ "supplierInvoice" ], "summary" : "Approve supplier invoices.", "operationId" : "SupplierInvoiceApprove_approveMany", "parameters" : [ { "name" : "invoiceIds", "in" : "query", "description" : "ID of the elements", "schema" : { "type" : "string" } }, { "name" : "comment", "in" : "query", "description" : "comment", "schema" : { "type" : "string" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseSupplierInvoice" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/supplierInvoice/{invoiceId}/:changeDimension" : { "put" : { "tags" : [ "supplierInvoice" ], "summary" : "Change dimension on a supplier invoice.", "operationId" : "SupplierInvoiceChangeDimension_changeDimensionMany", "parameters" : [ { "name" : "invoiceId", "in" : "path", "description" : "Invoice ID.", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "debitPostingIds", "in" : "query", "description" : "The list of IDs of the debit postings that you want to change dimensions for", "required" : true, "schema" : { "type" : "string" } }, { "name" : "dimension", "in" : "query", "description" : "Dimension", "required" : true, "schema" : { "type" : "string", "enum" : [ "PROJECT", "DEPARTMENT", "EMPLOYEE", "PRODUCT", "FREE_DIMENSION_1", "FREE_DIMENSION_2", "FREE_DIMENSION_3" ] } }, { "name" : "dimensionId", "in" : "query", "description" : "DimensionID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperSupplierInvoice" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/supplierInvoice/{invoiceId}/pdf" : { "get" : { "tags" : [ "supplierInvoice" ], "summary" : "Get supplierInvoice document by invoice ID.", "operationId" : "SupplierInvoicePdf_downloadPdf", "parameters" : [ { "name" : "invoiceId", "in" : "path", "description" : "Invoice ID from which document is downloaded.", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "200" : { "description" : "Returns the PDF document of the supplier invoice.", "content" : { "application/octet-stream" : { "schema" : { "type" : "string", "format" : "binary" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/supplierInvoice/{id}" : { "get" : { "tags" : [ "supplierInvoice" ], "summary" : "Get supplierInvoice by ID.", "operationId" : "SupplierInvoice_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperSupplierInvoice" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/supplierInvoice/forApproval" : { "get" : { "tags" : [ "supplierInvoice" ], "summary" : "Get supplierInvoices for approval", "operationId" : "SupplierInvoiceForApproval_getApprovalInvoices", "parameters" : [ { "name" : "searchText", "in" : "query", "description" : "Search for department, employee, project and more", "schema" : { "type" : "string" } }, { "name" : "showAll", "in" : "query", "description" : "Show all or just your own", "schema" : { "type" : "boolean", "default" : false } }, { "name" : "employeeId", "in" : "query", "description" : "Default is logged in employee", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseSupplierInvoice" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/supplierInvoice" : { "get" : { "tags" : [ "supplierInvoice" ], "summary" : "Find supplierInvoices corresponding with sent data.", "operationId" : "SupplierInvoice_search", "parameters" : [ { "name" : "id", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "invoiceDateFrom", "in" : "query", "description" : "From and including", "required" : true, "schema" : { "type" : "string" } }, { "name" : "invoiceDateTo", "in" : "query", "description" : "To and excluding", "required" : true, "schema" : { "type" : "string" } }, { "name" : "invoiceNumber", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "kid", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "voucherId", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "supplierId", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseSupplierInvoice" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/supplierInvoice/voucher/{id}/postings" : { "put" : { "tags" : [ "supplierInvoice" ], "summary" : "[BETA] Put debit postings.", "operationId" : "SupplierInvoiceVoucherPostings_putPostings", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Voucher id", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "sendToLedger", "in" : "query", "description" : "Use of this parameter with value 'true' requires setup done by Tripletex.", "schema" : { "type" : "boolean", "default" : false } }, { "name" : "voucherDate", "in" : "query", "description" : "If set, the date of the voucher and the supplier invoice will be changed to this date. If empty, date will not be changed", "schema" : { "type" : "string" } } ], "requestBody" : { "description" : "Postings", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/OrderLinePosting" } } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperSupplierInvoice" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/supplierInvoice/{invoiceId}/:reject" : { "put" : { "tags" : [ "supplierInvoice" ], "summary" : "reject supplier invoice.", "operationId" : "SupplierInvoiceReject_reject", "parameters" : [ { "name" : "invoiceId", "in" : "path", "description" : "Invoice ID.", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "comment", "in" : "query", "required" : true, "schema" : { "type" : "string" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperSupplierInvoice" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/supplierInvoice/:reject" : { "put" : { "tags" : [ "supplierInvoice" ], "summary" : "reject supplier invoices.", "operationId" : "SupplierInvoiceReject_rejectMany", "parameters" : [ { "name" : "comment", "in" : "query", "required" : true, "schema" : { "type" : "string" } }, { "name" : "invoiceIds", "in" : "query", "description" : "ID of the elements", "schema" : { "type" : "string" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseSupplierInvoice" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/voucherApprovalListElement/{id}" : { "get" : { "tags" : [ "voucherApprovalListElement" ], "summary" : "Get by ID.", "operationId" : "VoucherApprovalListElement_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperVoucherApprovalListElement" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/supplierCustomer/search" : { "get" : { "tags" : [ "supplierCustomer" ], "summary" : "Find all active suppliers and customers.", "operationId" : "SupplierCustomerSearch_search", "parameters" : [ { "name" : "query", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseSupplierCustomer" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/supportDashboard/export" : { "get" : { "tags" : [ "supportDashboard" ], "summary" : "Export the customers table to a specific format", "operationId" : "SupportDashboardExport_export", "parameters" : [ { "name" : "type", "in" : "query", "required" : true, "schema" : { "type" : "string" } }, { "name" : "filter", "in" : "query", "required" : true, "schema" : { "type" : "string" } }, { "name" : "startDateRange", "in" : "query", "required" : true, "schema" : { "type" : "string" } }, { "name" : "endDateRange", "in" : "query", "required" : true, "schema" : { "type" : "string" } } ], "responses" : { "200" : { "description" : "The filtered customers table", "content" : { "application/octet-stream" : { "schema" : { "type" : "string" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/supportDashboard/bankruptAndExcludedCustomers" : { "get" : { "tags" : [ "supportDashboard" ], "summary" : "Returns the customers for support dashboard.", "operationId" : "SupportDashboardBankruptAndExcludedCustomers_getBankruptAndExcludedCustomers", "parameters" : [ { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseSupportDashboardCustomer" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/timesheet/allocated/{id}/:approve" : { "put" : { "tags" : [ "timesheet/allocated" ], "summary" : "Only for allocated hours on the company's internal holiday/vacation activity. Mark the allocated hour entry as approved. The hours will be copied to the time sheet if the relevant week/month is not approved, and there are no interfering time clocks that are active. A notification will be sent to the entry's employee if the entry's approval status or comment has changed.", "operationId" : "TimesheetAllocatedApprove_approve", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "managerComment", "in" : "query", "description" : "Comment to be added to the approved hour entry.", "schema" : { "type" : "string" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperTimesheetAllocated" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/timesheet/allocated/:approveList" : { "put" : { "tags" : [ "timesheet/allocated" ], "summary" : "Only for allocated hours on the company's internal holiday/vacation activity. Mark the allocated hour entry/entries as approved. The hours will be copied to the time sheet if the relevant weeks/months are not approved, and there are no interfering time clocks that are active. Notifications will be sent to the entries' employees if the entries' approval statuses or comments have changed. If IDs are provided, the other args are ignored.", "operationId" : "TimesheetAllocatedApproveList_approveList", "parameters" : [ { "name" : "ids", "in" : "query", "description" : "List of allocated hour entry IDs.", "schema" : { "type" : "string" } }, { "name" : "employeeIds", "in" : "query", "description" : "List of IDs. Defaults to ID of token owner.", "schema" : { "type" : "string" } }, { "name" : "dateFrom", "in" : "query", "description" : "From and including", "schema" : { "type" : "string" } }, { "name" : "dateTo", "in" : "query", "description" : "To and excluding", "schema" : { "type" : "string" } }, { "name" : "managerComment", "in" : "query", "description" : "Comment to be added to all approved hour entries.", "schema" : { "type" : "string" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseTimesheetAllocated" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/timesheet/allocated/{id}" : { "get" : { "tags" : [ "timesheet/allocated" ], "summary" : "Find allocated hour entry by ID.", "operationId" : "TimesheetAllocated_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperTimesheetAllocated" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "timesheet/allocated" ], "summary" : "Update allocated hour entry by ID. Note: Allocated hour entry object fields which are present but not set, or set to 0, will be nulled. Only holiday/vacation hours can receive comments. A notification will be sent to the entry's employee if the entry's comment has changed.", "operationId" : "TimesheetAllocated_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/TimesheetAllocated" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperTimesheetAllocated" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "timesheet/allocated" ], "summary" : "Delete allocated hour entry by ID.", "operationId" : "TimesheetAllocated_delete", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/timesheet/allocated/list" : { "put" : { "tags" : [ "timesheet/allocated" ], "summary" : "Update allocated hour entry. Multiple objects for different users can be sent in the same request. Note: Allocated hour entry object fields which are present but not set, or set to 0, will be nulled. Only holiday/vacation hours can receive comments. Notifications will be sent to the entries' employees if the entries' comments have changed.", "operationId" : "TimesheetAllocatedList_putList", "requestBody" : { "description" : "List of allocated hour entry objects to update. Should have ID set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/TimesheetAllocated" } } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseTimesheetAllocated" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "timesheet/allocated" ], "summary" : "Add new allocated hour entry. Multiple objects for several users can be sent in the same request. Only holiday/vacation hours can receive comments. Notifications will be sent to the entries' employees if the entries have comments.", "operationId" : "TimesheetAllocatedList_postList", "requestBody" : { "description" : "JSON representing a list of new objects to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/TimesheetAllocated" } } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseTimesheetAllocated" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/timesheet/allocated" : { "get" : { "tags" : [ "timesheet/allocated" ], "summary" : "Find allocated hour entries corresponding with sent data.", "operationId" : "TimesheetAllocated_search", "parameters" : [ { "name" : "ids", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "employeeIds", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "projectIds", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "activityIds", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "dateFrom", "in" : "query", "description" : "From and including", "schema" : { "type" : "string" } }, { "name" : "dateTo", "in" : "query", "description" : "To and excluding", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseTimesheetAllocated" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "timesheet/allocated" ], "summary" : "Add new allocated hour entry. Only one entry per employee/date/activity/project combination is supported. Only holiday/vacation hours can receive comments. A notification will be sent to the entry's employee if the entry has a comment.", "operationId" : "TimesheetAllocated_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/TimesheetAllocated" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperTimesheetAllocated" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/timesheet/allocated/{id}/:unapprove" : { "put" : { "tags" : [ "timesheet/allocated" ], "summary" : "Only for allocated hours on the company's internal holiday/vacation activity. Mark the allocated hour entry as unapproved. A notification will be sent to the entry's employee if the entry's approval status or comment has changed.", "operationId" : "TimesheetAllocatedUnapprove_unapprove", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "managerComment", "in" : "query", "description" : "Comment to be added to the unapproved hour entry.", "schema" : { "type" : "string" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperTimesheetAllocated" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/timesheet/allocated/:unapproveList" : { "put" : { "tags" : [ "timesheet/allocated" ], "summary" : "Only for allocated hours on the company's internal holiday/vacation activity. Mark the allocated hour entry/entries as unapproved. Notifications will be sent to the entries' employees if the entries' approval statuses or comments have changed. If IDs are provided, the other args are ignored.", "operationId" : "TimesheetAllocatedUnapproveList_unapproveList", "parameters" : [ { "name" : "ids", "in" : "query", "description" : "List of allocated hour entry IDs.", "schema" : { "type" : "string" } }, { "name" : "employeeIds", "in" : "query", "description" : "List of IDs. Defaults to ID of token owner.", "schema" : { "type" : "string" } }, { "name" : "dateFrom", "in" : "query", "description" : "From and including", "schema" : { "type" : "string" } }, { "name" : "dateTo", "in" : "query", "description" : "To and excluding", "schema" : { "type" : "string" } }, { "name" : "managerComment", "in" : "query", "description" : "Comment to be added to all unapproved hour entries.", "schema" : { "type" : "string" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseTimesheetAllocated" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/timesheet/companyHoliday/{id}" : { "get" : { "tags" : [ "timesheet/companyHoliday" ], "summary" : "[BETA] Get company holiday by its ID", "operationId" : "TimesheetCompanyHoliday_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperCompanyHolidays" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "timesheet/companyHoliday" ], "summary" : "[BETA] Update a company holiday", "operationId" : "TimesheetCompanyHoliday_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/CompanyHolidays" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperCompanyHolidays" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "timesheet/companyHoliday" ], "summary" : "[BETA] Delete a company holiday", "operationId" : "TimesheetCompanyHoliday_delete", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/timesheet/companyHoliday" : { "get" : { "tags" : [ "timesheet/companyHoliday" ], "summary" : "[BETA] Search for company holidays by id or year.", "operationId" : "TimesheetCompanyHoliday_search", "parameters" : [ { "name" : "ids", "in" : "query", "description" : "ID of the elements", "schema" : { "type" : "string" } }, { "name" : "years", "in" : "query", "description" : "A year `2020` for instance", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseCompanyHolidays" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "timesheet/companyHoliday" ], "summary" : "[BETA] Create a company holiday", "operationId" : "TimesheetCompanyHoliday_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/CompanyHolidays" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperCompanyHolidays" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/timesheet/entry/{id}" : { "get" : { "tags" : [ "timesheet/entry" ], "summary" : "Find timesheet entry by ID.", "operationId" : "TimesheetEntry_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperTimesheetEntry" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "timesheet/entry" ], "summary" : "Update timesheet entry by ID. Note: Timesheet entry object fields which are present but not set, or set to 0, will be nulled.", "operationId" : "TimesheetEntry_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/TimesheetEntry" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperTimesheetEntry" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "timesheet/entry" ], "summary" : "Delete timesheet entry by ID.", "operationId" : "TimesheetEntry_delete", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "version", "in" : "query", "description" : "Number of current version", "schema" : { "type" : "integer", "format" : "int32" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/timesheet/entry/list" : { "put" : { "tags" : [ "timesheet/entry" ], "summary" : "Update timesheet entry. Multiple objects for different users can be sent in the same request.", "operationId" : "TimesheetEntryList_putList", "requestBody" : { "description" : "List of timesheet entry objects to update", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/TimesheetEntry" } } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseTimesheetEntry" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "timesheet/entry" ], "summary" : "Add new timesheet entry. Multiple objects for several users can be sent in the same request.", "operationId" : "TimesheetEntryList_postList", "requestBody" : { "description" : "List of timesheet entry objects", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/TimesheetEntry" } } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseTimesheetEntry" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/timesheet/entry" : { "get" : { "tags" : [ "timesheet/entry" ], "summary" : "Find timesheet entry corresponding with sent data.", "operationId" : "TimesheetEntry_search", "parameters" : [ { "name" : "id", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "employeeId", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "projectId", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "activityId", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "dateFrom", "in" : "query", "description" : "From and including", "required" : true, "schema" : { "type" : "string" } }, { "name" : "dateTo", "in" : "query", "description" : "To and excluding", "required" : true, "schema" : { "type" : "string" } }, { "name" : "comment", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/TimesheetEntrySearchResponse" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "timesheet/entry" ], "summary" : "Add new timesheet entry. Only one entry per employee/date/activity/project combination is supported.", "operationId" : "TimesheetEntry_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/TimesheetEntry" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperTimesheetEntry" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/timesheet/entry/>recentActivities" : { "get" : { "tags" : [ "timesheet/entry" ], "summary" : "Find recently used timesheet activities.", "operationId" : "TimesheetEntryRecentActivities_getRecentActivities", "parameters" : [ { "name" : "employeeId", "in" : "query", "description" : "ID of employee to find activities for. Defaults to ID of token owner.", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "projectId", "in" : "query", "description" : "ID of project to find activities for", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseActivity" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/timesheet/entry/>recentProjects" : { "get" : { "tags" : [ "timesheet/entry" ], "summary" : "Find projects with recent activities (timesheet entry registered).", "operationId" : "TimesheetEntryRecentProjects_getRecentProjects", "parameters" : [ { "name" : "employeeId", "in" : "query", "description" : "ID of employee with recent project hours Defaults to ID of token owner.", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseProject" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/timesheet/entry/>totalHours" : { "get" : { "tags" : [ "timesheet/entry" ], "summary" : "Find total hours registered on an employee in a specific period.", "operationId" : "TimesheetEntryTotalHours_getTotalHours", "parameters" : [ { "name" : "employeeId", "in" : "query", "description" : "ID of employee to find hours for. Defaults to ID of token owner.", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "startDate", "in" : "query", "description" : "Format is yyyy-MM-dd (from and incl.). Defaults to today.", "schema" : { "type" : "string" } }, { "name" : "endDate", "in" : "query", "description" : "Format is yyyy-MM-dd (to and excl.). Defaults to tomorrow.", "schema" : { "type" : "string" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperBigDecimal" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/timesheet/month/:approve" : { "put" : { "tags" : [ "timesheet/month" ], "summary" : "approve month(s). If id is provided the other args are ignored", "operationId" : "TimesheetMonthApprove_approve", "parameters" : [ { "name" : "id", "in" : "query", "description" : "Element ID", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "employeeIds", "in" : "query", "description" : "List of IDs. Defaults to ID of token owner.", "schema" : { "type" : "string" } }, { "name" : "monthYear", "in" : "query", "description" : "2020-01", "schema" : { "type" : "string" } }, { "name" : "approvedUntilDate", "in" : "query", "description" : "yyyy-MM-dd. Defaults to today.. Defaults to end of month", "schema" : { "type" : "string" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseMonthlyStatus" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/timesheet/month/:complete" : { "put" : { "tags" : [ "timesheet/month" ], "summary" : "complete month(s). If id is provided the other args are ignored", "operationId" : "TimesheetMonthComplete_complete", "parameters" : [ { "name" : "id", "in" : "query", "description" : "Element ID", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "employeeIds", "in" : "query", "description" : "List of IDs. Defaults to ID of token owner.", "schema" : { "type" : "string" } }, { "name" : "monthYear", "in" : "query", "description" : "2020-01", "schema" : { "type" : "string" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseMonthlyStatus" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/timesheet/month/{id}" : { "get" : { "tags" : [ "timesheet/month" ], "summary" : "Find monthly status entry by ID.", "operationId" : "TimesheetMonth_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperMonthlyStatus" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/timesheet/month/byMonthNumber" : { "get" : { "tags" : [ "timesheet/month" ], "summary" : "Find monthly status for given month.", "operationId" : "TimesheetMonthByMonthNumber_getByMonthNumber", "parameters" : [ { "name" : "employeeIds", "in" : "query", "description" : "List of IDs. Defaults to ID of token owner.", "required" : true, "schema" : { "type" : "string" } }, { "name" : "monthYear", "in" : "query", "description" : "2020-01", "required" : true, "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseMonthlyStatus" } } } } }, "deprecated" : true, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/timesheet/month/byMonthNumberList" : { "get" : { "tags" : [ "timesheet/month" ], "summary" : "Find monthly status for given month list.", "operationId" : "TimesheetMonthByMonthNumberList_getByMonthNumberList", "parameters" : [ { "name" : "employeeIds", "in" : "query", "description" : "List of IDs. Defaults to ID of token owner.", "required" : true, "schema" : { "type" : "string" } }, { "name" : "monthYearList", "in" : "query", "description" : "2020-01,2020-02", "required" : true, "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseMonthlyStatus" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/timesheet/month/:reopen" : { "put" : { "tags" : [ "timesheet/month" ], "summary" : "reopen month(s). If id is provided the other args are ignored", "operationId" : "TimesheetMonthReopen_reopen", "parameters" : [ { "name" : "id", "in" : "query", "description" : "Element ID", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "employeeIds", "in" : "query", "description" : "List of IDs. Defaults to ID of token owner.", "schema" : { "type" : "string" } }, { "name" : "monthYear", "in" : "query", "description" : "2020-01", "schema" : { "type" : "string" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseMonthlyStatus" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/timesheet/month/:unapprove" : { "put" : { "tags" : [ "timesheet/month" ], "summary" : "unapprove month(s). If id is provided the other args are ignored", "operationId" : "TimesheetMonthUnapprove_unapprove", "parameters" : [ { "name" : "id", "in" : "query", "description" : "Element ID", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "employeeIds", "in" : "query", "description" : "List of IDs. Defaults to ID of token owner.", "schema" : { "type" : "string" } }, { "name" : "monthYear", "in" : "query", "description" : "2020-01", "schema" : { "type" : "string" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseMonthlyStatus" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/timesheet/salaryProjectTypeSpecification/{id}" : { "get" : { "tags" : [ "timesheet/salaryProjectTypeSpecification" ], "summary" : "Get timesheet ProjectSalaryType specification for a specific ID", "operationId" : "TimesheetSalaryProjectTypeSpecification_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperTimesheetProjectSalaryTypeSpecification" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "timesheet/salaryProjectTypeSpecification" ], "summary" : "Update a timesheet ProjectSalaryType specification", "operationId" : "TimesheetSalaryProjectTypeSpecification_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "JSON representing the object to be updated. Should have ID and version set.", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/TimesheetProjectSalaryTypeSpecification" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperTimesheetProjectSalaryTypeSpecification" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "timesheet/salaryProjectTypeSpecification" ], "summary" : "Delete a timesheet SalaryType specification", "operationId" : "TimesheetSalaryProjectTypeSpecification_delete", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/timesheet/salaryProjectTypeSpecification" : { "get" : { "tags" : [ "timesheet/salaryProjectTypeSpecification" ], "summary" : "Get list of time sheet ProjectSalaryType specifications", "operationId" : "TimesheetSalaryProjectTypeSpecification_search", "parameters" : [ { "name" : "dateFrom", "in" : "query", "description" : "From and including", "schema" : { "type" : "string" } }, { "name" : "dateTo", "in" : "query", "description" : "To and excluding", "schema" : { "type" : "string" } }, { "name" : "employeeId", "in" : "query", "description" : "Equals", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "projectId", "in" : "query", "description" : "Equals", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "activityId", "in" : "query", "description" : "Equals", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "includeNotConnectedToActivities", "in" : "query", "description" : "If true and activity ID is set, specifications not yet connected to activities will be included.", "schema" : { "type" : "boolean" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseTimesheetProjectSalaryTypeSpecification" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "timesheet/salaryProjectTypeSpecification" ], "summary" : "Create a timesheet ProjectSalaryType specification", "operationId" : "TimesheetSalaryProjectTypeSpecification_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/TimesheetProjectSalaryTypeSpecification" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperTimesheetProjectSalaryTypeSpecification" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/timesheet/salaryTypeSpecification/{id}" : { "get" : { "tags" : [ "timesheet/salaryTypeSpecification" ], "summary" : "[BETA] Get timesheet SalaryType Specification for a specific ID", "operationId" : "TimesheetSalaryTypeSpecification_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperTimesheetSalaryTypeSpecification" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "timesheet/salaryTypeSpecification" ], "summary" : "[BETA] Update a timesheet SalaryType Specification", "operationId" : "TimesheetSalaryTypeSpecification_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/TimesheetSalaryTypeSpecification" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperTimesheetSalaryTypeSpecification" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "timesheet/salaryTypeSpecification" ], "summary" : "[BETA] Delete a timesheet SalaryType Specification", "operationId" : "TimesheetSalaryTypeSpecification_delete", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/timesheet/salaryTypeSpecification" : { "get" : { "tags" : [ "timesheet/salaryTypeSpecification" ], "summary" : "[BETA] Get list of timesheet SalaryType Specifications", "operationId" : "TimesheetSalaryTypeSpecification_search", "parameters" : [ { "name" : "dateFrom", "in" : "query", "description" : "From and including", "schema" : { "type" : "string" } }, { "name" : "dateTo", "in" : "query", "description" : "To and excluding", "schema" : { "type" : "string" } }, { "name" : "employeeId", "in" : "query", "description" : "Equals", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseTimesheetSalaryTypeSpecification" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "timesheet/salaryTypeSpecification" ], "summary" : "[BETA] Create a timesheet SalaryType Specification. Only one entry per employee/date/SalaryType", "operationId" : "TimesheetSalaryTypeSpecification_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/TimesheetSalaryTypeSpecification" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperTimesheetSalaryTypeSpecification" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/timesheet/settings" : { "get" : { "tags" : [ "timesheet/settings" ], "summary" : "[BETA] Get timesheet settings of logged in company.", "operationId" : "TimesheetSettings_get", "parameters" : [ { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperTimesheetSettings" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/timesheet/timeClock/{id}" : { "get" : { "tags" : [ "timesheet/timeClock" ], "summary" : "Find time clock entry by ID.", "operationId" : "TimesheetTimeClock_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperTimeClock" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "timesheet/timeClock" ], "summary" : "Update time clock by ID.", "operationId" : "TimesheetTimeClock_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/TimeClock" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperTimeClock" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/timesheet/timeClock" : { "get" : { "tags" : [ "timesheet/timeClock" ], "summary" : "Find time clock entries corresponding with sent data.", "operationId" : "TimesheetTimeClock_search", "parameters" : [ { "name" : "id", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "employeeId", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "projectId", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "activityId", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "dateFrom", "in" : "query", "description" : "From and including", "schema" : { "type" : "string" } }, { "name" : "dateTo", "in" : "query", "description" : "To and excluding", "schema" : { "type" : "string" } }, { "name" : "hourId", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "isRunning", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseTimeClock" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/timesheet/timeClock/present" : { "get" : { "tags" : [ "timesheet/timeClock" ], "summary" : "Find a user’s present running time clock.", "operationId" : "TimesheetTimeClockPresent_getPresent", "parameters" : [ { "name" : "employeeId", "in" : "query", "description" : "Employee ID. Defaults to ID of token owner.", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperTimeClock" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/timesheet/timeClock/:start" : { "put" : { "tags" : [ "timesheet/timeClock" ], "summary" : "Start time clock.", "operationId" : "TimesheetTimeClockStart_start", "parameters" : [ { "name" : "employeeId", "in" : "query", "description" : "Employee ID. Defaults to ID of token owner.", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "projectId", "in" : "query", "description" : "Project ID", "schema" : { "type" : "integer", "format" : "int64", "default" : 0 } }, { "name" : "activityId", "in" : "query", "description" : "Activity ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "date", "in" : "query", "description" : "Optional. Default is today’s date", "schema" : { "type" : "string" } }, { "name" : "lunchBreakDuration", "in" : "query", "description" : "Equals", "schema" : { "minimum" : 0, "type" : "number" } }, { "name" : "comment", "in" : "query", "description" : "Optional. Will be added to this time clock's time sheet entry. If this value is set, and the time clock is started on an existing time sheet entry, the entry's comment will be overwritten.", "schema" : { "type" : "string" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperTimeClock" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/timesheet/timeClock/{id}/:stop" : { "put" : { "tags" : [ "timesheet/timeClock" ], "summary" : "Stop time clock.", "operationId" : "TimesheetTimeClockStop_stop", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "version", "in" : "query", "description" : "Number of current version", "schema" : { "type" : "integer", "format" : "int32", "default" : 0 } }, { "name" : "comment", "in" : "query", "description" : "A comment that will be added to this time clock's time sheet entry. Optional unless comments are mandatory and a comment has not already been added to the time clock when starting it or to the time sheet entry. If this value is set, and the time clock is stopped on an existing time sheet entry, the entry's comment will be overwritten.", "schema" : { "type" : "string" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/timesheet/week/:approve" : { "put" : { "tags" : [ "timesheet/week" ], "summary" : "Approve week. By ID or (ISO-8601 week and employeeId combination).", "operationId" : "TimesheetWeekApprove_approve", "parameters" : [ { "name" : "id", "in" : "query", "description" : "Equals", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "employeeId", "in" : "query", "description" : "Equals", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "weekYear", "in" : "query", "description" : "ISO-8601 week-year", "schema" : { "type" : "string" }, "example" : "2018-12" } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperWeek" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/timesheet/week/:complete" : { "put" : { "tags" : [ "timesheet/week" ], "summary" : "Complete week. By ID or (ISO-8601 week and employeeId combination).", "operationId" : "TimesheetWeekComplete_complete", "parameters" : [ { "name" : "id", "in" : "query", "description" : "Equals", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "employeeId", "in" : "query", "description" : "Equals", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "weekYear", "in" : "query", "description" : "ISO-8601 week-year", "schema" : { "type" : "string" }, "example" : "2018-12" } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperWeek" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/timesheet/week/:reopen" : { "put" : { "tags" : [ "timesheet/week" ], "summary" : "Reopen week. By ID or (ISO-8601 week and employeeId combination).", "operationId" : "TimesheetWeekReopen_reopen", "parameters" : [ { "name" : "id", "in" : "query", "description" : "Equals", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "employeeId", "in" : "query", "description" : "Equals", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "weekYear", "in" : "query", "description" : "ISO-8601 week-year", "schema" : { "type" : "string" }, "example" : "2018-12" } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperWeek" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/timesheet/week" : { "get" : { "tags" : [ "timesheet/week" ], "summary" : "Find weekly status By ID, week/year combination, employeeId or an approver", "operationId" : "TimesheetWeek_search", "parameters" : [ { "name" : "ids", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "employeeIds", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "weekYear", "in" : "query", "description" : "ISO-8601 week-year", "schema" : { "type" : "string" }, "example" : "2018-12" }, { "name" : "approvedBy", "in" : "query", "description" : "Equals", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseWeek" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/timesheet/week/:unapprove" : { "put" : { "tags" : [ "timesheet/week" ], "summary" : "Unapprove week. By ID or (ISO-8601 week and employeeId combination).", "operationId" : "TimesheetWeekUnapprove_unapprove", "parameters" : [ { "name" : "id", "in" : "query", "description" : "Equals", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "employeeId", "in" : "query", "description" : "Equals", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "weekYear", "in" : "query", "description" : "ISO-8601 week-year", "schema" : { "type" : "string" }, "example" : "2018-12" } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperWeek" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/travelExpense/accommodationAllowance/{id}" : { "get" : { "tags" : [ "travelExpense/accommodationAllowance" ], "summary" : "Get travel accommodation allowance by ID.", "operationId" : "TravelExpenseAccommodationAllowance_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperAccommodationAllowance" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "travelExpense/accommodationAllowance" ], "summary" : "Update accommodation allowance.", "operationId" : "TravelExpenseAccommodationAllowance_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/AccommodationAllowance" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperAccommodationAllowance" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "travelExpense/accommodationAllowance" ], "summary" : "Delete accommodation allowance.", "operationId" : "TravelExpenseAccommodationAllowance_delete", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/travelExpense/accommodationAllowance" : { "get" : { "tags" : [ "travelExpense/accommodationAllowance" ], "summary" : "Find accommodation allowances corresponding with sent data.", "operationId" : "TravelExpenseAccommodationAllowance_search", "parameters" : [ { "name" : "travelExpenseId", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "rateTypeId", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "rateCategoryId", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "rateFrom", "in" : "query", "description" : "From and including", "schema" : { "type" : "number" } }, { "name" : "rateTo", "in" : "query", "description" : "To and excluding", "schema" : { "type" : "number" } }, { "name" : "countFrom", "in" : "query", "description" : "From and including", "schema" : { "type" : "integer", "format" : "int32" } }, { "name" : "countTo", "in" : "query", "description" : "To and excluding", "schema" : { "type" : "integer", "format" : "int32" } }, { "name" : "amountFrom", "in" : "query", "description" : "From and including", "schema" : { "type" : "number" } }, { "name" : "amountTo", "in" : "query", "description" : "To and excluding", "schema" : { "type" : "number" } }, { "name" : "location", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "address", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseAccommodationAllowance" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "travelExpense/accommodationAllowance" ], "summary" : "Create accommodation allowance.", "operationId" : "TravelExpenseAccommodationAllowance_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/AccommodationAllowance" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperAccommodationAllowance" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/travelExpense/cost/{id}" : { "get" : { "tags" : [ "travelExpense/cost" ], "summary" : "Get cost by ID.", "operationId" : "TravelExpenseCost_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperCost" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "travelExpense/cost" ], "summary" : "Update cost.", "operationId" : "TravelExpenseCost_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/Cost" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperCost" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "travelExpense/cost" ], "summary" : "Delete cost.", "operationId" : "TravelExpenseCost_delete", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/travelExpense/cost" : { "get" : { "tags" : [ "travelExpense/cost" ], "summary" : "Find costs corresponding with sent data.", "operationId" : "TravelExpenseCost_search", "parameters" : [ { "name" : "travelExpenseId", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "vatTypeId", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "currencyId", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "rateFrom", "in" : "query", "description" : "From and including", "schema" : { "type" : "number" } }, { "name" : "rateTo", "in" : "query", "description" : "To and excluding", "schema" : { "type" : "number" } }, { "name" : "countFrom", "in" : "query", "description" : "From and including", "schema" : { "type" : "integer", "format" : "int32" } }, { "name" : "countTo", "in" : "query", "description" : "To and excluding", "schema" : { "type" : "integer", "format" : "int32" } }, { "name" : "amountFrom", "in" : "query", "description" : "From and including", "schema" : { "type" : "number" } }, { "name" : "amountTo", "in" : "query", "description" : "To and excluding", "schema" : { "type" : "number" } }, { "name" : "location", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "address", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseCost" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "travelExpense/cost" ], "summary" : "Create cost.", "operationId" : "TravelExpenseCost_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/Cost" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperCost" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/travelExpense/cost/list" : { "put" : { "tags" : [ "travelExpense/cost" ], "summary" : "Update costs.", "operationId" : "TravelExpenseCostList_putList", "requestBody" : { "description" : "JSON representing updates to objects. Should have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/Cost" } } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseCost" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/travelExpense/costParticipant/createCostParticipantAdvanced" : { "post" : { "tags" : [ "travelExpense/costParticipant" ], "summary" : "Create participant on cost using explicit parameters", "operationId" : "TravelExpenseCostParticipantCreateCostParticipantAdvanced_createCostParticipantAdvanced", "parameters" : [ { "name" : "displayName", "in" : "query", "description" : "The name of the participant", "schema" : { "type" : "string" } }, { "name" : "costId", "in" : "query", "description" : "ID of cost", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "employeeId", "in" : "query", "description" : "ID of the employee if it is participant. 0 is allowed if the participant is not an employee", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperCostParticipant" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/travelExpense/costParticipant/{id}" : { "get" : { "tags" : [ "travelExpense/costParticipant" ], "summary" : "Get cost participant by ID.", "operationId" : "TravelExpenseCostParticipant_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperCostParticipant" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "travelExpense/costParticipant" ], "summary" : "Delete cost participant.", "operationId" : "TravelExpenseCostParticipant_delete", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/travelExpense/costParticipant/list" : { "post" : { "tags" : [ "travelExpense/costParticipant" ], "summary" : "Create participants on cost.", "operationId" : "TravelExpenseCostParticipantList_postList", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/CostParticipant" } } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseCostParticipant" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "travelExpense/costParticipant" ], "summary" : "Delete cost participants.", "operationId" : "TravelExpenseCostParticipantList_deleteList", "requestBody" : { "description" : "JSON representing objects to delete. Should have ID and version set.", "content" : { "application/json" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/CostParticipant" } } } }, "required" : true }, "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/travelExpense/costParticipant/{costId}/costParticipants" : { "get" : { "tags" : [ "travelExpense/costParticipant" ], "summary" : "Get cost's participants by costId.", "operationId" : "TravelExpenseCostParticipantCostParticipants_getCostParticipants", "parameters" : [ { "name" : "costId", "in" : "path", "description" : "ID of cost", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseCostParticipant" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/travelExpense/costParticipant" : { "post" : { "tags" : [ "travelExpense/costParticipant" ], "summary" : "Create participant on cost.", "operationId" : "TravelExpenseCostParticipant_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/CostParticipant" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperCostParticipant" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/travelExpense/drivingStop/{id}" : { "get" : { "tags" : [ "travelExpense/drivingStop" ], "summary" : "Get driving stop by ID.", "operationId" : "TravelExpenseDrivingStop_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperDrivingStop" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "travelExpense/drivingStop" ], "summary" : "Delete mileage allowance stops.", "operationId" : "TravelExpenseDrivingStop_delete", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/travelExpense/drivingStop" : { "post" : { "tags" : [ "travelExpense/drivingStop" ], "summary" : "Create mileage allowance driving stop.", "operationId" : "TravelExpenseDrivingStop_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/DrivingStop" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperDrivingStop" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/travelExpense/mileageAllowance/{id}" : { "get" : { "tags" : [ "travelExpense/mileageAllowance" ], "summary" : "Get mileage allowance by ID.", "operationId" : "TravelExpenseMileageAllowance_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperMileageAllowance" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "travelExpense/mileageAllowance" ], "summary" : "Update mileage allowance.", "operationId" : "TravelExpenseMileageAllowance_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/MileageAllowance" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperMileageAllowance" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "travelExpense/mileageAllowance" ], "summary" : "Delete mileage allowance.", "operationId" : "TravelExpenseMileageAllowance_delete", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/travelExpense/mileageAllowance" : { "get" : { "tags" : [ "travelExpense/mileageAllowance" ], "summary" : "Find mileage allowances corresponding with sent data.", "operationId" : "TravelExpenseMileageAllowance_search", "parameters" : [ { "name" : "travelExpenseId", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "rateTypeId", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "rateCategoryId", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "kmFrom", "in" : "query", "description" : "From and including", "schema" : { "type" : "number" } }, { "name" : "kmTo", "in" : "query", "description" : "To and excluding", "schema" : { "type" : "number" } }, { "name" : "rateFrom", "in" : "query", "description" : "From and including", "schema" : { "type" : "number" } }, { "name" : "rateTo", "in" : "query", "description" : "To and excluding", "schema" : { "type" : "number" } }, { "name" : "amountFrom", "in" : "query", "description" : "From and including", "schema" : { "type" : "number" } }, { "name" : "amountTo", "in" : "query", "description" : "To and excluding", "schema" : { "type" : "number" } }, { "name" : "departureLocation", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "destination", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "dateFrom", "in" : "query", "description" : "From and including", "schema" : { "type" : "string" } }, { "name" : "dateTo", "in" : "query", "description" : "To and excluding", "schema" : { "type" : "string" } }, { "name" : "isCompanyCar", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseMileageAllowance" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "travelExpense/mileageAllowance" ], "summary" : "Create mileage allowance.", "operationId" : "TravelExpenseMileageAllowance_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/MileageAllowance" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperMileageAllowance" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/travelExpense/passenger/{id}" : { "get" : { "tags" : [ "travelExpense/passenger" ], "summary" : "Get passenger by ID.", "operationId" : "TravelExpensePassenger_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperPassenger" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "travelExpense/passenger" ], "summary" : "Update passenger.", "operationId" : "TravelExpensePassenger_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/Passenger" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperPassenger" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "travelExpense/passenger" ], "summary" : "Delete passenger.", "operationId" : "TravelExpensePassenger_delete", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/travelExpense/passenger/list" : { "post" : { "tags" : [ "travelExpense/passenger" ], "summary" : "Create passengers.", "operationId" : "TravelExpensePassengerList_postList", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/Passenger" } } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponsePassenger" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "travelExpense/passenger" ], "summary" : "Delete passengers.", "operationId" : "TravelExpensePassengerList_deleteList", "requestBody" : { "description" : "JSON representing objects to delete. Should have ID and version set.", "content" : { "application/json" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/Passenger" } } } }, "required" : true }, "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/travelExpense/passenger" : { "get" : { "tags" : [ "travelExpense/passenger" ], "summary" : "Find passengers corresponding with sent data.", "operationId" : "TravelExpensePassenger_search", "parameters" : [ { "name" : "mileageAllowance", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "name", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponsePassenger" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "travelExpense/passenger" ], "summary" : "Create passenger.", "operationId" : "TravelExpensePassenger_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/Passenger" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperPassenger" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/travelExpense/perDiemCompensation/{id}" : { "get" : { "tags" : [ "travelExpense/perDiemCompensation" ], "summary" : "Get per diem compensation by ID.", "operationId" : "TravelExpensePerDiemCompensation_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperPerDiemCompensation" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "travelExpense/perDiemCompensation" ], "summary" : "Update per diem compensation.", "operationId" : "TravelExpensePerDiemCompensation_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/PerDiemCompensation" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperPerDiemCompensation" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "travelExpense/perDiemCompensation" ], "summary" : "Delete per diem compensation.", "operationId" : "TravelExpensePerDiemCompensation_delete", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/travelExpense/perDiemCompensation" : { "get" : { "tags" : [ "travelExpense/perDiemCompensation" ], "summary" : "Find per diem compensations corresponding with sent data.", "operationId" : "TravelExpensePerDiemCompensation_search", "parameters" : [ { "name" : "travelExpenseId", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "rateTypeId", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "rateCategoryId", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "overnightAccommodation", "in" : "query", "description" : "Equals", "schema" : { "type" : "string", "enum" : [ "NONE", "HOTEL", "BOARDING_HOUSE_WITHOUT_COOKING", "BOARDING_HOUSE_WITH_COOKING" ] } }, { "name" : "countFrom", "in" : "query", "description" : "From and including", "schema" : { "type" : "integer", "format" : "int32" } }, { "name" : "countTo", "in" : "query", "description" : "To and excluding", "schema" : { "type" : "integer", "format" : "int32" } }, { "name" : "rateFrom", "in" : "query", "description" : "From and including", "schema" : { "type" : "number" } }, { "name" : "rateTo", "in" : "query", "description" : "To and excluding", "schema" : { "type" : "number" } }, { "name" : "amountFrom", "in" : "query", "description" : "From and including", "schema" : { "type" : "number" } }, { "name" : "amountTo", "in" : "query", "description" : "To and excluding", "schema" : { "type" : "number" } }, { "name" : "location", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "address", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "isDeductionForBreakfast", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "isLunchDeduction", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "isDinnerDeduction", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponsePerDiemCompensation" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "travelExpense/perDiemCompensation" ], "summary" : "Create per diem compensation.", "operationId" : "TravelExpensePerDiemCompensation_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/PerDiemCompensation" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperPerDiemCompensation" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/travelExpense/:approve" : { "put" : { "tags" : [ "travelExpense" ], "summary" : "Approve travel expenses.", "operationId" : "TravelExpenseApprove_approve", "parameters" : [ { "name" : "id", "in" : "query", "description" : "ID of the elements", "schema" : { "type" : "string" } }, { "name" : "overrideApprovalFlow", "in" : "query", "description" : "Override approval flow", "schema" : { "type" : "boolean", "default" : false } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseTravelExpense" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/travelExpense/{id}/convert" : { "put" : { "tags" : [ "travelExpense" ], "summary" : "Convert travel to/from employee expense.", "operationId" : "TravelExpenseConvert_convert", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperTravelExpense" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/travelExpense/:copy" : { "put" : { "tags" : [ "travelExpense" ], "summary" : "Copy travel expense.", "operationId" : "TravelExpenseCopy_copy", "parameters" : [ { "name" : "id", "in" : "query", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperTravelExpense" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/travelExpense/:createVouchers" : { "put" : { "tags" : [ "travelExpense" ], "summary" : "Create vouchers", "operationId" : "TravelExpenseCreateVouchers_createVouchers", "parameters" : [ { "name" : "id", "in" : "query", "description" : "ID of the elements", "schema" : { "type" : "string" } }, { "name" : "date", "in" : "query", "description" : "yyyy-MM-dd. Defaults to today.", "required" : true, "schema" : { "type" : "string" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseTravelExpense" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/travelExpense/{id}" : { "get" : { "tags" : [ "travelExpense" ], "summary" : "Get travel expense by ID.", "operationId" : "TravelExpense_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperTravelExpense" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "travelExpense" ], "summary" : "Update travel expense.", "operationId" : "TravelExpense_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/TravelExpense" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperTravelExpense" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "travelExpense" ], "summary" : "Delete travel expense.", "operationId" : "TravelExpense_delete", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/travelExpense/{travelExpenseId}/attachment" : { "get" : { "tags" : [ "travelExpense" ], "summary" : "Get attachment by travel expense ID.", "operationId" : "TravelExpenseAttachment_downloadAttachment", "parameters" : [ { "name" : "travelExpenseId", "in" : "path", "description" : "Travel Expense ID from which PDF is downloaded.", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "200" : { "description" : "Returns the PDF attachment of the travel expense.", "content" : { "application/pdf" : { "schema" : { "type" : "string", "format" : "binary" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "travelExpense" ], "summary" : "Upload attachment to travel expense.", "operationId" : "TravelExpenseAttachment_uploadAttachment", "parameters" : [ { "name" : "travelExpenseId", "in" : "path", "description" : "Travel Expense ID to upload attachment to.", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "createNewCost", "in" : "query", "description" : "Create new cost row when you add the attachment", "schema" : { "type" : "boolean", "default" : false } } ], "requestBody" : { "content" : { "multipart/form-data" : { "schema" : { "required" : [ "file" ], "type" : "object", "properties" : { "file" : { "type" : "string", "description" : "The file", "format" : "binary" } } } } } }, "responses" : { "200" : { "description" : "Returns the updated travel expense with the new attachment.", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "travelExpense" ], "summary" : "Delete attachment.", "operationId" : "TravelExpenseAttachment_deleteAttachment", "parameters" : [ { "name" : "travelExpenseId", "in" : "path", "description" : "ID of attachment containing the attachment to delete.", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "version", "in" : "query", "description" : "Version of voucher containing the attachment to delete.", "schema" : { "minimum" : 0, "type" : "integer", "format" : "int32" } }, { "name" : "sendToInbox", "in" : "query", "description" : "Should the attachment be sent to inbox rather than deleted?", "schema" : { "type" : "boolean", "default" : false } }, { "name" : "split", "in" : "query", "description" : "If sendToInbox is true, should the attachment be split into one voucher per page?", "schema" : { "type" : "boolean", "default" : false } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/travelExpense/:deliver" : { "put" : { "tags" : [ "travelExpense" ], "summary" : "Deliver travel expenses.", "operationId" : "TravelExpenseDeliver_deliver", "parameters" : [ { "name" : "id", "in" : "query", "description" : "ID of the elements", "schema" : { "type" : "string" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseTravelExpense" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/travelExpense" : { "get" : { "tags" : [ "travelExpense" ], "summary" : "Find travel expenses corresponding with sent data.", "operationId" : "TravelExpense_search", "parameters" : [ { "name" : "employeeId", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "departmentId", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "projectId", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "projectManagerId", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "departureDateFrom", "in" : "query", "description" : "From and including", "schema" : { "type" : "string" } }, { "name" : "returnDateTo", "in" : "query", "description" : "To and excluding", "schema" : { "type" : "string" } }, { "name" : "state", "in" : "query", "description" : "category", "schema" : { "type" : "string", "enum" : [ "ALL", "REJECTED", "OPEN", "APPROVED", "SALARY_PAID", "DELIVERED" ], "default" : "ALL" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseTravelExpense" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "travelExpense" ], "summary" : "Create travel expense.", "operationId" : "TravelExpense_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/TravelExpense" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperTravelExpense" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/travelExpense/:unapprove" : { "put" : { "tags" : [ "travelExpense" ], "summary" : "Unapprove travel expenses.", "operationId" : "TravelExpenseUnapprove_unapprove", "parameters" : [ { "name" : "id", "in" : "query", "description" : "ID of the elements", "schema" : { "type" : "string" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseTravelExpense" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/travelExpense/:undeliver" : { "put" : { "tags" : [ "travelExpense" ], "summary" : "Undeliver travel expenses.", "operationId" : "TravelExpenseUndeliver_undeliver", "parameters" : [ { "name" : "id", "in" : "query", "description" : "ID of the elements", "schema" : { "type" : "string" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/TravelExpense" } } } }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseTravelExpense" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/travelExpense/{travelExpenseId}/attachment/list" : { "post" : { "tags" : [ "travelExpense" ], "summary" : "Upload multiple attachments to travel expense.", "operationId" : "TravelExpenseAttachmentList_uploadAttachments", "parameters" : [ { "name" : "travelExpenseId", "in" : "path", "description" : "Travel Expense ID to upload attachment to.", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "createNewCost", "in" : "query", "description" : "Create new cost row when you add the attachment", "schema" : { "type" : "boolean", "default" : false } } ], "requestBody" : { "description" : "Upload multiple files", "content" : { "multipart/form-data" : { "schema" : { "type" : "object", "properties" : { "file" : { "type" : "array", "items" : { "type" : "string", "format" : "binary" } } } } } }, "required" : true }, "responses" : { "200" : { "description" : "Returns the updated travel expense with the new attachments.", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/travelExpense/rate/{id}" : { "get" : { "tags" : [ "travelExpense/rate" ], "summary" : "Get travel expense rate by ID.", "operationId" : "TravelExpenseRate_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperTravelExpenseRate" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/travelExpense/rate" : { "get" : { "tags" : [ "travelExpense/rate" ], "summary" : "Find rates corresponding with sent data.", "operationId" : "TravelExpenseRate_search", "parameters" : [ { "name" : "rateCategoryId", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "type", "in" : "query", "description" : "Equals", "schema" : { "type" : "string", "enum" : [ "PER_DIEM", "ACCOMMODATION_ALLOWANCE", "MILEAGE_ALLOWANCE" ] } }, { "name" : "isValidDayTrip", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "isValidAccommodation", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "isValidDomestic", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "isValidForeignTravel", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "requiresZone", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "requiresOvernightAccommodation", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "dateFrom", "in" : "query", "description" : "From and including", "schema" : { "type" : "string" } }, { "name" : "dateTo", "in" : "query", "description" : "To and excluding", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseTravelExpenseRate" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/travelExpense/rateCategory/{id}" : { "get" : { "tags" : [ "travelExpense/rateCategory" ], "summary" : "Get travel expense rate category by ID.", "operationId" : "TravelExpenseRateCategory_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperTravelExpenseRateCategory" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/travelExpense/rateCategory" : { "get" : { "tags" : [ "travelExpense/rateCategory" ], "summary" : "Find rate categories corresponding with sent data.", "operationId" : "TravelExpenseRateCategory_search", "parameters" : [ { "name" : "type", "in" : "query", "description" : "Equals", "schema" : { "type" : "string", "enum" : [ "PER_DIEM", "ACCOMMODATION_ALLOWANCE", "MILEAGE_ALLOWANCE" ] } }, { "name" : "name", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "travelReportRateCategoryGroupId", "in" : "query", "description" : "Equals", "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "ameldingWageCode", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "wageCodeNumber", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "isValidDayTrip", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "isValidAccommodation", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "isValidDomestic", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "requiresZone", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "isRequiresOvernightAccommodation", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "dateFrom", "in" : "query", "description" : "From and including", "schema" : { "type" : "string" } }, { "name" : "dateTo", "in" : "query", "description" : "To and excluding", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseTravelExpenseRateCategory" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/travelExpense/rateCategoryGroup/{id}" : { "get" : { "tags" : [ "travelExpense/rateCategoryGroup" ], "summary" : "Get travel report rate category group by ID.", "operationId" : "TravelExpenseRateCategoryGroup_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperTravelExpenseRateCategoryGroup" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/travelExpense/rateCategoryGroup" : { "get" : { "tags" : [ "travelExpense/rateCategoryGroup" ], "summary" : "Find rate categoriy groups corresponding with sent data.", "operationId" : "TravelExpenseRateCategoryGroup_search", "parameters" : [ { "name" : "name", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "isForeignTravel", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "dateFrom", "in" : "query", "description" : "From and including", "schema" : { "type" : "string" } }, { "name" : "dateTo", "in" : "query", "description" : "To and excluding", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseTravelExpenseRateCategoryGroup" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/travelExpense/costCategory/{id}" : { "get" : { "tags" : [ "travelExpense/costCategory" ], "summary" : "Get cost category by ID.", "operationId" : "TravelExpenseCostCategory_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperTravelCostCategory" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/travelExpense/costCategory" : { "get" : { "tags" : [ "travelExpense/costCategory" ], "summary" : "Find cost category corresponding with sent data.", "operationId" : "TravelExpenseCostCategory_search", "parameters" : [ { "name" : "id", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "description", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "isInactive", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "showOnEmployeeExpenses", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "query", "in" : "query", "description" : "Equals", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseTravelCostCategory" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/travelExpense/paymentType/{id}" : { "get" : { "tags" : [ "travelExpense/paymentType" ], "summary" : "Get payment type by ID.", "operationId" : "TravelExpensePaymentType_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperTravelPaymentType" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/travelExpense/paymentType" : { "get" : { "tags" : [ "travelExpense/paymentType" ], "summary" : "Find payment type corresponding with sent data.", "operationId" : "TravelExpensePaymentType_search", "parameters" : [ { "name" : "id", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "description", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "isInactive", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "showOnEmployeeExpenses", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "query", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseTravelPaymentType" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/travelExpense/settings" : { "get" : { "tags" : [ "travelExpense/settings" ], "summary" : "Get travel expense settings of logged in company.", "operationId" : "TravelExpenseSettings_get", "parameters" : [ { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperTravelExpenseSettings" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/travelExpense/zone/{id}" : { "get" : { "tags" : [ "travelExpense/zone" ], "summary" : "Get travel expense zone by ID.", "operationId" : "TravelExpenseZone_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperTravelExpenseZone" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/travelExpense/zone" : { "get" : { "tags" : [ "travelExpense/zone" ], "summary" : "Find travel expense zones corresponding with sent data.", "operationId" : "TravelExpenseZone_search", "parameters" : [ { "name" : "id", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "code", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "isDisabled", "in" : "query", "description" : "Equals", "schema" : { "type" : "boolean" } }, { "name" : "query", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "date", "in" : "query", "description" : "yyyy-MM-dd. Defaults to today.", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseTravelExpenseZone" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/userLicense/export" : { "post" : { "tags" : [ "userLicense" ], "summary" : "Export the user licenses table to a specific format", "operationId" : "UserLicenseExport_export", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/UserLicenseExport" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/octet-stream" : { "schema" : { "type" : "string" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/vatReturns/comment/>all" : { "get" : { "tags" : [ "vatReturns/comment" ], "summary" : "[BETA] - Get all structured comments available", "operationId" : "VatReturnsCommentAll_all", "parameters" : [ { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseVatReturnsComment" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/vatReturns/comment" : { "get" : { "tags" : [ "vatReturns/comment" ], "summary" : "[BETA] - Get all structured comments related to a given vatCode", "operationId" : "VatReturnsComment_query", "parameters" : [ { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseVatReturnsVatCodeComment" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/vatTermSizeSettings/{id}" : { "get" : { "tags" : [ "vatTermSizeSettings" ], "summary" : "Get VatTermSizeSettings by ID. VatTermSizeSettings is used to define VAT term lengths.", "operationId" : "VatTermSizeSettings_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperVatTermSizeSettings" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "put" : { "tags" : [ "vatTermSizeSettings" ], "summary" : "Update VatTermSizeSettings.", "operationId" : "VatTermSizeSettings_put", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/VatTermSizeSettings" } } }, "required" : true }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperVatTermSizeSettings" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "vatTermSizeSettings" ], "summary" : "Delete VatTermSizeSettings", "operationId" : "VatTermSizeSettings_delete", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } } ], "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/vatTermSizeSettings" : { "get" : { "tags" : [ "vatTermSizeSettings" ], "summary" : "Search for VatTermSizeSettings", "operationId" : "VatTermSizeSettings_query", "parameters" : [ { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseVatTermSizeSettings" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "vatTermSizeSettings" ], "summary" : "Create VatTermSizeSettings", "operationId" : "VatTermSizeSettings_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/VatTermSizeSettings" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperVatTermSizeSettings" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/voucherInbox/inboxCount" : { "get" : { "tags" : [ "voucherInbox" ], "summary" : "Get count of items in the Voucher Inbox", "operationId" : "VoucherInboxInboxCount_getInboxCount", "parameters" : [ { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperInteger" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/voucherMessage" : { "get" : { "tags" : [ "voucherMessage" ], "summary" : "[BETA] Find voucherMessage (or a comment) put on a voucher by inputting voucher ids", "operationId" : "VoucherMessage_search", "parameters" : [ { "name" : "voucherIds", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseVoucherMessage" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "voucherMessage" ], "summary" : "[BETA] Post new voucherMessage.", "operationId" : "VoucherMessage_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/VoucherMessage" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperVoucherMessage" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/voucherStatus/{id}" : { "get" : { "tags" : [ "voucherStatus" ], "summary" : "Get voucherStatus by ID.", "operationId" : "VoucherStatus_get", "parameters" : [ { "name" : "id", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperVoucherStatus" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/voucherStatus" : { "get" : { "tags" : [ "voucherStatus" ], "summary" : "Find voucherStatus corresponding with sent data. The voucherStatus is used to coordinate integration processes. Requires setup done by Tripletex, currently supports debt collection.", "operationId" : "VoucherStatus_search", "parameters" : [ { "name" : "ids", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "voucherIds", "in" : "query", "description" : "List of IDs", "schema" : { "type" : "string" } }, { "name" : "status", "in" : "query", "description" : "Equals", "schema" : { "type" : "string", "enum" : [ "WAITING", "DONE", "SKIPPED", "ERROR", "NONE", "PROCESSING", "RECLAIMED" ] } }, { "name" : "type", "in" : "query", "description" : "Equals", "schema" : { "type" : "string", "enum" : [ "TRIPLETEX", "SUPPLIERINVOICE_EXTERNAL", "DEBT_COLLECTION" ] } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseVoucherStatus" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "voucherStatus" ], "summary" : "Post new voucherStatus.", "operationId" : "VoucherStatus_post", "requestBody" : { "description" : "JSON representing the new object to be created. Should not have ID and version set.", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/VoucherStatus" } } }, "required" : true }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperVoucherStatus" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/yearEnd/enumType/businessActivityTypes" : { "get" : { "tags" : [ "yearEnd/enumType" ], "summary" : "Get business activity types", "operationId" : "YearEndEnumTypeBusinessActivityTypes_getBusinessActivityTypes", "parameters" : [ { "name" : "id", "in" : "query", "description" : "ID of the elements", "schema" : { "type" : "string" } }, { "name" : "query", "in" : "query", "description" : "Containing", "schema" : { "type" : "string" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseBusinessActivityType" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/yearEnd/researchAndDevelopment2024" : { "put" : { "tags" : [ "internal", "researchAndDevelopment2024", "yearEnd" ], "summary" : "Update ResearchAndDevelopment 2024", "operationId" : "YearEndResearchAndDevelopment2024_putResearchAndDevelopment2024", "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/ResearchAndDevelopment2024" } } } }, "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperResearchAndDevelopment2024" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "post" : { "tags" : [ "internal", "researchAndDevelopment2024", "yearEnd" ], "summary" : "Create ResearchAndDevelopment 2024", "operationId" : "YearEndResearchAndDevelopment2024_postResearchAndDevelopment2024", "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/ResearchAndDevelopment2024" } } } }, "responses" : { "201" : { "description" : "successfully created", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ResponseWrapperResearchAndDevelopment2024" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] }, "delete" : { "tags" : [ "internal", "researchAndDevelopment2024", "yearEnd" ], "summary" : "Delete ResearchAndDevelopment 2024", "operationId" : "YearEndResearchAndDevelopment2024_deleteResearchAndDevelopment2024", "requestBody" : { "description" : "Partial object describing what should be updated", "content" : { "application/json; charset=utf-8" : { "schema" : { "$ref" : "#/components/schemas/ResearchAndDevelopment2024" } } } }, "responses" : { "204" : { "description" : "successful operation", "content" : { "application/json" : { } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } }, "/yearEnd/{yearEndReportId}/researchAndDevelopment2024" : { "get" : { "tags" : [ "internal", "researchAndDevelopment2024", "yearEnd" ], "summary" : "Get ResearchAndDevelopment by corresponding data 2024", "operationId" : "YearEndResearchAndDevelopment2024_get", "parameters" : [ { "name" : "yearEndReportId", "in" : "path", "description" : "Element ID", "required" : true, "schema" : { "type" : "integer", "format" : "int64" } }, { "name" : "fields", "in" : "query", "description" : "Fields filter pattern", "schema" : { "type" : "string", "default" : "*, collaborativeBusinesses(*), workPackages(*), otherPublicSupportList(*)" } }, { "name" : "from", "in" : "query", "description" : "From index", "required" : false, "schema" : { "type" : "integer", "default" : "0" } }, { "name" : "count", "in" : "query", "description" : "Number of elements to return", "required" : false, "schema" : { "type" : "integer", "default" : "1000" } }, { "name" : "sorting", "in" : "query", "description" : "Sorting pattern", "required" : false, "schema" : { "type" : "string", "default" : "" } } ], "responses" : { "200" : { "description" : "successful operation", "content" : { "application/json" : { "schema" : { "$ref" : "#/components/schemas/ListResponseResearchAndDevelopment2024" } } } } }, "security" : [ { "tokenAuthScheme" : [ ] } ] } } }, "components" : { "schemas" : { "Address" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "addressLine1" : { "type" : "string" }, "addressLine2" : { "type" : "string" }, "postalCode" : { "type" : "string" }, "city" : { "type" : "string" }, "country" : { "$ref" : "#/components/schemas/Country" }, "displayName" : { "type" : "string", "readOnly" : true }, "addressAsString" : { "type" : "string", "readOnly" : true }, "displayNameInklMatrikkel" : { "type" : "string", "readOnly" : true }, "knr" : { "minimum" : 0, "type" : "integer", "format" : "int32" }, "gnr" : { "minimum" : 0, "type" : "integer", "format" : "int32" }, "bnr" : { "minimum" : 0, "type" : "integer", "format" : "int32" }, "fnr" : { "minimum" : 0, "type" : "integer", "format" : "int32" }, "snr" : { "minimum" : 0, "type" : "integer", "format" : "int32" }, "unitNumber" : { "type" : "string" } }, "description" : "Address tied to the employee" }, "Change" : { "type" : "object", "properties" : { "employeeId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "timestamp" : { "type" : "string", "readOnly" : true }, "changeType" : { "type" : "string", "readOnly" : true, "enum" : [ "CREATE", "UPDATE", "DELETE", "LOCKED", "REOPENED", "DO_NOT_SHOW" ] } }, "readOnly" : true }, "Company" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "name" : { "type" : "string" }, "displayName" : { "type" : "string", "readOnly" : true }, "startDate" : { "type" : "string" }, "endDate" : { "type" : "string" }, "organizationNumber" : { "type" : "string" }, "email" : { "type" : "string" }, "phoneNumber" : { "type" : "string" }, "phoneNumberMobile" : { "type" : "string" }, "faxNumber" : { "type" : "string" }, "address" : { "$ref" : "#/components/schemas/Address" }, "type" : { "type" : "string", "enum" : [ "NONE", "ENK", "AS", "NUF", "ANS", "DA", "PRE", "KS", "ASA", "BBL", "BRL", "GFS", "SPA", "SF", "IKS", "KF_FKF", "FCD", "EOFG", "BA", "STI", "ORG", "ESEK", "SA", "SAM", "BO", "VPFO", "OS", "FLI", "Other" ] }, "currency" : { "$ref" : "#/components/schemas/Currency" }, "accountantOrSimilar" : { "type" : "boolean", "readOnly" : true }, "companyMigration" : { "type" : "string", "description" : "If the company was migrated from another system, this field will contain the name of the system it was migrated from.", "readOnly" : true, "enum" : [ "NONE", "AGRO" ] }, "invoiceShowDeliveryDate" : { "type" : "boolean", "readOnly" : true } }, "description" : "Vendor of the product", "readOnly" : true }, "Country" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "name" : { "type" : "string", "readOnly" : true }, "displayName" : { "type" : "string", "readOnly" : true }, "isoAlpha2Code" : { "type" : "string", "description" : "The ISO 3166-1 Alpha2 code of the country (2 letters). https://en.wikipedia.org/wiki/ISO_3166-1", "readOnly" : true }, "isoAlpha3Code" : { "type" : "string", "description" : "The ISO 3166-1 Alpha3 code of the country (3 letters). https://en.wikipedia.org/wiki/ISO_3166-1", "readOnly" : true }, "isoNumericCode" : { "type" : "string", "description" : "The ISO 3166-1 numeric code of the country (3 digits). https://en.wikipedia.org/wiki/ISO_3166-1", "readOnly" : true } } }, "Currency" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "code" : { "type" : "string" }, "description" : { "type" : "string" }, "factor" : { "maximum" : 100, "minimum" : 1, "type" : "integer", "format" : "int32" }, "displayName" : { "type" : "string" }, "isDisabled" : { "type" : "boolean" } }, "readOnly" : true }, "Department" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "name" : { "type" : "string" }, "departmentNumber" : { "type" : "string" }, "departmentManager" : { "$ref" : "#/components/schemas/Employee" }, "displayName" : { "type" : "string", "readOnly" : true }, "isInactive" : { "type" : "boolean" }, "businessActivityTypeId" : { "type" : "integer", "description" : "The business activity type for this department. Business activity types can be used to separate between different tax categories, and between general and primary VAT reports. A posting done with a given departmentId, will belong to the business activity type defined on the department.", "format" : "int32", "readOnly" : true } }, "description" : "The department for this account. If multiple industries are activated, all postings on this account will be towards this department. If multiple industries are not activated, it is ignored." }, "Division" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "displayName" : { "type" : "string" }, "name" : { "type" : "string" }, "startDate" : { "type" : "string" }, "endDate" : { "type" : "string" }, "organizationNumber" : { "type" : "string" }, "municipalityDate" : { "type" : "string" }, "municipality" : { "$ref" : "#/components/schemas/Municipality" } } }, "Employee" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "firstName" : { "type" : "string" }, "lastName" : { "type" : "string" }, "displayName" : { "type" : "string", "readOnly" : true }, "employeeNumber" : { "type" : "string" }, "dateOfBirth" : { "type" : "string" }, "email" : { "type" : "string" }, "phoneNumberMobileCountry" : { "$ref" : "#/components/schemas/Country" }, "phoneNumberMobile" : { "type" : "string" }, "phoneNumberHome" : { "type" : "string" }, "phoneNumberWork" : { "type" : "string" }, "nationalIdentityNumber" : { "type" : "string" }, "dnumber" : { "type" : "string" }, "internationalId" : { "$ref" : "#/components/schemas/InternationalId" }, "bankAccountNumber" : { "type" : "string" }, "iban" : { "type" : "string", "description" : "IBAN field" }, "bic" : { "type" : "string", "description" : "Bic (swift) field" }, "creditorBankCountryId" : { "type" : "integer", "description" : "Country of creditor bank field", "format" : "int32" }, "usesAbroadPayment" : { "type" : "boolean", "description" : "UsesAbroadPayment field. Determines if we should use domestic or abroad remittance. To be able to use abroad remittance, one has to: 1: have Autopay 2: have valid combination of the fields Iban, Bic (swift) and Country of creditor bank. " }, "userType" : { "type" : "string", "description" : "Define the employee's user type.
STANDARD: Reduced access. Users with limited system entitlements.
EXTENDED: Users can be given all system entitlements.
NO_ACCESS: User with no log on access.
Users with access to Tripletex must confirm the email address.", "enum" : [ "STANDARD", "EXTENDED", "NO_ACCESS" ] }, "allowInformationRegistration" : { "type" : "boolean", "description" : "Determines if salary information can be registered on the user including hours, travel expenses and employee expenses. The user may also be selected as a project member on projects.", "readOnly" : true }, "isContact" : { "type" : "boolean", "description" : "Determines if the employee is a contact (external) in the company." }, "isProxy" : { "type" : "boolean", "description" : "True if this Employee object represents an accounting or auditor office", "readOnly" : true }, "comments" : { "type" : "string" }, "address" : { "$ref" : "#/components/schemas/Address" }, "department" : { "$ref" : "#/components/schemas/Department" }, "employments" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/Employment" } }, "holidayAllowanceEarned" : { "$ref" : "#/components/schemas/HolidayAllowanceEarned" }, "employeeCategory" : { "$ref" : "#/components/schemas/EmployeeCategory" }, "isAuthProjectOverviewURL" : { "type" : "boolean", "readOnly" : true }, "pictureId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "companyId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "vismaConnect2FAactive" : { "type" : "boolean", "readOnly" : true } } }, "EmployeeCategory" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "displayName" : { "type" : "string" }, "name" : { "type" : "string" }, "number" : { "type" : "string" }, "description" : { "type" : "string" } } }, "Employment" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "employee" : { "$ref" : "#/components/schemas/Employee" }, "employmentId" : { "type" : "string", "description" : "Existing employment ID used by the current accounting system" }, "startDate" : { "type" : "string" }, "endDate" : { "type" : "string" }, "employmentEndReason" : { "type" : "string", "description" : "Define the employment end reason.", "enum" : [ "EMPLOYMENT_END_EXPIRED", "EMPLOYMENT_END_EMPLOYEE", "EMPLOYMENT_END_EMPLOYER", "EMPLOYMENT_END_WRONGLY_REPORTED", "EMPLOYMENT_END_SYSTEM_OR_ACCOUNTANT_CHANGE", "EMPLOYMENT_END_INTERNAL_CHANGE" ] }, "division" : { "$ref" : "#/components/schemas/Division" }, "lastSalaryChangeDate" : { "type" : "string" }, "noEmploymentRelationship" : { "type" : "boolean", "description" : "Activate pensions and other benefits with no employment relationship." }, "isMainEmployer" : { "type" : "boolean", "description" : "Determines if company is main employer for the employee. Default value is true.
Some values will be default set if not sent upon creation of employment:
If isMainEmployer is NOT sent and tax deduction code loennFraHovedarbeidsgiver is sent, isMainEmployer will be set to true.
If isMainEmployer is NOT sent and tax deduction code loennFraBiarbeidsgiver is sent, isMainEmployer will be set to false.
If true and deduction code is NOT sent, value of tax deduction code will be set to loennFraHovedarbeidsgiver.
If false and deduction code is NOT sent, value of tax deduction code will be set to loennFraBiarbeidsgiver.
For other types of Tax Deduction Codes, isMainEmployer does not influence anything." }, "taxDeductionCode" : { "type" : "string", "description" : "EMPTY - represents that a tax deduction code is not set on the employment. It is illegal to set the field to this value.
Default value of this field is loennFraHovedarbeidsgiver or loennFraBiarbeidsgiver depending on boolean isMainEmployer", "enum" : [ "loennFraHovedarbeidsgiver", "loennFraBiarbeidsgiver", "pensjon", "loennTilUtenrikstjenestemann", "loennKunTrygdeavgiftTilUtenlandskBorger", "loennKunTrygdeavgiftTilUtenlandskBorgerSomGrensegjenger", "introduksjonsstoenad", "ufoereytelserFraAndre", "" ] }, "employmentDetails" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/EmploymentDetails" } }, "isRemoveAccessAtEmploymentEnded" : { "type" : "boolean", "description" : "If true, access to the employee will be removed when the employment ends.
This field is part of the Employee object, therefore changing it for one Employment affects all Employments." }, "latestSalary" : { "$ref" : "#/components/schemas/EmploymentDetails" } }, "description" : "Employments tied to the employee" }, "EmploymentDetails" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "employment" : { "$ref" : "#/components/schemas/Employment" }, "date" : { "type" : "string" }, "employmentType" : { "type" : "string", "description" : "Define the employment type.", "enum" : [ "ORDINARY", "MARITIME", "FREELANCE", "NOT_CHOSEN" ] }, "employmentForm" : { "type" : "string", "description" : "Define the employment form.", "enum" : [ "PERMANENT", "TEMPORARY", "PERMANENT_AND_HIRED_OUT", "TEMPORARY_AND_HIRED_OUT", "TEMPORARY_ON_CALL", "NOT_CHOSEN" ] }, "maritimeEmployment" : { "$ref" : "#/components/schemas/MaritimeEmployment" }, "remunerationType" : { "type" : "string", "description" : "Define the remuneration type.", "enum" : [ "MONTHLY_WAGE", "HOURLY_WAGE", "COMMISION_PERCENTAGE", "FEE", "NOT_CHOSEN", "PIECEWORK_WAGE" ] }, "workingHoursScheme" : { "type" : "string", "description" : "Define the working hours scheme type. If you enter a value for SHIFT WORK, you must also enter value for shiftDurationHours", "enum" : [ "NOT_SHIFT", "ROUND_THE_CLOCK", "SHIFT_365", "OFFSHORE_336", "CONTINUOUS", "OTHER_SHIFT", "NOT_CHOSEN" ] }, "shiftDurationHours" : { "type" : "number" }, "occupationCode" : { "$ref" : "#/components/schemas/OccupationCode" }, "percentageOfFullTimeEquivalent" : { "type" : "number" }, "annualSalary" : { "type" : "number" }, "hourlyWage" : { "type" : "number" }, "payrollTaxMunicipalityId" : { "$ref" : "#/components/schemas/Municipality" }, "monthlySalary" : { "type" : "number", "readOnly" : true } }, "description" : "Employment types tied to the employment" }, "HolidayAllowanceEarned" : { "type" : "object", "properties" : { "year" : { "type" : "integer", "format" : "int32" }, "amount" : { "type" : "number" }, "basis" : { "type" : "number" }, "amountExtraHolidayWeek" : { "type" : "number" } } }, "InternationalId" : { "type" : "object", "properties" : { "intAmeldingType" : { "type" : "string", "description" : "Define the employee's International Identificator.
PASSPORT_NO
NATIONAL_INSURANCE_NO
TAX_IDENTIFICATION_NO
VALUE_ADDED_TAX_IDENTIFICATION_NO", "enum" : [ "PASSPORT_NO", "NATIONAL_INSURANCE_NO", "TAX_IDENTIFICATION_NO", "VALUE_ADDED_TAX_IDENTIFICATION_NO" ] }, "country" : { "$ref" : "#/components/schemas/Country" }, "number" : { "type" : "string" } } }, "ListResponseRoleAssignment" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/RoleAssignment" } } } }, "MaritimeEmployment" : { "type" : "object", "properties" : { "fartoeyId" : { "type" : "string", "description" : "Define the vessel ID" }, "paamoenstringsdato" : { "type" : "string", "description" : "Define the date for boarding the vessel" }, "avmoenstringsdato" : { "type" : "string", "description" : "Define the date for disemarking the vessel" }, "antallTimerPerYrkeskodePerMoenstring" : { "minimum" : 0, "type" : "integer", "description" : "Number of hours per profession code per boarding", "format" : "int32" }, "shipRegister" : { "type" : "string", "description" : "Define the ship register. NIS: Norwegian International Ship Register, NOR: Norwegian Ordinary Ship Register, FOREIGN: Foreign Ship Register. ", "enum" : [ "NIS", "NOR", "FOREIGN" ] }, "shipType" : { "type" : "string", "description" : "Define the ship type.", "enum" : [ "OTHER", "DRILLING_PLATFORM", "TOURIST" ] }, "tradeArea" : { "type" : "string", "description" : "Define the trade area.", "enum" : [ "DOMESTIC", "FOREIGN" ] } } }, "Municipality" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "number" : { "type" : "string", "readOnly" : true }, "name" : { "type" : "string", "readOnly" : true }, "county" : { "type" : "string", "readOnly" : true }, "payrollTaxZone" : { "type" : "string", "readOnly" : true }, "displayName" : { "type" : "string", "readOnly" : true } } }, "OccupationCode" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "nameNO" : { "type" : "string" }, "code" : { "type" : "string" } }, "description" : "To find the right value to enter in this field, you could go to GET /employee/employment/occupationCode to get a list of valid ID's." }, "RoleAssignment" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "description" : "Role identifier", "format" : "int32", "readOnly" : true }, "displayName" : { "type" : "string", "description" : "Role display name", "readOnly" : true }, "subject" : { "$ref" : "#/components/schemas/Employee" }, "context" : { "$ref" : "#/components/schemas/Company" } }, "readOnly" : true }, "ResponseWrapperRoleMetadataAggregate" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/RoleMetadataAggregate" } } }, "RoleCategoryMetadata" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "parentCategoryId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "nameTextKey" : { "type" : "string", "readOnly" : true }, "descriptionTextKey" : { "type" : "string", "readOnly" : true }, "tableTitleTextKey" : { "type" : "string", "readOnly" : true }, "tableInfoTextKey" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "RoleMetadata" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "nameTextKey" : { "type" : "string", "readOnly" : true }, "groupNameTextKey" : { "type" : "string", "readOnly" : true }, "boundary" : { "type" : "string", "readOnly" : true, "enum" : [ "Company", "Department", "Employee", "Customer" ] }, "exclusivity" : { "type" : "string", "readOnly" : true, "enum" : [ "None", "Tripletex", "Reseller" ] }, "changeRequirement" : { "type" : "string", "readOnly" : true, "enum" : [ "EmployeeAdministrator", "BankIdVerification", "SystemAdministrator" ] }, "infoTextKey" : { "type" : "string", "readOnly" : true }, "categoryId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "dependencies" : { "type" : "array", "readOnly" : true, "items" : { "type" : "integer", "format" : "int32" } } }, "readOnly" : true }, "RoleMetadataAggregate" : { "type" : "object", "properties" : { "roles" : { "type" : "object", "additionalProperties" : { "$ref" : "#/components/schemas/RoleMetadata" }, "readOnly" : true }, "categories" : { "type" : "object", "additionalProperties" : { "$ref" : "#/components/schemas/RoleCategoryMetadata" }, "readOnly" : true } } }, "AccountantDashboardAdminNewsArticle" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "description" : "The id of the article", "format" : "int64" }, "translations" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/AccountantDashboardAdminNewsArticleTranslation" } }, "tags" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/AccountantDashboardAdminNewsArticleTag" } }, "links" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/AccountantDashboardAdminNewsArticleLink" } }, "published" : { "type" : "boolean", "description" : "Whether the article is published" }, "publishedDate" : { "type" : "string", "description" : "The date the article was published", "readOnly" : true } }, "description" : "News article with all tags, links and translations" }, "AccountantDashboardAdminNewsArticleLink" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "description" : "The id of the link", "format" : "int64" }, "url" : { "type" : "string", "description" : "The URL of the link" }, "translations" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/AccountantDashboardAdminNewsArticleLinkTranslation" } } }, "description" : "Link on a news article" }, "AccountantDashboardAdminNewsArticleLinkTranslation" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "description" : "The id of the translation", "format" : "int64" }, "language" : { "type" : "string", "description" : "The language of the translation" }, "text" : { "type" : "string", "description" : "The text of the translation" } }, "description" : "Translation of a link on a news article" }, "AccountantDashboardAdminNewsArticleTag" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "description" : "The id of the tag", "format" : "int64" }, "translations" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/AccountantDashboardAdminNewsArticleTagTranslation" } } }, "description" : "Tag on a news article" }, "AccountantDashboardAdminNewsArticleTagTranslation" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "description" : "The id of the translation", "format" : "int64" }, "language" : { "type" : "string", "description" : "The language of the translation" }, "name" : { "type" : "string", "description" : "The name of the translation" } }, "description" : "Translation of a tag on a news article" }, "AccountantDashboardAdminNewsArticleTranslation" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "description" : "The id of the translation", "format" : "int64" }, "language" : { "type" : "string", "description" : "The language of the translation" }, "title" : { "type" : "string", "description" : "The title of the translation" }, "content" : { "type" : "string", "description" : "The content of the translation" } }, "description" : "Translation of a news article" }, "ListResponseAccountantDashboardAdminNewsArticle" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/AccountantDashboardAdminNewsArticle" } } } }, "ListResponseAccountantDashboardAdminNewsArticleTag" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/AccountantDashboardAdminNewsArticleTag" } } } }, "ResponseWrapperAccountantDashboardAdminNewsArticle" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/AccountantDashboardAdminNewsArticle" } } }, "ResponseWrapperAccountantDashboardAdminNewsArticleTag" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/AccountantDashboardAdminNewsArticleTag" } } }, "AccountantDashboardContext" : { "type" : "object", "properties" : { "contextId" : { "minimum" : 1, "type" : "integer", "description" : "The id of the company", "format" : "int32" }, "companyName" : { "type" : "string", "description" : "The name of the company" } }, "description" : "Context for the accountant dashboard frontend client" }, "ResponseWrapperAccountantDashboardContext" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/AccountantDashboardContext" } } }, "AccountantDashboardPublicNewsArticle" : { "type" : "object", "properties" : { "title" : { "type" : "string", "description" : "The title of the article", "readOnly" : true }, "content" : { "type" : "string", "description" : "The text content of the article", "readOnly" : true }, "tags" : { "type" : "array", "readOnly" : true, "items" : { "type" : "string", "description" : "The tags of the article", "readOnly" : true } }, "links" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/AccountantDashboardPublicNewsArticleLink" } }, "publishedDate" : { "type" : "string", "description" : "The date the article was published", "readOnly" : true } }, "readOnly" : true }, "AccountantDashboardPublicNewsArticleLink" : { "type" : "object", "properties" : { "url" : { "type" : "string", "description" : "The URL of the link" }, "text" : { "type" : "string", "description" : "The text of the link" } }, "description" : "The links of the article", "readOnly" : true }, "ListResponseAccountantDashboardPublicNewsArticle" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/AccountantDashboardPublicNewsArticle" } } } }, "AccountantDashboardTag" : { "type" : "object", "properties" : { "id" : { "minimum" : 0, "type" : "integer", "format" : "int64" }, "displayName" : { "type" : "string" } }, "readOnly" : true }, "ListResponseAccountantDashboardTag" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/AccountantDashboardTag" } } } }, "ClientsModulesModuleInfo" : { "type" : "object", "properties" : { "module" : { "type" : "string", "description" : "Module", "readOnly" : true, "enum" : [ "SMART_WAGE", "API_V2", "REMIT", "AUTOPAY", "ZTL", "CASH_CREDIT_APRILA", "VOUCHER_SCANNING", "SMART_SCAN", "INVOICE_OPTION_AVTALEGIRO", "INVOICE_OPTION_EFAKTURA", "INVOICE_OPTION_VIPPS", "INVOICE_OPTION_PAPER", "OCR", "INVOICE_OPTION_AUTOINVOICE_OUTBOUND_EHF", "INVOICE_OPTION_AUTOINVOICE_INCOMING_EHF", "SMS_NOTIFICATION", "NETS_PRINT", "SMART_TIME_TRACKING", "ENCRYPTED_PAYSLIP", "BASIS", "DIYPACKAGE", "SMART", "KOMPLETT", "OCR_AUTOPAY", "LOGISTICS", "RACKBEAT", "MIKRO", "VVS_ELECTRO", "ACCOUNT_OFFICE", "SMART_PROJECT", "READ_ONLY_ACCESS", "READ_ONLY_ACCESS_FREE", "PRO", "BILAG_0_500_AUTOMATION", "BILAG_501_1000_AUTOMATION", "BILAG_1001_2000_AUTOMATION", "BILAG_2001_3500_AUTOMATION", "BILAG_3501_5000_AUTOMATION", "BILAG_5001_10001_AUTOMATION", "UBEGRENSET_BILAG_AUTOMATION", "BILAG_0_100_MIKRO_AUTOMATION", "YEAR_END_REPORTING_ENK", "YEAR_END_REPORTING_AS", "YEAR_END_REPORTING_ANS", "YEAR_END_REPORTING_DA", "YEAR_END_REPORTING_STI", "YEAR_END_REPORTING_ORG", "YEAR_END_REPORTING_SA", "YEAR_END_REPORTING_FLI", "YEAR_END_REPORTING_NUF", "PRIMARY_INDUSTRY", "ACCOUNTING", "MINI", "MEDIUM", "TOTAL", "AGRO_LICENCE", "AGRO_CLIENT", "MAMUT", "MAMUT_WITH_WAGE", "AUTPLUS_MINI", "AUTPLUS_STOR", "INTEGRATION_PARTNER", "FIXED_ASSETS_REGISTER", "STICOS", "RECONCILIATION", "DIGITAL_SIGNING" ] }, "title" : { "type" : "string", "description" : "Title", "readOnly" : true }, "description" : { "type" : "string", "description" : "Description", "readOnly" : true }, "descriptionLong1" : { "type" : "string", "description" : "Description long 1", "readOnly" : true }, "descriptionLong2" : { "type" : "string", "description" : "Description long 2", "readOnly" : true }, "priceInfos" : { "type" : "array", "readOnly" : true, "items" : { "type" : "string", "description" : "Price lines", "readOnly" : true } }, "licenseUrl" : { "type" : "string", "description" : "License", "readOnly" : true } } }, "ResponseWrapperMapCategoryListClientsModulesModuleInfo" : { "type" : "object", "properties" : { "value" : { "type" : "object", "additionalProperties" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ClientsModulesModuleInfo" } } } } }, "Client" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "name" : { "type" : "string" }, "displayName" : { "type" : "string", "readOnly" : true }, "startDate" : { "type" : "string" }, "endDate" : { "type" : "string" }, "organizationNumber" : { "type" : "string" }, "email" : { "type" : "string" }, "phoneNumber" : { "type" : "string" }, "phoneNumberMobile" : { "type" : "string" }, "faxNumber" : { "type" : "string" }, "address" : { "$ref" : "#/components/schemas/Address" }, "type" : { "type" : "string", "enum" : [ "NONE", "ENK", "AS", "NUF", "ANS", "DA", "PRE", "KS", "ASA", "BBL", "BRL", "GFS", "SPA", "SF", "IKS", "KF_FKF", "FCD", "EOFG", "BA", "STI", "ORG", "ESEK", "SA", "SAM", "BO", "VPFO", "OS", "FLI", "Other" ] }, "currency" : { "$ref" : "#/components/schemas/Currency" }, "accountantOrSimilar" : { "type" : "boolean", "readOnly" : true }, "companyMigration" : { "type" : "string", "description" : "If the company was migrated from another system, this field will contain the name of the system it was migrated from.", "readOnly" : true, "enum" : [ "NONE", "AGRO" ] }, "invoiceShowDeliveryDate" : { "type" : "boolean", "readOnly" : true }, "customerCompanyId" : { "type" : "integer", "format" : "int32", "readOnly" : true } }, "readOnly" : true }, "ResponseWrapperClient" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/Client" } } }, "ListResponseEmployee" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Employee" } } } }, "ListResponseClient" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Client" } } } }, "AccountingOfficeEmployeeOverview" : { "type" : "object", "properties" : { "employee" : { "$ref" : "#/components/schemas/Employee" }, "partnerAccountManager" : { "$ref" : "#/components/schemas/PartnerAccountManager" }, "certifications" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Certification" } }, "roles" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/AccountingOfficeEmployeeRole" } } } }, "AccountingOfficeEmployeeRole" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "description" : "Id", "format" : "int32", "readOnly" : true }, "role" : { "type" : "string", "description" : "Role", "readOnly" : true }, "info" : { "type" : "string", "description" : "Info", "readOnly" : true } }, "description" : "Roles", "readOnly" : true }, "Certification" : { "type" : "object", "properties" : { "name" : { "type" : "string", "description" : "Certification name", "readOnly" : true }, "certificationDate" : { "type" : "string", "description" : "Certification date", "readOnly" : true }, "expirationDate" : { "type" : "string", "description" : "Certification expiration date", "readOnly" : true } }, "description" : "Tripletex certified", "readOnly" : true }, "PartnerAccountManager" : { "type" : "object", "properties" : { "fullName" : { "type" : "string", "description" : "Full name", "readOnly" : true }, "email" : { "type" : "string", "description" : "email", "readOnly" : true }, "phoneNumber" : { "type" : "string", "description" : "Phone number", "readOnly" : true } }, "description" : "Partner account manager", "readOnly" : true }, "ResponseWrapperAccountingOfficeEmployeeOverview" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/AccountingOfficeEmployeeOverview" } } }, "Account" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "number" : { "minimum" : 0, "type" : "integer", "format" : "int32" }, "numberPretty" : { "type" : "string", "description" : "number pretty", "readOnly" : true }, "name" : { "type" : "string" }, "description" : { "type" : "string" }, "type" : { "type" : "string", "readOnly" : true, "enum" : [ "ASSETS", "EQUITY", "LIABILITIES", "OPERATING_REVENUES", "OPERATING_EXPENSES", "INVESTMENT_INCOME", "COST_OF_CAPITAL", "TAX_ON_ORDINARY_ACTIVITIES", "EXTRAORDINARY_INCOME", "EXTRAORDINARY_COST", "TAX_ON_EXTRAORDINARY_ACTIVITIES", "ANNUAL_RESULT", "TRANSFERS_AND_ALLOCATIONS" ] }, "legalVatTypes" : { "type" : "array", "description" : "List of legal vat types for this account.", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/VatType" } }, "ledgerType" : { "type" : "string", "description" : "Supported ledger types, default is GENERAL. Only available for customers with the module multiple ledgers.", "enum" : [ "GENERAL", "CUSTOMER", "VENDOR", "EMPLOYEE", "ASSET" ] }, "balanceGroup" : { "type" : "string", "description" : "The balance group for this account.", "readOnly" : true }, "vatType" : { "$ref" : "#/components/schemas/VatType" }, "vatLocked" : { "type" : "boolean", "description" : "True if all entries on this account must have the vat type given by vatType." }, "currency" : { "$ref" : "#/components/schemas/Currency" }, "isCloseable" : { "type" : "boolean", "description" : "True if it should be possible to close entries on this account and it is possible to filter on open entries." }, "isApplicableForSupplierInvoice" : { "type" : "boolean", "description" : "True if this account is applicable for supplier invoice registration." }, "requireReconciliation" : { "type" : "boolean", "description" : "True if this account must be reconciled before the accounting period closure." }, "isInactive" : { "type" : "boolean", "description" : "Inactive accounts will not show up in UI lists." }, "isBankAccount" : { "type" : "boolean" }, "isInvoiceAccount" : { "type" : "boolean" }, "bankAccountNumber" : { "type" : "string" }, "bankAccountCountry" : { "$ref" : "#/components/schemas/Country" }, "bankName" : { "type" : "string" }, "bankAccountIBAN" : { "type" : "string" }, "bankAccountSWIFT" : { "type" : "string" }, "saftCode" : { "type" : "string", "description" : "SAF-T 1.0 standard account ID for account. It will be given a default value based on account number if empty." }, "groupingCode" : { "type" : "string", "description" : "SAF-T 1.3 groupingCode for the account. It will be given a default value based on account number if empty." }, "displayName" : { "type" : "string" }, "requiresDepartment" : { "type" : "boolean", "description" : "Posting against this account requires department." }, "requiresProject" : { "type" : "boolean", "description" : "Posting against this account requires project." }, "invoicingDepartment" : { "$ref" : "#/components/schemas/Department" }, "isPostingsExist" : { "type" : "boolean" }, "quantityType1" : { "$ref" : "#/components/schemas/ProductUnit" }, "quantityType2" : { "$ref" : "#/components/schemas/ProductUnit" }, "department" : { "$ref" : "#/components/schemas/Department" } } }, "ClientModuleStatus" : { "type" : "object", "properties" : { "module" : { "type" : "string", "description" : "Module", "readOnly" : true, "enum" : [ "SMART_WAGE", "API_V2", "REMIT", "AUTOPAY", "ZTL", "CASH_CREDIT_APRILA", "VOUCHER_SCANNING", "SMART_SCAN", "INVOICE_OPTION_AVTALEGIRO", "INVOICE_OPTION_EFAKTURA", "INVOICE_OPTION_VIPPS", "INVOICE_OPTION_PAPER", "OCR", "INVOICE_OPTION_AUTOINVOICE_OUTBOUND_EHF", "INVOICE_OPTION_AUTOINVOICE_INCOMING_EHF", "SMS_NOTIFICATION", "NETS_PRINT", "SMART_TIME_TRACKING", "ENCRYPTED_PAYSLIP", "BASIS", "DIYPACKAGE", "SMART", "KOMPLETT", "OCR_AUTOPAY", "LOGISTICS", "RACKBEAT", "MIKRO", "VVS_ELECTRO", "ACCOUNT_OFFICE", "SMART_PROJECT", "READ_ONLY_ACCESS", "READ_ONLY_ACCESS_FREE", "PRO", "BILAG_0_500_AUTOMATION", "BILAG_501_1000_AUTOMATION", "BILAG_1001_2000_AUTOMATION", "BILAG_2001_3500_AUTOMATION", "BILAG_3501_5000_AUTOMATION", "BILAG_5001_10001_AUTOMATION", "UBEGRENSET_BILAG_AUTOMATION", "BILAG_0_100_MIKRO_AUTOMATION", "YEAR_END_REPORTING_ENK", "YEAR_END_REPORTING_AS", "YEAR_END_REPORTING_ANS", "YEAR_END_REPORTING_DA", "YEAR_END_REPORTING_STI", "YEAR_END_REPORTING_ORG", "YEAR_END_REPORTING_SA", "YEAR_END_REPORTING_FLI", "YEAR_END_REPORTING_NUF", "PRIMARY_INDUSTRY", "ACCOUNTING", "MINI", "MEDIUM", "TOTAL", "AGRO_LICENCE", "AGRO_CLIENT", "MAMUT", "MAMUT_WITH_WAGE", "AUTPLUS_MINI", "AUTPLUS_STOR", "INTEGRATION_PARTNER", "FIXED_ASSETS_REGISTER", "STICOS", "RECONCILIATION", "DIGITAL_SIGNING" ] }, "status" : { "type" : "string", "description" : "Status", "readOnly" : true, "enum" : [ "UNKNOWN", "ACTIVATED", "PENDING_ACTIVATION", "FAILED_ACTIVATION", "NOT_ACTIVATED", "NOT_AVAILABLE" ] } }, "description" : "Client modules", "readOnly" : true }, "ClientModules" : { "type" : "object", "properties" : { "customer" : { "$ref" : "#/components/schemas/Customer" }, "company" : { "$ref" : "#/components/schemas/Company" }, "modules" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ClientModuleStatus" } } }, "readOnly" : true }, "CompanyBankAccountPresentation" : { "type" : "object", "properties" : { "iban" : { "type" : "string", "description" : "Iban-number" }, "bban" : { "type" : "string", "description" : "Bban-number" }, "bic" : { "type" : "string", "description" : "BIC/SWIFT for this bankaccount" }, "country" : { "$ref" : "#/components/schemas/Country" }, "provider" : { "type" : "string", "readOnly" : true, "enum" : [ "NETS", "AUTOPAY" ] } }, "description" : "List of bankAccount for this supplier" }, "Customer" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "name" : { "type" : "string" }, "organizationNumber" : { "type" : "string" }, "globalLocationNumber" : { "minimum" : 0, "type" : "integer", "format" : "int64" }, "supplierNumber" : { "minimum" : 0, "type" : "integer", "format" : "int32" }, "customerNumber" : { "minimum" : 0, "type" : "integer", "format" : "int32" }, "isSupplier" : { "type" : "boolean", "description" : "Defines if the customer is also a supplier." }, "isCustomer" : { "type" : "boolean", "readOnly" : true }, "isInactive" : { "type" : "boolean" }, "accountManager" : { "$ref" : "#/components/schemas/Employee" }, "department" : { "$ref" : "#/components/schemas/Department" }, "email" : { "type" : "string" }, "invoiceEmail" : { "type" : "string" }, "overdueNoticeEmail" : { "type" : "string", "description" : "The email address of the customer where the noticing emails are sent in case of an overdue" }, "bankAccounts" : { "type" : "array", "items" : { "type" : "string", "description" : "[DEPRECATED] List of the bank account numbers for this customer. Norwegian bank account numbers only." } }, "phoneNumber" : { "type" : "string" }, "phoneNumberMobile" : { "type" : "string" }, "description" : { "type" : "string" }, "language" : { "type" : "string", "enum" : [ "NO", "EN" ] }, "displayName" : { "type" : "string" }, "isPrivateIndividual" : { "type" : "boolean" }, "singleCustomerInvoice" : { "type" : "boolean", "description" : "Enables various orders on one customer invoice." }, "invoiceSendMethod" : { "type" : "string", "description" : "Define the invoicing method for the customer.
EMAIL: Send invoices as email.
EHF: Send invoices as EHF.
EFAKTURA: Send invoices as EFAKTURA.
AVTALEGIRO: Send invoices as AVTALEGIRO.
VIPPS: Send invoices through VIPPS.
PAPER: Send invoices as paper invoice.
MANUAL: User will have to send invocie manually.
", "enum" : [ "EMAIL", "EHF", "EFAKTURA", "AVTALEGIRO", "VIPPS", "PAPER", "MANUAL" ] }, "emailAttachmentType" : { "type" : "string", "description" : "Define the invoice attachment type for emailing to the customer.
LINK: Send invoice as link in email.
ATTACHMENT: Send invoice as attachment in email.
", "enum" : [ "LINK", "ATTACHMENT" ] }, "postalAddress" : { "$ref" : "#/components/schemas/Address" }, "physicalAddress" : { "$ref" : "#/components/schemas/Address" }, "deliveryAddress" : { "$ref" : "#/components/schemas/DeliveryAddress" }, "category1" : { "$ref" : "#/components/schemas/CustomerCategory" }, "category2" : { "$ref" : "#/components/schemas/CustomerCategory" }, "category3" : { "$ref" : "#/components/schemas/CustomerCategory" }, "invoicesDueIn" : { "maximum" : 10000, "minimum" : 0, "type" : "integer", "description" : "Number of days/months in which invoices created from this customer is due", "format" : "int32" }, "invoicesDueInType" : { "type" : "string", "description" : "Set the time unit of invoicesDueIn. The special case RECURRING_DAY_OF_MONTH enables the due date to be fixed to a specific day of the month, in this case the fixed due date will automatically be set as standard on all invoices created from this customer. Note that when RECURRING_DAY_OF_MONTH is set, the due date will be set to the last day of month if \"31\" is set in invoicesDueIn.", "enum" : [ "DAYS", "MONTHS", "RECURRING_DAY_OF_MONTH" ] }, "currency" : { "$ref" : "#/components/schemas/Currency" }, "bankAccountPresentation" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/CompanyBankAccountPresentation" } }, "ledgerAccount" : { "$ref" : "#/components/schemas/Account" }, "isFactoring" : { "type" : "boolean", "description" : "If true; send this customers invoices to factoring (if factoring is turned on in account)." }, "invoiceSendSMSNotification" : { "type" : "boolean", "description" : "Is sms-notification on/off" }, "invoiceSMSNotificationNumber" : { "type" : "string", "description" : "Send SMS-notification to this number. Must be a norwegian phone number" }, "isAutomaticSoftReminderEnabled" : { "type" : "boolean", "description" : "Has automatic soft reminders enabled for this customer." }, "isAutomaticReminderEnabled" : { "type" : "boolean", "description" : "Has automatic reminders enabled for this customer." }, "isAutomaticNoticeOfDebtCollectionEnabled" : { "type" : "boolean", "description" : "Has automatic notice of debt collection enabled for this customer." }, "discountPercentage" : { "type" : "number", "description" : "Default discount percentage for this customer." }, "website" : { "type" : "string" } } }, "CustomerCategory" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "name" : { "type" : "string" }, "number" : { "type" : "string" }, "description" : { "type" : "string" }, "type" : { "minimum" : 0, "type" : "integer", "format" : "int32" }, "displayName" : { "type" : "string" } }, "description" : "Category 3 of this supplier" }, "DeliveryAddress" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "addressLine1" : { "type" : "string" }, "addressLine2" : { "type" : "string" }, "postalCode" : { "type" : "string" }, "city" : { "type" : "string" }, "country" : { "$ref" : "#/components/schemas/Country" }, "displayName" : { "type" : "string", "readOnly" : true }, "addressAsString" : { "type" : "string", "readOnly" : true }, "displayNameInklMatrikkel" : { "type" : "string", "readOnly" : true }, "knr" : { "minimum" : 0, "type" : "integer", "format" : "int32" }, "gnr" : { "minimum" : 0, "type" : "integer", "format" : "int32" }, "bnr" : { "minimum" : 0, "type" : "integer", "format" : "int32" }, "fnr" : { "minimum" : 0, "type" : "integer", "format" : "int32" }, "snr" : { "minimum" : 0, "type" : "integer", "format" : "int32" }, "unitNumber" : { "type" : "string" }, "name" : { "type" : "string" }, "customerVendor" : { "$ref" : "#/components/schemas/Company" } }, "description" : "Delivery address of this order. This can be a new or existing address\n(useful to know, especially if the delivery is to a private person: if 'deliveryAddress.name' is set, we ignore the state of 'customer.id')" }, "ProductUnit" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "displayName" : { "type" : "string", "readOnly" : true }, "displayNameShort" : { "type" : "string", "readOnly" : true }, "name" : { "type" : "string" }, "nameEN" : { "type" : "string" }, "nameShort" : { "type" : "string" }, "nameShortEN" : { "type" : "string" }, "commonCode" : { "type" : "string" }, "isDeletable" : { "type" : "boolean" } }, "description" : "The quantity type 2 that has been associated to this account" }, "ResponseWrapperClientModules" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ClientModules" } } }, "VatType" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "name" : { "type" : "string" }, "number" : { "type" : "string" }, "displayName" : { "type" : "string" }, "percentage" : { "type" : "number" }, "deductionPercentage" : { "type" : "number", "description" : "Percentage of the VAT amount that is deducted. Always 100% for all predefined VAT types, but can be lower for custom types for relative VAT." }, "parentType" : { "$ref" : "#/components/schemas/VatType" } }, "description" : "The default vat type for this account." }, "ListResponseClientModules" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ClientModules" } } } }, "ClientModuleActivationRequest" : { "type" : "object", "properties" : { "customerId" : { "type" : "integer", "description" : "Customer ID", "format" : "int64" }, "module" : { "type" : "string", "description" : "Module", "enum" : [ "SMART_WAGE", "API_V2", "REMIT", "AUTOPAY", "ZTL", "CASH_CREDIT_APRILA", "VOUCHER_SCANNING", "SMART_SCAN", "INVOICE_OPTION_AVTALEGIRO", "INVOICE_OPTION_EFAKTURA", "INVOICE_OPTION_VIPPS", "INVOICE_OPTION_PAPER", "OCR", "INVOICE_OPTION_AUTOINVOICE_OUTBOUND_EHF", "INVOICE_OPTION_AUTOINVOICE_INCOMING_EHF", "SMS_NOTIFICATION", "NETS_PRINT", "SMART_TIME_TRACKING", "ENCRYPTED_PAYSLIP", "BASIS", "DIYPACKAGE", "SMART", "KOMPLETT", "OCR_AUTOPAY", "LOGISTICS", "RACKBEAT", "MIKRO", "VVS_ELECTRO", "ACCOUNT_OFFICE", "SMART_PROJECT", "READ_ONLY_ACCESS", "READ_ONLY_ACCESS_FREE", "PRO", "BILAG_0_500_AUTOMATION", "BILAG_501_1000_AUTOMATION", "BILAG_1001_2000_AUTOMATION", "BILAG_2001_3500_AUTOMATION", "BILAG_3501_5000_AUTOMATION", "BILAG_5001_10001_AUTOMATION", "UBEGRENSET_BILAG_AUTOMATION", "BILAG_0_100_MIKRO_AUTOMATION", "YEAR_END_REPORTING_ENK", "YEAR_END_REPORTING_AS", "YEAR_END_REPORTING_ANS", "YEAR_END_REPORTING_DA", "YEAR_END_REPORTING_STI", "YEAR_END_REPORTING_ORG", "YEAR_END_REPORTING_SA", "YEAR_END_REPORTING_FLI", "YEAR_END_REPORTING_NUF", "PRIMARY_INDUSTRY", "ACCOUNTING", "MINI", "MEDIUM", "TOTAL", "AGRO_LICENCE", "AGRO_CLIENT", "MAMUT", "MAMUT_WITH_WAGE", "AUTPLUS_MINI", "AUTPLUS_STOR", "INTEGRATION_PARTNER", "FIXED_ASSETS_REGISTER", "STICOS", "RECONCILIATION", "DIGITAL_SIGNING" ] } } }, "ListResponseClientModuleActivationRequest" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ClientModuleActivationRequest" } } } }, "Activity" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "name" : { "type" : "string" }, "number" : { "type" : "string" }, "description" : { "type" : "string" }, "activityType" : { "type" : "string", "description" : "PROJECT_SPECIFIC_ACTIVITY are made via project/projectActivity, as they must be part of a project.", "enum" : [ "GENERAL_ACTIVITY", "PROJECT_GENERAL_ACTIVITY", "PROJECT_SPECIFIC_ACTIVITY", "TASK" ] }, "isProjectActivity" : { "type" : "boolean", "description" : "Manipulate these with ActivityType", "readOnly" : true }, "isGeneral" : { "type" : "boolean", "description" : "Manipulate these with ActivityType", "readOnly" : true }, "isTask" : { "type" : "boolean", "description" : "Manipulate these with ActivityType", "readOnly" : true }, "isDisabled" : { "type" : "boolean", "readOnly" : true }, "isChargeable" : { "type" : "boolean" }, "rate" : { "type" : "number" }, "costPercentage" : { "type" : "number" }, "displayName" : { "type" : "string" }, "deletable" : { "type" : "boolean", "readOnly" : true } }, "description" : "Add existing project activity or create new project specific activity" }, "ResponseWrapperActivity" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/Activity" } } }, "ListResponseActivity" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Activity" } } } }, "ResponseWrapperString" : { "type" : "object", "properties" : { "value" : { "type" : "string" } } }, "ResponseWrapperAddonStatusType" : { "type" : "object", "properties" : { "value" : { "type" : "string", "enum" : [ "IN_DEVELOPMENT", "PENDING", "REJECTED", "APPROVED" ] } } }, "Addon" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int32" }, "name" : { "type" : "string" }, "description" : { "type" : "string" }, "shortDescription" : { "type" : "string" }, "redirectUrl" : { "type" : "string" }, "status" : { "type" : "string", "enum" : [ "IN_DEVELOPMENT", "PENDING", "REJECTED", "APPROVED" ] }, "isPublic" : { "type" : "boolean" }, "apiConsumerId" : { "type" : "integer", "format" : "int64" }, "visibility" : { "type" : "string", "enum" : [ "COMPANY_WIDE", "PERSONAL", "INTERNAL" ] }, "linkToInfo" : { "type" : "string" }, "partnerName" : { "type" : "string" }, "categories" : { "type" : "array", "items" : { "type" : "string", "enum" : [ "OTHER", "YEAR_END", "BANK", "STAFF", "BOOKING_AND_CHECKOUT", "CRM", "DEBT_COLLECTION", "ONLINE_STORE", "HRM", "REPORTING", "TRAVEL_AND_EXPENSES", "RECONCILLIATION", "PAYMENT_SERVICES", "CHECKOUT", "FAG_SYSTEMER", "APRILA_CASH_CREDIT", "PROJECT", "MILAGE", "WAREHOUSE_LOGISTICS", "TIMESHEET", "BOARD_WORK" ] } }, "logo" : { "$ref" : "#/components/schemas/AddonLogo" }, "active" : { "type" : "boolean" } }, "readOnly" : true }, "AddonLogo" : { "type" : "object", "properties" : { "documentId" : { "type" : "integer", "format" : "int64" }, "content" : { "type" : "string", "format" : "byte", "readOnly" : true } } }, "ResponseWrapperAddon" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/Addon" } } }, "ListResponseAddon" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Addon" } } } }, "ResponseWrapperDeliveryAddress" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/DeliveryAddress" } } }, "ListResponseDeliveryAddress" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/DeliveryAddress" } } } }, "LegacyAddress" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "addressLine1" : { "type" : "string" }, "addressLine2" : { "type" : "string" }, "postalCode" : { "type" : "string" }, "city" : { "type" : "string" }, "country" : { "$ref" : "#/components/schemas/Country" }, "displayName" : { "type" : "string", "readOnly" : true }, "addressAsString" : { "type" : "string", "readOnly" : true }, "displayNameInklMatrikkel" : { "type" : "string", "readOnly" : true }, "knr" : { "minimum" : 0, "type" : "integer", "format" : "int32" }, "gnr" : { "minimum" : 0, "type" : "integer", "format" : "int32" }, "bnr" : { "minimum" : 0, "type" : "integer", "format" : "int32" }, "fnr" : { "minimum" : 0, "type" : "integer", "format" : "int32" }, "snr" : { "minimum" : 0, "type" : "integer", "format" : "int32" }, "unitNumber" : { "type" : "string" }, "name" : { "type" : "string" }, "customerVendor" : { "$ref" : "#/components/schemas/Company" } }, "readOnly" : true }, "ResponseWrapperLegacyAddress" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/LegacyAddress" } } }, "ListResponseLegacyAddress" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/LegacyAddress" } } } }, "ResponseWrapperInteger" : { "type" : "object", "properties" : { "value" : { "type" : "integer", "format" : "int32" } } }, "ResponseWrapperObject" : { "type" : "object", "properties" : { "value" : { "type" : "object" } } }, "ResponseWrapperBoolean" : { "type" : "object", "properties" : { "value" : { "type" : "boolean" } } }, "AdvancedPaymentWidget" : { "type" : "object", "properties" : { "paymentTypes" : { "type" : "array", "description" : "List of payment types used in this Advanced Payment Widget", "items" : { "$ref" : "#/components/schemas/PaymentWidgetPaymentType" } }, "selectedPaymentType" : { "$ref" : "#/components/schemas/PaymentWidgetPaymentType" }, "isAutoPay" : { "type" : "boolean", "description" : "Flag for an AutoPay payment" }, "isZtl" : { "type" : "boolean", "description" : "Flag for a ZTL payment" }, "isForeignPayment" : { "type" : "boolean", "description" : "Flag for an AutoPay foreign payment" }, "creditorBankIdentificator" : { "type" : "integer", "description" : "AutoPay's SWIFT or bank code type for an abroad payment", "format" : "int32" }, "creditorName" : { "type" : "string", "description" : "AutoPay's creditor name for an abroad payment" }, "creditorAddress" : { "type" : "string", "description" : "AutoPay's creditor address for an abroad payment" }, "creditorPostalCode" : { "type" : "string", "description" : "AutoPay's creditor postal code for an abroad payment" }, "creditorPostalCity" : { "type" : "string", "description" : "AutoPay's creditor postal city for an abroad payment" }, "creditorCountryId" : { "type" : "integer", "description" : "AutoPay's creditor country id for an abroad payment", "format" : "int32" }, "creditorBankCountryId" : { "type" : "integer", "description" : "AutoPay's creditor bank country id for an abroad bank code payment", "format" : "int32" }, "creditorBankName" : { "type" : "string", "description" : "AutoPay's creditor bank name for an abroad bank code payment" }, "creditorBankAddress" : { "type" : "string", "description" : "AutoPay's creditor bank address for an abroad bank code payment" }, "creditorBankPostalCode" : { "type" : "string", "description" : "AutoPay's creditor bank postal code for an abroad bank code payment" }, "creditorBankPostalCity" : { "type" : "string", "description" : "AutoPay's creditor bank postal city for an abroad bank code payment" }, "creditorBankCode" : { "type" : "string", "description" : "AutoPay's creditor bank code for an abroad bank code payment" }, "creditorBic" : { "type" : "string", "description" : "AutoPay's SWIFT code for an abroad payment" }, "accountNumber" : { "type" : "string", "description" : "Payment type's account number" }, "smartScanMapping" : { "type" : "object", "additionalProperties" : { "type" : "boolean", "description" : "Autofilled using smart scan" }, "description" : "Autofilled using smart scan" }, "customerVendorIbanOrBban" : { "type" : "array", "description" : "Account numbers for this vendor", "items" : { "type" : "string", "description" : "Account numbers for this vendor" } }, "creditorClearingCode" : { "type" : "string", "description" : "AutoPay's creditor bank code" }, "kid" : { "type" : "string", "description" : "Kid or receiver's reference value" }, "amount" : { "type" : "number", "description" : "Amount value in invoice currency" }, "prepaidAmount" : { "type" : "number", "description" : "Prepaid Amount value in invoice currency" }, "oppositeAmount" : { "type" : "number", "description" : "Amount value in payment type currency" }, "date" : { "type" : "string", "description" : "Payment's date value" }, "regulatoryReportingCode" : { "type" : "string", "description" : "AutoPay's regulatory reporting code" }, "regulatoryReportingInfo" : { "type" : "string", "description" : "AutoPay's regulatory reporting info" }, "currencyCode" : { "type" : "string", "description" : "Invoice currency code or default" }, "currencyId" : { "type" : "integer", "description" : "Invoice currency id or default", "format" : "int32" }, "lastUsedVendorIbanOrBban" : { "type" : "string", "description" : "Last used account for a vendor" }, "invoiceIbanOrBban" : { "type" : "string", "description" : "Vendor IBAN or BBAN on invoice" } } }, "PaymentWidgetPaymentType" : { "type" : "object", "properties" : { "uniqueId" : { "type" : "string", "description" : "Id corresponding to a Dropdown Type used in the Payment Widget's dropdown elements" }, "paymentTypeId" : { "type" : "integer", "description" : "Posting rule id or autoPay agreement id or ztl account id", "format" : "int32" }, "paymentTypeValue" : { "type" : "string", "description" : "Value of a Dropdown Type used in the Payment Widget's dropdown elements" }, "paymentIntegration" : { "type" : "string", "description" : "The Payment Type (NETS, AUTOPAY, POSTING_RULE)", "enum" : [ "NONE", "NOT_PAID", "NETS", "AUTOPAY", "POSTING_RULE", "ZTL" ] }, "currencyId" : { "type" : "integer", "description" : "Payment type's currency id", "format" : "int32" }, "currencyCode" : { "type" : "string", "description" : "Payment type's currency code" }, "isDefault" : { "type" : "boolean", "description" : "Is the default payment type " }, "accountNumber" : { "type" : "string", "description" : "Account number" }, "paymentTypeDescription" : { "type" : "string", "description" : "Payment type description (agreement/posting rule/ztl account description)" }, "bankAccount" : { "type" : "string", "description" : "Bank account number" } }, "description" : "Default payment type for this Advanced Payment Widget" }, "AccommodationAllowance" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "travelExpense" : { "$ref" : "#/components/schemas/TravelExpense" }, "rateType" : { "$ref" : "#/components/schemas/TravelExpenseRate" }, "rateCategory" : { "$ref" : "#/components/schemas/TravelExpenseRateCategory" }, "zone" : { "type" : "string" }, "location" : { "type" : "string" }, "address" : { "type" : "string" }, "count" : { "type" : "integer", "format" : "int32" }, "rate" : { "type" : "number" }, "amount" : { "type" : "number" } }, "description" : "Link to individual accommodation allowances.", "readOnly" : true }, "AccountingDimensionValue" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "displayName" : { "type" : "string", "description" : "The name of the value." }, "nameAndNumber" : { "type" : "string", "description" : "The name and number of the value.", "readOnly" : true }, "dimensionIndex" : { "minimum" : 0, "type" : "integer", "description" : "The index of the dimension this value belongs to.", "format" : "int32" }, "active" : { "type" : "boolean", "description" : "Indicates if the value is active." }, "number" : { "type" : "string", "description" : "The number of the value, which can consist of letters and numbers." }, "showInVoucherRegistration" : { "type" : "boolean", "description" : "Indicates if the value should be shown in voucher registration." }, "position" : { "minimum" : 0, "type" : "integer", "description" : "The position of the value in the list of values for the dimension.", "format" : "int32" } }, "description" : "Free dimensions for the project connected to the order.", "readOnly" : true }, "Asset" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "name" : { "type" : "string" }, "displayName" : { "type" : "string" }, "description" : { "type" : "string" }, "dateOfAcquisition" : { "type" : "string" }, "acquisitionCost" : { "type" : "number", "description" : "Acquisition cost." }, "account" : { "$ref" : "#/components/schemas/Account" }, "incomingBalance" : { "type" : "number", "description" : "Incoming balance for the asset." }, "lifetime" : { "minimum" : 0, "type" : "integer", "description" : "Lifetime in months for the asset.", "format" : "int32" }, "status" : { "type" : "string", "description" : "Status", "readOnly" : true, "enum" : [ "UNKNOWN", "MANUAL", "NO_DEPRECIATION", "INVALID_DATE", "MISSING_TRANS_TYPE", "MISSING_INFO", "READY_TO_DEPRECIATE", "CORRECTION_NEEDED", "COMPLETED", "REST_VALUE", "NOTHING_TO_DEPRECIATE" ] }, "depreciationRemainingValue" : { "type" : "number" }, "depreciationAccount" : { "$ref" : "#/components/schemas/Account" }, "hasHistoryFromExternalSystem" : { "type" : "boolean" }, "externalLastDepreciation" : { "type" : "string" }, "externalLastAccountedValue" : { "type" : "number" }, "externalAccumulatedDepreciation" : { "type" : "number" }, "depreciationMethod" : { "type" : "string", "description" : "Depreciation method", "enum" : [ "MANUAL", "TAX_RELATED", "STRAIGHT_LINE", "CUSTOMIZED_AMOUNT", "NO_DEPRECIATION" ] }, "depreciationFrom" : { "type" : "string" }, "accumulatedDepreciation" : { "type" : "number" }, "depreciationRate" : { "type" : "number" }, "department" : { "$ref" : "#/components/schemas/Department" }, "project" : { "$ref" : "#/components/schemas/Project" }, "startingBalance" : { "type" : "number", "readOnly" : true }, "balanceIn" : { "type" : "number", "readOnly" : true }, "balanceOut" : { "type" : "number", "readOnly" : true }, "balanceChange" : { "type" : "number", "readOnly" : true }, "depreciationBasis" : { "type" : "number", "readOnly" : true }, "numberOfMonths" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "annualDepreciation" : { "type" : "number", "readOnly" : true }, "depreciationDiscrepancy" : { "type" : "number", "readOnly" : true }, "depreciationAmount" : { "type" : "number", "readOnly" : true }, "totalDepreciationAmount" : { "type" : "number", "readOnly" : true }, "improvements" : { "type" : "number", "description" : "Improvements", "readOnly" : true }, "newHires" : { "type" : "number", "description" : "New hires", "readOnly" : true }, "salesAndOtherRealizations" : { "type" : "number", "description" : "Sales and other realizations", "readOnly" : true }, "saleDate" : { "type" : "string" }, "accountingRelatedProfitOrLoss" : { "type" : "number", "description" : "Accounting related profit or loss", "readOnly" : true } }, "description" : "The asset ('anleggsmiddel' / 'eiendel') connected to this posting" }, "Attestation" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "type" : { "type" : "string", "enum" : [ "SUPPLIER_INVOICE", "TRAVELS_AND_EXPENSES" ] }, "levels" : { "type" : "array", "description" : "Levels tied to this Attestation.", "items" : { "$ref" : "#/components/schemas/AttestationLevel" } } }, "description" : "[PILOT] Attestation associated with the attestation object" }, "AttestationApprover" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "attestationLevel" : { "$ref" : "#/components/schemas/AttestationLevel" }, "enumRole" : { "type" : "string", "enum" : [ "NO_ROLE", "PROJECT_MANAGER", "DEPARTMENT_MANAGER", "EMPLOYEE_APPROVER", "PROJECT_APPROVER" ] }, "employee" : { "$ref" : "#/components/schemas/Employee" } }, "description" : "Approvers tied to this Attestation Level." }, "AttestationLevel" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "attestation" : { "$ref" : "#/components/schemas/Attestation" }, "sequence" : { "minimum" : 0, "type" : "integer", "format" : "int32" }, "requiredApproverCount" : { "minimum" : 1, "type" : "integer", "format" : "int32" }, "minAmount" : { "minimum" : 0, "type" : "number" }, "attestationApprovers" : { "type" : "array", "description" : "Approvers tied to this Attestation Level.", "items" : { "$ref" : "#/components/schemas/AttestationApprover" } } }, "description" : "Levels tied to this Attestation." }, "AttestationStep" : { "type" : "object", "properties" : { "title" : { "type" : "string", "readOnly" : true }, "sequence" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "requiredApproverCount" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "status" : { "type" : "string", "readOnly" : true, "enum" : [ "SKIPPED", "REJECTED", "NEITHER", "APPROVED", "CURRENT" ] }, "attestationStepApprovers" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/AttestationStepApprover" } }, "notificationDate" : { "type" : "string", "description" : "When the next automatic notification will be sent for this step" } }, "description" : "[PILOT] List of attestation steps associated with the attestation object" }, "AttestationStepApprover" : { "type" : "object", "properties" : { "employee" : { "$ref" : "#/components/schemas/Employee" }, "attestationApproverActionType" : { "type" : "string", "readOnly" : true, "enum" : [ "REJECTION", "NEITHER", "APPROVAL", "OVERRIDE_APPROVAL" ] }, "comment" : { "type" : "string", "readOnly" : true }, "timeStamp" : { "type" : "string" }, "strikethrough" : { "type" : "boolean" } }, "description" : "DTO for Attestation Step Approver" }, "CloseGroup" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "date" : { "type" : "string" }, "postings" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Posting" } } } }, "Contact" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "firstName" : { "type" : "string" }, "lastName" : { "type" : "string" }, "displayName" : { "type" : "string" }, "email" : { "type" : "string" }, "phoneNumberMobileCountry" : { "$ref" : "#/components/schemas/Country" }, "phoneNumberMobile" : { "type" : "string" }, "phoneNumberWork" : { "type" : "string" }, "customer" : { "$ref" : "#/components/schemas/Customer" }, "department" : { "$ref" : "#/components/schemas/Department" }, "isInactive" : { "type" : "boolean" } }, "description" : "If the contact is not an employee" }, "Cost" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "travelExpense" : { "$ref" : "#/components/schemas/TravelExpense" }, "vatType" : { "$ref" : "#/components/schemas/VatType" }, "currency" : { "$ref" : "#/components/schemas/Currency" }, "costCategory" : { "$ref" : "#/components/schemas/TravelCostCategory" }, "paymentType" : { "$ref" : "#/components/schemas/TravelPaymentType" }, "category" : { "type" : "string" }, "comments" : { "type" : "string" }, "rate" : { "type" : "number" }, "amountCurrencyIncVat" : { "type" : "number" }, "amountNOKInclVAT" : { "type" : "number" }, "amountNOKInclVATLow" : { "type" : "number", "readOnly" : true }, "amountNOKInclVATMedium" : { "type" : "number", "readOnly" : true }, "amountNOKInclVATHigh" : { "type" : "number", "readOnly" : true }, "isPaidByEmployee" : { "type" : "boolean", "readOnly" : true }, "isChargeable" : { "type" : "boolean" }, "date" : { "type" : "string" }, "participants" : { "type" : "array", "description" : "Link to individual expense participant.", "items" : { "$ref" : "#/components/schemas/CostParticipant" } }, "predictions" : { "type" : "object", "additionalProperties" : { "$ref" : "#/components/schemas/Prediction" } } }, "description" : "Link to individual costs." }, "CostParticipant" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "displayName" : { "type" : "string" }, "employeeId" : { "type" : "integer", "description" : "Optional employee id in case the participant is an employee", "format" : "int32" }, "cost" : { "$ref" : "#/components/schemas/Cost" } }, "description" : "Link to individual expense participant." }, "DiscountGroup" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "name" : { "type" : "string" }, "number" : { "type" : "string", "readOnly" : true }, "nameAndNumber" : { "type" : "string", "readOnly" : true } } }, "Document" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "fileName" : { "maxLength" : 255, "minLength" : 0, "type" : "string", "description" : "The name of the document." }, "size" : { "minimum" : 0, "type" : "integer", "description" : "The size of the document in bytes.", "format" : "int32", "readOnly" : true }, "mimeType" : { "type" : "string", "description" : "Type of the document", "readOnly" : true, "example" : "type/subtype of resource. E.g. application/pdf" } }, "description" : "[BETA] Attachments belonging to this order", "readOnly" : true }, "DrivingStop" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "locationName" : { "type" : "string" }, "latitude" : { "type" : "number" }, "longitude" : { "type" : "number" }, "sortIndex" : { "minimum" : 0, "type" : "integer", "format" : "int32" }, "type" : { "minimum" : 0, "type" : "integer", "format" : "int32" }, "mileageAllowance" : { "$ref" : "#/components/schemas/MileageAllowance" } }, "description" : "Link to individual mileage stops.", "readOnly" : true }, "Inventory" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "name" : { "type" : "string" }, "number" : { "type" : "string" }, "displayName" : { "type" : "string", "readOnly" : true }, "isMainInventory" : { "type" : "boolean" }, "isInactive" : { "type" : "boolean" }, "description" : { "type" : "string" }, "email" : { "type" : "string" }, "phone" : { "type" : "string" }, "deletable" : { "type" : "boolean" }, "address" : { "$ref" : "#/components/schemas/Address" }, "lastStocking" : { "type" : "string" }, "status" : { "type" : "string" }, "hasLocations" : { "type" : "boolean" } } }, "InventoryLocation" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "inventory" : { "$ref" : "#/components/schemas/Inventory" }, "number" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "name" : { "type" : "string" }, "displayName" : { "type" : "string", "readOnly" : true }, "isInactive" : { "type" : "boolean" }, "isDeletable" : { "type" : "boolean", "readOnly" : true }, "canDeactivate" : { "type" : "boolean", "description" : "Indicates whether the location can be deactivated based on current stock and usage.", "readOnly" : true } }, "description" : "Inventory location field -- beta program" }, "Invoice" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "invoiceNumber" : { "minimum" : 0, "type" : "integer", "description" : "If value is set to 0, the invoice number will be generated.", "format" : "int32" }, "invoiceDate" : { "type" : "string" }, "customer" : { "$ref" : "#/components/schemas/Customer" }, "creditedInvoice" : { "type" : "integer", "description" : "The id of the original invoice if this is a credit note.", "format" : "int64", "readOnly" : true }, "isCredited" : { "type" : "boolean", "readOnly" : true }, "invoiceDueDate" : { "type" : "string" }, "kid" : { "type" : "string", "description" : "KID - Kundeidentifikasjonsnummer." }, "invoiceComment" : { "type" : "string", "description" : "Comment text for the invoice. This was specified on the order as invoiceComment.", "readOnly" : true }, "comment" : { "type" : "string", "description" : "Comment text for the specific invoice." }, "orders" : { "type" : "array", "description" : "Related orders. Only one order per invoice is supported at the moment.", "items" : { "$ref" : "#/components/schemas/Order" } }, "orderLines" : { "type" : "array", "description" : "Orderlines connected to the invoice.", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/OrderLine" } }, "travelReports" : { "type" : "array", "description" : "Travel reports connected to the invoice.", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/TravelExpense" } }, "projectInvoiceDetails" : { "type" : "array", "description" : "ProjectInvoiceDetails contains additional information about the invoice, in particular invoices for projects. It contains information about the charged project, the fee amount, extra percent and amount, extra costs, travel expenses, invoice and project comments, akonto amount and values determining if extra costs, akonto and hours should be included. ProjectInvoiceDetails is an object which represents the relation between an invoice and a Project, Orderline and OrderOut object.", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ProjectInvoiceDetails" } }, "voucher" : { "$ref" : "#/components/schemas/Voucher" }, "deliveryDate" : { "type" : "string", "description" : "The delivery date.", "readOnly" : true }, "amount" : { "type" : "number", "description" : "In the company’s currency, typically NOK.", "readOnly" : true }, "amountCurrency" : { "type" : "number", "description" : "In the specified currency.", "readOnly" : true }, "amountExcludingVat" : { "type" : "number", "description" : "Amount excluding VAT (NOK).", "readOnly" : true }, "amountExcludingVatCurrency" : { "type" : "number", "description" : "Amount excluding VAT in the specified currency.", "readOnly" : true }, "amountRoundoff" : { "type" : "number", "description" : "Amount of round off to nearest integer.", "readOnly" : true }, "amountRoundoffCurrency" : { "type" : "number", "description" : "Amount of round off to nearest integer in the specified currency.", "readOnly" : true }, "amountOutstanding" : { "type" : "number", "description" : "The amount outstanding based on the history collection, excluding reminders and any existing remits, in the invoice currency.", "readOnly" : true }, "amountCurrencyOutstanding" : { "type" : "number", "description" : "The amountCurrency outstanding based on the history collection, excluding reminders and any existing remits, in the invoice currency.", "readOnly" : true }, "amountOutstandingTotal" : { "type" : "number", "description" : "The amount outstanding based on the history collection and including the last reminder and any existing remits. This is the total invoice balance including reminders and remittances, in the invoice currency.", "readOnly" : true }, "amountCurrencyOutstandingTotal" : { "type" : "number", "description" : "The amountCurrency outstanding based on the history collection and including the last reminder and any existing remits. This is the total invoice balance including reminders and remittances, in the invoice currency.", "readOnly" : true }, "sumRemits" : { "type" : "number", "description" : "The sum of all open remittances of the invoice. Remittances are reimbursement payments back to the customer and are therefore relevant to the bookkeeping of the invoice in the accounts.", "readOnly" : true }, "currency" : { "$ref" : "#/components/schemas/Currency" }, "isCreditNote" : { "type" : "boolean", "readOnly" : true }, "isCharged" : { "type" : "boolean", "readOnly" : true }, "isApproved" : { "type" : "boolean", "readOnly" : true }, "postings" : { "type" : "array", "description" : "The invoice postings, which includes a posting for the invoice with a positive amount, and one or more posting for the payments with negative amounts.", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Posting" } }, "reminders" : { "type" : "array", "description" : "Invoice debt collection and reminders.", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Reminder" } }, "invoiceRemarks" : { "type" : "string", "description" : "Deprecated Invoice remarks - please use the 'invoiceRemark' instead." }, "invoiceRemark" : { "$ref" : "#/components/schemas/InvoiceRemark" }, "paymentTypeId" : { "minimum" : 0, "type" : "integer", "description" : "[BETA] Optional. Used to specify payment type for prepaid invoices. Payment type can be specified here, or as a parameter to the /invoice API endpoint.", "format" : "int32" }, "paidAmount" : { "type" : "number", "description" : "[BETA] Optional. Used to specify the prepaid amount of the invoice. The paid amount can be specified here, or as a parameter to the /invoice API endpoint." }, "isPeriodizationPossible" : { "type" : "boolean", "readOnly" : true }, "documentId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "ehfSendStatus" : { "type" : "string", "description" : "[Deprecated] EHF (Peppol) send status. This only shows status for historic EHFs.", "enum" : [ "DO_NOT_SEND", "SEND", "SENT", "SEND_FAILURE_RECIPIENT_NOT_FOUND" ] } }, "description" : "Invoicing plans tied to the project", "readOnly" : true }, "InvoiceRemark" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "description" : { "type" : "string" }, "postponeRemindersTo" : { "type" : "string" } }, "description" : "Invoice remark - automatically stops reminder/notice of debt collection until specified date." }, "Link" : { "type" : "object", "properties" : { "rel" : { "type" : "string", "enum" : [ "DELIVER", "APPROVE", "CREATE_VOUCHER", "SEE_ATTESTATION_FLOW", "UNDELIVER", "UNAPPROVE", "OVERRIDE_APPROVE", "REJECT", "GO_TO_INVOICE", "GO_TO_VOUCHER", "GO_TO_PAYSLIP", "COPY", "DELETE" ] }, "type" : { "type" : "string", "enum" : [ "POST", "PUT", "GET", "DELETE" ] }, "href" : { "type" : "string" }, "id" : { "type" : "integer", "format" : "int64" } }, "readOnly" : true }, "MileageAllowance" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "travelExpense" : { "$ref" : "#/components/schemas/TravelExpense" }, "rateType" : { "$ref" : "#/components/schemas/TravelExpenseRate" }, "rateCategory" : { "$ref" : "#/components/schemas/TravelExpenseRateCategory" }, "date" : { "type" : "string" }, "departureLocation" : { "type" : "string" }, "destination" : { "type" : "string" }, "km" : { "type" : "number" }, "rate" : { "type" : "number" }, "amount" : { "type" : "number" }, "isCompanyCar" : { "type" : "boolean" }, "vehicleType" : { "minimum" : 0, "type" : "integer", "description" : "The corresponded number for the vehicleType. Default value = 0.", "format" : "int32" }, "passengers" : { "type" : "array", "description" : "Link to individual passengers.", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Passenger" } }, "passengerSupplement" : { "$ref" : "#/components/schemas/MileageAllowance" }, "trailerSupplement" : { "$ref" : "#/components/schemas/MileageAllowance" }, "tollCost" : { "$ref" : "#/components/schemas/Cost" }, "drivingStops" : { "type" : "array", "description" : "Link to individual mileage stops.", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/DrivingStop" } } }, "description" : "Link to individual mileage allowances.", "readOnly" : true }, "Order" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "customer" : { "$ref" : "#/components/schemas/Customer" }, "contact" : { "$ref" : "#/components/schemas/Contact" }, "attn" : { "$ref" : "#/components/schemas/Contact" }, "displayName" : { "type" : "string", "readOnly" : true }, "receiverEmail" : { "type" : "string" }, "overdueNoticeEmail" : { "type" : "string" }, "number" : { "type" : "string" }, "reference" : { "type" : "string" }, "ourContact" : { "$ref" : "#/components/schemas/Contact" }, "ourContactEmployee" : { "$ref" : "#/components/schemas/Employee" }, "department" : { "$ref" : "#/components/schemas/Department" }, "orderDate" : { "type" : "string" }, "project" : { "$ref" : "#/components/schemas/Project" }, "invoiceComment" : { "type" : "string", "description" : "Comment to be displayed in the invoice based on this order. Can be also found in Invoice.invoiceComment on Invoice objects." }, "currency" : { "$ref" : "#/components/schemas/Currency" }, "invoicesDueIn" : { "maximum" : 10000, "minimum" : 0, "type" : "integer", "description" : "Number of days/months in which invoices created from this order is due", "format" : "int32" }, "status" : { "type" : "string", "description" : "Logistics only", "enum" : [ "NOT_CHOSEN", "NEW", "CONFIRMATION_SENT", "READY_FOR_PICKING", "PICKED", "PACKED", "READY_FOR_SHIPPING", "READY_FOR_INVOICING", "INVOICED", "CANCELLED" ] }, "invoicesDueInType" : { "type" : "string", "description" : "Set the time unit of invoicesDueIn. The special case RECURRING_DAY_OF_MONTH enables the due date to be fixed to a specific day of the month, in this case the fixed due date will automatically be set as standard on all invoices created from this order. Note that when RECURRING_DAY_OF_MONTH is set, the due date will be set to the last day of month if \"31\" is set in invoicesDueIn.", "enum" : [ "DAYS", "MONTHS", "RECURRING_DAY_OF_MONTH" ] }, "isShowOpenPostsOnInvoices" : { "type" : "boolean", "description" : "Show account statement - open posts on invoices created from this order" }, "isClosed" : { "type" : "boolean", "description" : "Denotes if this order is closed. A closed order can no longer be invoiced unless it is opened again." }, "deliveryDate" : { "type" : "string" }, "deliveryAddress" : { "$ref" : "#/components/schemas/DeliveryAddress" }, "deliveryComment" : { "type" : "string" }, "isPrioritizeAmountsIncludingVat" : { "type" : "boolean" }, "orderLineSorting" : { "type" : "string", "enum" : [ "ID", "PRODUCT", "PRODUCT_DESCENDING", "CUSTOM" ] }, "orderGroups" : { "type" : "array", "description" : "Order line groups", "items" : { "$ref" : "#/components/schemas/OrderGroup" } }, "orderLines" : { "type" : "array", "description" : "Order lines tied to the order. New OrderLines may be embedded here, in some endpoints.", "items" : { "$ref" : "#/components/schemas/OrderLine" } }, "isSubscription" : { "type" : "boolean", "description" : "If true, the order is a subscription, which enables periodical invoicing of order lines. First, create an order with isSubscription=true, then approve it for subscription invoicing with the :approveSubscriptionInvoice method." }, "subscriptionDuration" : { "minimum" : 0, "type" : "integer", "description" : "Number of months/years the subscription shall run", "format" : "int32" }, "subscriptionDurationType" : { "type" : "string", "description" : "The time unit of subscriptionDuration", "enum" : [ "MONTHS", "YEAR" ] }, "subscriptionPeriodsOnInvoice" : { "minimum" : 0, "type" : "integer", "description" : "Number of periods on each invoice", "format" : "int32" }, "subscriptionPeriodsOnInvoiceType" : { "type" : "string", "description" : "The time unit of subscriptionPeriodsOnInvoice", "readOnly" : true, "enum" : [ "MONTHS" ] }, "subscriptionInvoicingTimeInAdvanceOrArrears" : { "type" : "string", "description" : "Invoicing in advance/in arrears", "enum" : [ "ADVANCE", "ARREARS" ] }, "subscriptionInvoicingTime" : { "minimum" : 0, "type" : "integer", "description" : "Number of days/months invoicing in advance/in arrears", "format" : "int32" }, "subscriptionInvoicingTimeType" : { "type" : "string", "description" : "The time unit of subscriptionInvoicingTime", "enum" : [ "DAYS", "MONTHS" ] }, "isSubscriptionAutoInvoicing" : { "type" : "boolean", "description" : "Automatic invoicing. Starts when the subscription is approved" }, "preliminaryInvoice" : { "$ref" : "#/components/schemas/Invoice" }, "attachment" : { "type" : "array", "description" : "[BETA] Attachments belonging to this order", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Document" } }, "sendMethodDescription" : { "type" : "string", "description" : "Description of how this invoice will be sent" }, "canCreateBackorder" : { "type" : "boolean", "readOnly" : true }, "invoiceOnAccountVatHigh" : { "type" : "boolean", "description" : "Is the on account(a konto) amounts including vat " }, "totalInvoicedOnAccountAmountAbsoluteCurrency" : { "type" : "number", "description" : "Amount paid on account(a konto)", "readOnly" : true }, "invoiceSendSMSNotification" : { "type" : "boolean", "description" : "Is sms-notification on/off", "readOnly" : true }, "invoiceSMSNotificationNumber" : { "type" : "string", "description" : "The phone number of the receiver of sms notifications. Must be a norwegian phone number" }, "markUpOrderLines" : { "type" : "number", "description" : "Set mark-up (%) for order lines." }, "discountPercentage" : { "type" : "number", "description" : "Default discount percentage for order lines." }, "customerName" : { "type" : "string", "readOnly" : true }, "projectManagerNameAndNumber" : { "type" : "string", "readOnly" : true }, "travelReports" : { "type" : "array", "description" : "Travel reports connected to the order.", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/TravelExpense" } }, "accountingDimensionValues" : { "type" : "array", "description" : "Free dimensions for the project connected to the order.", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/AccountingDimensionValue" } } }, "description" : "Related orders. Only one order per invoice is supported at the moment." }, "OrderGroup" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "order" : { "$ref" : "#/components/schemas/Order" }, "title" : { "type" : "string" }, "comment" : { "type" : "string" }, "sortIndex" : { "minimum" : 0, "type" : "integer", "description" : "Defines the presentation order of the orderGroups. Does not need to be, and is often not continuous. Only applicable if parent order has orderLineSorting as CUSTOM.", "format" : "int32" }, "orderLines" : { "type" : "array", "description" : "Order lines belonging to the OrderGroup. Order lines that does not belong to a group, can be posted on the orderLines field on the order.", "items" : { "$ref" : "#/components/schemas/OrderLine" } } }, "description" : "Order line groups" }, "OrderLine" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "product" : { "$ref" : "#/components/schemas/Product" }, "inventory" : { "$ref" : "#/components/schemas/Inventory" }, "inventoryLocation" : { "$ref" : "#/components/schemas/InventoryLocation" }, "description" : { "type" : "string" }, "displayName" : { "type" : "string", "description" : "Display name of order line", "readOnly" : true }, "count" : { "type" : "number" }, "unitCostCurrency" : { "type" : "number", "description" : "Unit price purchase (cost) excluding VAT in the order's currency" }, "unitPriceExcludingVatCurrency" : { "type" : "number", "description" : "Unit price of purchase excluding VAT in the order's currency. If only unit price Excl. VAT or unit price Inc. VAT is supplied, we will calculate and update the missing field." }, "currency" : { "$ref" : "#/components/schemas/Currency" }, "markup" : { "type" : "number", "description" : "Markup given as a percentage (%)" }, "discount" : { "type" : "number", "description" : "Discount given as a percentage (%)" }, "vatType" : { "$ref" : "#/components/schemas/VatType" }, "amountExcludingVatCurrency" : { "type" : "number", "description" : "Total amount on order line excluding VAT in the order's currency", "readOnly" : true }, "amountIncludingVatCurrency" : { "type" : "number", "description" : "Total amount on order line including VAT in the order's currency", "readOnly" : true }, "vendor" : { "$ref" : "#/components/schemas/Company" }, "order" : { "$ref" : "#/components/schemas/Order" }, "unitPriceIncludingVatCurrency" : { "type" : "number", "description" : "Unit price of purchase including VAT in the order's currency. If only unit price Excl. VAT or unit price Inc. VAT is supplied, we will calculate and update the missing field." }, "isSubscription" : { "type" : "boolean" }, "subscriptionPeriodStart" : { "type" : "string" }, "subscriptionPeriodEnd" : { "type" : "string" }, "orderGroup" : { "$ref" : "#/components/schemas/OrderGroup" }, "sortIndex" : { "minimum" : 0, "type" : "integer", "description" : "Defines the presentation order of the lines. Does not need to be, and is often not continuous. Only applicable if parent order has orderLineSorting as CUSTOM.", "format" : "int32" }, "isPicked" : { "type" : "boolean", "description" : "Only used for Logistics customers who activated the available inventory functionality. Represents whether the line has been picked up or not." }, "pickedDate" : { "type" : "string", "description" : "Only used for Logistics customers who activated the available inventory functionality. Represents the pick date for an order line or null if the line was not picked." }, "orderedQuantity" : { "type" : "number", "description" : "Only used for Logistics customers who activated the Backorder functionality. Represents the quantity that was ordered. If nothing is specified, the ordered quantity will be the same as the delivered quantity." }, "isCharged" : { "type" : "boolean", "description" : "Flag indicating whether the order line is charged or not." } }, "description" : "Order lines tied to the order. New OrderLines may be embedded here, in some endpoints." }, "Passenger" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "name" : { "type" : "string" }, "mileageAllowance" : { "$ref" : "#/components/schemas/MileageAllowance" } }, "description" : "Link to individual passengers.", "readOnly" : true }, "Payslip" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "transaction" : { "$ref" : "#/components/schemas/SalaryTransaction" }, "employee" : { "$ref" : "#/components/schemas/Employee" }, "date" : { "type" : "string", "description" : "Voucher date." }, "year" : { "type" : "integer", "format" : "int32" }, "month" : { "type" : "integer", "format" : "int32" }, "specifications" : { "type" : "array", "description" : "Link to salary specifications.", "items" : { "$ref" : "#/components/schemas/SalarySpecification" } }, "vacationAllowanceAmount" : { "type" : "number", "readOnly" : true }, "grossAmount" : { "type" : "number", "readOnly" : true }, "amount" : { "type" : "number", "readOnly" : true }, "number" : { "minimum" : 0, "type" : "integer", "format" : "int32", "readOnly" : true }, "department" : { "$ref" : "#/components/schemas/Department" } }, "readOnly" : true }, "PerDiemCompensation" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "travelExpense" : { "$ref" : "#/components/schemas/TravelExpense" }, "rateType" : { "$ref" : "#/components/schemas/TravelExpenseRate" }, "rateCategory" : { "$ref" : "#/components/schemas/TravelExpenseRateCategory" }, "countryCode" : { "type" : "string" }, "travelExpenseZoneId" : { "type" : "integer", "description" : "Optional travel expense zone id. If not specified, the value from field zone will be used.", "format" : "int32" }, "overnightAccommodation" : { "type" : "string", "description" : "Set what sort of accommodation was had overnight.", "enum" : [ "NONE", "HOTEL", "BOARDING_HOUSE_WITHOUT_COOKING", "BOARDING_HOUSE_WITH_COOKING" ] }, "location" : { "type" : "string" }, "address" : { "type" : "string" }, "count" : { "type" : "integer", "format" : "int32" }, "rate" : { "type" : "number" }, "amount" : { "type" : "number" }, "isDeductionForBreakfast" : { "type" : "boolean" }, "isDeductionForLunch" : { "type" : "boolean" }, "isDeductionForDinner" : { "type" : "boolean" } }, "description" : "Link to individual per diem compensations." }, "Posting" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "voucher" : { "$ref" : "#/components/schemas/Voucher" }, "date" : { "type" : "string" }, "description" : { "type" : "string" }, "account" : { "$ref" : "#/components/schemas/Account" }, "amortizationAccount" : { "$ref" : "#/components/schemas/Account" }, "amortizationStartDate" : { "type" : "string", "description" : "Amortization start date. AmortizationAccountId, amortizationStartDate and amortizationEndDate should be provided." }, "amortizationEndDate" : { "type" : "string" }, "customer" : { "$ref" : "#/components/schemas/Customer" }, "supplier" : { "$ref" : "#/components/schemas/Supplier" }, "employee" : { "$ref" : "#/components/schemas/Employee" }, "project" : { "$ref" : "#/components/schemas/Project" }, "product" : { "$ref" : "#/components/schemas/Product" }, "department" : { "$ref" : "#/components/schemas/Department" }, "vatType" : { "$ref" : "#/components/schemas/VatType" }, "amount" : { "type" : "number" }, "amountCurrency" : { "type" : "number" }, "amountGross" : { "type" : "number" }, "amountGrossCurrency" : { "type" : "number" }, "currency" : { "$ref" : "#/components/schemas/Currency" }, "closeGroup" : { "$ref" : "#/components/schemas/CloseGroup" }, "invoiceNumber" : { "type" : "string" }, "termOfPayment" : { "type" : "string" }, "row" : { "minimum" : 0, "type" : "integer", "format" : "int32" }, "type" : { "type" : "string", "readOnly" : true, "enum" : [ "INCOMING_PAYMENT", "INCOMING_PAYMENT_OPPOSITE", "INCOMING_INVOICE_CUSTOMER_POSTING", "INVOICE_EXPENSE", "OUTGOING_INVOICE_CUSTOMER_POSTING", "WAGE" ] }, "externalRef" : { "type" : "string", "description" : "External reference for identifying payment basis of the posting, e.g., KID, customer identification or credit note number.", "readOnly" : true }, "systemGenerated" : { "type" : "boolean", "readOnly" : true }, "taxTransactionType" : { "type" : "string", "readOnly" : true }, "taxTransactionTypeId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "matched" : { "type" : "boolean", "readOnly" : true }, "quantityAmount1" : { "type" : "number", "description" : "The quantity amount associated with the posting" }, "quantityType1" : { "$ref" : "#/components/schemas/ProductUnit" }, "quantityAmount2" : { "type" : "number", "description" : "The quantity amount associated with the posting" }, "quantityType2" : { "$ref" : "#/components/schemas/ProductUnit" }, "isVatReadonly" : { "type" : "boolean", "description" : "Is vat code readonly?", "readOnly" : true }, "isAmountVatClosed" : { "type" : "boolean", "description" : "Is amount of this posting (for VAT purposes) changeable", "readOnly" : true }, "postingRuleId" : { "type" : "integer", "description" : "The payment type id associated with the posting. This ID will only be set if the payment types used is an internal payment type like 'Nettbank' - it is not set if the payment is a bank payment like AutoPay or ZTL.", "format" : "int32" }, "freeAccountingDimension1" : { "$ref" : "#/components/schemas/AccountingDimensionValue" }, "freeAccountingDimension2" : { "$ref" : "#/components/schemas/AccountingDimensionValue" }, "freeAccountingDimension3" : { "$ref" : "#/components/schemas/AccountingDimensionValue" }, "asset" : { "$ref" : "#/components/schemas/Asset" } } }, "Prediction" : { "type" : "object", "properties" : { "predictedValue" : { "type" : "string" }, "confidence" : { "type" : "string" } } }, "Product" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "name" : { "type" : "string" }, "number" : { "type" : "string" }, "displayNumber" : { "type" : "string", "readOnly" : true }, "description" : { "type" : "string" }, "orderLineDescription" : { "type" : "string" }, "ean" : { "type" : "string" }, "elNumber" : { "type" : "string", "readOnly" : true }, "nrfNumber" : { "type" : "string", "readOnly" : true }, "costExcludingVatCurrency" : { "type" : "number", "description" : "Price purchase (cost) excluding VAT in the product's currency" }, "expenses" : { "type" : "number" }, "expensesInPercent" : { "type" : "number", "readOnly" : true }, "costPrice" : { "type" : "number", "description" : "Cost price of purchase", "readOnly" : true }, "profit" : { "type" : "number", "readOnly" : true }, "profitInPercent" : { "type" : "number", "readOnly" : true }, "priceExcludingVatCurrency" : { "type" : "number", "description" : "Price of purchase excluding VAT in the product's currency" }, "priceIncludingVatCurrency" : { "type" : "number", "description" : "Price of purchase including VAT in the product's currency" }, "isInactive" : { "type" : "boolean" }, "discountGroup" : { "$ref" : "#/components/schemas/DiscountGroup" }, "productUnit" : { "$ref" : "#/components/schemas/ProductUnit" }, "isStockItem" : { "type" : "boolean" }, "stockOfGoods" : { "type" : "number", "description" : "Available only on demand", "readOnly" : true }, "availableStock" : { "type" : "number", "description" : "Available only on demand", "readOnly" : true }, "incomingStock" : { "type" : "number", "description" : "Available only on demand", "readOnly" : true }, "outgoingStock" : { "type" : "number", "description" : "Available only on demand", "readOnly" : true }, "vatType" : { "$ref" : "#/components/schemas/VatType" }, "currency" : { "$ref" : "#/components/schemas/Currency" }, "department" : { "$ref" : "#/components/schemas/Department" }, "account" : { "$ref" : "#/components/schemas/Account" }, "discountPrice" : { "type" : "number", "readOnly" : true }, "supplier" : { "$ref" : "#/components/schemas/Supplier" }, "resaleProduct" : { "$ref" : "#/components/schemas/Product" }, "isDeletable" : { "type" : "boolean", "description" : "For performance reasons, field is deprecated and it will always return false." }, "hasSupplierProductConnected" : { "type" : "boolean" }, "weight" : { "type" : "number" }, "weightUnit" : { "type" : "string", "enum" : [ "kg", "g", "hg" ] }, "volume" : { "type" : "number" }, "volumeUnit" : { "type" : "string", "enum" : [ "cm3", "dm3", "m3" ] }, "hsnCode" : { "type" : "string" }, "image" : { "$ref" : "#/components/schemas/Document" }, "markupListPercentage" : { "type" : "number", "readOnly" : true }, "markupNetPercentage" : { "type" : "number", "readOnly" : true }, "displayName" : { "type" : "string", "readOnly" : true }, "mainSupplierProduct" : { "$ref" : "#/components/schemas/SupplierProduct" }, "isRoundPriceIncVat" : { "type" : "boolean", "description" : "[BETA] Indicates whether the price incl. VAT is rounded off or not", "readOnly" : true }, "priceInTargetCurrency" : { "type" : "number", "description" : "Purchase Price converted in specific currency.", "readOnly" : true }, "purchasePriceCurrency" : { "type" : "number", "description" : "Purchase Price in product currency. This affects only Supplier Products.", "readOnly" : true }, "minStockLevel" : { "type" : "number", "description" : "Minimum available stock level for the product. Applicable only to stock items in the Logistics Basics module." } } }, "Project" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "name" : { "type" : "string" }, "number" : { "type" : "string", "description" : "If NULL, a number is generated automatically." }, "displayName" : { "type" : "string", "readOnly" : true }, "description" : { "type" : "string" }, "projectManager" : { "$ref" : "#/components/schemas/Employee" }, "department" : { "$ref" : "#/components/schemas/Department" }, "mainProject" : { "$ref" : "#/components/schemas/Project" }, "startDate" : { "type" : "string" }, "endDate" : { "type" : "string" }, "customer" : { "$ref" : "#/components/schemas/Customer" }, "isClosed" : { "type" : "boolean" }, "isReadyForInvoicing" : { "type" : "boolean" }, "isInternal" : { "type" : "boolean" }, "isOffer" : { "type" : "boolean", "description" : "If is Project Offer set to true, if is Project set to false. The default value is false." }, "isFixedPrice" : { "type" : "boolean", "description" : "Project is fixed price if set to true, hourly rate if set to false." }, "projectCategory" : { "$ref" : "#/components/schemas/ProjectCategory" }, "deliveryAddress" : { "$ref" : "#/components/schemas/Address" }, "boligmappaAddress" : { "$ref" : "#/components/schemas/Address" }, "displayNameFormat" : { "type" : "string", "description" : "Defines project name presentation in overviews.", "enum" : [ "NAME_STANDARD", "NAME_INCL_CUSTOMER_NAME", "NAME_INCL_PARENT_NAME", "NAME_INCL_PARENT_NUMBER", "NAME_INCL_PARENT_NAME_AND_NUMBER" ] }, "reference" : { "type" : "string" }, "externalAccountsNumber" : { "type" : "string" }, "discountPercentage" : { "type" : "number", "description" : "Project discount percentage.", "readOnly" : true }, "vatType" : { "$ref" : "#/components/schemas/VatType" }, "fixedprice" : { "type" : "number", "description" : "Fixed price amount, in the project's currency." }, "contributionMarginPercent" : { "type" : "number", "readOnly" : true }, "numberOfSubProjects" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "numberOfProjectParticipants" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "orderLines" : { "type" : "array", "description" : "Order lines tied to the order", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ProjectOrderLine" } }, "currency" : { "$ref" : "#/components/schemas/Currency" }, "markUpOrderLines" : { "type" : "number", "description" : "Set mark-up (%) for order lines." }, "markUpFeesEarned" : { "type" : "number", "description" : "Set mark-up (%) for fees earned." }, "isPriceCeiling" : { "type" : "boolean", "description" : "Set to true if an hourly rate project has a price ceiling." }, "priceCeilingAmount" : { "type" : "number", "description" : "Price ceiling amount, in the project's currency." }, "projectHourlyRates" : { "type" : "array", "description" : "Project Rate Types tied to the project.", "items" : { "$ref" : "#/components/schemas/ProjectHourlyRate" } }, "forParticipantsOnly" : { "type" : "boolean", "description" : "Set to true if only project participants can register information on the project" }, "participants" : { "type" : "array", "description" : "Link to individual project participants.", "items" : { "$ref" : "#/components/schemas/ProjectParticipant" } }, "contact" : { "$ref" : "#/components/schemas/Contact" }, "attention" : { "$ref" : "#/components/schemas/Contact" }, "invoiceComment" : { "type" : "string", "description" : "Comment for project invoices" }, "invoicingPlan" : { "type" : "array", "description" : "Invoicing plans tied to the project", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Invoice" } }, "preliminaryInvoice" : { "$ref" : "#/components/schemas/Invoice" }, "generalProjectActivitiesPerProjectOnly" : { "type" : "boolean", "description" : "Set to true if a general project activity must be linked to project to allow time tracking." }, "projectActivities" : { "type" : "array", "description" : "Project Activities", "items" : { "$ref" : "#/components/schemas/ProjectActivity" } }, "hierarchyNameAndNumber" : { "type" : "string", "readOnly" : true }, "invoiceDueDate" : { "type" : "integer", "description" : "invoice due date", "format" : "int32" }, "invoiceDueDateType" : { "type" : "string", "description" : "Set the time unit of invoiceDueDate. The special case RECURRING_DAY_OF_MONTH enables the due date to be fixed to a specific day of the month, in this case the fixed due date will automatically be set as standard on all invoices created from this project. Note that when RECURRING_DAY_OF_MONTH is set, the due date will be set to the last day of month if \"31\" is set in invoicesDueIn.", "enum" : [ "DAYS", "MONTHS", "RECURRING_DAY_OF_MONTH" ] }, "invoiceReceiverEmail" : { "type" : "string", "description" : "Set the project's invoice receiver email. Will override the default invoice receiver email of any customer that may also be set in the request body." }, "overdueNoticeEmail" : { "type" : "string", "description" : "Set the project's overdue notice email. Will override the default overdue notice email of any customer that may also be set in the request body." }, "accessType" : { "type" : "string", "description" : "READ/WRITE access on project", "enum" : [ "NONE", "READ", "WRITE" ] }, "useProductNetPrice" : { "type" : "boolean" }, "ignoreCompanyProductDiscountAgreement" : { "type" : "boolean" }, "customerName" : { "type" : "string", "readOnly" : true }, "hierarchyLevel" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "projectManagerNameAndNumber" : { "type" : "string", "readOnly" : true }, "totalInvoicedOnAccountAmountAbsoluteCurrency" : { "type" : "number", "description" : "Amount paid on account(a konto)", "readOnly" : true }, "invoiceOnAccountVatHigh" : { "type" : "boolean", "description" : "The on account(a konto) amounts including VAT" }, "invoiceReserveTotalAmountCurrency" : { "type" : "number", "description" : "Total invoice reserve", "readOnly" : true }, "accountingDimensionValues" : { "type" : "array", "description" : "[BETA - Requires pilot feature] Free dimensions for the project.", "items" : { "$ref" : "#/components/schemas/AccountingDimensionValue" } } } }, "ProjectActivity" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "activity" : { "$ref" : "#/components/schemas/Activity" }, "project" : { "$ref" : "#/components/schemas/Project" }, "startDate" : { "type" : "string" }, "endDate" : { "type" : "string" }, "isClosed" : { "type" : "boolean" }, "budgetHours" : { "type" : "number", "description" : "Set budget hours" }, "budgetHourlyRateCurrency" : { "type" : "number", "description" : "Set budget hourly rate" }, "budgetFeeCurrency" : { "type" : "number", "description" : "Set budget fee" } }, "description" : "Project Activities" }, "ProjectCategory" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "name" : { "type" : "string" }, "number" : { "type" : "string" }, "description" : { "type" : "string" }, "displayName" : { "type" : "string" } } }, "ProjectHourlyRate" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "project" : { "$ref" : "#/components/schemas/Project" }, "startDate" : { "type" : "string" }, "showInProjectOrder" : { "type" : "boolean", "description" : "Show on contract confirmation/offers" }, "hourlyRateModel" : { "type" : "string", "description" : "Defines the model used for the hourly rate.", "enum" : [ "TYPE_PREDEFINED_HOURLY_RATES", "TYPE_PROJECT_SPECIFIC_HOURLY_RATES", "TYPE_FIXED_HOURLY_RATE" ] }, "projectSpecificRates" : { "type" : "array", "description" : "Project specific rates if hourlyRateModel is TYPE_PROJECT_SPECIFIC_HOURLY_RATES. ", "items" : { "$ref" : "#/components/schemas/ProjectSpecificRate" } }, "fixedRate" : { "type" : "number", "description" : "Fixed Hourly rates if hourlyRateModel is TYPE_FIXED_HOURLY_RATE." } }, "description" : "Project Rate Types tied to the project." }, "ProjectInvoiceDetails" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "project" : { "$ref" : "#/components/schemas/Project" }, "feeAmount" : { "type" : "number", "description" : "Fee amount of the project. For example: 100 NOK.", "readOnly" : true }, "feeAmountCurrency" : { "type" : "number", "description" : "Fee amount of the project in the invoice currency.", "readOnly" : true }, "markupPercent" : { "type" : "number", "description" : "The percentage value of mark-up of amountFee. For example: 10%.", "readOnly" : true }, "markupAmount" : { "type" : "number", "description" : "The amount value of mark-up of amountFee on the project invoice. For example: 10 NOK.", "readOnly" : true }, "markupAmountCurrency" : { "type" : "number", "description" : "The amount value of mark-up of amountFee on the project invoice, in the invoice currency.", "readOnly" : true }, "amountOrderLinesAndReinvoicing" : { "type" : "number", "description" : "The amount of chargeable manual order lines and vendor invoices on the project invoice.", "readOnly" : true }, "amountOrderLinesAndReinvoicingCurrency" : { "type" : "number", "description" : "The amount of chargeable manual order lines and vendor invoices on the project invoice, in the invoice currency.", "readOnly" : true }, "amountTravelReportsAndExpenses" : { "type" : "number", "description" : "The amount of travel costs and expenses on the project invoice.", "readOnly" : true }, "amountTravelReportsAndExpensesCurrency" : { "type" : "number", "description" : "The amount of travel costs and expenses on the project invoice, in the invoice currency.", "readOnly" : true }, "feeInvoiceText" : { "type" : "string", "description" : "The fee comment on the project invoice.", "readOnly" : true }, "invoiceText" : { "type" : "string", "description" : "The comment on the project invoice.", "readOnly" : true }, "includeOrderLinesAndReinvoicing" : { "type" : "boolean", "description" : "Determines if extra costs should be included on the project invoice.", "readOnly" : true }, "includeHours" : { "type" : "boolean", "description" : "Determines if hours should be included on the project invoice.", "readOnly" : true }, "includeOnAccountBalance" : { "type" : "boolean", "description" : "Determines if akonto should be included on the project invoice.", "readOnly" : true }, "onAccountBalanceAmount" : { "type" : "number", "description" : "The akonto amount on the project invoice.", "readOnly" : true }, "onAccountBalanceAmountCurrency" : { "type" : "number", "description" : "The akonto amount on the project invoice in the invoice currency.", "readOnly" : true }, "vatType" : { "$ref" : "#/components/schemas/VatType" }, "invoice" : { "$ref" : "#/components/schemas/Invoice" } }, "description" : "ProjectInvoiceDetails contains additional information about the invoice, in particular invoices for projects. It contains information about the charged project, the fee amount, extra percent and amount, extra costs, travel expenses, invoice and project comments, akonto amount and values determining if extra costs, akonto and hours should be included. ProjectInvoiceDetails is an object which represents the relation between an invoice and a Project, Orderline and OrderOut object.", "readOnly" : true }, "ProjectOrderLine" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "product" : { "$ref" : "#/components/schemas/Product" }, "inventory" : { "$ref" : "#/components/schemas/Inventory" }, "inventoryLocation" : { "$ref" : "#/components/schemas/InventoryLocation" }, "description" : { "type" : "string" }, "displayName" : { "type" : "string", "description" : "Display name of order line", "readOnly" : true }, "count" : { "type" : "number" }, "unitCostCurrency" : { "type" : "number", "description" : "Unit price purchase (cost) excluding VAT in the order's currency" }, "unitPriceExcludingVatCurrency" : { "type" : "number", "description" : "Unit price of purchase excluding VAT in the order's currency. If only unit price Excl. VAT or unit price Inc. VAT is supplied, we will calculate and update the missing field." }, "currency" : { "$ref" : "#/components/schemas/Currency" }, "markup" : { "type" : "number", "description" : "Markup given as a percentage (%)" }, "discount" : { "type" : "number", "description" : "Discount given as a percentage (%)" }, "vatType" : { "$ref" : "#/components/schemas/VatType" }, "amountExcludingVatCurrency" : { "type" : "number", "description" : "Total amount on order line excluding VAT in the order's currency", "readOnly" : true }, "amountIncludingVatCurrency" : { "type" : "number", "description" : "Total amount on order line including VAT in the order's currency", "readOnly" : true }, "vendor" : { "$ref" : "#/components/schemas/Company" }, "project" : { "$ref" : "#/components/schemas/Project" }, "date" : { "type" : "string" }, "isChargeable" : { "type" : "boolean" }, "isBudget" : { "type" : "boolean", "readOnly" : true }, "invoice" : { "$ref" : "#/components/schemas/Invoice" }, "customSortIndex" : { "type" : "integer", "format" : "int32" }, "voucher" : { "$ref" : "#/components/schemas/Voucher" } }, "description" : "Order lines tied to the order", "readOnly" : true }, "ProjectParticipant" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "project" : { "$ref" : "#/components/schemas/Project" }, "employee" : { "$ref" : "#/components/schemas/Employee" }, "adminAccess" : { "type" : "boolean" } }, "description" : "Link to individual project participants." }, "ProjectSpecificRate" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "hourlyRate" : { "type" : "number" }, "hourlyCostPercentage" : { "type" : "number" }, "projectHourlyRate" : { "$ref" : "#/components/schemas/ProjectHourlyRate" }, "employee" : { "$ref" : "#/components/schemas/Employee" }, "activity" : { "$ref" : "#/components/schemas/Activity" } }, "description" : "Project specific rates if hourlyRateModel is TYPE_PROJECT_SPECIFIC_HOURLY_RATES. " }, "Reminder" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "reminderDate" : { "type" : "string", "description" : "Creation date of the invoice reminder.", "readOnly" : true }, "charge" : { "type" : "number", "description" : "The fee part of the reminder, in the company's currency.", "readOnly" : true }, "chargeCurrency" : { "type" : "number", "description" : "The fee part of the reminder, in the invoice currency.", "readOnly" : true }, "totalCharge" : { "type" : "number", "description" : "The total fee part of all reminders, in the company's currency.", "readOnly" : true }, "totalChargeCurrency" : { "type" : "number", "description" : "The total fee part of all reminders, in the invoice currency.", "readOnly" : true }, "totalAmountCurrency" : { "type" : "number", "description" : "The total amount to pay in reminder's currency.", "readOnly" : true }, "interests" : { "type" : "number", "description" : "The interests part of the reminder.", "readOnly" : true }, "interestRate" : { "type" : "number", "description" : "The reminder interest rate.", "readOnly" : true }, "termOfPayment" : { "type" : "string", "description" : "The reminder term of payment date." }, "currency" : { "$ref" : "#/components/schemas/Currency" }, "type" : { "type" : "string", "enum" : [ "SOFT_REMINDER", "REMINDER", "NOTICE_OF_DEBT_COLLECTION", "DEBT_COLLECTION" ] }, "comment" : { "type" : "string" }, "kid" : { "type" : "string", "description" : "KID - Kundeidentifikasjonsnummer." }, "bankAccountNumber" : { "type" : "string" }, "bankAccountIBAN" : { "type" : "string" }, "bankAccountSWIFT" : { "type" : "string" }, "bank" : { "type" : "string" } }, "description" : "Invoice debt collection and reminders.", "readOnly" : true }, "ResponseWrapperSupplierInvoice" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/SupplierInvoice" } } }, "SalarySpecification" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "rate" : { "type" : "number" }, "count" : { "type" : "number" }, "project" : { "$ref" : "#/components/schemas/Project" }, "department" : { "$ref" : "#/components/schemas/Department" }, "salaryType" : { "$ref" : "#/components/schemas/SalaryType" }, "payslip" : { "$ref" : "#/components/schemas/Payslip" }, "employee" : { "$ref" : "#/components/schemas/Employee" }, "description" : { "type" : "string" }, "year" : { "type" : "integer", "format" : "int32" }, "month" : { "type" : "integer", "format" : "int32" }, "amount" : { "type" : "number" }, "specificationSupplement" : { "$ref" : "#/components/schemas/SalarySpecificationSupplement" } }, "description" : "Link to salary specifications." }, "SalarySpecificationSupplement" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "carRegNumber" : { "type" : "string" }, "carListPrice" : { "type" : "number" } }, "description" : "Link to salary specification supplement info." }, "SalaryTransaction" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "date" : { "type" : "string", "description" : "Voucher date." }, "year" : { "type" : "integer", "format" : "int32" }, "month" : { "type" : "integer", "format" : "int32" }, "isHistorical" : { "type" : "boolean", "description" : "With historical wage vouchers you can update the wage system with information dated before the opening balance." }, "paySlipsAvailableDate" : { "type" : "string", "description" : "The date payslips are made available to the employee. Defaults to voucherDate." }, "payslips" : { "type" : "array", "description" : "Link to individual payslip objects.", "items" : { "$ref" : "#/components/schemas/Payslip" } } } }, "SalaryType" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "number" : { "type" : "string" }, "name" : { "type" : "string" }, "description" : { "type" : "string" }, "showInTimesheet" : { "type" : "boolean", "readOnly" : true }, "isSickPayable" : { "type" : "boolean", "readOnly" : true }, "isVacationPayable" : { "type" : "boolean", "readOnly" : true }, "isTaxable" : { "type" : "boolean", "readOnly" : true }, "payStatementCodeCode" : { "type" : "string", "readOnly" : true }, "ameldingWageCode" : { "type" : "string", "readOnly" : true }, "accountNumberDebit" : { "$ref" : "#/components/schemas/Account" }, "accountNumberCredit" : { "$ref" : "#/components/schemas/Account" }, "isPayrollTaxable" : { "type" : "boolean", "readOnly" : true } } }, "Supplier" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "name" : { "type" : "string" }, "organizationNumber" : { "type" : "string" }, "supplierNumber" : { "type" : "integer", "format" : "int32" }, "customerNumber" : { "type" : "integer", "format" : "int32" }, "isSupplier" : { "type" : "boolean", "readOnly" : true }, "isCustomer" : { "type" : "boolean", "description" : "Determine if the supplier is also a customer" }, "isInactive" : { "type" : "boolean" }, "email" : { "type" : "string" }, "bankAccounts" : { "type" : "array", "description" : "[DEPRECATED] List of the bank account numbers for this supplier. Norwegian bank account numbers only.", "items" : { "type" : "string", "description" : "[DEPRECATED] List of the bank account numbers for this supplier. Norwegian bank account numbers only." } }, "invoiceEmail" : { "type" : "string" }, "overdueNoticeEmail" : { "type" : "string", "description" : "The email address of the customer where the noticing emails are sent in case of an overdue" }, "phoneNumber" : { "type" : "string" }, "phoneNumberMobile" : { "type" : "string" }, "description" : { "type" : "string" }, "isPrivateIndividual" : { "type" : "boolean" }, "showProducts" : { "type" : "boolean" }, "accountManager" : { "$ref" : "#/components/schemas/Employee" }, "postalAddress" : { "$ref" : "#/components/schemas/Address" }, "physicalAddress" : { "$ref" : "#/components/schemas/Address" }, "deliveryAddress" : { "$ref" : "#/components/schemas/DeliveryAddress" }, "category1" : { "$ref" : "#/components/schemas/CustomerCategory" }, "category2" : { "$ref" : "#/components/schemas/CustomerCategory" }, "category3" : { "$ref" : "#/components/schemas/CustomerCategory" }, "bankAccountPresentation" : { "type" : "array", "description" : "List of bankAccount for this supplier", "items" : { "$ref" : "#/components/schemas/CompanyBankAccountPresentation" } }, "currency" : { "$ref" : "#/components/schemas/Currency" }, "ledgerAccount" : { "$ref" : "#/components/schemas/Account" }, "language" : { "type" : "string", "enum" : [ "NO", "EN" ] }, "isWholesaler" : { "type" : "boolean", "readOnly" : true }, "displayName" : { "type" : "string", "readOnly" : true }, "locale" : { "type" : "string", "readOnly" : true }, "website" : { "type" : "string" } } }, "SupplierInvoice" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "invoiceNumber" : { "type" : "string", "description" : "Invoice number" }, "invoiceDate" : { "type" : "string" }, "supplier" : { "$ref" : "#/components/schemas/Supplier" }, "invoiceDueDate" : { "type" : "string" }, "kidOrReceiverReference" : { "type" : "string", "description" : "KID or message" }, "voucher" : { "$ref" : "#/components/schemas/Voucher" }, "amount" : { "type" : "number", "description" : "In the company’s currency, typically NOK. Is 0 if value is missing.", "readOnly" : true }, "amountCurrency" : { "type" : "number", "description" : "In the specified currency." }, "amountExcludingVat" : { "type" : "number", "description" : "Amount excluding VAT (NOK). Is 0 if value is missing.", "readOnly" : true }, "amountExcludingVatCurrency" : { "type" : "number", "description" : "Amount excluding VAT in the specified currency. Is 0 if value is missing.", "readOnly" : true }, "currency" : { "$ref" : "#/components/schemas/Currency" }, "isCreditNote" : { "type" : "boolean", "readOnly" : true }, "orderLines" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/OrderLine" } }, "payments" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Posting" } }, "originalInvoiceDocumentId" : { "minimum" : 0, "type" : "integer", "format" : "int32", "readOnly" : true }, "approvalListElements" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/VoucherApprovalListElement" } }, "outstandingAmount" : { "type" : "number", "description" : "The amount outstanding on the invoice, in the invoice currency.", "readOnly" : true } }, "readOnly" : true }, "SupplierProduct" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "name" : { "type" : "string" }, "displayName" : { "type" : "string", "readOnly" : true }, "number" : { "type" : "string" }, "description" : { "type" : "string" }, "ean" : { "type" : "string" }, "costExcludingVatCurrency" : { "type" : "number", "description" : "Price purchase (cost) excluding VAT in the product's currency" }, "cost" : { "type" : "number", "description" : "Price purchase (cost) in the company's currency" }, "priceExcludingVatCurrency" : { "type" : "number", "description" : "Price of purchase excluding VAT in the product's currency" }, "priceIncludingVatCurrency" : { "type" : "number", "description" : "Price of purchase including VAT in the product's currency" }, "isInactive" : { "type" : "boolean" }, "productUnit" : { "$ref" : "#/components/schemas/ProductUnit" }, "isStockItem" : { "type" : "boolean" }, "stockOfGoods" : { "type" : "number", "readOnly" : true }, "vatType" : { "$ref" : "#/components/schemas/VatType" }, "currency" : { "$ref" : "#/components/schemas/Currency" }, "discountPrice" : { "type" : "number", "readOnly" : true }, "supplier" : { "$ref" : "#/components/schemas/Supplier" }, "resaleProduct" : { "$ref" : "#/components/schemas/Product" }, "isDeletable" : { "type" : "boolean", "readOnly" : true }, "vendorName" : { "type" : "string", "readOnly" : true }, "isEfoNelfoProduct" : { "type" : "boolean", "readOnly" : true }, "wholesalerId" : { "minimum" : 0, "type" : "integer", "format" : "int32", "readOnly" : true }, "isMainSupplierProduct" : { "type" : "boolean", "description" : "This feature is available only in pilot" }, "priceInTargetCurrency" : { "type" : "number", "readOnly" : true } }, "description" : "This feature is available only in pilot" }, "TravelCostCategory" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "description" : { "type" : "string" }, "account" : { "$ref" : "#/components/schemas/Account" }, "vatType" : { "$ref" : "#/components/schemas/VatType" }, "isVatLocked" : { "type" : "boolean", "readOnly" : true }, "showOnTravelExpenses" : { "type" : "boolean", "readOnly" : true }, "showOnEmployeeExpenses" : { "type" : "boolean", "readOnly" : true }, "isInactive" : { "type" : "boolean", "readOnly" : true }, "sequence" : { "minimum" : 0, "type" : "integer", "format" : "int32", "readOnly" : true }, "displayName" : { "type" : "string" } } }, "TravelDetails" : { "type" : "object", "properties" : { "isForeignTravel" : { "type" : "boolean" }, "isDayTrip" : { "type" : "boolean" }, "isCompensationFromRates" : { "type" : "boolean" }, "departureDate" : { "type" : "string" }, "returnDate" : { "type" : "string" }, "detailedJourneyDescription" : { "type" : "string" }, "departureFrom" : { "type" : "string" }, "destination" : { "type" : "string" }, "departureTime" : { "type" : "string" }, "returnTime" : { "type" : "string" }, "purpose" : { "type" : "string" } } }, "TravelExpense" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "attestationSteps" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/AttestationStep" } }, "attestation" : { "$ref" : "#/components/schemas/Attestation" }, "project" : { "$ref" : "#/components/schemas/Project" }, "employee" : { "$ref" : "#/components/schemas/Employee" }, "approvedBy" : { "$ref" : "#/components/schemas/Employee" }, "completedBy" : { "$ref" : "#/components/schemas/Employee" }, "rejectedBy" : { "$ref" : "#/components/schemas/Employee" }, "department" : { "$ref" : "#/components/schemas/Department" }, "freeDimension1" : { "$ref" : "#/components/schemas/AccountingDimensionValue" }, "freeDimension2" : { "$ref" : "#/components/schemas/AccountingDimensionValue" }, "freeDimension3" : { "$ref" : "#/components/schemas/AccountingDimensionValue" }, "payslip" : { "$ref" : "#/components/schemas/Payslip" }, "vatType" : { "$ref" : "#/components/schemas/VatType" }, "paymentCurrency" : { "$ref" : "#/components/schemas/Currency" }, "travelDetails" : { "$ref" : "#/components/schemas/TravelDetails" }, "voucher" : { "$ref" : "#/components/schemas/Voucher" }, "attachment" : { "$ref" : "#/components/schemas/Document" }, "isCompleted" : { "type" : "boolean", "readOnly" : true }, "isApproved" : { "type" : "boolean", "readOnly" : true }, "rejectedComment" : { "type" : "string", "readOnly" : true }, "isChargeable" : { "type" : "boolean" }, "isFixedInvoicedAmount" : { "type" : "boolean" }, "isMarkupInvoicedPercent" : { "type" : "boolean" }, "isIncludeAttachedReceiptsWhenReinvoicing" : { "type" : "boolean" }, "completedDate" : { "type" : "string", "readOnly" : true }, "approvedDate" : { "type" : "string", "readOnly" : true }, "date" : { "type" : "string", "readOnly" : true }, "travelAdvance" : { "type" : "number" }, "fixedInvoicedAmount" : { "type" : "number" }, "markupInvoicedPercent" : { "type" : "number" }, "amount" : { "type" : "number", "readOnly" : true }, "chargeableAmountCurrency" : { "type" : "number", "readOnly" : true }, "paymentAmount" : { "type" : "number", "readOnly" : true }, "chargeableAmount" : { "type" : "number", "readOnly" : true }, "lowRateVAT" : { "type" : "number", "readOnly" : true }, "mediumRateVAT" : { "type" : "number", "readOnly" : true }, "highRateVAT" : { "type" : "number", "readOnly" : true }, "paymentAmountCurrency" : { "type" : "number", "readOnly" : true }, "number" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "numberAsString" : { "type" : "string", "readOnly" : true }, "invoice" : { "$ref" : "#/components/schemas/Invoice" }, "title" : { "type" : "string" }, "displayName" : { "type" : "string", "readOnly" : true }, "displayNameWithoutNumber" : { "type" : "string", "readOnly" : true }, "perDiemCompensations" : { "type" : "array", "description" : "Link to individual per diem compensations.", "items" : { "$ref" : "#/components/schemas/PerDiemCompensation" } }, "mileageAllowances" : { "type" : "array", "description" : "Link to individual mileage allowances.", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/MileageAllowance" } }, "accommodationAllowances" : { "type" : "array", "description" : "Link to individual accommodation allowances.", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/AccommodationAllowance" } }, "costs" : { "type" : "array", "description" : "Link to individual costs.", "items" : { "$ref" : "#/components/schemas/Cost" } }, "attachmentCount" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "state" : { "type" : "string", "readOnly" : true, "enum" : [ "ALL", "REJECTED", "OPEN", "APPROVED", "SALARY_PAID", "DELIVERED" ] }, "stateName" : { "type" : "string", "readOnly" : true }, "actions" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Link" } }, "isSalaryAdmin" : { "type" : "boolean", "readOnly" : true }, "showPayslip" : { "type" : "boolean", "readOnly" : true }, "accountingPeriodClosed" : { "type" : "boolean", "readOnly" : true }, "accountingPeriodVATClosed" : { "type" : "boolean", "readOnly" : true }, "type" : { "minimum" : 0, "type" : "integer", "format" : "int32", "readOnly" : true } }, "description" : "Travel reports connected to the order.", "readOnly" : true }, "TravelExpenseRate" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "rateCategory" : { "$ref" : "#/components/schemas/TravelExpenseRateCategory" }, "zone" : { "type" : "string" }, "rate" : { "type" : "number" }, "breakfastDeductionRate" : { "type" : "number" }, "lunchDeductionRate" : { "type" : "number" }, "dinnerDeductionRate" : { "type" : "number" } } }, "TravelExpenseRateCategory" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "name" : { "type" : "string", "readOnly" : true }, "ameldingWageCode" : { "type" : "integer", "format" : "int32" }, "wageCodeNumber" : { "type" : "string" }, "isValidDayTrip" : { "type" : "boolean" }, "isValidAccommodation" : { "type" : "boolean" }, "isValidDomestic" : { "type" : "boolean" }, "isValidForeignTravel" : { "type" : "boolean" }, "isRequiresZone" : { "type" : "boolean" }, "isRequiresOvernightAccommodation" : { "type" : "boolean" }, "fromDate" : { "type" : "string" }, "toDate" : { "type" : "string" }, "type" : { "type" : "string", "enum" : [ "PER_DIEM", "ACCOMMODATION_ALLOWANCE", "MILEAGE_ALLOWANCE" ] } } }, "TravelPaymentType" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "description" : { "type" : "string" }, "account" : { "$ref" : "#/components/schemas/Account" }, "showOnTravelExpenses" : { "type" : "boolean", "readOnly" : true }, "showOnEmployeeExpenses" : { "type" : "boolean", "readOnly" : true }, "isInactive" : { "type" : "boolean", "readOnly" : true }, "displayName" : { "type" : "string" } } }, "Voucher" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "date" : { "type" : "string" }, "number" : { "minimum" : 0, "type" : "integer", "description" : "System generated number that cannot be changed.", "format" : "int32", "readOnly" : true }, "tempNumber" : { "minimum" : 0, "type" : "integer", "description" : "Temporary voucher number.", "format" : "int32", "readOnly" : true }, "year" : { "minimum" : 0, "type" : "integer", "description" : "System generated number that cannot be changed.", "format" : "int32", "readOnly" : true }, "description" : { "type" : "string" }, "voucherType" : { "$ref" : "#/components/schemas/VoucherType" }, "reverseVoucher" : { "$ref" : "#/components/schemas/Voucher" }, "postings" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/Posting" } }, "document" : { "$ref" : "#/components/schemas/Document" }, "attachment" : { "$ref" : "#/components/schemas/Document" }, "externalVoucherNumber" : { "type" : "string", "description" : "External voucher number. Maximum 70 characters." }, "ediDocument" : { "$ref" : "#/components/schemas/Document" }, "supplierVoucherType" : { "type" : "string", "description" : "Supplier voucher type - simple and detailed.", "readOnly" : true, "enum" : [ "TYPE_SUPPLIER_INVOICE_SIMPLE", "TYPE_SUPPLIER_INVOICE_DETAILED" ] }, "wasAutoMatched" : { "type" : "boolean", "description" : "Voucher was auto matched", "readOnly" : true }, "vendorInvoiceNumber" : { "type" : "string", "description" : "Vendor invoice number." }, "displayName" : { "type" : "string", "readOnly" : true }, "numberAsString" : { "type" : "string", "readOnly" : true } } }, "VoucherApprovalListElement" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "voucher" : { "$ref" : "#/components/schemas/Voucher" }, "employee" : { "$ref" : "#/components/schemas/Employee" }, "actionEmployee" : { "$ref" : "#/components/schemas/Employee" }, "status" : { "minimum" : 0, "type" : "integer", "format" : "int32", "readOnly" : true }, "organisationLevel" : { "minimum" : 0, "type" : "integer", "format" : "int32", "readOnly" : true }, "isVendorAttestant" : { "type" : "boolean", "readOnly" : true }, "department" : { "$ref" : "#/components/schemas/Department" }, "project" : { "$ref" : "#/components/schemas/Project" }, "comment" : { "type" : "string" }, "commentFromOriginator" : { "type" : "string" }, "actionDate" : { "type" : "string", "readOnly" : true }, "actionEmployeeName" : { "type" : "string", "readOnly" : true }, "actionEmployeePictureId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "actionEmployeeIsAuthCompanyAttestor" : { "type" : "boolean", "readOnly" : true } }, "readOnly" : true }, "VoucherType" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "name" : { "type" : "string" }, "displayName" : { "type" : "string" } }, "description" : "Voucher type. Must not be of type 'Utgående faktura' ('Outgoing Invoice') on new vouchers, instead use voucherType=null or use the Invoice endpoint." }, "AutoPaySupport" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int32" }, "uploadNeeded" : { "type" : "boolean" }, "isEikaType" : { "type" : "boolean" }, "hasOrgNumber" : { "type" : "boolean" }, "isPsd2Type" : { "type" : "boolean" }, "hasApproveInOnlineBanking" : { "type" : "boolean" }, "requiredBankFieldIds" : { "type" : "array", "items" : { "type" : "integer", "format" : "int64" } } }, "description" : "The autoPay support for this bank", "readOnly" : true }, "Bank" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "name" : { "type" : "string", "description" : "Bank name", "readOnly" : true }, "bankStatementFileFormatSupport" : { "type" : "array", "readOnly" : true, "items" : { "type" : "string", "description" : "Bank statement file formats supported.", "readOnly" : true, "enum" : [ "DNB_CSV", "EIKA_TELEPAY", "SPAREBANK1_TELEPAY", "VISMA_ACCOUNT_STATEMENT", "HANDELSBANKEN_TELEPAY", "SPAREBANKEN_VEST_TELEPAY", "NORDEA_CSV", "TRANSFERWISE", "SPAREBANKEN_SOR_TELEPAY", "SPAREBANKEN_OST_TELEPAY", "DANSKE_BANK_CSV", "CULTURA_BANK_TELEPAY", "SBANKEN_PRIVAT_CSV", "HAUGESUND_SPAREBANK_CSV", "VISMA_ACCOUNT_STATEMENT_PSD2", "SBANKEN_BEDRIFT_CSV", "LANDKREDITT_TELEPAY", "ZTL", "VISMA_ACCOUNT_STATEMENT_PLATFORM_AGNOSTIC", "VISMA_ACCOUNT_STATEMENT_PDS2_PLATFORM_AGNOSTIC" ] } }, "registerNumbers" : { "type" : "array", "readOnly" : true, "items" : { "type" : "integer", "description" : "Register numbers belonging to bank.", "format" : "int64", "readOnly" : true } }, "displayName" : { "type" : "string", "description" : "Bank name to comply with LoadableDropdown", "readOnly" : true }, "autoPaySupport" : { "$ref" : "#/components/schemas/AutoPaySupport" }, "platform" : { "type" : "string", "description" : "Bank platform", "readOnly" : true, "enum" : [ "UNKNOWN", "TIETO_EVRY", "SDC", "INDEPENDENT" ] } } }, "BankStatement" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "openingBalanceCurrency" : { "type" : "number", "description" : "Opening balance on the account.", "readOnly" : true }, "closingBalanceCurrency" : { "type" : "number", "description" : "Closing balance on the account.", "readOnly" : true }, "fileName" : { "type" : "string", "description" : "Bank statement file name.", "readOnly" : true }, "bank" : { "$ref" : "#/components/schemas/Bank" }, "fromDate" : { "type" : "string", "readOnly" : true }, "toDate" : { "type" : "string", "readOnly" : true }, "transactions" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/BankTransaction" } } } }, "BankTransaction" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "postedDate" : { "type" : "string" }, "description" : { "type" : "string" }, "amountCurrency" : { "type" : "number" }, "bankStatement" : { "$ref" : "#/components/schemas/BankStatement" }, "account" : { "$ref" : "#/components/schemas/Account" }, "groupedPostings" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/BankTransactionPosting" } }, "matchType" : { "type" : "string", "enum" : [ "ONE_TRANSACTION_TO_ONE_POSTING", "ONE_TRANSACTION_TO_MANY_POSTINGS", "MANY_TRANSACTIONS_TO_ONE_POSTING", "MANY_TRANSACTIONS_TO_MANY_POSTINGS", "NO_MATCH", "UNKNOWN" ] }, "companyId" : { "type" : "integer", "format" : "int32" }, "matched" : { "type" : "boolean", "readOnly" : true }, "bankReconciliationMatchSum" : { "type" : "number", "readOnly" : true }, "paymentId" : { "type" : "string" }, "sourceVoucher" : { "$ref" : "#/components/schemas/Voucher" } }, "readOnly" : true }, "BankTransactionPosting" : { "type" : "object", "properties" : { "voucher" : { "$ref" : "#/components/schemas/Voucher" }, "date" : { "type" : "string" }, "description" : { "type" : "string" }, "account" : { "$ref" : "#/components/schemas/Account" }, "customer" : { "$ref" : "#/components/schemas/Customer" }, "supplier" : { "$ref" : "#/components/schemas/Supplier" }, "amount" : { "type" : "number" }, "amountCurrency" : { "type" : "number" }, "currency" : { "$ref" : "#/components/schemas/Currency" }, "invoiceNumber" : { "type" : "string" }, "postingMatchType" : { "type" : "string", "enum" : [ "DEFAULT", "INTERNAL_TRANSFER", "WAGE", "TAX", "VAT" ] } } }, "ResponseWrapperBankStatement" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/BankStatement" } } }, "ResponseWrapperMapStringObject" : { "type" : "object", "properties" : { "value" : { "type" : "object", "additionalProperties" : { "type" : "object" } } } }, "ResponseWrapperSystemMessage" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/SystemMessage" } } }, "SystemMessage" : { "type" : "object", "properties" : { "message" : { "type" : "string" } } }, "Cluster" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "name" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "DatabaseMigrationGroup" : { "type" : "object", "properties" : { "group" : { "$ref" : "#/components/schemas/MigrationGroup" }, "migrations" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/MigrationTypeSchemaVersion" } } }, "readOnly" : true }, "DatabaseMigrationSummary" : { "type" : "object", "properties" : { "migrationGroups" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/DatabaseMigrationGroup" } } } }, "MigrationGroup" : { "type" : "object", "properties" : { "migrationSource" : { "type" : "string", "enum" : [ "TripletexMigrations", "Tripletex" ] }, "migrationCategory" : { "type" : "string", "enum" : [ "Structure", "Data" ] }, "migrationScope" : { "type" : "string", "enum" : [ "Common", "Production", "Api", "Cactus", "BugBounty" ] }, "shardGroup" : { "type" : "string", "enum" : [ "GLOBAL", "COMPANY", "ARCHIVE" ] }, "displayName" : { "type" : "string" }, "tableName" : { "type" : "string" } }, "readOnly" : true }, "MigrationTypeSchemaVersion" : { "type" : "object", "properties" : { "shardGroup" : { "type" : "string", "readOnly" : true, "enum" : [ "GLOBAL", "COMPANY", "ARCHIVE" ] }, "shard" : { "$ref" : "#/components/schemas/Shard" }, "tableName" : { "type" : "string", "readOnly" : true }, "displayName" : { "type" : "string", "readOnly" : true }, "schemaVersions" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/SchemaVersion" } } }, "readOnly" : true }, "ResponseWrapperDatabaseMigrationSummary" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/DatabaseMigrationSummary" } } }, "SchemaVersion" : { "type" : "object", "properties" : { "installedRank" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "version" : { "type" : "string", "readOnly" : true }, "description" : { "type" : "string", "readOnly" : true }, "type" : { "type" : "string", "readOnly" : true }, "script" : { "type" : "string", "readOnly" : true }, "checksum" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "installedBy" : { "type" : "string", "readOnly" : true }, "installedOn" : { "type" : "string", "readOnly" : true }, "executionTime" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "success" : { "type" : "boolean", "readOnly" : true } }, "readOnly" : true }, "Shard" : { "type" : "object", "properties" : { "name" : { "type" : "string", "readOnly" : true }, "id" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "cluster" : { "$ref" : "#/components/schemas/Cluster" }, "archive" : { "type" : "boolean" }, "global" : { "type" : "boolean" }, "allowConnections" : { "type" : "boolean" } }, "readOnly" : true }, "KillSwitchDTO" : { "type" : "object", "properties" : { "feature" : { "type" : "string", "readOnly" : true, "enum" : [ "AlwaysOn", "DummyTestSwitch", "WOOTRIC_NPS", "LogEverythingJavascript", "SalesForceEmbeddedChat", "Zendesk", "ZendeskChatOpenInNewWindow", "IntroductionWizard", "AutoInvoiceValidatorIncoming", "AutoInvoiceValidatorOutgoing", "KillBillUseNewMailSender", "ElmaLookup", "UseLatestInvoicePdf", "ReportUriHeader", "CsrfValidation", "SendSubscriptionInvoicingError", "AprilaV2", "KillLargeRequestsNearOOM", "DeleteFromArchive", "ReadEmployeeLoginInfoFromArchive", "Sentry", "SendInvoicesToSmartScan", "GlobalCache", "AlwaysToggleGlobalCacheOutsideOfORM", "UserOnboardWizard", "BeehiveAuthManagersJSONRPC", "ZendeskSso", "BlockClosedAccountsToUseAPI", "FabricAIIntegration", "GoldsharkRackbeatIntegration", "GoldsharkPurchaseOrderLineApplySecurity", "MissingCompanyIdFilterUpdateDeleteQueriesLogging", "TskUseGlobalCache", "TskUploadAttachmentsIndividually", "KillBillAllowLongInvoiceNumberInKID", "WholesalerFailedLoginNotifications", "KillBillEfakturaLookup", "KillBillKYCFeature", "VismaConnectIframe", "KrrBalanceSheetGlobalCache", "DisableInfoFTPLogging", "ConstrainCompanyIdUpdates", "KillBillGlobalCacheForEhfAndEFakturaLookup", "KillBillSubscriptionInvoicingEvent", "TransactionTimeExceeded", "KillBillSequenceForNextInvoiceNumber", "Chat", "CreateCreditNoteJob", "NonCriticalExtremelySlowQueries", "FeeReserveJobEventProcessor", "UseOldResellerProvisioningLogic", "MamutImportRerun", "FeeReserveJobDeletePreExisting", "SyncLoginAccess", "ResilienceMetrics", "UseLoginAccessForEmployee", "UseLoginAccessForListOfEmployees", "UseLoginAccessForEmployeeLoginInfo", "SaveDocumentToDbInsteadOfS3", "InvoiceAPIIndex", "VismaConnectTokenFlow", "VismaConnectTokenFlowInvalidateSession", "InvoiceInAdvanceMigration", "InvoiceProMigratedCustomers", "VismaConnectValidateEmailOnEveryRequest", "BoligmappaResilience", "VismaConnectResilience", "GlobalEventSystem", "SalesforceSupport", "SlowResponsesFromOpenAI", "SlowResponsesFromOpenAIWithoutHelpcenter", "NoResponsesFromOpenAI", "ZendeskNotAvailable", "CleanupTripletexContactsJob", "MPSInvoiceOverviewBanner", "NewDashboardReminderWidget", "NewDashboardReminderWidgetIsVisible", "CustomerApiTripletexPagination", "CreateAccessToClientsJob", "ClearResellerProvisions", "SkipMissingTripletexOrdersInProvisioning", "OScoreFeedbackContactMeToggle", "CalculateHmacOnWebhook", "NewAddonsAuthorization", "AccountingOfficeServiceOptimization", "AccountingOfficeServiceOptimizationPart2", "AccountingOfficeClientAccessForm", "NewCreateTripletexAccountDialog", "PilotFeatureRecordPatternQuery", "TimeBasedSessionInvalidation", "UserRateLimiting", "ValidDateStringRangeValidation", "ValidJsonRPCDateRangeValidation", "DebugVoucherFormStoreTransactions", "SticosCampaignRelease", "CacheRequestBodyFilter", "LogSiteNotFoundException", "LoginVismaConnectMessageCode", "AddRequestIdToAllQueries", "ReminderWidgetWebhookListener", "DeleteAccountJobRun", "ChangedSinceRequestLogId", "AllowSendingInTripletexInvoiceJob", "ZTLResilience", "SyncRemindersJobRun", "AutoPayResilience", "DisableAutoPayVismaConnectBankOnboarding", "ArticleStartDateFiltering", "Inyett", "CopilotUserStats", "CopilotSurvey", "CopilotGeneralLLM", "DisablePSCacheForScatterGather", "UrlNavigation", "AutoPayPAAutoMigrate", "TaskFoxBuildDraftOnImports", "NewTargetUrlValidation", "InvoiceExtraCostsReserveCurrencyQuery", "AutoPayMigrator", "Spotlight2FA", "TripletexChatMigration", "PbcManyToOneEqualDateLimit", "LatestCreateTripletexAccountDialog", "TwoFAButtonOnMyProfile", "VismaConnectLogout", "RateLimitChangesEndpoints", "AddMissingUserLicensesJob", "ReportEngineCellLimit", "ImpersonationToken", "OptimizedPostingAggregatesQuery", "PriceListCache", "UseFuturePricesInPriceList", "RemoveZendeskAndPointToHelpcenter", "ConsumerNameVisibilityTokenCreate", "CompanyIdModelLookup", "ChatModelGPT4o", "ChatModelGPT41", "ChatModelGPT5Nano", "ChatModelGPT5Mini", "ChatModelGPT5", "ChatModelClaudeSonnet4", "ChatModelBedrockSonnet45", "ChatModelBedrockOpus45", "ChatModelBedrockHaiku45", "ChatModelBedrockOpus46", "ChatModelBedrockSonnet46", "ChatModelBedrockOpus", "ChatModelBedrockSonnet", "ChatModelBedrockHaiku", "ChatModelFallbackOpenAI", "ChatModelFallbackAnthropic", "ChatModelHealthCheck", "TripletexInvoiceJobProcessor", "UseProperVCRedirectForSites", "JavaAgentRouter", "useOldCalculationOfOutstandingInvoices", "ApiBatchCreate", "ApiBatchUpdate", "ApiBatchDelete", "SendChatNotifications", "OneTimePassword", "CheckForAccountantInWithLoginAccess", "SkipFieldByFieldAuthorization", "EmailSuperRateLimitUnverifiedCompany", "PDFEmailRateLimit", "VismaConnectDanglingUserEvent", "AckResultCallBack", "ErrorRateLimiting", "ImmutableObjectCache", "DTOCache", "DomainReferenceCheck", "AssistantInsightAgents", "Enforce2FAUponLogin", "ProjectOverviewPerformance", "AssistantActionAgents", "VoucherInboxPdfDedup", "CommissionOnExistingCustomers", "AutoPosting", "AutoPostingOutgoingInvoiceWithoutKid", "AnomalyDetection", "ForceProMigration", "UseNewInternalChatQueries", "TRIP58841RunAll", "PreCacheDebtCollectorInReminderDetails" ] }, "alive" : { "type" : "boolean", "readOnly" : true }, "teams" : { "type" : "array", "items" : { "type" : "string", "enum" : [ "ANGRY_NERDS", "ANTS", "RELIONS", "ASTRO", "ATEAM", "BEEHIVE", "BOND", "DATA_STREAM", "FINX", "GOLDSHARK", "KILLBILL", "KRR", "OPTIMUS", "PBC", "PHOENIX", "SECURITY", "SHEET_STORM", "TASK_FOX", "TOOLKITTENS", "TSK", "TIME_TRAVELLERS", "PT", "ATTESTATION", "UNKNOWN" ] } } } }, "ResponseWrapperKillSwitchDTO" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/KillSwitchDTO" } } }, "ListResponseKillSwitchDTO" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/KillSwitchDTO" } } } }, "AltinnInstance" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "altinnId" : { "type" : "string", "description" : "The altinn archive reference" }, "partyId" : { "type" : "string", "description" : "The partyId in altinn - refering to the organization" }, "instanceGuid" : { "type" : "string", "description" : "The id of the instance in Altinn" }, "createdInfo" : { "type" : "string", "description" : "The initials and date of when the instance was created" } }, "readOnly" : true }, "ResponseWrapperAltinnInstance" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/AltinnInstance" } } }, "A07Details" : { "type" : "object", "properties" : { "paymentInformation" : { "$ref" : "#/components/schemas/A07DetailsPaymentInformation" }, "submissions" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/A07DetailsSubmission" } }, "businesses" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/A07DetailsBusiness" } } }, "readOnly" : true }, "A07DetailsBusiness" : { "type" : "object", "properties" : { "payrollTax" : { "$ref" : "#/components/schemas/A07DetailsBusinessPayrollTax" } }, "readOnly" : true }, "A07DetailsBusinessPayrollTax" : { "type" : "object", "properties" : { "wagesAndRemuneration" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/A07DetailsBusinessPayrollTaxBasis" } }, "pensionContributionsAndPremiums" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/A07DetailsBusinessPayrollTaxBasis" } } }, "readOnly" : true }, "A07DetailsBusinessPayrollTaxBasis" : { "type" : "object", "properties" : { "zone" : { "type" : "string", "readOnly" : true }, "basisAmount" : { "type" : "number", "readOnly" : true }, "percentageRate" : { "type" : "number", "readOnly" : true } }, "readOnly" : true }, "A07DetailsPaymentInformation" : { "type" : "object", "properties" : { "sumWithholdingTax" : { "type" : "number", "readOnly" : true }, "sumPayrollTax" : { "type" : "number", "readOnly" : true }, "sumFinanceTax" : { "type" : "number", "readOnly" : true } }, "readOnly" : true }, "A07DetailsPaymentInformationSimplified" : { "type" : "object", "properties" : { "sumWithholdingTax" : { "type" : "number", "readOnly" : true }, "sumPayrollTax" : { "type" : "number", "readOnly" : true }, "salaryPaymentDate" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "A07DetailsSubmission" : { "type" : "object", "properties" : { "month" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "deliveryTimestamp" : { "type" : "string", "readOnly" : true }, "altinnTimestamp" : { "type" : "string", "readOnly" : true }, "taxAndWithholdingTotal" : { "$ref" : "#/components/schemas/A07DetailsPaymentInformation" }, "taxAndWithholdingTotalSimplifiedScheme" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/A07DetailsPaymentInformationSimplified" } } }, "readOnly" : true }, "AmeldingReconciliationReport" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "archiveReference" : { "type" : "string", "readOnly" : true }, "reconciliationTimestamp" : { "type" : "string", "readOnly" : true }, "from" : { "type" : "string", "readOnly" : true }, "to" : { "type" : "string", "readOnly" : true }, "details" : { "$ref" : "#/components/schemas/A07Details" } } }, "ResponseWrapperAmeldingReconciliationReport" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/AmeldingReconciliationReport" } } }, "AmeldingReconciliationReportRequest" : { "type" : "object", "properties" : { "year" : { "type" : "integer", "description" : "The income year of the requested report", "format" : "int32", "writeOnly" : true }, "monthFrom" : { "maximum" : 12, "minimum" : 1, "type" : "integer", "description" : "The start month of the requested report", "format" : "int32", "writeOnly" : true, "example" : 9 }, "monthTo" : { "maximum" : 12, "minimum" : 1, "type" : "integer", "description" : "The end month of the requested report", "format" : "int32", "writeOnly" : true, "example" : 10 } } }, "ListResponseAmeldingReconciliationReport" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/AmeldingReconciliationReport" } } } }, "AggregateAnomaly" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "company" : { "$ref" : "#/components/schemas/Company" }, "anomalyId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "externalAnomalyKey" : { "type" : "string", "readOnly" : true }, "anomalyCheckId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "checkType" : { "type" : "string", "readOnly" : true, "enum" : [ "UNKNOWN", "POSTING_AMOUNT", "VAT_NUMBER", "CUSTOMER_ID", "VENDOR_ID", "ACCOUNT_VENDOR_AGGREGATE_AMOUNT", "DUPLICATE_POSTINGS", "OLD_DATE", "NEW_ACCOUNT", "CUSTOMER_VAT_NUMBER", "VENDOR_VAT_NUMBER" ] }, "status" : { "type" : "string", "readOnly" : true, "enum" : [ "UNRESOLVED", "UNDER_REVIEW", "RESOLVED" ] }, "timestamp" : { "type" : "string", "readOnly" : true }, "title" : { "type" : "string", "readOnly" : true }, "labels" : { "type" : "array", "readOnly" : true, "items" : { "type" : "string", "readOnly" : true } }, "voucher" : { "$ref" : "#/components/schemas/Voucher" }, "account" : { "$ref" : "#/components/schemas/Account" } }, "readOnly" : true }, "CursorPaginationListResponse" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/InvoiceSummary" } }, "cursor" : { "type" : "string", "description" : "Base64 encoded cursor", "readOnly" : true } } }, "AnomaliesContext" : { "type" : "object", "properties" : { "loggedInUserInfo" : { "$ref" : "#/components/schemas/LoggedInUserInfo" } } }, "LoggedInUserInfo" : { "type" : "object", "properties" : { "employeeId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "actualEmployeeId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "employee" : { "$ref" : "#/components/schemas/Employee" }, "companyId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "company" : { "$ref" : "#/components/schemas/Company" }, "language" : { "type" : "string", "readOnly" : true }, "loggedInWithConnect" : { "type" : "boolean", "readOnly" : true }, "employeeIsProxy" : { "type" : "boolean", "readOnly" : true } } }, "ResponseWrapperAnomaliesContext" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/AnomaliesContext" } } }, "Anomaly" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "description" : "Anomaly ID", "format" : "int64", "readOnly" : true }, "checkType" : { "type" : "string", "description" : "Anomaly Check Type", "readOnly" : true, "enum" : [ "UNKNOWN", "POSTING_AMOUNT", "VAT_NUMBER", "CUSTOMER_ID", "VENDOR_ID", "ACCOUNT_VENDOR_AGGREGATE_AMOUNT", "DUPLICATE_POSTINGS", "OLD_DATE", "NEW_ACCOUNT", "CUSTOMER_VAT_NUMBER", "VENDOR_VAT_NUMBER" ] }, "title" : { "type" : "string", "description" : "Anomaly title", "readOnly" : true }, "description" : { "type" : "string", "description" : "Anomaly description", "readOnly" : true }, "labels" : { "type" : "array", "description" : "Labels associated with the anomaly", "readOnly" : true, "items" : { "type" : "string", "description" : "Labels associated with the anomaly", "readOnly" : true } }, "date" : { "type" : "string", "description" : "Date of the anomaly", "readOnly" : true }, "status" : { "type" : "string", "description" : "Anomaly status", "readOnly" : true, "enum" : [ "UNRESOLVED", "UNDER_REVIEW", "RESOLVED" ] }, "company" : { "$ref" : "#/components/schemas/Company" }, "comments" : { "type" : "array", "description" : "Comments on the anomaly", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Comment" } }, "voucher" : { "$ref" : "#/components/schemas/Voucher" }, "account" : { "$ref" : "#/components/schemas/Account" } }, "readOnly" : true }, "Comment" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "comment" : { "type" : "string", "readOnly" : true }, "createdAt" : { "type" : "string", "readOnly" : true }, "editedAt" : { "type" : "string", "readOnly" : true }, "voucherId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "employee" : { "$ref" : "#/components/schemas/Employee" }, "actualEmployeeId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "actualEmployeeCompanyId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "actualEmployeeName" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "ResponseWrapperAnomaly" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/Anomaly" } } }, "ListResponseAnomaly" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Anomaly" } } } }, "AOReconciliationAttachment" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "reconciliationId" : { "type" : "integer", "description" : "The ID of the reconciliation this attachment belongs to", "format" : "int64" }, "uploadedAt" : { "type" : "string", "description" : "The date and time when the attachment was uploaded", "readOnly" : true }, "uploadedBy" : { "$ref" : "#/components/schemas/Employee" }, "referenceId" : { "type" : "integer", "description" : "The ID of the reference this attachment is related to", "format" : "int64" }, "document" : { "$ref" : "#/components/schemas/Document" } } }, "ListResponseAOReconciliationAttachment" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/AOReconciliationAttachment" } } } }, "ResponseWrapperAOReconciliationAttachment" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/AOReconciliationAttachment" } } }, "AOReconciliationComment" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "reconciliationId" : { "type" : "integer", "description" : "The ID of the reconciliation this comment is associated with", "format" : "int64", "readOnly" : true }, "createdAt" : { "type" : "string", "description" : "Created at timestamp in ISO 8601 format", "readOnly" : true }, "createdBy" : { "$ref" : "#/components/schemas/Employee" }, "referenceId" : { "type" : "integer", "description" : "The reference of what this comment is associated with, e.g., a specific line in a VAT report", "format" : "int64", "example" : 1234567890 }, "comment" : { "maxLength" : 1024, "minLength" : 0, "type" : "string", "description" : "The comment text", "example" : "This is a comment about the reconciliation." } } }, "ListResponseAOReconciliationComment" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/AOReconciliationComment" } } } }, "ResponseWrapperAOReconciliationComment" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/AOReconciliationComment" } } }, "Reconciliation" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "customer" : { "$ref" : "#/components/schemas/Customer" }, "year" : { "type" : "integer", "description" : "The year of the reconciliation", "format" : "int32" }, "term" : { "maximum" : 12, "minimum" : 1, "type" : "integer", "description" : "The term of the reconciliation", "format" : "int32" }, "document" : { "$ref" : "#/components/schemas/Document" }, "type" : { "type" : "string", "description" : "The type of reconciliation, e.g., 'VAT', 'Bank', etc.", "enum" : [ "UNKNOWN", "VAT_GENERAL_INDUSTRY", "VAT_PRIMARY_INDUSTRY", "SALARY", "BALANCE", "PAYROLL_TAX", "TAX_DEDUCTION", "MANDATORY_DEDUCTION", "HOLIDAY_ALLOWANCE", "FINANCE_TAX", "ANNUAL_BALANCE" ] }, "status" : { "type" : "string", "description" : "The status of the reconciliation", "readOnly" : true, "enum" : [ "DRAFT", "COMPLETED", "CONTROLLED", "ERROR", "WARNING" ] }, "startDate" : { "type" : "string", "description" : "The start date of the reconciliation period" }, "endDate" : { "type" : "string", "description" : "The end date of the reconciliation period" }, "modifiable" : { "type" : "boolean", "description" : "Indicates if the reconciliation is in a modifiable state", "readOnly" : true }, "requiresControl" : { "type" : "boolean", "description" : "Indicates if the reconciliation requires an additional control step after completion" } }, "description" : "The reconciliation status of this term", "readOnly" : true, "example" : "COMPLETED" }, "ResponseWrapperReconciliation" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/Reconciliation" } } }, "ResponseWrapperLong" : { "type" : "object", "properties" : { "value" : { "type" : "integer", "format" : "int64" } } }, "ListResponseReconciliation" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Reconciliation" } } } }, "ResponseWrapperLoggedInUserInfo" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/LoggedInUserInfo" } } }, "AnnualBalanceContext" : { "type" : "object", "properties" : { "year" : { "type" : "integer", "description" : "The year for the reconciliation context", "format" : "int32", "readOnly" : true }, "reconciliationId" : { "type" : "integer", "description" : "The ID of the reconciliation context", "format" : "int64", "readOnly" : true } } }, "ResponseWrapperAnnualBalanceContext" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/AnnualBalanceContext" } } }, "AnnualBalanceContextRequest" : { "type" : "object", "properties" : { "customerId" : { "type" : "integer", "description" : "The ID of the customer for whom the reconciliation context is requested", "format" : "int64", "writeOnly" : true }, "year" : { "type" : "integer", "description" : "The year for the reconciliation context", "format" : "int32", "writeOnly" : true } } }, "AOReconciliationPeriod" : { "type" : "object", "properties" : { "termNumber" : { "type" : "integer", "description" : "The term number for this period", "format" : "int32", "readOnly" : true, "example" : 1 }, "startDate" : { "type" : "string", "description" : "The terms available for the given year", "readOnly" : true, "example" : "2025-01-01" }, "endDate" : { "type" : "string", "description" : "The terms available for the given year", "readOnly" : true, "example" : "2025-03-01" }, "pending" : { "type" : "boolean", "description" : "Whether or not this term is pending reconciliation", "readOnly" : true, "example" : true }, "reconciliation" : { "$ref" : "#/components/schemas/Reconciliation" }, "reconciliationGroup" : { "type" : "string", "description" : "The reconciliation type predicted on this term", "readOnly" : true, "example" : "BALANCE", "enum" : [ "VAT", "SALARY", "BALANCE", "ANNUAL" ] } }, "description" : "The VAT period the data belongs to", "readOnly" : true }, "BalanceReconciliationOverview" : { "type" : "object", "properties" : { "period" : { "$ref" : "#/components/schemas/AOReconciliationPeriod" }, "groups" : { "type" : "array", "description" : "The table groups", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/BalanceReconciliationOverviewGroup" } }, "inactiveAccounts" : { "type" : "array", "description" : "List of accounts not included in the overview", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/BalanceReconciliationOverviewLine" } } } }, "BalanceReconciliationOverviewGroup" : { "type" : "object", "properties" : { "displayName" : { "type" : "string", "description" : "The human readable name of the group", "readOnly" : true }, "lines" : { "type" : "array", "description" : "The lines of data in the group", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/BalanceReconciliationOverviewLine" } } }, "description" : "The table groups", "readOnly" : true }, "BalanceReconciliationOverviewLine" : { "type" : "object", "properties" : { "accountId" : { "type" : "integer", "description" : "The ID of the relevant account", "format" : "int64" }, "displayName" : { "type" : "string", "description" : "The human-readable name of the account" }, "balanceIn" : { "type" : "number", "description" : "The ingoing balance of the account for the period" }, "balanceChange" : { "type" : "number", "description" : "The sum of movements on the account for the period" }, "balanceOut" : { "type" : "number", "description" : "The outgoing balance of the account for the period" }, "storedBalanceIn" : { "type" : "number", "description" : "The stored ingoing balance from when the entry was last saved", "readOnly" : true }, "storedBalanceChange" : { "type" : "number", "description" : "The stored balance change from when the entry was last saved", "readOnly" : true }, "storedBalanceOut" : { "type" : "number", "description" : "The stored outgoing balance from when the entry was last saved", "readOnly" : true }, "documentedBalance" : { "type" : "number", "description" : "The documented balance of the account for the period" }, "difference" : { "type" : "number", "description" : "The difference between the outgoing balance and the documented balance" }, "status" : { "type" : "string", "description" : "The reconciliation status of the line", "enum" : [ "NOT_RECONCILED", "RECONCILED", "REJECTED", "CONTROLLED", "IGNORED" ] }, "availableStatuses" : { "uniqueItems" : true, "type" : "array", "description" : "The set of statuses the line can transition to from its current status", "readOnly" : true, "items" : { "type" : "string", "description" : "The set of statuses the line can transition to from its current status", "readOnly" : true, "enum" : [ "NOT_RECONCILED", "RECONCILED", "REJECTED", "CONTROLLED", "IGNORED" ] } }, "reconciledAt" : { "type" : "string", "description" : "The date and time the line was marked as reconciled" }, "reconciledBy" : { "$ref" : "#/components/schemas/Employee" }, "controlledAt" : { "type" : "string", "description" : "The date and time the line was controlled" }, "controlledBy" : { "$ref" : "#/components/schemas/Employee" }, "errors" : { "type" : "array", "items" : { "type" : "string", "description" : "Validation errors" } }, "attachedVouchers" : { "type" : "array", "description" : "List of vouchers attached to the line", "items" : { "$ref" : "#/components/schemas/BalanceReconciliationVoucher" } } } }, "BalanceReconciliationVoucher" : { "type" : "object", "properties" : { "originalId" : { "type" : "integer", "description" : "Original ID of the voucher in the customers account", "format" : "int64" }, "date" : { "type" : "string", "description" : "Date" }, "voucherNumber" : { "type" : "string", "description" : "Voucher number" }, "description" : { "type" : "string", "description" : "Description" }, "amount" : { "type" : "number", "description" : "Amount" }, "closed" : { "type" : "boolean", "description" : "Closed" }, "comments" : { "type" : "array", "description" : "Comments", "items" : { "$ref" : "#/components/schemas/BalanceReconciliationVoucherComment" } }, "originalDocumentId" : { "type" : "integer", "description" : "Original document ID (main voucher document in customer company)", "format" : "int64" }, "copyDocumentId" : { "type" : "integer", "description" : "Copy document ID (main voucher document copied to AO company)", "format" : "int64" }, "attachments" : { "type" : "array", "description" : "Additional attachments", "items" : { "$ref" : "#/components/schemas/BalanceReconciliationVoucherAttachment" } } }, "description" : "List of vouchers attached to the line" }, "BalanceReconciliationVoucherAttachment" : { "type" : "object", "properties" : { "originalDocumentId" : { "type" : "integer", "description" : "Document ID", "format" : "int64" }, "copyDocumentId" : { "type" : "integer", "description" : "Document ID", "format" : "int64" } }, "description" : "Additional attachments" }, "BalanceReconciliationVoucherComment" : { "type" : "object", "properties" : { "originalId" : { "type" : "integer", "description" : "Original ID of the comment in the customers account", "format" : "int64" }, "authorName" : { "type" : "string", "description" : "Author" }, "comment" : { "type" : "string", "description" : "Content" }, "date" : { "type" : "string", "description" : "Date" } }, "description" : "Comments" }, "ResponseWrapperBalanceReconciliationOverview" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/BalanceReconciliationOverview" } } }, "ListResponseBalanceReconciliationVoucher" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/BalanceReconciliationVoucher" } } } }, "BalanceContext" : { "type" : "object", "properties" : { "year" : { "type" : "integer", "description" : "The year for the reconciliation context", "format" : "int32", "readOnly" : true }, "reconciliationId" : { "type" : "integer", "description" : "The ID of the reconciliation context", "format" : "int64", "readOnly" : true }, "term" : { "type" : "integer", "description" : "The term for the reconciliation context", "format" : "int32", "readOnly" : true } } }, "ResponseWrapperBalanceContext" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/BalanceContext" } } }, "BalanceContextRequest" : { "type" : "object", "properties" : { "customerId" : { "type" : "integer", "description" : "The ID of the customer for whom the reconciliation context is requested", "format" : "int64", "writeOnly" : true }, "year" : { "type" : "integer", "description" : "The year for the reconciliation context", "format" : "int32", "writeOnly" : true }, "term" : { "type" : "integer", "description" : "The term of the reconciliation context", "format" : "int32", "writeOnly" : true } } }, "ResponseWrapperBalanceReconciliationOverviewLine" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/BalanceReconciliationOverviewLine" } } }, "ListResponseBalanceReconciliationOverviewLine" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/BalanceReconciliationOverviewLine" } } } }, "AmeldingPeriodStatus" : { "type" : "object", "properties" : { "year" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "month" : { "type" : "integer", "description" : "1-indexed month (1 = January, 12 = December)", "format" : "int32", "readOnly" : true }, "status" : { "type" : "string", "readOnly" : true, "enum" : [ "completed", "notCompleted", "awaitingResponse" ] } }, "description" : "A-melding summary status per month for the requested year. Only populated when canAccessSalary is true.", "readOnly" : true }, "ClientOverviewContext" : { "type" : "object", "properties" : { "clientId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "clientName" : { "type" : "string", "readOnly" : true }, "customerCompanyId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "accountManagerDisplayName" : { "type" : "string", "description" : "Display name of the account manager, or null if none is assigned", "readOnly" : true }, "canAccessVat" : { "type" : "boolean", "readOnly" : true }, "canAccessSalary" : { "type" : "boolean", "readOnly" : true }, "canAccessBalance" : { "type" : "boolean", "readOnly" : true }, "canAccessBank" : { "type" : "boolean", "readOnly" : true }, "hasGeneralIndustry" : { "type" : "boolean", "description" : "Only populated when canAccessVat is true and customerCompanyId > 0", "readOnly" : true }, "hasPrimaryIndustry" : { "type" : "boolean", "description" : "Only populated when canAccessVat is true and customerCompanyId > 0", "readOnly" : true }, "ameldingStatuses" : { "type" : "array", "description" : "A-melding summary status per month for the requested year. Only populated when canAccessSalary is true.", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/AmeldingPeriodStatus" } } } }, "ResponseWrapperClientOverviewContext" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ClientOverviewContext" } } }, "ReconciliationControl" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "reconciliationId" : { "type" : "integer", "description" : "The ID of the reconciliation this control is associated with", "format" : "int64" }, "employee" : { "$ref" : "#/components/schemas/Employee" }, "timestamp" : { "type" : "string", "description" : "The timestamp when the control was performed" }, "type" : { "type" : "string", "description" : "The type of control performed", "example" : "RECONCILED, CONTROL_REQUESTED, CONTROLLED", "enum" : [ "RECONCILED", "CONTROL_REQUESTED", "CONTROLLED" ] } }, "description" : "Reconciliation controls for the aggregated reconciliations", "readOnly" : true }, "ResponseWrapperReconciliationControl" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ReconciliationControl" } } }, "ListResponseReconciliationControl" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ReconciliationControl" } } } }, "ReconciliationPermissions" : { "type" : "object", "properties" : { "canAccessVat" : { "type" : "boolean", "readOnly" : true }, "canAccessSalary" : { "type" : "boolean", "readOnly" : true }, "canAccessBalance" : { "type" : "boolean", "readOnly" : true }, "canAccessBank" : { "type" : "boolean", "readOnly" : true } } }, "ResponseWrapperReconciliationPermissions" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ReconciliationPermissions" } } }, "ListResponseReconciliationValidation" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ReconciliationValidation" } } } }, "ReconciliationValidation" : { "type" : "object", "properties" : { "referenceId" : { "type" : "integer", "description" : "The referenced data", "format" : "int64", "readOnly" : true }, "message" : { "type" : "string", "description" : "The validation message", "readOnly" : true } }, "readOnly" : true }, "ReconciliationPeriodsOverview" : { "type" : "object", "properties" : { "year" : { "type" : "integer", "description" : "The year for this overview", "format" : "int32", "readOnly" : true }, "minYear" : { "type" : "integer", "description" : "The minimum year for which reconciliation terms are available", "format" : "int32", "readOnly" : true, "example" : 2020 }, "maxYear" : { "type" : "integer", "description" : "The maximum year for which reconciliation terms are available", "format" : "int32", "readOnly" : true, "example" : 2025 }, "periods" : { "type" : "array", "description" : "The terms available for the given year", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/AOReconciliationPeriod" } } } }, "ResponseWrapperReconciliationPeriodsOverview" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ReconciliationPeriodsOverview" } } }, "FinanceTaxOverview" : { "type" : "object", "properties" : { "account" : { "$ref" : "#/components/schemas/Account" }, "ledgerSum" : { "type" : "number", "description" : "Balance change sum from general ledger", "readOnly" : true, "example" : 15000.0 }, "ameldingSum" : { "type" : "number", "description" : "Sum reported to A-melding", "readOnly" : true, "example" : 15000.0 }, "taxAuthoritiesSum" : { "type" : "number", "description" : "Finance tax sum from the tax authorities", "readOnly" : true, "example" : 15000.0 }, "discrepancy" : { "type" : "number", "description" : "Discrepancy between ledger sum and A-melding sum", "readOnly" : true, "example" : 500.0 }, "financeTaxBasisSum" : { "type" : "number", "description" : "Sum of the finance tax basis", "readOnly" : true, "example" : 100000.0 }, "financeTaxSum" : { "type" : "number", "description" : "Sum of the finance tax", "readOnly" : true, "example" : 25000.0 }, "ledgerUri" : { "type" : "string", "description" : "The URI to the general ledger for a given account and period", "readOnly" : true } } }, "ResponseWrapperFinanceTaxOverview" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/FinanceTaxOverview" } } }, "AmeldingPeriodicPayment" : { "type" : "object", "properties" : { "startDate" : { "type" : "string", "description" : "Start date of the payment period", "format" : "date", "readOnly" : true }, "endDate" : { "type" : "string", "description" : "End date exclusive of the payment period", "format" : "date", "readOnly" : true }, "ledgerSum" : { "type" : "number", "description" : "Ledger sum of the payment", "readOnly" : true }, "ameldingSum" : { "type" : "number", "description" : "Amelding sum of the payment", "readOnly" : true }, "paidAmount" : { "type" : "number", "description" : "Paid amount of the payment", "readOnly" : true }, "paymentDate" : { "type" : "string", "description" : "Payment date", "format" : "date", "readOnly" : true }, "uri" : { "type" : "string", "description" : "URI of the payment resource", "format" : "uri", "readOnly" : true }, "restAmount" : { "type" : "number", "description" : "Rest amount of the payment", "readOnly" : true } }, "description" : "Amount of payments" }, "AmeldingPeriodicPaymentOverview" : { "type" : "object", "properties" : { "payments" : { "type" : "array", "description" : "Amount of payments", "items" : { "$ref" : "#/components/schemas/AmeldingPeriodicPayment" } }, "totalLedgerSum" : { "type" : "number", "description" : "Total ledger sum of all payments", "readOnly" : true }, "totalAmeldingSum" : { "type" : "number", "description" : "Total amelding sum of all payments", "readOnly" : true }, "totalPaidAmount" : { "type" : "number", "description" : "Total paid amount of all payments", "readOnly" : true }, "totalRestAmount" : { "type" : "number", "description" : "Total rest amount of all payments", "readOnly" : true } } }, "ResponseWrapperAmeldingPeriodicPaymentOverview" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/AmeldingPeriodicPaymentOverview" } } }, "FinanceTaxContext" : { "type" : "object", "properties" : { "year" : { "type" : "integer", "description" : "The year for the reconciliation context", "format" : "int32", "readOnly" : true }, "reconciliationId" : { "type" : "integer", "description" : "The ID of the reconciliation context", "format" : "int64", "readOnly" : true }, "term" : { "type" : "integer", "description" : "The term for the reconciliation context", "format" : "int32", "readOnly" : true } } }, "ResponseWrapperFinanceTaxContext" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/FinanceTaxContext" } } }, "FinanceTaxContextRequest" : { "type" : "object", "properties" : { "customerId" : { "type" : "integer", "description" : "The ID of the customer for whom the reconciliation context is requested", "format" : "int64", "writeOnly" : true }, "year" : { "type" : "integer", "description" : "The year for the reconciliation context", "format" : "int32", "writeOnly" : true }, "term" : { "type" : "integer", "description" : "The term of the reconciliation context", "format" : "int32", "writeOnly" : true } } }, "HolidayAllowanceDetails" : { "type" : "object", "properties" : { "outstandingVacationPayGeneralLedger" : { "type" : "number", "description" : "Amount of outstanding holiday allowance from general ledger", "readOnly" : true }, "outstandingVacationPayHolidayAllowanceReport" : { "type" : "number", "description" : "Amount of outstanding holiday allowance from holiday allowance report", "readOnly" : true }, "payrollTaxVacationPayGeneralLedger" : { "type" : "number", "description" : "Amount of payroll tax of holiday allowance from general ledger", "readOnly" : true }, "payrollTaxVacationPayHolidayAllowanceReport" : { "type" : "number", "description" : "Amount of outstanding holiday allowance from holiday allowance report", "readOnly" : true } } }, "ResponseWrapperHolidayAllowanceDetails" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/HolidayAllowanceDetails" } } }, "HolidayAllowanceSummary" : { "type" : "object", "properties" : { "rates" : { "uniqueItems" : true, "type" : "array", "description" : "List of holiday allowance rates", "readOnly" : true, "items" : { "type" : "number", "description" : "List of holiday allowance rates", "readOnly" : true } }, "creditPrevYearsByRate" : { "type" : "object", "additionalProperties" : { "type" : "number", "description" : "Holiday allowance credit from previous years", "readOnly" : true }, "description" : "Holiday allowance credit from previous years", "readOnly" : true }, "earnedThisYearByRate" : { "type" : "object", "additionalProperties" : { "type" : "number", "description" : "Holiday allowance earned this year", "readOnly" : true }, "description" : "Holiday allowance earned this year", "readOnly" : true }, "earnedAndPaidThisYearByRate" : { "type" : "object", "additionalProperties" : { "type" : "number", "description" : "Holiday allowance earned and paid this year", "readOnly" : true }, "description" : "Holiday allowance earned and paid this year", "readOnly" : true }, "creditThisYearByRate" : { "type" : "object", "additionalProperties" : { "type" : "number", "description" : "Holiday allowance credit this year", "readOnly" : true }, "description" : "Holiday allowance credit this year", "readOnly" : true }, "totalCreditPrevYears" : { "type" : "number", "description" : "Total holiday allowance credit from previous years", "readOnly" : true }, "totalEarnedThisYear" : { "type" : "number", "description" : "Total holiday allowance earned this year", "readOnly" : true }, "totalEarnedAndPaidThisYear" : { "type" : "number", "description" : "Total holiday allowance earned and paid this year", "readOnly" : true }, "totalCreditThisYear" : { "type" : "number", "description" : "Total holiday allowance credit this year", "readOnly" : true } } }, "ResponseWrapperHolidayAllowanceSummary" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/HolidayAllowanceSummary" } } }, "HolidayAllowanceContext" : { "type" : "object", "properties" : { "year" : { "type" : "integer", "description" : "The year for the reconciliation context", "format" : "int32", "readOnly" : true }, "reconciliationId" : { "type" : "integer", "description" : "The ID of the reconciliation context", "format" : "int64", "readOnly" : true }, "term" : { "type" : "integer", "description" : "The term for the reconciliation context", "format" : "int32", "readOnly" : true } } }, "ResponseWrapperHolidayAllowanceContext" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/HolidayAllowanceContext" } } }, "HolidayAllowanceContextRequest" : { "type" : "object", "properties" : { "customerId" : { "type" : "integer", "description" : "The ID of the customer for whom the reconciliation context is requested", "format" : "int64", "writeOnly" : true }, "year" : { "type" : "integer", "description" : "The year for the reconciliation context", "format" : "int32", "writeOnly" : true }, "term" : { "type" : "integer", "description" : "The term of the reconciliation context", "format" : "int32", "writeOnly" : true } } }, "MandatoryDeductionOverview" : { "type" : "object", "properties" : { "account" : { "$ref" : "#/components/schemas/Account" }, "ledgerSum" : { "type" : "number", "description" : "Total ledger sum of mandatory deduction", "readOnly" : true }, "ameldingSum" : { "type" : "number", "description" : "Total amelding sum of mandatory deduction", "readOnly" : true }, "discrepancy" : { "type" : "number", "description" : "Total discrepancy of mandatory deduction overview", "readOnly" : true }, "periodOverviews" : { "type" : "array", "description" : "Mandatory deduction overview per period", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/MandatoryDeductionPeriodOverview" } } } }, "MandatoryDeductionPeriodOverview" : { "type" : "object", "properties" : { "epochDays" : { "type" : "integer", "description" : "Period represented as epoch days for this particular overview of mandatory deduction", "format" : "int64", "readOnly" : true }, "ledgerSum" : { "type" : "number", "description" : "Ledger sum of this particular overview of mandatory deduction", "readOnly" : true }, "ameldingSum" : { "type" : "number", "description" : "Amelding sum of this particular overview of mandatory deduction", "readOnly" : true }, "discrepancy" : { "type" : "number", "description" : "Discrepancy of this particular overview of mandatory deduction", "readOnly" : true }, "ledgerUri" : { "type" : "string", "description" : "The URI to the general ledger for the mandatory deduction account and period", "readOnly" : true } }, "description" : "Mandatory deduction overview per period", "readOnly" : true }, "ResponseWrapperMandatoryDeductionOverview" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/MandatoryDeductionOverview" } } }, "MandatoryDeductionContext" : { "type" : "object", "properties" : { "year" : { "type" : "integer", "description" : "The year for the reconciliation context", "format" : "int32", "readOnly" : true }, "reconciliationId" : { "type" : "integer", "description" : "The ID of the reconciliation context", "format" : "int64", "readOnly" : true }, "term" : { "type" : "integer", "description" : "The term for the reconciliation context", "format" : "int32", "readOnly" : true } } }, "ResponseWrapperMandatoryDeductionContext" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/MandatoryDeductionContext" } } }, "MandatoryDeductionContextRequest" : { "type" : "object", "properties" : { "customerId" : { "type" : "integer", "description" : "The ID of the customer for whom the reconciliation context is requested", "format" : "int64", "writeOnly" : true }, "year" : { "type" : "integer", "description" : "The year for the reconciliation context", "format" : "int32", "writeOnly" : true }, "term" : { "type" : "integer", "description" : "The term of the reconciliation context", "format" : "int32", "writeOnly" : true } } }, "PayrollTaxOverview" : { "type" : "object", "properties" : { "account" : { "$ref" : "#/components/schemas/Account" }, "ledgerSum" : { "type" : "number", "description" : "Balance change sum from general ledger", "readOnly" : true, "example" : 15000.0 }, "ameldingSum" : { "type" : "number", "description" : "Sum reported to A-melding", "readOnly" : true, "example" : 14500.0 }, "discrepancy" : { "type" : "number", "description" : "Discrepancy between ledger sum and A-melding sum", "readOnly" : true, "example" : 500.0 }, "taxAuthoritiesSum" : { "type" : "number", "description" : "Payroll tax sum from the tax authorities", "readOnly" : true, "example" : 15000.0 }, "aggregatedZones" : { "type" : "array", "description" : "Aggregated payroll tax zone information", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/PayrollTaxZoneInfo" } }, "ledgerUri" : { "type" : "string", "description" : "The URI to the general ledger for the payroll tax account and period", "readOnly" : true } } }, "PayrollTaxZoneInfo" : { "type" : "object", "properties" : { "displayName" : { "type" : "string", "description" : "Display name for the payroll tax zone", "readOnly" : true, "example" : "Zone 1a (14.10%)" }, "zone" : { "type" : "string", "description" : "Payroll tax zone", "readOnly" : true, "example" : "1a" }, "taxPercentage" : { "type" : "number", "description" : "Tax percentage for the zone", "readOnly" : true, "example" : 14.1 }, "amountBasisSum" : { "type" : "number", "description" : "Sum of amount basis for the zone", "readOnly" : true, "example" : 100000.0 }, "reimbursementSum" : { "type" : "number", "description" : "Sum of reimbursements for the zone", "readOnly" : true, "example" : 5000.0 }, "pensionSum" : { "type" : "number", "description" : "Sum of pensions for the zone", "readOnly" : true, "example" : 2000.0 }, "payrollTaxSum" : { "type" : "number", "description" : "Sum of payroll tax for the zone", "readOnly" : true, "example" : 14100.0 } }, "description" : "Aggregated payroll tax zone information", "readOnly" : true }, "ResponseWrapperPayrollTaxOverview" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/PayrollTaxOverview" } } }, "PayrollTaxContext" : { "type" : "object", "properties" : { "year" : { "type" : "integer", "description" : "The year for the reconciliation context", "format" : "int32", "readOnly" : true }, "reconciliationId" : { "type" : "integer", "description" : "The ID of the reconciliation context", "format" : "int64", "readOnly" : true }, "term" : { "type" : "integer", "description" : "The term for the reconciliation context", "format" : "int32", "readOnly" : true } } }, "ResponseWrapperPayrollTaxContext" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/PayrollTaxContext" } } }, "PayrollTaxContextRequest" : { "type" : "object", "properties" : { "customerId" : { "type" : "integer", "description" : "The ID of the customer for whom the reconciliation context is requested", "format" : "int64", "writeOnly" : true }, "year" : { "type" : "integer", "description" : "The year for the reconciliation context", "format" : "int32", "writeOnly" : true }, "term" : { "type" : "integer", "description" : "The term of the reconciliation context", "format" : "int32", "writeOnly" : true } } }, "ResponseWrapperSalaryReconAggrContext" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/SalaryReconAggrContext" } } }, "SalaryReconAggrContext" : { "type" : "object", "properties" : { "reconciliations" : { "type" : "array", "description" : "Reconciliations included in this aggregation", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Reconciliation" } }, "reconciliationControls" : { "type" : "array", "description" : "Reconciliation controls for the aggregated reconciliations", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ReconciliationControl" } }, "requiresControl" : { "type" : "boolean", "description" : "Any of the aggregated reconciliations that has been marked as requires control", "readOnly" : true }, "reconciliationTypes" : { "type" : "array", "description" : "The reconciliation types involved in this aggregation", "readOnly" : true, "items" : { "type" : "string", "description" : "The reconciliation types involved in this aggregation", "readOnly" : true, "enum" : [ "UNKNOWN", "VAT_GENERAL_INDUSTRY", "VAT_PRIMARY_INDUSTRY", "SALARY", "BALANCE", "PAYROLL_TAX", "TAX_DEDUCTION", "MANDATORY_DEDUCTION", "HOLIDAY_ALLOWANCE", "FINANCE_TAX", "ANNUAL_BALANCE" ] } } } }, "AmeldingStatusInternal" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "company" : { "$ref" : "#/components/schemas/Company" }, "ameldingActorEmployee" : { "$ref" : "#/components/schemas/Employee" }, "paymentActorEmployee" : { "$ref" : "#/components/schemas/Employee" }, "lastAmeldingActionTime" : { "type" : "string", "description" : "Time for last A-melding action", "readOnly" : true }, "lastPaymentActionTime" : { "type" : "string", "description" : "Time for last payment of taxes (etc) action", "readOnly" : true }, "ameldingSummaryStatus" : { "type" : "string", "description" : "Summary of current A-melding status in period", "readOnly" : true, "enum" : [ "completed", "notCompleted", "awaitingResponse" ] }, "ameldingDetailedStatus" : { "type" : "string", "description" : "Detailed status of current A-melding situation in period", "readOnly" : true, "enum" : [ "noAmeldingExists", "ameldingRejected", "ameldingExistsNotSent", "nonReportedWageinfo", "ameldingCancelledAwaitingReturnMessage", "ameldingSentAwaitingReturnMessage", "nonBlockingReturnMessage", "blockingReturnMessage", "okReturnMessage", "unknown" ] }, "taxDeductionAccrued" : { "type" : "number", "description" : "Tax deduction amount accrued from a-melding", "readOnly" : true }, "payrollTaxAccrued" : { "type" : "number", "description" : "Payroll tax (ENI) amount accrued from a-melding", "readOnly" : true }, "financeTaxAccrued" : { "type" : "number", "description" : "Finance tax amount accrued from a-melding", "readOnly" : true }, "mandatoryDeductionAccrued" : { "type" : "number", "description" : "Mandatory deduction amount accrued from a-melding", "readOnly" : true }, "taxDeductionNotPaid" : { "type" : "number", "description" : "Tax deduction amount not paid", "readOnly" : true }, "payrollTaxNotPaid" : { "type" : "number", "description" : "Payroll tax (ENI) amount not paid", "readOnly" : true }, "financeTaxNotPaid" : { "type" : "number", "description" : "Finance tax amount not paid", "readOnly" : true }, "mandatoryDeductionNotPaid" : { "type" : "number", "description" : "Mandatory deduction amount not paid", "readOnly" : true }, "taxPeriodName" : { "type" : "string", "description" : "Name of the period the tax is accrued", "readOnly" : true } } }, "PairAmeldingStatusInternalAmeldingStatusInternal" : { "type" : "object", "properties" : { "first" : { "$ref" : "#/components/schemas/AmeldingStatusInternal" }, "second" : { "$ref" : "#/components/schemas/AmeldingStatusInternal" } } }, "ResponseWrapperPairAmeldingStatusInternalAmeldingStatusInternal" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/PairAmeldingStatusInternalAmeldingStatusInternal" } } }, "ResponseWrapperSalaryReconciliationOverview" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/SalaryReconciliationOverview" } } }, "SalaryReconciliationOverview" : { "type" : "object", "properties" : { "period" : { "$ref" : "#/components/schemas/AOReconciliationPeriod" }, "groups" : { "type" : "array", "description" : "The relevant VAT groups", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/SalaryReconciliationOverviewGroup" } } } }, "SalaryReconciliationOverviewGroup" : { "type" : "object", "properties" : { "displayName" : { "type" : "string", "description" : "The human readable name of the group", "readOnly" : true }, "lines" : { "type" : "array", "description" : "The lines of data in the group", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/SalaryReconciliationOverviewGroupLine" } } }, "description" : "The relevant VAT groups", "readOnly" : true }, "SalaryReconciliationOverviewGroupLine" : { "type" : "object", "properties" : { "accountId" : { "type" : "integer", "description" : "The ID of the relevant account", "format" : "int64", "readOnly" : true }, "displayName" : { "type" : "string", "description" : "The human-readable name of the account", "readOnly" : true }, "ledgerData" : { "type" : "number", "description" : "The value calculated from the current ledger", "readOnly" : true }, "reportedData" : { "type" : "number", "description" : "The value that was reported to the tax authority", "readOnly" : true }, "taxAuthorityData" : { "type" : "number", "description" : "The value that the tax authority has on record for this account", "readOnly" : true }, "differences" : { "type" : "number", "description" : "The difference between the current ledger data and the reported VAT data", "readOnly" : true } }, "description" : "The lines of data in the group", "readOnly" : true }, "RateAmount" : { "type" : "object", "properties" : { "rate" : { "type" : "number", "description" : "The rate for the vacation pay", "readOnly" : true }, "amount" : { "type" : "number", "description" : "The amount for the vacation pay", "readOnly" : true } }, "description" : "Represents a rate and its corresponding amount", "readOnly" : true }, "ResponseWrapperSalaryReconciliationVacationPay" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/SalaryReconciliationVacationPay" } } }, "SalaryReconciliationVacationPay" : { "type" : "object", "properties" : { "vacationPayBasis" : { "type" : "number", "description" : "The basis amount that the accrued vacation pay is derived from", "readOnly" : true }, "vacationPayRateAmounts" : { "type" : "array", "description" : "The list of vacation pay rates and their corresponding amounts", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/RateAmount" } }, "extraVacationPay" : { "type" : "number", "description" : "The total amount of extra vacation pay given to those over 60 years old", "readOnly" : true }, "earlySettledVacationPay" : { "type" : "number", "description" : "The total amount of vacation pay that was paid in the same fiscal year as it was earned", "readOnly" : true }, "prevYearOwedVacationPay" : { "type" : "number", "description" : "The total amount of owed vacation pay from the previous year", "readOnly" : true }, "prevYearSettledVacationPay" : { "type" : "number", "description" : "The total amount of owed vacation pay disbursed in the current year", "readOnly" : true } } }, "ResponseWrapperDate" : { "type" : "object", "properties" : { "value" : { "type" : "string", "format" : "date-time" } } }, "ResponseWrapperSalaryContext" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/SalaryContext" } } }, "SalaryContext" : { "type" : "object", "properties" : { "year" : { "type" : "integer", "description" : "The year for the reconciliation context", "format" : "int32", "readOnly" : true }, "reconciliationId" : { "type" : "integer", "description" : "The ID of the reconciliation context", "format" : "int64", "readOnly" : true }, "term" : { "type" : "integer", "description" : "The term for the reconciliation context", "format" : "int32", "readOnly" : true } } }, "SalaryContextRequest" : { "type" : "object", "properties" : { "customerId" : { "type" : "integer", "description" : "The ID of the customer for whom the reconciliation context is requested", "format" : "int64", "writeOnly" : true }, "year" : { "type" : "integer", "description" : "The year for the reconciliation context", "format" : "int32", "writeOnly" : true }, "term" : { "type" : "integer", "description" : "The term of the reconciliation context", "format" : "int32", "writeOnly" : true } } }, "ResponseWrapperTaxDeductionOverview" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/TaxDeductionOverview" } } }, "TaxDeductionOverview" : { "type" : "object", "properties" : { "account" : { "$ref" : "#/components/schemas/Account" }, "startDate" : { "type" : "string", "description" : "Start date of the term of the payments", "format" : "date" }, "endDate" : { "type" : "string", "description" : "End date of the term of the payments", "format" : "date" }, "registeredPayments" : { "type" : "array", "description" : "The registered tax deduction payments for each term", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/TaxDeductionRegisteredPayment" } }, "aggregatedLedgerSum" : { "type" : "number", "description" : "Aggregated general ledger sum for the term", "readOnly" : true }, "aggregatedAmeldingSum" : { "type" : "number", "description" : "Aggregated A-melding sum for the term", "readOnly" : true }, "aggregatedTaxAuthoritiesSum" : { "type" : "number", "description" : "Aggregated withholding tax sum from the tax authorities for the term", "readOnly" : true }, "aggregatedDiscrepancy" : { "type" : "number", "description" : "Aggregated discrepancy between ledger sum and tax authorities sum for the term", "readOnly" : true } } }, "TaxDeductionRegisteredPayment" : { "type" : "object", "properties" : { "ledgerSum" : { "type" : "number", "description" : "General ledger sum for the registered payment", "readOnly" : true }, "ameldingSum" : { "type" : "number", "description" : "A-melding sum for the registered payment", "readOnly" : true }, "discrepancy" : { "type" : "number", "description" : "Discrepancy between ledger sum and A-melding sum for the registered payment", "readOnly" : true }, "epochDays" : { "type" : "number", "description" : "the date containing the month of the registered payment in epoch days", "readOnly" : true }, "ledgerUri" : { "type" : "string", "description" : "The URI to the general ledger for the tax deduction account and period", "readOnly" : true }, "taxAuthoritiesSum" : { "type" : "number", "description" : "Withholding tax sum from the tax authorities", "readOnly" : true, "example" : 15000.0 } }, "description" : "The registered tax deduction payments for each term", "readOnly" : true }, "ResponseWrapperSalaryTaxDeductionReconciliation" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/SalaryTaxDeductionReconciliation" } } }, "SalaryTaxDeductionReconciliation" : { "type" : "object", "properties" : { "taxDeductionBalance" : { "type" : "number", "description" : "The tax deduction balance", "readOnly" : true }, "taxDeductionOwedAmount" : { "type" : "number", "description" : "The tax deduction owed amount", "readOnly" : true }, "taxDeductionAccountNumber" : { "type" : "integer", "description" : "The tax deduction account number", "format" : "int32", "readOnly" : true }, "taxDeductionAccountName" : { "type" : "string", "description" : "The tax deduction account name", "readOnly" : true } } }, "ResponseWrapperTaxDeductionContext" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/TaxDeductionContext" } } }, "TaxDeductionContext" : { "type" : "object", "properties" : { "year" : { "type" : "integer", "description" : "The year for the reconciliation context", "format" : "int32", "readOnly" : true }, "reconciliationId" : { "type" : "integer", "description" : "The ID of the reconciliation context", "format" : "int64", "readOnly" : true }, "term" : { "type" : "integer", "description" : "The term for the reconciliation context", "format" : "int32", "readOnly" : true } } }, "TaxDeductionContextRequest" : { "type" : "object", "properties" : { "customerId" : { "type" : "integer", "description" : "The ID of the customer for whom the reconciliation context is requested", "format" : "int64", "writeOnly" : true }, "year" : { "type" : "integer", "description" : "The year for the reconciliation context", "format" : "int32", "writeOnly" : true }, "term" : { "type" : "integer", "description" : "The term of the reconciliation context", "format" : "int32", "writeOnly" : true } } }, "ResponseWrapperVatReconciliationOverview" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/VatReconciliationOverview" } } }, "VatReconciliationOverview" : { "type" : "object", "properties" : { "period" : { "$ref" : "#/components/schemas/AOReconciliationPeriod" }, "groups" : { "type" : "array", "description" : "The relevant VAT groups", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/VatReconciliationOverviewGroup" } } } }, "VatReconciliationOverviewGroup" : { "type" : "object", "properties" : { "displayName" : { "type" : "string", "description" : "The human readable name of the VAT group", "readOnly" : true }, "lines" : { "type" : "array", "description" : "The VAT entries in the group", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/VatReconciliationOverviewGroupLine" } } }, "description" : "The relevant VAT groups", "readOnly" : true }, "VatReconciliationOverviewGroupLine" : { "type" : "object", "properties" : { "vatTypeId" : { "type" : "integer", "description" : "The ID of the relevant VAT type", "format" : "int64", "readOnly" : true }, "displayName" : { "type" : "string", "description" : "The human-readable name of the VAT type", "readOnly" : true }, "ledgerData" : { "type" : "number", "description" : "The value calculated from the current ledger", "readOnly" : true }, "basis" : { "type" : "number", "description" : "The basis for the VAT calculation", "readOnly" : true }, "ledgerDataAtPreviousReconciliation" : { "type" : "number", "description" : "The value calculated from the ledger at the time of the previous reconciliation", "readOnly" : true }, "reportedData" : { "type" : "number", "description" : "The value that was sent in the VAT report", "readOnly" : true }, "taxAdminData" : { "type" : "number", "description" : "The value that was recorded at the tax authority at the last time of synchronization", "readOnly" : true }, "difference" : { "type" : "number", "description" : "The difference between the current ledger data and the reported VAT data", "readOnly" : true } }, "description" : "The VAT entries in the group", "readOnly" : true }, "ResponseWrapperVatReportTypes" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/VatReportTypes" } } }, "VatReportTypes" : { "type" : "object", "properties" : { "hasGeneralIndustry" : { "type" : "boolean", "readOnly" : true }, "hasPrimaryIndustry" : { "type" : "boolean", "readOnly" : true } } }, "ResponseWrapperVatStatus" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/VatStatus" } } }, "VatDeliveryStatus" : { "type" : "object", "properties" : { "status" : { "type" : "string", "description" : "The delivery status of the VAT", "readOnly" : true, "enum" : [ "NOT_STARTED", "NOT_SENT", "SENDING", "WAITING_FOR_REPLY", "RECEIPT_RECEIVED", "MANUAL_DELIVERY", "DELIVERY_FORBIDDEN", "FAILED" ] }, "employee" : { "$ref" : "#/components/schemas/Employee" }, "time" : { "type" : "string", "description" : "Date and time the delivery status was updated", "readOnly" : true } }, "description" : "The delivery status", "readOnly" : true }, "VatPaymentStatus" : { "type" : "object", "properties" : { "status" : { "type" : "string", "description" : "The payment status of the VAT", "readOnly" : true, "enum" : [ "NOT_STARTED", "NOT_PAID", "NO_TAX_TO_PAY", "AMOUNT_CREDITED", "PAYMENT_REGISTERED" ] }, "totalAmount" : { "type" : "number", "description" : "Total amount in NOK", "readOnly" : true }, "remainingAmount" : { "type" : "number", "description" : "Remaining amount in NOK", "readOnly" : true }, "employee" : { "$ref" : "#/components/schemas/Employee" }, "time" : { "type" : "string", "description" : "Date and time the delivery status was updated", "readOnly" : true } }, "description" : "The payment status", "readOnly" : true }, "VatStatus" : { "type" : "object", "properties" : { "company" : { "$ref" : "#/components/schemas/Company" }, "voucherNumber" : { "type" : "integer", "description" : "Vat delivery voucher number", "format" : "int32", "readOnly" : true }, "year" : { "minimum" : 2022, "type" : "integer", "description" : "Year of VAT", "format" : "int32", "readOnly" : true }, "term" : { "type" : "integer", "description" : "VAT term", "format" : "int32", "readOnly" : true }, "vatReturns2022Id" : { "type" : "integer", "description" : "The id for the vat return", "format" : "int64", "readOnly" : true }, "totalAmountVatBasis" : { "type" : "number", "description" : "Total amount of VAT report baseline", "readOnly" : true }, "deliveryStatus" : { "$ref" : "#/components/schemas/VatDeliveryStatus" }, "paymentStatus" : { "$ref" : "#/components/schemas/VatPaymentStatus" } }, "readOnly" : true }, "ResponseWrapperVatContext" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/VatContext" } } }, "VatContext" : { "type" : "object", "properties" : { "year" : { "type" : "integer", "description" : "The year for the reconciliation context", "format" : "int32", "readOnly" : true }, "reconciliationId" : { "type" : "integer", "description" : "The ID of the reconciliation context", "format" : "int64", "readOnly" : true }, "term" : { "type" : "integer", "description" : "The term for the reconciliation context", "format" : "int32", "readOnly" : true }, "vatReportType" : { "type" : "string", "description" : "The type of VAT report for the VAT reconciliation context", "readOnly" : true, "enum" : [ "PRIMARY_INDUSTRY", "GENERAL_INDUSTRY" ] } } }, "VatContextRequest" : { "type" : "object", "properties" : { "customerId" : { "type" : "integer", "description" : "The ID of the customer for whom the reconciliation context is requested", "format" : "int64", "writeOnly" : true }, "year" : { "type" : "integer", "description" : "The year for the reconciliation context", "format" : "int32", "writeOnly" : true }, "term" : { "type" : "integer", "description" : "The term of the reconciliation context", "format" : "int32", "writeOnly" : true }, "vatReportType" : { "type" : "string", "description" : "The type of VAT report for the VAT reconciliation context", "writeOnly" : true, "example" : "GENERAL_INDUSTRY" } } }, "ResponseWrapperTaxAdminSyncResult" : { "type" : "object", "properties" : { "value" : { "type" : "string", "enum" : [ "NO_DATA", "SYNCHRONIZED" ] } } }, "AprilaCashCreditApplicationResponseDTO" : { "type" : "object", "properties" : { "signUpUrl" : { "type" : "string", "readOnly" : true }, "status" : { "type" : "string", "readOnly" : true, "enum" : [ "PREQUALIFIED", "READY_FOR_SIGNUP", "SUBMITTED", "SIGNED", "COMPLETED", "REJECTED", "CANCELLED", "ERROR", "PENDING_NEW_SIGNATURE" ] }, "statusReason" : { "type" : "string", "readOnly" : true }, "activeProduct" : { "type" : "boolean", "readOnly" : true }, "submittedApplication" : { "type" : "boolean", "readOnly" : true }, "maxCreditLimitAmount" : { "type" : "number", "readOnly" : true }, "maxCreditLimitCurrency" : { "type" : "string", "readOnly" : true }, "annualInterestRate" : { "type" : "number", "readOnly" : true }, "monthlyInterestRate" : { "type" : "number", "readOnly" : true }, "monthlyFeeAmount" : { "type" : "number", "readOnly" : true }, "monthlyFeeCurrency" : { "type" : "string", "readOnly" : true } } }, "ResponseWrapperAprilaCashCreditApplicationResponseDTO" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/AprilaCashCreditApplicationResponseDTO" } } }, "ResponseWrapperNumber" : { "type" : "object", "properties" : { "value" : { "type" : "number", "description" : "Numeric value" } }, "description" : "Response wrapper for a number value." }, "ResponseWrapperVoucher" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/Voucher" } } }, "AssetDepreciationSpecification" : { "type" : "object", "properties" : { "assetId" : { "type" : "integer", "description" : "Asset id", "format" : "int64" }, "amount" : { "type" : "number", "description" : "For STRAIGHT_LINE: the total amount to write off. FOR TAX_RELATED: the base amount to calculate the write off amounts from. Not used for CUSTOM" }, "balanceAccount" : { "$ref" : "#/components/schemas/Account" }, "depreciationAccount" : { "$ref" : "#/components/schemas/Account" }, "noOfMonths" : { "minimum" : 0, "type" : "integer", "description" : "The depreciation period in months.", "format" : "int32" }, "depreciationMethod" : { "type" : "string", "description" : "The depreciation method.", "enum" : [ "MANUAL", "TAX_RELATED", "STRAIGHT_LINE", "CUSTOMIZED_AMOUNT", "NO_DEPRECIATION" ] }, "startDate" : { "type" : "string", "description" : "The start date for the depreciation. This will also be the voucher date" }, "customMonthlyWriteOffAmount" : { "type" : "number", "description" : "The monthly amount to write off. Only used for CUSTOM" }, "taxRelatedDepreciationPercentage" : { "type" : "number", "description" : "How many percent to depreciate for each year. Only used for TAX_RELATED" }, "diff" : { "type" : "number", "description" : "Difference" }, "depreciationRate" : { "type" : "number", "description" : "How many percent to depreciate for each year. Only used for TAX_RELATED" } } }, "AssetGroup" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "description" : { "type" : "string", "readOnly" : true }, "assetCount" : { "minimum" : 0, "type" : "integer", "format" : "int32", "readOnly" : true }, "acquisitionCostSum" : { "type" : "number", "readOnly" : true }, "balanceInSum" : { "type" : "number", "readOnly" : true }, "balanceOutSum" : { "type" : "number", "readOnly" : true }, "balanceChangeSum" : { "type" : "number", "readOnly" : true }, "assets" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Asset" } }, "startingBalance" : { "type" : "number", "readOnly" : true }, "balanceInAccount" : { "type" : "number", "readOnly" : true }, "sumStartingBalance" : { "type" : "number", "readOnly" : true } }, "readOnly" : true }, "AssetOverview" : { "type" : "object", "properties" : { "assetGroups" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/AssetGroup" } }, "startDate" : { "type" : "string", "readOnly" : true }, "endDate" : { "type" : "string", "readOnly" : true }, "establishedDate" : { "type" : "string", "readOnly" : true }, "hasStartingBalanceVoucher" : { "type" : "boolean", "readOnly" : true } } }, "ResponseWrapperAssetOverview" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/AssetOverview" } } }, "ListResponseVoucher" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Voucher" } } } }, "ResponseWrapperAsset" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/Asset" } } }, "ResponseWrapperMapIntegerString" : { "type" : "object", "properties" : { "value" : { "type" : "object", "additionalProperties" : { "type" : "string" } } } }, "AssetDeleteInfo" : { "type" : "object", "properties" : { "assetCount" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "importDate" : { "type" : "string", "readOnly" : true }, "canDelete" : { "type" : "boolean", "readOnly" : true } } }, "ResponseWrapperAssetDeleteInfo" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/AssetDeleteInfo" } } }, "ListResponsePosting" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Posting" } } } }, "ListResponseAsset" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Asset" } } } }, "AssetAccountRow" : { "type" : "object", "properties" : { "accountNumber" : { "type" : "string", "description" : "Account number" }, "accountName" : { "type" : "string", "description" : "Account name" }, "assets" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/AssetImport" } }, "balanceDifference" : { "type" : "number", "description" : "Balance difference. This is the sum amount on the account that is not connected to an asset after the import." } }, "readOnly" : true }, "AssetImport" : { "type" : "object", "properties" : { "name" : { "type" : "string" }, "lifetime" : { "minimum" : 0, "type" : "integer", "format" : "int32" }, "dateOfAcquisition" : { "type" : "string" }, "description" : { "type" : "string" }, "acquisitionCost" : { "type" : "number", "description" : "Acquisition cost." }, "incomingBalance" : { "type" : "number", "description" : "Incoming balance for the asset." }, "externalAccumulatedDepreciation" : { "type" : "number", "description" : "Accumulated depreciation for the asset." } }, "description" : "Assets" }, "ListResponseAssetAccountRow" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/AssetAccountRow" } } } }, "ResponseWrapperAttestation" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/Attestation" } } }, "NewApproverBody" : { "type" : "object", "properties" : { "attestationId" : { "type" : "integer", "format" : "int64" }, "employeeId" : { "type" : "integer", "format" : "int64" }, "note" : { "type" : "string" }, "position" : { "type" : "string", "enum" : [ "BEFORE", "AFTER" ] }, "attestationObjectId" : { "type" : "integer", "format" : "int64" } } }, "AddApproverPermission" : { "type" : "object", "properties" : { "isAttestationFirstLevel" : { "type" : "boolean" }, "canAddBeforeOrAfter" : { "type" : "boolean" } } }, "ResponseWrapperAddApproverPermission" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/AddApproverPermission" } } }, "AttestationAuth" : { "type" : "object", "properties" : { "hasAttestationPro" : { "type" : "boolean", "readOnly" : true }, "authorizedTypes" : { "type" : "array", "readOnly" : true, "items" : { "type" : "string", "readOnly" : true, "enum" : [ "SUPPLIER_INVOICE", "TRAVELS_AND_EXPENSES" ] } } } }, "ResponseWrapperAttestationAuth" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/AttestationAuth" } } }, "ListResponseAttestation" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Attestation" } } } }, "AttestationCompanyModules" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "allowPostingBeforeVoucherApproved" : { "type" : "boolean" } } }, "AttestationPage" : { "type" : "object", "properties" : { "attestations" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/Attestation" } }, "expenseSettings" : { "$ref" : "#/components/schemas/ExpenseSettings" }, "standIns" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/AttestationStandIn" } }, "settings" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/AttestationSettings" } }, "companyModules" : { "$ref" : "#/components/schemas/AttestationCompanyModules" } } }, "AttestationSettings" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "type" : { "type" : "string", "enum" : [ "SUPPLIER_INVOICE", "TRAVELS_AND_EXPENSES" ] }, "isInactive" : { "type" : "boolean" }, "sendReminders" : { "type" : "boolean" }, "remindAfterXDays" : { "minimum" : 0, "type" : "integer", "format" : "int32" }, "remindXDaysBeforeDue" : { "minimum" : 0, "type" : "integer", "format" : "int32" } } }, "AttestationStandIn" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "type" : { "type" : "string", "enum" : [ "SUPPLIER_INVOICE", "TRAVELS_AND_EXPENSES" ] }, "absentEmployee" : { "$ref" : "#/components/schemas/Employee" }, "standInEmployee" : { "$ref" : "#/components/schemas/Employee" }, "standInFromDate" : { "type" : "string" }, "standInToDate" : { "type" : "string" }, "isDeleted" : { "type" : "boolean" } }, "readOnly" : true }, "ExpenseSettings" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "canApproveOwnExpenses" : { "type" : "boolean" } } }, "ResponseWrapperAttestationCompanyModules" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/AttestationCompanyModules" } } }, "ResponseWrapperAttestationApprover" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/AttestationApprover" } } }, "ResponseWrapperAttestationLevel" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/AttestationLevel" } } }, "ResponseWrapperAttestationSettings" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/AttestationSettings" } } }, "ResponseWrapperAttestationStandIn" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/AttestationStandIn" } } }, "ListResponseAttestationStandIn" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/AttestationStandIn" } } } }, "AuthConfigDTO" : { "type" : "object", "properties" : { "loginUrl" : { "type" : "string" }, "logoutUrl" : { "type" : "string" } } }, "ResponseWrapperAuthConfigDTO" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/AuthConfigDTO" } } }, "BalanceSheetAccount" : { "type" : "object", "properties" : { "account" : { "$ref" : "#/components/schemas/Account" }, "balanceIn" : { "type" : "number", "readOnly" : true }, "balanceChange" : { "type" : "number", "readOnly" : true }, "balanceOut" : { "type" : "number", "readOnly" : true }, "startDate" : { "type" : "string", "description" : "The start date for this period - inclusive.", "readOnly" : true }, "endDate" : { "type" : "string", "description" : "The end date for this period - exclusive.", "readOnly" : true } }, "readOnly" : true }, "ListResponseBalanceSheetAccount" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/BalanceSheetAccount" } } } }, "BalanceSheetSettingsDTO" : { "type" : "object", "properties" : { "showEmployeeModule" : { "type" : "boolean", "readOnly" : true }, "showDepartmentModule" : { "type" : "boolean" }, "showProductModule" : { "type" : "boolean" } } }, "ResponseWrapperBalanceSheetSettingsDTO" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/BalanceSheetSettingsDTO" } } }, "BalanceSheet" : { "type" : "object", "properties" : { "rows" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/BalanceSheetRow" } }, "sumBalanceIn" : { "type" : "number", "readOnly" : true }, "sumBalanceChange" : { "type" : "number", "readOnly" : true }, "sumBalanceOut" : { "type" : "number", "readOnly" : true } } }, "BalanceSheetRow" : { "type" : "object", "properties" : { "accountId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "accountNumber" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "accountName" : { "type" : "string", "readOnly" : true }, "postingCount" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "balanceIn" : { "type" : "number", "readOnly" : true }, "balanceChange" : { "type" : "number", "readOnly" : true }, "balanceOut" : { "type" : "number", "readOnly" : true } }, "readOnly" : true }, "ResponseWrapperBalanceSheet" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/BalanceSheet" } } }, "ResponseWrapperBank" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/Bank" } } }, "ListResponseBank" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Bank" } } } }, "BankGlobals" : { "type" : "object", "properties" : { "remitPaymentType" : { "type" : "string", "readOnly" : true, "enum" : [ "OFF", "NETS", "AUTOPAY", "BOTH", "ZTL" ] }, "loginEmployeeId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "delegatorEmployeeId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "isAccountant" : { "type" : "boolean", "readOnly" : true }, "isAuthDirectRemitZtl" : { "type" : "boolean", "readOnly" : true }, "tripletexCustomerCategoryId2" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "isAuthAccountingSettings" : { "type" : "boolean", "readOnly" : true }, "companyName" : { "type" : "string", "readOnly" : true }, "actualEmployeeId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "orgNumber" : { "type" : "string", "readOnly" : true }, "isActiveAccountantProxy" : { "type" : "boolean", "readOnly" : true }, "isMySubscriptionAuth" : { "type" : "boolean", "readOnly" : true }, "accountantCompanyId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "isAuthBankDashboard" : { "type" : "boolean", "readOnly" : true }, "isAuthCashCredit" : { "type" : "boolean", "readOnly" : true }, "isAuthBankReconciliation" : { "type" : "boolean", "readOnly" : true }, "isAuthAutoPayZtlSwitch" : { "type" : "boolean", "readOnly" : true }, "isReadonlyLogin" : { "type" : "boolean", "readOnly" : true }, "moduleVoucherScanning" : { "type" : "boolean", "readOnly" : true } } }, "ResponseWrapperBankGlobals" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/BankGlobals" } } }, "BankDashboardAdvice" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "adviceType" : { "type" : "string", "description" : "The advice type.", "enum" : [ "SHORTEN_DUE_DATE_ON_OUTGOING_INVOICES_TO_CUSTOMERS", "INCREASE_DUE_DATE_ON_INCOMING_INVOICES_FROM_VENDORS", "APPLY_FOR_CASH_CREDIT_WITH_TRIPLETEX_APRILA" ] }, "isActive" : { "type" : "boolean", "description" : "The advice is active." }, "dateUpdated" : { "type" : "string", "description" : "The date the advice was updated." }, "isCancelled" : { "type" : "boolean", "description" : "The advice has been cancelled." }, "dateCancelled" : { "type" : "string", "description" : "The date the advice has been cancelled by the user." } }, "readOnly" : true }, "ResponseWrapperBankDashboardAdvice" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/BankDashboardAdvice" } } }, "ListResponseBankDashboardAdvice" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/BankDashboardAdvice" } } } }, "BankAgreementDTO" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "iban" : { "type" : "string", "description" : "The IBAN property." }, "bban" : { "type" : "string", "description" : "The BBAN property." }, "description" : { "type" : "string", "description" : "The description property.", "readOnly" : true }, "displayName" : { "type" : "string", "description" : "display name needed for LoadableDropdown component", "readOnly" : true }, "account" : { "$ref" : "#/components/schemas/Account" }, "uploaderEmployee" : { "$ref" : "#/components/schemas/Employee" }, "dateCreated" : { "type" : "string" }, "bank" : { "$ref" : "#/components/schemas/Bank" }, "country" : { "$ref" : "#/components/schemas/Country" }, "currency" : { "$ref" : "#/components/schemas/Currency" }, "isActive" : { "type" : "boolean", "readOnly" : true }, "balance" : { "$ref" : "#/components/schemas/BankStatementBalance" }, "active" : { "type" : "boolean" } }, "readOnly" : true }, "BankStatementBalance" : { "type" : "object", "properties" : { "bookedAmount" : { "type" : "number", "description" : "Booked balance on the given date.", "readOnly" : true }, "bookedDate" : { "type" : "string", "readOnly" : true }, "availableAmount" : { "type" : "number", "description" : "Available balance.", "readOnly" : true }, "availableDate" : { "type" : "string", "readOnly" : true } } }, "ResponseWrapperBankAgreementDTO" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/BankAgreementDTO" } } }, "ResponseWrapperAutoPayStatus" : { "type" : "object", "properties" : { "value" : { "type" : "string", "enum" : [ "OK", "NOT_ACTIVE", "SERVICE_DOWN" ] } } }, "ElectronicSupportDTO" : { "type" : "object", "properties" : { "bankId" : { "type" : "integer", "description" : "Bank ID", "format" : "int32", "readOnly" : true }, "bankName" : { "type" : "string", "description" : "Name of the bank", "readOnly" : true }, "type" : { "type" : "string", "description" : "Type of electronic agreement creation is supported by this bank.COMPLETE: Supports creating the agreement towards AutoPay and Tripletex though the bank.PARTIAL: Supports creating the agreement towards AutoPay only.", "readOnly" : true, "enum" : [ "PARTIAL", "COMPLETE", "PSD2" ] }, "bankUrl" : { "type" : "string", "description" : "Bank url for ordering electronic agreements for ElectronicSupportDTO of type PARTIAL.", "readOnly" : true } } }, "ResponseWrapperElectronicSupportDTO" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ElectronicSupportDTO" } } }, "ResponseWrapperListElectronicSupportDTO" : { "type" : "object", "properties" : { "value" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ElectronicSupportDTO" } } } }, "ResponseWrapperListInteger" : { "type" : "object", "properties" : { "value" : { "type" : "array", "items" : { "type" : "integer", "format" : "int32" } } } }, "ListResponseBankAgreementDTO" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/BankAgreementDTO" } } } }, "AutopayBankAgreement" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "iban" : { "type" : "string", "description" : "The IBAN property." }, "bban" : { "type" : "string", "description" : "The BBAN property." }, "description" : { "type" : "string", "description" : "The description property.", "readOnly" : true }, "displayName" : { "type" : "string", "description" : "display name needed for LoadableDropdown component", "readOnly" : true }, "account" : { "$ref" : "#/components/schemas/Account" }, "uploaderEmployee" : { "$ref" : "#/components/schemas/Employee" }, "dateCreated" : { "type" : "string" }, "bank" : { "$ref" : "#/components/schemas/Bank" }, "country" : { "$ref" : "#/components/schemas/Country" }, "currency" : { "$ref" : "#/components/schemas/Currency" }, "isActive" : { "type" : "boolean", "readOnly" : true }, "balance" : { "$ref" : "#/components/schemas/BankStatementBalance" }, "accountInBankId" : { "type" : "string" }, "division" : { "type" : "string" }, "ccmAgreementId" : { "type" : "string" }, "organisationNumber" : { "type" : "string" }, "approveInOnlineBanking" : { "type" : "boolean" }, "isUsed" : { "type" : "boolean" }, "active" : { "type" : "boolean" } } }, "ListResponseAutopayBankAgreement" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/AutopayBankAgreement" } } } }, "BankAgreementCreation" : { "type" : "object", "properties" : { "bankId" : { "type" : "integer", "description" : "Bank ID", "format" : "int32" }, "accountInBankId" : { "type" : "string", "description" : "Customer number in bank" }, "ccmAgreementId" : { "type" : "string", "description" : "Customer Id from Bank" }, "division" : { "type" : "string", "description" : "Division (DNB only)" }, "organizationNumber" : { "type" : "string", "description" : "Organization number" }, "electronicCreation" : { "type" : "boolean", "description" : "Electronic agreement creation initiated." }, "approveInOnlineBanking" : { "type" : "boolean", "description" : "Accounting approve payments" }, "bankAccounts" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/Account" } } } }, "BankAgreementUpdate" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "description" : "Id of agreement to update.", "format" : "int32" }, "description" : { "type" : "string", "description" : "The description property." }, "account" : { "$ref" : "#/components/schemas/Account" }, "accountInBankId" : { "type" : "string", "description" : "Customer number in bank" }, "organisationNumber" : { "type" : "string", "description" : "Organization number" }, "ccmAgreementId" : { "type" : "string", "description" : "CCM agreement ID" }, "approveInOnlineBanking" : { "type" : "boolean", "description" : "Accounting approve payments" } } }, "ResponseWrapperStoredPublicKey" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/StoredPublicKey" } } }, "StoredPublicKey" : { "type" : "object", "properties" : { "id" : { "type" : "string", "description" : "Public key id used for Platform Agnostic", "readOnly" : true }, "publicKey" : { "type" : "string", "description" : "Public key value used for Platform Agnostic", "readOnly" : true }, "algorithm" : { "type" : "string", "description" : "Signature algorithm used for Platform Agnostic", "readOnly" : true, "enum" : [ "RsaSha256", "RsaPssSha512", "EcdsaP256Sha256", "EcdsaP384Sha384", "Ed25519" ] }, "expiresOn" : { "type" : "string", "description" : "Date when the key will expire", "format" : "date-time", "readOnly" : true }, "privateKey" : { "type" : "string", "description" : "Private key value used for Platform Agnostic", "readOnly" : true } } }, "AutoPayCertificate" : { "type" : "object", "properties" : { "id" : { "type" : "string", "description" : "Certificate id used for Platform Agnostic", "readOnly" : true }, "certificateChain" : { "type" : "array", "description" : "Certificate value used for Platform Agnostic", "readOnly" : true, "items" : { "type" : "string", "description" : "Certificate value used for Platform Agnostic", "readOnly" : true } }, "algorithm" : { "type" : "string", "description" : "Signature algorithm used for Platform Agnostic", "readOnly" : true, "enum" : [ "RsaSha256", "RsaPssSha512", "EcdsaP256Sha256", "EcdsaP384Sha384", "Ed25519" ] } } }, "ResponseWrapperAutoPayCertificate" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/AutoPayCertificate" } } }, "PlatformAgnosticCreateKeyDTO" : { "type" : "object", "properties" : { "password" : { "type" : "string", "writeOnly" : true } } }, "BankIntegrationSwitch" : { "type" : "object", "properties" : { "isDeactivateModuleDisabled" : { "type" : "boolean", "readOnly" : true }, "isOngoing" : { "type" : "boolean", "readOnly" : true }, "hasAutoPayTransactions" : { "type" : "boolean", "readOnly" : true }, "showPaidAutoPayTransactions" : { "type" : "boolean", "readOnly" : true }, "showFxUpsaleBanner" : { "type" : "boolean", "readOnly" : true }, "page" : { "type" : "string" } } }, "ResponseWrapperBankIntegrationSwitch" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/BankIntegrationSwitch" } } }, "ListResponseZtlAccount" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ZtlAccount" } } } }, "ZtlAccount" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "name" : { "type" : "string" }, "account" : { "$ref" : "#/components/schemas/Account" }, "bban" : { "type" : "string", "readOnly" : true }, "iban" : { "type" : "string", "readOnly" : true }, "currency" : { "$ref" : "#/components/schemas/Currency" }, "availableBalanceCurrency" : { "type" : "number", "readOnly" : true }, "bookedBalanceCurrency" : { "type" : "number", "readOnly" : true }, "lastUpdated" : { "type" : "string", "description" : "Last time the account information was updated, mainly balance.", "readOnly" : true }, "deletable" : { "type" : "boolean", "readOnly" : true }, "bank" : { "$ref" : "#/components/schemas/Bank" } }, "description" : "Link to accounts this consent belongs to" }, "BankMaintenancePeriod" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "bank" : { "$ref" : "#/components/schemas/Bank" }, "integration" : { "type" : "string", "description" : "The integration for witch maintenance period if for.", "enum" : [ "AUTOPAY", "ZTL" ] }, "startDateTime" : { "type" : "string", "description" : "The start date time of maintenance period." }, "endDateTime" : { "type" : "string", "description" : "The end date time of maintenance period." }, "platform" : { "type" : "string", "description" : "Bank platform", "enum" : [ "UNKNOWN", "TIETO_EVRY", "SDC", "INDEPENDENT" ] } }, "readOnly" : true }, "ListResponseBankMaintenancePeriod" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/BankMaintenancePeriod" } } } }, "BankMergerPeriod" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "fromBanks" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/Bank" } }, "toBank" : { "$ref" : "#/components/schemas/Bank" }, "description" : { "type" : "string", "description" : "The description of the bank after merger." }, "startDate" : { "type" : "string", "description" : "The start date time of maintenance period." }, "endDate" : { "type" : "string", "description" : "The end date time of maintenance period." } }, "readOnly" : true }, "ListResponseBankMergerPeriod" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/BankMergerPeriod" } } } }, "BankOnboardingDTO" : { "type" : "object", "properties" : { "steps" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/BankOnboardingStep" } }, "hasFullAccess" : { "type" : "boolean", "readOnly" : true }, "companyOrgnr" : { "type" : "string", "readOnly" : true }, "autoPayTwoFAEnabled" : { "type" : "boolean", "readOnly" : true }, "lockedCurrenciesMap" : { "type" : "object", "additionalProperties" : { "type" : "boolean", "readOnly" : true }, "readOnly" : true }, "userIsAutoPayProvisioned" : { "type" : "boolean", "readOnly" : true } } }, "BankOnboardingStep" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "state" : { "type" : "string", "readOnly" : true, "enum" : [ "INCOMPLETE", "COMPLETED", "PROCESSING" ] }, "accessible" : { "type" : "boolean", "readOnly" : true } }, "readOnly" : true }, "ResponseWrapperBankOnboardingDTO" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/BankOnboardingDTO" } } }, "BankOnboardingAccessRequestDTO" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int32" }, "requesteeEmployeeId" : { "type" : "integer", "format" : "int32" }, "requesteeName" : { "type" : "string" }, "roleId" : { "type" : "integer", "format" : "int32" } } }, "AutoPayRolesResponse" : { "type" : "object", "properties" : { "roles" : { "type" : "array", "items" : { "type" : "string" } } }, "description" : "AutoPay roles response containing the list of roles for a user" }, "ResponseWrapperAutoPayRolesResponse" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/AutoPayRolesResponse" } } }, "ResponseWrapperListString" : { "type" : "object", "properties" : { "value" : { "type" : "array", "items" : { "type" : "string" } } } }, "AutoPayCompany" : { "type" : "object", "properties" : { "tenantId" : { "type" : "string", "description" : "The tenantId representing this company.", "readOnly" : true }, "name" : { "type" : "string", "description" : "The name of the company.", "readOnly" : true }, "ownerEmailAddress" : { "type" : "string", "description" : "The owner's email address.", "readOnly" : true }, "twoFactorAuthenticationTypes" : { "uniqueItems" : true, "type" : "array", "description" : "The 2FA options for the company.", "readOnly" : true, "items" : { "type" : "string", "description" : "The 2FA options for the company.", "readOnly" : true, "enum" : [ "Totp", "Passwordless", "BankIdNorway", "BankIdNorwayBiometrics", "BankIdSweden", "BankIdFinland" ] } }, "organizationNumber" : { "type" : "string", "description" : "The company's organization number.", "readOnly" : true }, "countryCode" : { "type" : "string", "description" : "The company's country code.", "readOnly" : true, "enum" : [ "NO", "SE", "DK", "FI", "NL" ] }, "changedOn" : { "type" : "string", "description" : "The last time the company data was changed.", "readOnly" : true }, "redirectUrl" : { "type" : "string", "description" : "Redirect URL.", "readOnly" : true } } }, "ResponseWrapperAutoPayCompany" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/AutoPayCompany" } } }, "AccountingPeriod" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "name" : { "type" : "string", "readOnly" : true }, "number" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "start" : { "type" : "string", "readOnly" : true }, "end" : { "type" : "string", "readOnly" : true }, "isClosed" : { "type" : "boolean", "readOnly" : true }, "checkLedgerLogEmployeeName" : { "type" : "string", "readOnly" : true }, "checkLedgerLogEmployeePictureId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "checkLedgerLogTime" : { "type" : "string", "readOnly" : true }, "checkWageLogEmployeeName" : { "type" : "string", "readOnly" : true }, "checkWageLogEmployeePictureId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "checkWageLogTime" : { "type" : "string", "readOnly" : true } } }, "BankReconciliation" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "account" : { "$ref" : "#/components/schemas/Account" }, "accountingPeriod" : { "$ref" : "#/components/schemas/AccountingPeriod" }, "voucher" : { "$ref" : "#/components/schemas/Voucher" }, "transactions" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/BankTransaction" } }, "isClosed" : { "type" : "boolean" }, "type" : { "type" : "string", "description" : "Type of Bank Reconciliation.", "enum" : [ "MANUAL", "AUTOMATIC" ] }, "bankAccountClosingBalanceCurrency" : { "type" : "number" }, "closedDate" : { "type" : "string", "readOnly" : true }, "closedByContact" : { "$ref" : "#/components/schemas/Contact" }, "closedByEmployee" : { "$ref" : "#/components/schemas/Employee" }, "approvable" : { "type" : "boolean", "readOnly" : true }, "autoPayReconciliation" : { "type" : "boolean", "readOnly" : true }, "attachment" : { "$ref" : "#/components/schemas/Document" } } }, "BankReconciliationAdjustment" : { "type" : "object", "properties" : { "paymentType" : { "$ref" : "#/components/schemas/BankReconciliationPaymentType" }, "bankTransactions" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/BankTransaction" } }, "postingDate" : { "type" : "string" }, "amount" : { "minimum" : 0, "type" : "number" }, "postings" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/Posting" } }, "bankReconciliationMatch" : { "$ref" : "#/components/schemas/BankReconciliationMatch" }, "date" : { "type" : "string" }, "description" : { "type" : "string" }, "interimAccount" : { "$ref" : "#/components/schemas/Account" }, "voucherNumber" : { "type" : "string" }, "voucherViewLink" : { "type" : "string" }, "voucherDetailsLink" : { "type" : "string" } } }, "BankReconciliationMatch" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "bankReconciliation" : { "$ref" : "#/components/schemas/BankReconciliation" }, "type" : { "type" : "string", "description" : "Type of match, MANUAL and APPROVED_SUGGESTION are considered part of reconciliation.", "enum" : [ "MANUAL", "PENDING_SUGGESTION", "REJECTED_SUGGESTION", "APPROVED_SUGGESTION", "ADJUSTMENT", "AUTO_MATCHED", "REJECTED_AUTO_MATCH", "AUTOPOSTING_APPROVED", "AUTOPOSTING_REJECTED" ] }, "transactions" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/BankTransaction" } }, "postings" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/Posting" } } }, "readOnly" : true }, "BankReconciliationPaymentType" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "description" : { "type" : "string", "description" : "Description", "readOnly" : true }, "debitAccount" : { "$ref" : "#/components/schemas/Account" }, "creditAccount" : { "$ref" : "#/components/schemas/Account" }, "isInactive" : { "type" : "boolean", "readOnly" : true } }, "readOnly" : true }, "ListResponseBankReconciliationAdjustment" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/BankReconciliationAdjustment" } } } }, "ResponseWrapperBankReconciliation" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/BankReconciliation" } } }, "ListResponseBankReconciliation" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/BankReconciliation" } } } }, "FileIdForIncomingPayments" : { "type" : "object", "properties" : { "autoPayIncomingPaymentFileId" : { "type" : "integer", "description" : "AutoPayIncomingPaymentFile ID.", "format" : "int64", "readOnly" : true }, "date" : { "type" : "string", "description" : "Date of incoming payment file.", "readOnly" : true } }, "readOnly" : true }, "ResponseWrapperListFileIdForIncomingPayments" : { "type" : "object", "properties" : { "value" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/FileIdForIncomingPayments" } } } }, "ListResponseFileIdForIncomingPayments" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/FileIdForIncomingPayments" } } } }, "ResponseWrapperBankReconciliationMatch" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/BankReconciliationMatch" } } }, "ListResponseBankReconciliationMatch" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/BankReconciliationMatch" } } } }, "BankReconciliationMatchesCounter" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "bankReconciliationId" : { "type" : "integer", "description" : "The reconciliation id for which the number of matches is stored.", "format" : "int32" }, "autoMatchedMatches" : { "minimum" : 0, "type" : "integer", "description" : "Number of auto-matched matches since last page access.", "format" : "int32" }, "suggestedMatches" : { "minimum" : 0, "type" : "integer", "description" : "Number of suggested matches since last page access.", "format" : "int32" } } }, "ResponseWrapperBankReconciliationMatchesCounter" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/BankReconciliationMatchesCounter" } } }, "ResponseWrapperBankReconciliationPaymentType" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/BankReconciliationPaymentType" } } }, "ListResponseBankReconciliationPaymentType" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/BankReconciliationPaymentType" } } } }, "BankReconciliationSettings" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "numberOfMatchesPerPage" : { "type" : "string", "description" : "The number of matches showed per page in bank reconciliation.", "enum" : [ "ITEMS_10", "ITEMS_50", "ITEMS_100", "ITEMS_500", "ITEMS_1000", "ITEMS_5000", "ITEMS_10000" ] } } }, "ResponseWrapperBankReconciliationSettings" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/BankReconciliationSettings" } } }, "ChangeLog" : { "type" : "object", "properties" : { "employeeNameAndNumber" : { "type" : "string", "readOnly" : true }, "action" : { "type" : "string", "readOnly" : true }, "timestamp" : { "type" : "string", "readOnly" : true }, "changeType" : { "type" : "string", "readOnly" : true, "enum" : [ "CREATE", "UPDATE", "DELETE", "LOCKED", "REOPENED", "DO_NOT_SHOW" ] }, "changeLogEmployeeDTO" : { "$ref" : "#/components/schemas/ChangeLogEmployee" }, "requestlogId" : { "type" : "integer", "format" : "int64", "readOnly" : true } }, "readOnly" : true }, "ChangeLogEmployee" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "url" : { "type" : "string", "readOnly" : true }, "pictureId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "name" : { "type" : "string", "readOnly" : true }, "number" : { "type" : "string", "readOnly" : true }, "actualEmployee" : { "$ref" : "#/components/schemas/ChangeLogEmployee" } }, "readOnly" : true }, "ListResponseChangeLog" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ChangeLog" } } } }, "ReconciliationFilterState" : { "type" : "object", "properties" : { "accountId" : { "type" : "integer", "description" : "Account id", "format" : "int32", "readOnly" : true }, "startDate" : { "type" : "string", "description" : "Period start date", "readOnly" : true }, "endDate" : { "type" : "string", "description" : "Period end date", "readOnly" : true } } }, "ResponseWrapperReconciliationFilterState" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ReconciliationFilterState" } } }, "ReconciliationSelectedState" : { "type" : "object", "properties" : { "sumSelectedPostings" : { "type" : "number", "description" : "Total sum for selected postings", "readOnly" : true }, "sumSelectedTransactions" : { "type" : "number", "description" : "Total sum for selected transactions", "readOnly" : true }, "selectedDifference" : { "type" : "number", "readOnly" : true }, "showDifference" : { "type" : "boolean", "description" : "Flag to show difference for selected entries", "readOnly" : true }, "showManualMatch" : { "type" : "boolean", "description" : "Flag to show manual match button for selected entries", "readOnly" : true }, "showPostBalance" : { "type" : "boolean", "description" : "Flag to show enter balance button for selected entries", "readOnly" : true }, "showTransferEntries" : { "type" : "boolean", "description" : "Flag to show transfer entries button for selected entries", "readOnly" : true }, "showPostEntries" : { "type" : "boolean", "description" : "Flag to show post transactions entries button for selected entries", "readOnly" : true } } }, "ResponseWrapperReconciliationSelectedState" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ReconciliationSelectedState" } } }, "ReconciliationState" : { "type" : "object", "properties" : { "reconciliation" : { "$ref" : "#/components/schemas/BankReconciliation" }, "ledgerAccountOutBalance" : { "type" : "number", "readOnly" : true }, "ledgerAccountInBalance" : { "type" : "number", "readOnly" : true }, "bankStatementOutBalance" : { "type" : "number", "readOnly" : true }, "bankStatementInBalance" : { "type" : "number", "readOnly" : true }, "balanceOutDifference" : { "type" : "number", "readOnly" : true }, "currency" : { "$ref" : "#/components/schemas/Currency" }, "isApprovableComplete" : { "type" : "boolean", "readOnly" : true }, "isApprovableIncomplete" : { "type" : "boolean", "readOnly" : true }, "isReadOnly" : { "type" : "boolean", "readOnly" : true }, "newerApprovedReconciliationUrl" : { "type" : "string", "readOnly" : true }, "isInactiveAccount" : { "type" : "boolean", "readOnly" : true }, "accountingPeriodClosedUrl" : { "type" : "string", "readOnly" : true } } }, "ResponseWrapperReconciliationState" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ReconciliationState" } } }, "PostBalanceAdjustmentRequestDTO" : { "type" : "object", "properties" : { "reconciliationId" : { "type" : "integer", "description" : "The id of the reconciliation where adjustment will be created", "format" : "int64" }, "postingIds" : { "type" : "array", "description" : "Posting Ids", "items" : { "type" : "integer", "description" : "Posting Ids", "format" : "int64" } }, "transactionIds" : { "type" : "array", "description" : "Transaction Ids", "items" : { "type" : "integer", "description" : "Transaction Ids", "format" : "int64" } }, "paymentTypeId" : { "type" : "integer", "description" : "Payment Type Id", "format" : "int64" } } }, "PostTransactionsAdjustmentsRequestDTO" : { "type" : "object", "properties" : { "reconciliationId" : { "type" : "integer", "description" : "The id of the reconciliation where adjustments will be created", "format" : "int64" }, "transactionIds" : { "type" : "array", "description" : "Transaction Ids", "items" : { "type" : "integer", "description" : "Transaction Ids", "format" : "int64" } }, "incomePaymentTypeId" : { "type" : "integer", "description" : "Income Payment Type Id", "format" : "int64" }, "costPaymentTypeId" : { "type" : "integer", "description" : "Cost Payment Type Id", "format" : "int64" } } }, "TransferPostingsAdjustmentRequestDTO" : { "type" : "object", "properties" : { "reconciliationId" : { "type" : "integer", "description" : "The id of the reconciliation where adjustment will be created", "format" : "int64" }, "postingIds" : { "type" : "array", "description" : "Posting Ids", "items" : { "type" : "integer", "description" : "Posting Ids", "format" : "int64" } }, "date" : { "type" : "string", "description" : "New Date for postings" }, "description" : { "type" : "string", "description" : "Description" }, "interimAccountId" : { "type" : "integer", "description" : "Interim Account Id", "format" : "int64" } } }, "ReconciliationSelectedStateRequestBody" : { "type" : "object", "properties" : { "postings" : { "type" : "array", "description" : "List of IDs", "items" : { "type" : "integer", "description" : "List of IDs", "format" : "int64" } }, "transactions" : { "type" : "array", "description" : "List of IDs", "items" : { "type" : "integer", "description" : "List of IDs", "format" : "int64" } } } }, "BankReconciliationDocumentDTO" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "fileName" : { "type" : "string" }, "blob" : { "type" : "string" } }, "description" : "Bank Reconciliation Document DTO", "readOnly" : true }, "ListResponseBankReconciliationDocumentDTO" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/BankReconciliationDocumentDTO" } } } }, "ResponseWrapperDocument" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/Document" } } }, "AutoPostingSuggestion" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "bankTransactionId" : { "type" : "integer", "description" : "The bank transaction ID", "format" : "int64", "readOnly" : true }, "bankReconciliationId" : { "type" : "integer", "description" : "The bank reconciliation ID", "format" : "int64", "readOnly" : true }, "scenario" : { "type" : "string", "description" : "The autoposting scenario", "readOnly" : true, "enum" : [ "OUTGOING_INVOICE_WITHOUT_KID", "BANK_FEES" ] }, "status" : { "type" : "string", "description" : "The status of the suggestion", "readOnly" : true, "enum" : [ "PENDING", "ACCEPTED", "REJECTED" ] }, "transactionEntry" : { "$ref" : "#/components/schemas/ReconciliationEntry" }, "matchedEntry" : { "$ref" : "#/components/schemas/ReconciliationEntry" } }, "readOnly" : true }, "ContainerTagDivTag" : { "type" : "object", "properties" : { "tagName" : { "type" : "string" }, "numChildren" : { "type" : "integer", "format" : "int32" } } }, "ReconciliationEntry" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "description" : "Id of posting or transaction", "format" : "int64" }, "entryType" : { "type" : "string", "description" : "Shows if it is a Posting or BankTransaction", "enum" : [ "Posting", "BankTransaction" ] }, "amountCurrency" : { "type" : "number", "description" : "The amount of the posting or transaction", "readOnly" : true }, "detailsList" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ReconciliationEntryDetail" } }, "date" : { "type" : "string", "description" : "The date of the posting or transaction", "readOnly" : true }, "voucherId" : { "type" : "integer", "description" : "Id of voucher from posting", "format" : "int64" }, "isQueryMatch" : { "type" : "boolean", "description" : "This matches search", "readOnly" : true } }, "description" : "List of entries in this group." }, "ReconciliationEntryDetail" : { "type" : "object", "properties" : { "key" : { "type" : "string", "description" : "The key", "readOnly" : true }, "value" : { "type" : "string", "description" : "The value", "readOnly" : true }, "valueForPDF" : { "$ref" : "#/components/schemas/ContainerTagDivTag" }, "valueForXLSX" : { "type" : "string" } }, "description" : "The details of the posting or transaction", "readOnly" : true }, "ResponseWrapperAutoPostingSuggestion" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/AutoPostingSuggestion" } } }, "ListResponseAutoPostingSuggestion" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/AutoPostingSuggestion" } } } }, "ListResponseReconciliationEntry" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ReconciliationEntry" } } } }, "ReconciliationRequest" : { "type" : "object", "properties" : { "actionType" : { "type" : "string", "description" : "Export type, email or file download", "enum" : [ "SendEmail", "FileDownload" ] }, "pdfOrientation" : { "type" : "string", "enum" : [ "portrait", "landscape" ] }, "bankReconciliationId" : { "type" : "integer", "format" : "int32" }, "type" : { "type" : "string", "enum" : [ "APPROVED", "OPEN_TRANSACTIONS" ] }, "transactionsType" : { "type" : "string", "enum" : [ "CURRENT_MONTH", "ALL_TRANSACTIONS", "SELECTED" ] }, "transactions" : { "type" : "array", "items" : { "type" : "integer", "format" : "int64" } }, "emailAddresses" : { "type" : "array", "description" : "The email address to send to.", "items" : { "type" : "string", "description" : "The email address to send to." } }, "message" : { "type" : "string", "description" : "The message to include in the email." }, "accountId" : { "type" : "integer", "format" : "int32" } } }, "ReconciliationGroup" : { "type" : "object", "properties" : { "title" : { "type" : "string", "description" : "Title of this group.", "readOnly" : true }, "totalAmount" : { "type" : "number", "description" : "Total amount of this group.", "readOnly" : true }, "entries" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ReconciliationEntry" } } }, "description" : "Group of transactions from this match." }, "ReconciliationMatch" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "reconciliationId" : { "type" : "integer", "description" : "Id of the BankReconciliation.", "format" : "int64" }, "accountId" : { "type" : "integer", "description" : "Id of the account.", "format" : "int64" }, "startDate" : { "type" : "string", "description" : "Start date of the period" }, "isApproved" : { "type" : "boolean", "description" : "Is this BankReconciliationMatch approved.", "readOnly" : true }, "postingsGroup" : { "$ref" : "#/components/schemas/ReconciliationGroup" }, "transactionsGroup" : { "$ref" : "#/components/schemas/ReconciliationGroup" } } }, "ListResponseReconciliationMatch" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ReconciliationMatch" } } } }, "ResponseWrapperAccount" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/Account" } } }, "ListResponseReconciliationPaymentType" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ReconciliationPaymentType" } } } }, "ReconciliationPaymentType" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "displayName" : { "type" : "string", "description" : "Display Name", "readOnly" : true } }, "readOnly" : true }, "ReconciliationPeriod" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "annualAccountsId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "periodName" : { "type" : "string", "readOnly" : true }, "number" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "start" : { "type" : "string", "readOnly" : true }, "end" : { "type" : "string", "readOnly" : true }, "isAccountingPeriodClosed" : { "type" : "boolean", "readOnly" : true }, "reconciliationId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "reconciliationAccountId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "isReconciliationClosed" : { "type" : "boolean", "readOnly" : true } }, "readOnly" : true }, "ResponseWrapperReconciliationPeriod" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ReconciliationPeriod" } } }, "ListResponseReconciliationPeriod" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ReconciliationPeriod" } } } }, "BankSettings" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "taxBankAgreement" : { "$ref" : "#/components/schemas/AutopayBankAgreement" }, "remitNumberOfAcceptors" : { "maximum" : 3, "minimum" : 1, "type" : "integer", "description" : "The remit number of acceptors.", "format" : "int32" }, "showAdviceCurrencyMismatch" : { "type" : "boolean", "description" : "The showAdviceCurrencyMismatch property." }, "paymentWithUnknownKidParseOption" : { "type" : "string", "description" : "Setting for whether incoming AutoPay payments without KID should be automatically posted, sent to voucher reception or ignored.", "enum" : [ "VOUCHER_RECEPTION", "PARSE", "IGNORE" ] }, "signAutoPayWithBankId" : { "type" : "boolean", "description" : "Setting for whether the user should have the option to sign payments and agreements with Bank ID in addition to 2FA." }, "batchBookingOfPayments" : { "type" : "boolean", "description" : "Setting for the user to use or not the batch booking for payments." }, "parseEntriesAsSumPosts" : { "type" : "boolean", "description" : "Setting for the user to choose if account statements entries should be parsed as sum posts or not." }, "employeesWithDirectRemitAccess" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Employee" } }, "employeesWithLimitedDirectRemitAccess" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Employee" } }, "daysBeforePaymentOutdated" : { "maximum" : 99, "minimum" : 3, "type" : "integer", "description" : "Number of days before a payment is set as outdated", "format" : "int32" } } }, "ResponseWrapperBankSettings" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/BankSettings" } } }, "BankIdConsentResponseDTO" : { "type" : "object", "properties" : { "enabled" : { "type" : "boolean", "description" : "Whether BankID signing was enabled or disabled", "readOnly" : true }, "redirectUrl" : { "type" : "string", "description" : "The redirect URL for BankID consent flow. If null, no consent is needed.", "readOnly" : true }, "message" : { "type" : "string", "description" : "Message describing the result of the operation", "readOnly" : true } } }, "ResponseWrapperBankIdConsentResponseDTO" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/BankIdConsentResponseDTO" } } }, "ResponseWrapperBankStatementBalance" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/BankStatementBalance" } } }, "ListResponseBankStatement" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/BankStatement" } } } }, "BankBalanceEstimation" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "date" : { "type" : "string" }, "description" : { "type" : "string" }, "voucherId" : { "type" : "integer", "format" : "int32" }, "invoiceId" : { "type" : "integer", "format" : "int64" }, "invoiceNumber" : { "type" : "string" }, "invoiceAmount" : { "type" : "number" }, "isIncomingInvoice" : { "type" : "boolean", "description" : "boolean" }, "recurrence" : { "type" : "string", "description" : "Recurrence type", "enum" : [ "NONE", "DAILY", "WEEKLY", "MONTHLY" ] }, "category" : { "type" : "string", "description" : "Category", "enum" : [ "DUPLICATE", "STARTING_BALANCE", "NONE", "SALARY", "ENI", "TAX", "VAT_RETURNS", "VACATION_ALLOWANCE", "TRAVEL_AND_EXPENSES" ] }, "vendorOrCustomerName" : { "type" : "string" }, "isManuallyAdded" : { "type" : "boolean", "description" : "boolean" }, "batchId" : { "type" : "string" } }, "readOnly" : true }, "ResponseWrapperListBankBalanceEstimation" : { "type" : "object", "properties" : { "value" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/BankBalanceEstimation" } } } }, "ResponseWrapperBankBalanceEstimation" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/BankBalanceEstimation" } } }, "ListResponseBankBalanceEstimation" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/BankBalanceEstimation" } } } }, "BankTransactionAggregates" : { "type" : "object", "properties" : { "totalIncomingAmount" : { "type" : "number", "description" : "Total incoming amount on given transactions.", "readOnly" : true }, "totalOutgoingAmount" : { "type" : "number", "description" : "Total outgoing amount on given transactions.", "readOnly" : true }, "topCustomers" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/CompanyTransactionAggregates" } }, "topSuppliers" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/CompanyTransactionAggregates" } } } }, "CompanyTransactionAggregates" : { "type" : "object", "properties" : { "id" : { "type" : "number", "description" : "Customer id.", "readOnly" : true }, "name" : { "type" : "number", "description" : "Customer name.", "readOnly" : true }, "incomingAmount" : { "type" : "number", "description" : "Incoming amount from this customer.", "readOnly" : true }, "percentageOfIncoming" : { "type" : "number", "description" : "Percentage of incoming amount from all companies.", "readOnly" : true }, "outgoingAmount" : { "type" : "number", "description" : "Outgoing amount to this company.", "readOnly" : true }, "percentageOfOutgoing" : { "type" : "number", "description" : "Percentage outgoing amount from all companies.", "readOnly" : true } }, "description" : "top suppliers and respective payments", "readOnly" : true }, "ResponseWrapperBankTransactionAggregates" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/BankTransactionAggregates" } } }, "ResponseWrapperBankTransaction" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/BankTransaction" } } }, "ListResponseBankTransaction" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/BankTransaction" } } } }, "BankTransactionComment" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "comment" : { "type" : "string" }, "createdAt" : { "type" : "string" }, "bankTransactionId" : { "type" : "integer", "format" : "int64" }, "externalPaymentId" : { "type" : "string" }, "employee" : { "$ref" : "#/components/schemas/Employee" }, "actualEmployeeId" : { "type" : "integer", "format" : "int64" }, "actualEmployeeCompanyId" : { "type" : "integer", "format" : "int64" }, "actualEmployeeName" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "ResponseWrapperBankTransactionComment" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/BankTransactionComment" } } }, "ListResponseBankTransactionComment" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/BankTransactionComment" } } } }, "ListResponseUpsaleMetric" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/UpsaleMetric" } } } }, "UpsaleMetric" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "companyId" : { "type" : "integer", "description" : "The company's ID.", "format" : "int32" }, "actualEmployeeId" : { "type" : "integer", "description" : "Actual employee's ID.", "format" : "int32" }, "loginEmployeeId" : { "type" : "integer", "description" : "Login employee's ID.", "format" : "int32" }, "tripletexUserId" : { "type" : "integer", "description" : "Tripletex's user ID.", "format" : "int32" }, "metricType" : { "type" : "string", "description" : "The type of the metric used.", "enum" : [ "BANK_DASHBOARD", "VENDOR", "SALARY" ] }, "action" : { "type" : "string", "description" : "Status for upsale's AutoPay bank dashboard page or enabling / disabling upsale's notifications.", "enum" : [ "VISITED", "ONBOARDED", "DISABLED" ] } }, "readOnly" : true }, "BringCredentials" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "username" : { "type" : "string", "description" : "Bring username" }, "customerNumber" : { "type" : "string", "description" : "Bring customer number" }, "apiKey" : { "type" : "string", "description" : "API token for Bring APIs" }, "moduleBring" : { "type" : "boolean", "description" : "Bring activation in Logistics module" }, "confirmationEmail" : { "type" : "string", "description" : "Bring preferred email" } } }, "ResponseWrapperBringCredentials" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/BringCredentials" } } }, "ChatMessage" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "employeeId" : { "type" : "integer", "description" : "Message sender", "format" : "int64", "readOnly" : true }, "thread" : { "$ref" : "#/components/schemas/ChatThread" }, "content" : { "type" : "string" }, "timestamp" : { "type" : "string", "readOnly" : true } } }, "ChatParticipant" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "displayName" : { "type" : "string" }, "companyName" : { "type" : "string" }, "companyId" : { "type" : "integer", "format" : "int64" }, "isProxy" : { "type" : "boolean" }, "pictureId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "proxy" : { "type" : "boolean" } }, "description" : "Participants but not the logged in employee or proxy" }, "ChatThread" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "timestamp" : { "type" : "string", "description" : "Timestamp for creation of the chat thread", "readOnly" : true }, "customerCompanyId" : { "type" : "integer", "description" : "Id of the company the chat is started with", "format" : "int64" }, "messages" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ChatMessage" } }, "threadUrl" : { "type" : "string", "description" : "Url to the topic of conversation" }, "participants" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ChatParticipant" } }, "summaryDisplayName" : { "type" : "string", "description" : "The employee to show in a thread summary.", "readOnly" : true }, "summaryDisplayCompany" : { "type" : "string", "description" : "The company to show in a thread summary.", "readOnly" : true }, "otherNonProxyParticipants" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ChatParticipant" } }, "subject" : { "type" : "string" }, "accessValidationMessage" : { "type" : "string", "description" : "Validation message if the user cannot send messages in this thread, null if they can", "readOnly" : true }, "threadHandledByAO" : { "type" : "boolean" }, "read" : { "type" : "boolean" }, "readOrIgnore" : { "type" : "boolean" }, "completed" : { "type" : "boolean" }, "queue" : { "type" : "boolean" } }, "readOnly" : true }, "ResponseWrapperChatMessage" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ChatMessage" } } }, "ChatMetaDTO" : { "type" : "object", "properties" : { "hasAccountant" : { "type" : "boolean" }, "hasEntitlements" : { "type" : "boolean" }, "shouldShowOptIn" : { "type" : "boolean" }, "shouldShowIntroduction" : { "type" : "boolean" }, "showChat" : { "type" : "boolean" }, "accountantProxyEmployeeId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "actualEmployeeId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "admin" : { "type" : "boolean" }, "pilot" : { "type" : "boolean" }, "accountant" : { "type" : "boolean" }, "proxy" : { "type" : "boolean" } } }, "ResponseWrapperChatMetaDTO" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ChatMetaDTO" } } }, "ChatCompanyDTO" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "description" : "Id of the company the chat is started with", "format" : "int64", "readOnly" : true }, "name" : { "type" : "string", "description" : "Name of the company the chat is started with", "readOnly" : true }, "type" : { "type" : "string", "description" : "Type of the company the chat is started with", "readOnly" : true, "enum" : [ "OWN", "CLIENT", "ACCOUNTANT" ] }, "customerId" : { "type" : "integer", "description" : "Customer id of the company the chat is started with if applicable", "format" : "int64", "readOnly" : true }, "proxyEmployeeId" : { "type" : "integer", "description" : "Proxy employee id of the company the chat is started with if applicable", "format" : "int64", "readOnly" : true }, "latestThread" : { "$ref" : "#/components/schemas/ChatThread" }, "latestMessageTimestamp" : { "type" : "string", "description" : "Latest message timestamp", "readOnly" : true }, "unreadMessages" : { "type" : "boolean", "description" : "Has unread messages from this company", "readOnly" : true }, "unhandledAOThreads" : { "type" : "boolean", "description" : "Has unhandled threads from this company", "readOnly" : true }, "access" : { "type" : "boolean", "description" : "If the current login employee has access to the company or not", "readOnly" : true } } }, "ResponseWrapperListChatCompanyDTO" : { "type" : "object", "properties" : { "value" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ChatCompanyDTO" } } } }, "ResponseWrapperChatThread" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ChatThread" } } }, "PaginatedListResponse" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ChatThread" } }, "nextUrl" : { "type" : "string" } } }, "Checkout" : { "type" : "object", "properties" : { "proxyOrClient" : { "type" : "boolean" }, "payingCustomer" : { "type" : "boolean" }, "company" : { "$ref" : "#/components/schemas/Company" }, "employee" : { "$ref" : "#/components/schemas/Employee" }, "isPayingCustomer" : { "type" : "boolean", "description" : "Returns whether the company category is paying." }, "isProxyOrClient" : { "type" : "boolean", "description" : "Returns whether employee is proxy or not" } } }, "ResponseWrapperCheckout" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/Checkout" } } }, "CheckoutPageVoucherPackage" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "textKey" : { "type" : "string", "readOnly" : true } } }, "ResponseWrapperCheckoutPageVoucherPackage" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/CheckoutPageVoucherPackage" } } }, "ClientContext" : { "type" : "object", "properties" : { "trial" : { "type" : "boolean", "description" : "Whether the current session is in a trial account" }, "subscribed" : { "type" : "boolean", "description" : "Whether the current session has access to the year-end module" }, "devMode" : { "type" : "boolean", "description" : "Whether the current session has access to development features" }, "pilotMode" : { "type" : "boolean", "description" : "Whether the current session has access to pilot features" }, "activeAccountantProxy" : { "type" : "boolean", "description" : "Whether the current session is a proxy for an accountant" }, "hackedOrSupportAccess" : { "type" : "boolean", "description" : "Whether the current session is a Tripletex employee with extra privileges" }, "companyTypeId" : { "type" : "integer", "description" : "The category of the company which is selected in the current session", "format" : "int32" }, "companyId" : { "type" : "integer", "description" : "The id of the company which is selected in the current session", "format" : "int32" }, "companyName" : { "type" : "string", "description" : "The name of the company which is selected in the current session" } } }, "ResponseWrapperClientContext" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ClientContext" } } }, "EmployeeRoleModelDTO" : { "type" : "object", "properties" : { "companyId" : { "type" : "integer", "format" : "int64" }, "customerId" : { "type" : "integer", "format" : "int64" }, "employeeId" : { "type" : "integer", "format" : "int64" }, "hasAccess" : { "type" : "boolean" }, "role" : { "type" : "string", "enum" : [ "ROLE_ADMINISTRATOR", "AUTH_READ_ONLY", "AUTH_LOGIN", "AUTH_ALL_VOUCHERS", "AUTH_COMPANY_ACCOUNTING_REPORTS", "AUTH_ACCOUNTING_SETTINGS", "AUTH_COMPANY_RESULT_BUDGET", "AUTH_COMPANY_CUSTOMER_ACCOUNTING_REPORTS", "AUTH_COMPANY_VENDOR_ACCOUNTING_REPORTS", "AUTH_COMPANY_EMPLOYEE_ACCOUNTING_REPORTS", "AUTH_COMPANY_ASSET_ACCOUNTING_REPORTS", "AUTH_COMPANY_ATTESTOR", "AUTH_DIRECT_REMIT_ADMIN", "AUTH_DIRECT_REMIT_LIGHT", "AUTH_MANAGE_BANK_ACCOUNT_NUMBERS", "AUTH_DIRECT_REMIT_CREATE_NEW", "AUTH_DIRECT_REMIT_ADMIN_ZTL", "AUTH_COMPANY_ADMIN", "AUTH_EMPLOYEE_INFO", "AUTH_COMPANY_EMPLOYEE_ADMIN", "AUTH_CUSTOMER_ADMIN", "AUTH_CUSTOMER_INFO", "AUTH_CREATE_CUSTOMER", "AUTH_INBOX_ARCHIVE_ALL_EMPLOYEES", "AUTH_ARCHIVE_READ", "AUTH_ARCHIVE_WRITE", "AUTH_ARCHIVE_ADMIN", "AUTH_CREATE_NOTE", "AUTH_CREATE_NOTE_TEMPLATE", "AUTH_INVOICING", "AUTH_OFFER_ADMIN", "AUTH_ORDER_ADMIN", "AUTH_CREATE_OFFER", "AUTH_CREATE_ORDER", "AUTH_FACTORING_EXPORT", "AUTH_INVOICE_ADMIN_SETTINGS", "AUTH_PROJECT_MANAGER", "AUTH_PROJECT_MANAGER_COMPANY", "AUTH_DEPARTMENT_REPORT", "AUTH_CREATE_PROJECT", "AUTH_PROJECT_EXTRA_COSTS", "AUTH_PROJECT_INFO", "AUTH_PROJECT_ADMIN_SETTINGS", "AUTH_PROJECT_OWN_PROJECT_RESULT_REPORT", "AUTH_PROJECT_CONTROL_FORMS", "AUTH_PRODUCT_ADMIN", "AUTH_PRODUCT_NET_PRICE", "AUTH_PURCHASING_MANAGER", "REPORT_ADMINISTRATOR", "REPORT_AUTHOR", "AUTH_COMPANY_WAGE_ADMIN", "AUTH_WAGE_ADMIN_SETTINGS", "AUTH_WAGE_INFORMATION", "AUTH_TASK_ADMIN", "AUTH_HOURS_COMPANY", "AUTH_HOUR_STATISTICS_COMPANY", "AUTH_HOURLIST", "AUTH_HOURLIST_SETTINGS", "AUTH_HOLYDAY_PLAN", "AUTH_TRAVEL_REPORTS_COMPANY", "AUTH_TRAVEL_REPORT", "AUTH_TRAVEL_EXPENSE_ADMIN_SETTINGS", "AUTH_VOUCHER_EXPORT", "AUTH_INBOX_VOUCHER", "AUTH_INCOMPLETE_VOUCHERS", "AUTH_INCOMING_INVOICE", "AUTH_VOUCHER_SETTINGS", "AUTH_BANK_RECONCILIATION", "AUTH_VAT_REPORT", "AUTH_SICKNESS_REIMBURSEMENT", "AUTH_REGISTER_INCOME", "AUTH_ADVANCED_VOUCHER", "AUTH_VOUCHER_IMPORT", "AUTH_PRODUCT_INVOICE", "AUTH_CUSTOMS_DECLARATION", "AUTH_VOUCHER_AUTOMATION", "AUTH_REMIT_FILES_VOUCHER_OVERVIEW", "YEAR_END_REPORT_ADMINISTRATOR" ] } } }, "AccountantClientAccessCategoryModel" : { "type" : "object", "properties" : { "category" : { "type" : "string", "readOnly" : true, "enum" : [ "GENERAL", "ACCOUNTING", "VOUCHER_APPROVAL", "BANK", "COMPANY", "CUSTOMER", "DOCUMENT", "INVOICING", "PROJECT", "PRODUCT", "REPORT", "WAGE", "TASK", "HOUR_LIST", "TRAVEL_REPORT", "VOUCHER", "YEAR_END_REPORT" ] }, "description" : { "type" : "string", "readOnly" : true }, "accessLevel" : { "type" : "string", "readOnly" : true, "enum" : [ "NONE", "SOME", "ALL" ] }, "hasReceivedAggregatedAccess" : { "type" : "boolean", "readOnly" : true }, "roles" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/AccountantClientAccessRole" } } }, "readOnly" : true }, "AccountantClientAccessModel" : { "type" : "object", "properties" : { "employeeId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "employeeName" : { "type" : "string", "readOnly" : true }, "companyId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "customerId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "categories" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/AccountantClientAccessCategoryModel" } } } }, "AccountantClientAccessRole" : { "type" : "object", "properties" : { "role" : { "type" : "string", "readOnly" : true, "enum" : [ "ROLE_ADMINISTRATOR", "AUTH_READ_ONLY", "AUTH_LOGIN", "AUTH_ALL_VOUCHERS", "AUTH_COMPANY_ACCOUNTING_REPORTS", "AUTH_ACCOUNTING_SETTINGS", "AUTH_COMPANY_RESULT_BUDGET", "AUTH_COMPANY_CUSTOMER_ACCOUNTING_REPORTS", "AUTH_COMPANY_VENDOR_ACCOUNTING_REPORTS", "AUTH_COMPANY_EMPLOYEE_ACCOUNTING_REPORTS", "AUTH_COMPANY_ASSET_ACCOUNTING_REPORTS", "AUTH_COMPANY_ATTESTOR", "AUTH_DIRECT_REMIT_ADMIN", "AUTH_DIRECT_REMIT_LIGHT", "AUTH_MANAGE_BANK_ACCOUNT_NUMBERS", "AUTH_DIRECT_REMIT_CREATE_NEW", "AUTH_DIRECT_REMIT_ADMIN_ZTL", "AUTH_COMPANY_ADMIN", "AUTH_EMPLOYEE_INFO", "AUTH_COMPANY_EMPLOYEE_ADMIN", "AUTH_CUSTOMER_ADMIN", "AUTH_CUSTOMER_INFO", "AUTH_CREATE_CUSTOMER", "AUTH_INBOX_ARCHIVE_ALL_EMPLOYEES", "AUTH_ARCHIVE_READ", "AUTH_ARCHIVE_WRITE", "AUTH_ARCHIVE_ADMIN", "AUTH_CREATE_NOTE", "AUTH_CREATE_NOTE_TEMPLATE", "AUTH_INVOICING", "AUTH_OFFER_ADMIN", "AUTH_ORDER_ADMIN", "AUTH_CREATE_OFFER", "AUTH_CREATE_ORDER", "AUTH_FACTORING_EXPORT", "AUTH_INVOICE_ADMIN_SETTINGS", "AUTH_PROJECT_MANAGER", "AUTH_PROJECT_MANAGER_COMPANY", "AUTH_DEPARTMENT_REPORT", "AUTH_CREATE_PROJECT", "AUTH_PROJECT_EXTRA_COSTS", "AUTH_PROJECT_INFO", "AUTH_PROJECT_ADMIN_SETTINGS", "AUTH_PROJECT_OWN_PROJECT_RESULT_REPORT", "AUTH_PROJECT_CONTROL_FORMS", "AUTH_PRODUCT_ADMIN", "AUTH_PRODUCT_NET_PRICE", "AUTH_PURCHASING_MANAGER", "REPORT_ADMINISTRATOR", "REPORT_AUTHOR", "AUTH_COMPANY_WAGE_ADMIN", "AUTH_WAGE_ADMIN_SETTINGS", "AUTH_WAGE_INFORMATION", "AUTH_TASK_ADMIN", "AUTH_HOURS_COMPANY", "AUTH_HOUR_STATISTICS_COMPANY", "AUTH_HOURLIST", "AUTH_HOURLIST_SETTINGS", "AUTH_HOLYDAY_PLAN", "AUTH_TRAVEL_REPORTS_COMPANY", "AUTH_TRAVEL_REPORT", "AUTH_TRAVEL_EXPENSE_ADMIN_SETTINGS", "AUTH_VOUCHER_EXPORT", "AUTH_INBOX_VOUCHER", "AUTH_INCOMPLETE_VOUCHERS", "AUTH_INCOMING_INVOICE", "AUTH_VOUCHER_SETTINGS", "AUTH_BANK_RECONCILIATION", "AUTH_VAT_REPORT", "AUTH_SICKNESS_REIMBURSEMENT", "AUTH_REGISTER_INCOME", "AUTH_ADVANCED_VOUCHER", "AUTH_VOUCHER_IMPORT", "AUTH_PRODUCT_INVOICE", "AUTH_CUSTOMS_DECLARATION", "AUTH_VOUCHER_AUTOMATION", "AUTH_REMIT_FILES_VOUCHER_OVERVIEW", "YEAR_END_REPORT_ADMINISTRATOR" ] }, "description" : { "type" : "string", "readOnly" : true }, "additionalInformation" : { "type" : "string", "readOnly" : true }, "hasRequiredModule" : { "type" : "boolean", "readOnly" : true }, "hasReceivedAccess" : { "type" : "boolean", "readOnly" : true }, "hasAccess" : { "type" : "boolean", "readOnly" : true }, "dependencies" : { "type" : "array", "readOnly" : true, "items" : { "type" : "string", "readOnly" : true, "enum" : [ "ROLE_ADMINISTRATOR", "AUTH_READ_ONLY", "AUTH_LOGIN", "AUTH_ALL_VOUCHERS", "AUTH_COMPANY_ACCOUNTING_REPORTS", "AUTH_ACCOUNTING_SETTINGS", "AUTH_COMPANY_RESULT_BUDGET", "AUTH_COMPANY_CUSTOMER_ACCOUNTING_REPORTS", "AUTH_COMPANY_VENDOR_ACCOUNTING_REPORTS", "AUTH_COMPANY_EMPLOYEE_ACCOUNTING_REPORTS", "AUTH_COMPANY_ASSET_ACCOUNTING_REPORTS", "AUTH_COMPANY_ATTESTOR", "AUTH_DIRECT_REMIT_ADMIN", "AUTH_DIRECT_REMIT_LIGHT", "AUTH_MANAGE_BANK_ACCOUNT_NUMBERS", "AUTH_DIRECT_REMIT_CREATE_NEW", "AUTH_DIRECT_REMIT_ADMIN_ZTL", "AUTH_COMPANY_ADMIN", "AUTH_EMPLOYEE_INFO", "AUTH_COMPANY_EMPLOYEE_ADMIN", "AUTH_CUSTOMER_ADMIN", "AUTH_CUSTOMER_INFO", "AUTH_CREATE_CUSTOMER", "AUTH_INBOX_ARCHIVE_ALL_EMPLOYEES", "AUTH_ARCHIVE_READ", "AUTH_ARCHIVE_WRITE", "AUTH_ARCHIVE_ADMIN", "AUTH_CREATE_NOTE", "AUTH_CREATE_NOTE_TEMPLATE", "AUTH_INVOICING", "AUTH_OFFER_ADMIN", "AUTH_ORDER_ADMIN", "AUTH_CREATE_OFFER", "AUTH_CREATE_ORDER", "AUTH_FACTORING_EXPORT", "AUTH_INVOICE_ADMIN_SETTINGS", "AUTH_PROJECT_MANAGER", "AUTH_PROJECT_MANAGER_COMPANY", "AUTH_DEPARTMENT_REPORT", "AUTH_CREATE_PROJECT", "AUTH_PROJECT_EXTRA_COSTS", "AUTH_PROJECT_INFO", "AUTH_PROJECT_ADMIN_SETTINGS", "AUTH_PROJECT_OWN_PROJECT_RESULT_REPORT", "AUTH_PROJECT_CONTROL_FORMS", "AUTH_PRODUCT_ADMIN", "AUTH_PRODUCT_NET_PRICE", "AUTH_PURCHASING_MANAGER", "REPORT_ADMINISTRATOR", "REPORT_AUTHOR", "AUTH_COMPANY_WAGE_ADMIN", "AUTH_WAGE_ADMIN_SETTINGS", "AUTH_WAGE_INFORMATION", "AUTH_TASK_ADMIN", "AUTH_HOURS_COMPANY", "AUTH_HOUR_STATISTICS_COMPANY", "AUTH_HOURLIST", "AUTH_HOURLIST_SETTINGS", "AUTH_HOLYDAY_PLAN", "AUTH_TRAVEL_REPORTS_COMPANY", "AUTH_TRAVEL_REPORT", "AUTH_TRAVEL_EXPENSE_ADMIN_SETTINGS", "AUTH_VOUCHER_EXPORT", "AUTH_INBOX_VOUCHER", "AUTH_INCOMPLETE_VOUCHERS", "AUTH_INCOMING_INVOICE", "AUTH_VOUCHER_SETTINGS", "AUTH_BANK_RECONCILIATION", "AUTH_VAT_REPORT", "AUTH_SICKNESS_REIMBURSEMENT", "AUTH_REGISTER_INCOME", "AUTH_ADVANCED_VOUCHER", "AUTH_VOUCHER_IMPORT", "AUTH_PRODUCT_INVOICE", "AUTH_CUSTOMS_DECLARATION", "AUTH_VOUCHER_AUTOMATION", "AUTH_REMIT_FILES_VOUCHER_OVERVIEW", "YEAR_END_REPORT_ADMINISTRATOR" ] } }, "reversedDependencies" : { "type" : "array", "readOnly" : true, "items" : { "type" : "string", "readOnly" : true, "enum" : [ "ROLE_ADMINISTRATOR", "AUTH_READ_ONLY", "AUTH_LOGIN", "AUTH_ALL_VOUCHERS", "AUTH_COMPANY_ACCOUNTING_REPORTS", "AUTH_ACCOUNTING_SETTINGS", "AUTH_COMPANY_RESULT_BUDGET", "AUTH_COMPANY_CUSTOMER_ACCOUNTING_REPORTS", "AUTH_COMPANY_VENDOR_ACCOUNTING_REPORTS", "AUTH_COMPANY_EMPLOYEE_ACCOUNTING_REPORTS", "AUTH_COMPANY_ASSET_ACCOUNTING_REPORTS", "AUTH_COMPANY_ATTESTOR", "AUTH_DIRECT_REMIT_ADMIN", "AUTH_DIRECT_REMIT_LIGHT", "AUTH_MANAGE_BANK_ACCOUNT_NUMBERS", "AUTH_DIRECT_REMIT_CREATE_NEW", "AUTH_DIRECT_REMIT_ADMIN_ZTL", "AUTH_COMPANY_ADMIN", "AUTH_EMPLOYEE_INFO", "AUTH_COMPANY_EMPLOYEE_ADMIN", "AUTH_CUSTOMER_ADMIN", "AUTH_CUSTOMER_INFO", "AUTH_CREATE_CUSTOMER", "AUTH_INBOX_ARCHIVE_ALL_EMPLOYEES", "AUTH_ARCHIVE_READ", "AUTH_ARCHIVE_WRITE", "AUTH_ARCHIVE_ADMIN", "AUTH_CREATE_NOTE", "AUTH_CREATE_NOTE_TEMPLATE", "AUTH_INVOICING", "AUTH_OFFER_ADMIN", "AUTH_ORDER_ADMIN", "AUTH_CREATE_OFFER", "AUTH_CREATE_ORDER", "AUTH_FACTORING_EXPORT", "AUTH_INVOICE_ADMIN_SETTINGS", "AUTH_PROJECT_MANAGER", "AUTH_PROJECT_MANAGER_COMPANY", "AUTH_DEPARTMENT_REPORT", "AUTH_CREATE_PROJECT", "AUTH_PROJECT_EXTRA_COSTS", "AUTH_PROJECT_INFO", "AUTH_PROJECT_ADMIN_SETTINGS", "AUTH_PROJECT_OWN_PROJECT_RESULT_REPORT", "AUTH_PROJECT_CONTROL_FORMS", "AUTH_PRODUCT_ADMIN", "AUTH_PRODUCT_NET_PRICE", "AUTH_PURCHASING_MANAGER", "REPORT_ADMINISTRATOR", "REPORT_AUTHOR", "AUTH_COMPANY_WAGE_ADMIN", "AUTH_WAGE_ADMIN_SETTINGS", "AUTH_WAGE_INFORMATION", "AUTH_TASK_ADMIN", "AUTH_HOURS_COMPANY", "AUTH_HOUR_STATISTICS_COMPANY", "AUTH_HOURLIST", "AUTH_HOURLIST_SETTINGS", "AUTH_HOLYDAY_PLAN", "AUTH_TRAVEL_REPORTS_COMPANY", "AUTH_TRAVEL_REPORT", "AUTH_TRAVEL_EXPENSE_ADMIN_SETTINGS", "AUTH_VOUCHER_EXPORT", "AUTH_INBOX_VOUCHER", "AUTH_INCOMPLETE_VOUCHERS", "AUTH_INCOMING_INVOICE", "AUTH_VOUCHER_SETTINGS", "AUTH_BANK_RECONCILIATION", "AUTH_VAT_REPORT", "AUTH_SICKNESS_REIMBURSEMENT", "AUTH_REGISTER_INCOME", "AUTH_ADVANCED_VOUCHER", "AUTH_VOUCHER_IMPORT", "AUTH_PRODUCT_INVOICE", "AUTH_CUSTOMS_DECLARATION", "AUTH_VOUCHER_AUTOMATION", "AUTH_REMIT_FILES_VOUCHER_OVERVIEW", "YEAR_END_REPORT_ADMINISTRATOR" ] } } }, "readOnly" : true }, "ResponseWrapperListAccountantClientAccessModel" : { "type" : "object", "properties" : { "value" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/AccountantClientAccessModel" } } } }, "Category" : { "type" : "object", "properties" : { "category" : { "type" : "string", "readOnly" : true, "enum" : [ "GENERAL", "ACCOUNTING", "VOUCHER_APPROVAL", "BANK", "COMPANY", "CUSTOMER", "DOCUMENT", "INVOICING", "PROJECT", "PRODUCT", "REPORT", "WAGE", "TASK", "HOUR_LIST", "TRAVEL_REPORT", "VOUCHER", "YEAR_END_REPORT" ] }, "description" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "ResponseWrapperListRoleCategoryContainer" : { "type" : "object", "properties" : { "value" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/RoleCategoryContainer" } } } }, "RoleCategoryContainer" : { "type" : "object", "properties" : { "category" : { "$ref" : "#/components/schemas/Category" }, "roleContainers" : { "type" : "array", "readOnly" : true, "items" : { "type" : "string", "readOnly" : true, "enum" : [ "ROLE_ADMINISTRATOR", "AUTH_READ_ONLY", "AUTH_LOGIN", "AUTH_ALL_VOUCHERS", "AUTH_COMPANY_ACCOUNTING_REPORTS", "AUTH_ACCOUNTING_SETTINGS", "AUTH_COMPANY_RESULT_BUDGET", "AUTH_COMPANY_CUSTOMER_ACCOUNTING_REPORTS", "AUTH_COMPANY_VENDOR_ACCOUNTING_REPORTS", "AUTH_COMPANY_EMPLOYEE_ACCOUNTING_REPORTS", "AUTH_COMPANY_ASSET_ACCOUNTING_REPORTS", "AUTH_COMPANY_ATTESTOR", "AUTH_DIRECT_REMIT_ADMIN", "AUTH_DIRECT_REMIT_LIGHT", "AUTH_MANAGE_BANK_ACCOUNT_NUMBERS", "AUTH_DIRECT_REMIT_CREATE_NEW", "AUTH_DIRECT_REMIT_ADMIN_ZTL", "AUTH_COMPANY_ADMIN", "AUTH_EMPLOYEE_INFO", "AUTH_COMPANY_EMPLOYEE_ADMIN", "AUTH_CUSTOMER_ADMIN", "AUTH_CUSTOMER_INFO", "AUTH_CREATE_CUSTOMER", "AUTH_INBOX_ARCHIVE_ALL_EMPLOYEES", "AUTH_ARCHIVE_READ", "AUTH_ARCHIVE_WRITE", "AUTH_ARCHIVE_ADMIN", "AUTH_CREATE_NOTE", "AUTH_CREATE_NOTE_TEMPLATE", "AUTH_INVOICING", "AUTH_OFFER_ADMIN", "AUTH_ORDER_ADMIN", "AUTH_CREATE_OFFER", "AUTH_CREATE_ORDER", "AUTH_FACTORING_EXPORT", "AUTH_INVOICE_ADMIN_SETTINGS", "AUTH_PROJECT_MANAGER", "AUTH_PROJECT_MANAGER_COMPANY", "AUTH_DEPARTMENT_REPORT", "AUTH_CREATE_PROJECT", "AUTH_PROJECT_EXTRA_COSTS", "AUTH_PROJECT_INFO", "AUTH_PROJECT_ADMIN_SETTINGS", "AUTH_PROJECT_OWN_PROJECT_RESULT_REPORT", "AUTH_PROJECT_CONTROL_FORMS", "AUTH_PRODUCT_ADMIN", "AUTH_PRODUCT_NET_PRICE", "AUTH_PURCHASING_MANAGER", "REPORT_ADMINISTRATOR", "REPORT_AUTHOR", "AUTH_COMPANY_WAGE_ADMIN", "AUTH_WAGE_ADMIN_SETTINGS", "AUTH_WAGE_INFORMATION", "AUTH_TASK_ADMIN", "AUTH_HOURS_COMPANY", "AUTH_HOUR_STATISTICS_COMPANY", "AUTH_HOURLIST", "AUTH_HOURLIST_SETTINGS", "AUTH_HOLYDAY_PLAN", "AUTH_TRAVEL_REPORTS_COMPANY", "AUTH_TRAVEL_REPORT", "AUTH_TRAVEL_EXPENSE_ADMIN_SETTINGS", "AUTH_VOUCHER_EXPORT", "AUTH_INBOX_VOUCHER", "AUTH_INCOMPLETE_VOUCHERS", "AUTH_INCOMING_INVOICE", "AUTH_VOUCHER_SETTINGS", "AUTH_BANK_RECONCILIATION", "AUTH_VAT_REPORT", "AUTH_SICKNESS_REIMBURSEMENT", "AUTH_REGISTER_INCOME", "AUTH_ADVANCED_VOUCHER", "AUTH_VOUCHER_IMPORT", "AUTH_PRODUCT_INVOICE", "AUTH_CUSTOMS_DECLARATION", "AUTH_VOUCHER_AUTOMATION", "AUTH_REMIT_FILES_VOUCHER_OVERVIEW", "YEAR_END_REPORT_ADMINISTRATOR" ] } }, "hidden" : { "type" : "boolean" } } }, "ClientAccessTemplate" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "name" : { "type" : "string" }, "roleContainers" : { "type" : "array", "items" : { "type" : "string", "enum" : [ "ROLE_ADMINISTRATOR", "AUTH_READ_ONLY", "AUTH_LOGIN", "AUTH_ALL_VOUCHERS", "AUTH_COMPANY_ACCOUNTING_REPORTS", "AUTH_ACCOUNTING_SETTINGS", "AUTH_COMPANY_RESULT_BUDGET", "AUTH_COMPANY_CUSTOMER_ACCOUNTING_REPORTS", "AUTH_COMPANY_VENDOR_ACCOUNTING_REPORTS", "AUTH_COMPANY_EMPLOYEE_ACCOUNTING_REPORTS", "AUTH_COMPANY_ASSET_ACCOUNTING_REPORTS", "AUTH_COMPANY_ATTESTOR", "AUTH_DIRECT_REMIT_ADMIN", "AUTH_DIRECT_REMIT_LIGHT", "AUTH_MANAGE_BANK_ACCOUNT_NUMBERS", "AUTH_DIRECT_REMIT_CREATE_NEW", "AUTH_DIRECT_REMIT_ADMIN_ZTL", "AUTH_COMPANY_ADMIN", "AUTH_EMPLOYEE_INFO", "AUTH_COMPANY_EMPLOYEE_ADMIN", "AUTH_CUSTOMER_ADMIN", "AUTH_CUSTOMER_INFO", "AUTH_CREATE_CUSTOMER", "AUTH_INBOX_ARCHIVE_ALL_EMPLOYEES", "AUTH_ARCHIVE_READ", "AUTH_ARCHIVE_WRITE", "AUTH_ARCHIVE_ADMIN", "AUTH_CREATE_NOTE", "AUTH_CREATE_NOTE_TEMPLATE", "AUTH_INVOICING", "AUTH_OFFER_ADMIN", "AUTH_ORDER_ADMIN", "AUTH_CREATE_OFFER", "AUTH_CREATE_ORDER", "AUTH_FACTORING_EXPORT", "AUTH_INVOICE_ADMIN_SETTINGS", "AUTH_PROJECT_MANAGER", "AUTH_PROJECT_MANAGER_COMPANY", "AUTH_DEPARTMENT_REPORT", "AUTH_CREATE_PROJECT", "AUTH_PROJECT_EXTRA_COSTS", "AUTH_PROJECT_INFO", "AUTH_PROJECT_ADMIN_SETTINGS", "AUTH_PROJECT_OWN_PROJECT_RESULT_REPORT", "AUTH_PROJECT_CONTROL_FORMS", "AUTH_PRODUCT_ADMIN", "AUTH_PRODUCT_NET_PRICE", "AUTH_PURCHASING_MANAGER", "REPORT_ADMINISTRATOR", "REPORT_AUTHOR", "AUTH_COMPANY_WAGE_ADMIN", "AUTH_WAGE_ADMIN_SETTINGS", "AUTH_WAGE_INFORMATION", "AUTH_TASK_ADMIN", "AUTH_HOURS_COMPANY", "AUTH_HOUR_STATISTICS_COMPANY", "AUTH_HOURLIST", "AUTH_HOURLIST_SETTINGS", "AUTH_HOLYDAY_PLAN", "AUTH_TRAVEL_REPORTS_COMPANY", "AUTH_TRAVEL_REPORT", "AUTH_TRAVEL_EXPENSE_ADMIN_SETTINGS", "AUTH_VOUCHER_EXPORT", "AUTH_INBOX_VOUCHER", "AUTH_INCOMPLETE_VOUCHERS", "AUTH_INCOMING_INVOICE", "AUTH_VOUCHER_SETTINGS", "AUTH_BANK_RECONCILIATION", "AUTH_VAT_REPORT", "AUTH_SICKNESS_REIMBURSEMENT", "AUTH_REGISTER_INCOME", "AUTH_ADVANCED_VOUCHER", "AUTH_VOUCHER_IMPORT", "AUTH_PRODUCT_INVOICE", "AUTH_CUSTOMS_DECLARATION", "AUTH_VOUCHER_AUTOMATION", "AUTH_REMIT_FILES_VOUCHER_OVERVIEW", "YEAR_END_REPORT_ADMINISTRATOR" ] } } }, "readOnly" : true }, "ResponseWrapperListClientAccessTemplate" : { "type" : "object", "properties" : { "value" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ClientAccessTemplate" } } } }, "AccountantCustomer" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "displayName" : { "type" : "string" } }, "readOnly" : true }, "ListResponseAccountantCustomer" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/AccountantCustomer" } } } }, "ResponseWrapperClientAccessTemplate" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ClientAccessTemplate" } } }, "ListResponseClientAccessTemplate" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ClientAccessTemplate" } } } }, "ClientForApproval" : { "type" : "object", "properties" : { "clientId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "clientName" : { "type" : "string", "readOnly" : true }, "customerId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "authorized" : { "type" : "boolean", "readOnly" : true }, "forApprovalCount" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "url" : { "type" : "string", "readOnly" : true } } }, "ResponseWrapperListClientForApproval" : { "type" : "object", "properties" : { "value" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ClientForApproval" } } } }, "ClientForReview" : { "type" : "object", "properties" : { "clientId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "clientName" : { "type" : "string", "readOnly" : true }, "customerId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "authorized" : { "type" : "boolean", "readOnly" : true }, "forReviewCount" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "url" : { "type" : "string", "readOnly" : true } } }, "ResponseWrapperListClientForReview" : { "type" : "object", "properties" : { "value" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ClientForReview" } } } }, "ClientInbox" : { "type" : "object", "properties" : { "clientId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "clientName" : { "type" : "string", "readOnly" : true }, "customerId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "authorized" : { "type" : "boolean", "readOnly" : true }, "inboxCount" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "url" : { "type" : "string", "readOnly" : true } } }, "ResponseWrapperListClientInbox" : { "type" : "object", "properties" : { "value" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ClientInbox" } } } }, "ClientForRemit" : { "type" : "object", "properties" : { "clientId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "clientName" : { "type" : "string", "readOnly" : true }, "customerId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "authorized" : { "type" : "boolean", "readOnly" : true }, "forPaymentCount" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "url" : { "type" : "string", "readOnly" : true } } }, "ResponseWrapperListClientForRemit" : { "type" : "object", "properties" : { "value" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ClientForRemit" } } } }, "ClientForTravelsAndExpenses" : { "type" : "object", "properties" : { "clientId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "clientName" : { "type" : "string", "readOnly" : true }, "customerId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "authorized" : { "type" : "boolean", "readOnly" : true }, "forTravelsAndExpensesCount" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "url" : { "type" : "string", "readOnly" : true } } }, "ResponseWrapperListClientForTravelsAndExpenses" : { "type" : "object", "properties" : { "value" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ClientForTravelsAndExpenses" } } } }, "AccountantClient" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "displayName" : { "type" : "string" } }, "readOnly" : true }, "ListResponseAccountantClient" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/AccountantClient" } } } }, "TodoListItemStatus" : { "type" : "object", "properties" : { "type" : { "type" : "string", "enum" : [ "OVERDUE", "NOT_STARTED", "INCOMPLETE", "COMPLETED", "NOT_APPLICABLE" ] }, "message" : { "type" : "string" }, "lastUpdatedBy" : { "type" : "string" }, "lastUpdatedDate" : { "type" : "string" } } }, "TodoListSingleChanges" : { "type" : "object", "properties" : { "type" : { "type" : "string", "enum" : [ "CUSTOM", "HARMONIZATION", "VAT_RETURNS", "AMELDING", "WAGE_TRANSACTIONS", "PERIOD_OVERVIEW", "ANNUAL_ACCOUNTS" ] }, "customerId" : { "type" : "integer", "format" : "int32" }, "periodStart" : { "type" : "string", "description" : "The start period" }, "originalDate" : { "type" : "string", "description" : "The original date" }, "customDate" : { "type" : "string", "description" : "The customized date" }, "originalAccountManagerId" : { "type" : "integer", "format" : "int32" }, "customAccountManagerId" : { "type" : "integer", "format" : "int32" }, "originalStatus" : { "$ref" : "#/components/schemas/TodoListItemStatus" }, "customStatus" : { "$ref" : "#/components/schemas/TodoListItemStatus" } } }, "ResponseWrapperListTodoListAmelding" : { "type" : "object", "properties" : { "value" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/TodoListAmelding" } } } }, "TodoListAmelding" : { "type" : "object", "properties" : { "itemIdentifier" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "customerId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "clientName" : { "type" : "string", "readOnly" : true }, "clientCompanyId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "accountManagerName" : { "type" : "string", "readOnly" : true }, "accountManagerId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "customAccountManagerName" : { "type" : "string", "readOnly" : true }, "customAccountManagerId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "status" : { "$ref" : "#/components/schemas/TodoListItemStatus" }, "customStatus" : { "$ref" : "#/components/schemas/TodoListItemStatus" }, "dueDate" : { "type" : "string", "readOnly" : true }, "customDueDate" : { "type" : "string", "readOnly" : true }, "periodStart" : { "type" : "string", "readOnly" : true }, "period" : { "type" : "string", "readOnly" : true }, "year" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "expandedDetails" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/TodoListExpandedDetail" } } } }, "TodoListExpandedDetail" : { "type" : "object", "properties" : { "category" : { "type" : "string", "enum" : [ "RECONCILIATION_BANK", "RECONCILIATION_LEDGER", "RECONCILIATION_CUSTOMER", "RECONCILIATION_VENDOR", "RECONCILIATION_WAGE", "AMELDING_EMPLOYMENT", "AMELDING_WAGE_TRANSACTION", "WAGE_TRANSACTION_PAID_MANDATORY_DEDUCTION", "WAGE_TRANSACTION_PAID_TAX_DEDUCTION", "WAGE_TRANSACTION_PAID_PAYROLL_TAX" ] }, "description" : { "type" : "string" }, "status" : { "$ref" : "#/components/schemas/TodoListItemStatus" }, "url" : { "type" : "string" } }, "readOnly" : true }, "ResponseWrapperListTodoListAnnualAccounts" : { "type" : "object", "properties" : { "value" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/TodoListAnnualAccounts" } } } }, "TodoListAnnualAccounts" : { "type" : "object", "properties" : { "itemIdentifier" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "customerId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "clientName" : { "type" : "string", "readOnly" : true }, "clientCompanyId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "accountManagerName" : { "type" : "string", "readOnly" : true }, "accountManagerId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "customAccountManagerName" : { "type" : "string", "readOnly" : true }, "customAccountManagerId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "status" : { "$ref" : "#/components/schemas/TodoListItemStatus" }, "customStatus" : { "$ref" : "#/components/schemas/TodoListItemStatus" }, "dueDate" : { "type" : "string", "readOnly" : true }, "customDueDate" : { "type" : "string", "readOnly" : true }, "periodStart" : { "type" : "string", "readOnly" : true }, "period" : { "type" : "string", "readOnly" : true }, "year" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "url" : { "type" : "string", "readOnly" : true } } }, "ListResponseCompany" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Company" } } } }, "ResponseWrapperListTodoListHarmonization" : { "type" : "object", "properties" : { "value" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/TodoListHarmonization" } } } }, "TodoListHarmonization" : { "type" : "object", "properties" : { "itemIdentifier" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "customerId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "clientName" : { "type" : "string", "readOnly" : true }, "clientCompanyId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "accountManagerName" : { "type" : "string", "readOnly" : true }, "accountManagerId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "customAccountManagerName" : { "type" : "string", "readOnly" : true }, "customAccountManagerId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "status" : { "$ref" : "#/components/schemas/TodoListItemStatus" }, "customStatus" : { "$ref" : "#/components/schemas/TodoListItemStatus" }, "dueDate" : { "type" : "string", "readOnly" : true }, "customDueDate" : { "type" : "string", "readOnly" : true }, "periodStart" : { "type" : "string", "readOnly" : true }, "period" : { "type" : "string", "readOnly" : true }, "year" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "expandedDetails" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/TodoListExpandedDetail" } } } }, "ResponseWrapperListTodoListPeriodOverview" : { "type" : "object", "properties" : { "value" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/TodoListPeriodOverview" } } } }, "TodoListPeriodOverview" : { "type" : "object", "properties" : { "itemIdentifier" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "customerId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "clientName" : { "type" : "string", "readOnly" : true }, "clientCompanyId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "accountManagerName" : { "type" : "string", "readOnly" : true }, "accountManagerId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "customAccountManagerName" : { "type" : "string", "readOnly" : true }, "customAccountManagerId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "status" : { "$ref" : "#/components/schemas/TodoListItemStatus" }, "customStatus" : { "$ref" : "#/components/schemas/TodoListItemStatus" }, "dueDate" : { "type" : "string", "readOnly" : true }, "customDueDate" : { "type" : "string", "readOnly" : true }, "periodStart" : { "type" : "string", "readOnly" : true }, "period" : { "type" : "string", "readOnly" : true }, "year" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "url" : { "type" : "string", "readOnly" : true } } }, "ResponseWrapperListTodoListVat" : { "type" : "object", "properties" : { "value" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/TodoListVat" } } } }, "TodoListVat" : { "type" : "object", "properties" : { "itemIdentifier" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "customerId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "clientName" : { "type" : "string", "readOnly" : true }, "clientCompanyId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "accountManagerName" : { "type" : "string", "readOnly" : true }, "accountManagerId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "customAccountManagerName" : { "type" : "string", "readOnly" : true }, "customAccountManagerId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "status" : { "$ref" : "#/components/schemas/TodoListItemStatus" }, "customStatus" : { "$ref" : "#/components/schemas/TodoListItemStatus" }, "dueDate" : { "type" : "string", "readOnly" : true }, "customDueDate" : { "type" : "string", "readOnly" : true }, "periodStart" : { "type" : "string", "readOnly" : true }, "period" : { "type" : "string", "readOnly" : true }, "year" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "url" : { "type" : "string", "readOnly" : true } } }, "ResponseWrapperListTodoListWageTransaction" : { "type" : "object", "properties" : { "value" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/TodoListWageTransaction" } } } }, "TodoListWageTransaction" : { "type" : "object", "properties" : { "itemIdentifier" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "customerId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "clientName" : { "type" : "string", "readOnly" : true }, "clientCompanyId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "accountManagerName" : { "type" : "string", "readOnly" : true }, "accountManagerId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "customAccountManagerName" : { "type" : "string", "readOnly" : true }, "customAccountManagerId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "status" : { "$ref" : "#/components/schemas/TodoListItemStatus" }, "customStatus" : { "$ref" : "#/components/schemas/TodoListItemStatus" }, "dueDate" : { "type" : "string", "readOnly" : true }, "customDueDate" : { "type" : "string", "readOnly" : true }, "periodStart" : { "type" : "string", "readOnly" : true }, "period" : { "type" : "string", "readOnly" : true }, "year" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "expandedDetails" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/TodoListExpandedDetail" } } } }, "ResponseWrapperTodoListComment" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/TodoListComment" } } }, "TodoListComment" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "customerId" : { "type" : "integer", "format" : "int32" }, "employee" : { "$ref" : "#/components/schemas/Employee" }, "type" : { "type" : "string" }, "periodStart" : { "type" : "string" }, "comment" : { "type" : "string" }, "createdAt" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "ListResponseTodoListComment" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/TodoListComment" } } } }, "ApiConsumer" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "consumerName" : { "type" : "string" }, "emails" : { "type" : "string" } } }, "ResponseWrapperApiConsumer" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ApiConsumer" } } }, "ListResponseApiConsumer" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ApiConsumer" } } } }, "ConsumerToken" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "apiConsumer" : { "$ref" : "#/components/schemas/ApiConsumer" }, "token" : { "type" : "string" }, "expirationDate" : { "type" : "string" } } }, "ResponseWrapperConsumerToken" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ConsumerToken" } } }, "ApiError" : { "type" : "object", "properties" : { "status" : { "type" : "integer", "format" : "int32" }, "code" : { "type" : "integer", "format" : "int32" }, "message" : { "type" : "string" }, "link" : { "type" : "string" }, "developerMessage" : { "type" : "string" }, "validationMessages" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ApiValidationMessage" } }, "requestId" : { "type" : "string" } } }, "ApiValidationMessage" : { "type" : "object", "properties" : { "field" : { "type" : "string", "readOnly" : true }, "message" : { "type" : "string", "readOnly" : true }, "path" : { "type" : "string", "readOnly" : true }, "rootId" : { "type" : "integer", "format" : "int64", "readOnly" : true } }, "readOnly" : true }, "EmployeeToken" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "employee" : { "$ref" : "#/components/schemas/Employee" }, "apiConsumer" : { "$ref" : "#/components/schemas/ApiConsumer" }, "token" : { "type" : "string" }, "expirationDate" : { "type" : "string" } } }, "ResponseWrapperEmployeeToken" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/EmployeeToken" } } }, "EmployeeTokenBundle" : { "type" : "object", "properties" : { "employeeToken" : { "$ref" : "#/components/schemas/EmployeeToken" }, "employee" : { "$ref" : "#/components/schemas/Employee" }, "robotEmployee" : { "$ref" : "#/components/schemas/Employee" } } }, "ResponseWrapperEmployeeTokenBundle" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/EmployeeTokenBundle" } } }, "VismaConnectMobileAppLogin" : { "type" : "object", "properties" : { "idToken" : { "type" : "string", "description" : "Id token from Visma Connect" }, "accessToken" : { "type" : "string", "description" : "Access token from Visma Connect" }, "expirationDate" : { "type" : "string", "description" : "Expiration date for the combined token" }, "employeeId" : { "type" : "integer", "description" : "Optional employee ID. Default employee is used when null", "format" : "int64" } } }, "EmployeeCompany" : { "type" : "object", "properties" : { "isDefault" : { "type" : "boolean" }, "company" : { "$ref" : "#/components/schemas/Company" }, "employee" : { "$ref" : "#/components/schemas/Employee" }, "isSuspended" : { "type" : "boolean" } }, "readOnly" : true }, "ListResponseEmployeeCompany" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/EmployeeCompany" } } } }, "VismaConnectMobileAppTokens" : { "type" : "object", "properties" : { "idToken" : { "type" : "string", "description" : "Id token from Visma Connect" }, "accessToken" : { "type" : "string", "description" : "Access token from Visma Connect" } } }, "AutoLogin" : { "type" : "object", "properties" : { "loginUrl" : { "type" : "string", "readOnly" : true } } }, "ResponseWrapperAutoLogin" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/AutoLogin" } } }, "AutoLoginPayload" : { "type" : "object", "properties" : { "redirectPath" : { "type" : "string" } } }, "ResponseWrapperVismaConnectLogin" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/VismaConnectLogin" } } }, "VismaConnectLogin" : { "type" : "object", "properties" : { "connectEnabled" : { "type" : "boolean" }, "connectOnboarded" : { "type" : "boolean" }, "needsIntroduction" : { "type" : "boolean" } } }, "ResponseWrapperSessionToken" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/SessionToken" } } }, "SessionToken" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "consumerToken" : { "$ref" : "#/components/schemas/ConsumerToken" }, "employeeToken" : { "$ref" : "#/components/schemas/EmployeeToken" }, "expirationDate" : { "type" : "string" }, "token" : { "type" : "string" }, "encryptionKey" : { "type" : "string", "readOnly" : true } } }, "PostSessionTokenBody" : { "type" : "object", "properties" : { "employeeToken" : { "type" : "string", "description" : "Token of the API consumer" }, "consumerToken" : { "type" : "string", "description" : "The employee's token" }, "expirationDate" : { "type" : "string", "description" : "Expiration date for the combined token" } } }, "ResponseWrapperCompany" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/Company" } } }, "AltinnCompanyModule" : { "type" : "object", "properties" : { "altInnId" : { "type" : "integer", "format" : "int32" }, "altInnPassword" : { "type" : "string" } } }, "ResponseWrapperAltinnCompanyModule" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/AltinnCompanyModule" } } }, "CompanyAuthority" : { "type" : "object", "properties" : { "hasCompanyAuthority" : { "type" : "string", "enum" : [ "DENIED", "MANUAL_CHECK", "ACCEPTED" ] } } }, "ResponseWrapperCompanyAuthority" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/CompanyAuthority" } } }, "BrregCompanyLookup" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "name" : { "type" : "string", "readOnly" : true }, "number" : { "type" : "string", "readOnly" : true }, "address" : { "type" : "string", "readOnly" : true }, "postalCode" : { "type" : "string", "readOnly" : true }, "postalArea" : { "type" : "string", "readOnly" : true }, "businessAddress" : { "type" : "string", "readOnly" : true }, "businessPostalCode" : { "type" : "string", "readOnly" : true }, "businessPostalArea" : { "type" : "string", "readOnly" : true } }, "description" : "Lookup of organization number from smartScan", "readOnly" : true }, "ListResponseBrregCompanyLookup" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/BrregCompanyLookup" } } } }, "Modules" : { "type" : "object", "properties" : { "accounting" : { "type" : "boolean", "description" : "Not readable. Only for input." }, "invoice" : { "type" : "boolean", "description" : "Not readable. Only for input." }, "salary" : { "type" : "boolean", "description" : "Not readable. Only for input." }, "salaryStartDate" : { "type" : "string" }, "project" : { "type" : "boolean", "description" : "Not readable. Only for input." }, "ocr" : { "type" : "boolean" }, "autoPayOcr" : { "type" : "boolean" }, "remit" : { "type" : "boolean" }, "electronicVouchers" : { "type" : "boolean", "description" : "Not readable. Only for input." }, "electro" : { "type" : "boolean", "description" : "Not readable. Only for input." }, "vvs" : { "type" : "boolean", "description" : "Not readable. Only for input." }, "agro" : { "type" : "boolean" }, "mamut" : { "type" : "boolean" }, "approveVoucher" : { "type" : "boolean", "description" : "Only readable for now", "readOnly" : true }, "moduleprojecteconomy" : { "type" : "boolean" }, "moduleemployee" : { "type" : "boolean" }, "moduleContact" : { "type" : "boolean" }, "modulecustomer" : { "type" : "boolean" }, "modulenrf" : { "type" : "boolean" }, "moduleelectro" : { "type" : "boolean" }, "moduleRackbeat" : { "type" : "boolean" }, "moduleOrderOut" : { "type" : "boolean" }, "moduledepartment" : { "type" : "boolean" }, "moduleprojectcategory" : { "type" : "boolean" }, "moduleinvoice" : { "type" : "boolean" }, "moduleCurrency" : { "type" : "boolean" }, "moduleProjectBudget" : { "type" : "boolean" }, "moduleProduct" : { "type" : "boolean" }, "moduleQuantityHandling" : { "type" : "boolean" }, "completeMonthlyHourLists" : { "type" : "boolean" }, "moduleDepartmentAccounting" : { "type" : "boolean" }, "moduleWageProjectAccounting" : { "type" : "boolean" }, "moduleProjectAccounting" : { "type" : "boolean", "description" : "read only", "readOnly" : true }, "moduleProductAccounting" : { "type" : "boolean", "description" : "read only", "readOnly" : true }, "moduleVacationBalance" : { "type" : "boolean", "description" : "read only", "readOnly" : true }, "moduleHolydayPlan" : { "type" : "boolean", "description" : "read only", "readOnly" : true }, "moduleAccountantConnectClient" : { "type" : "boolean", "description" : "read only", "readOnly" : true }, "moduleMultipleLedgers" : { "type" : "boolean" }, "moduleFixedAssetRegister" : { "type" : "boolean", "description" : "read only", "readOnly" : true }, "moduleDigitalSignature" : { "type" : "boolean" }, "moduleproject" : { "type" : "boolean" }, "moduleLogistics" : { "type" : "boolean" }, "moduleLogisticsLight" : { "type" : "boolean" } } }, "ResponseWrapperModules" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/Modules" } } }, "ListResponseSalesModule" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/SalesModule" } } } }, "SalesModule" : { "type" : "object", "properties" : { "name" : { "type" : "string", "enum" : [ "MAMUT", "MAMUT_WITH_WAGE", "AGRO_LICENCE", "AGRO_CLIENT", "AGRO_DOCUMENT_CENTER", "AGRO_INVOICE", "AGRO_INVOICE_MIGRATED", "AGRO_WAGE", "NO1TS", "NO1TS_TRAVELREPORT", "NO1TS_ACCOUNTING", "DIYPACKAGE", "BASIS", "SMART", "KOMPLETT", "VVS", "ELECTRO", "ACCOUNTING_OFFICE", "WAGE", "SMART_WAGE", "TIME_TRACKING", "SMART_TIME_TRACKING", "SMART_PROJECT", "OCR", "API_V2", "ELECTRONIC_VOUCHERS", "UP_TO_100_VOUCHERS", "UP_TO_500_VOUCHERS", "UP_TO_1000_VOUCHERS", "UP_TO_2000_VOUCHERS", "UP_TO_3500_VOUCHERS", "UP_TO_5000_VOUCHERS", "UP_TO_10000_VOUCHERS", "UNLIMITED_VOUCHERS", "UP_TO_100_VOUCHERS_AUTOMATION", "UP_TO_500_VOUCHERS_AUTOMATION", "UP_TO_1000_VOUCHERS_AUTOMATION", "UP_TO_2000_VOUCHERS_AUTOMATION", "UP_TO_3500_VOUCHERS_AUTOMATION", "UP_TO_5000_VOUCHERS_AUTOMATION", "UP_TO_10000_VOUCHERS_AUTOMATION", "UNLIMITED_VOUCHERS_AUTOMATION", "LOGISTICS", "MIKRO", "AUTOPLUS_MINI", "AUTOPLUS_MEDIUM", "AUTOPLUS_STOR", "INTEGRATION_PARTNER", "PROJECT", "YEAR_END_REPORTING_ENK", "YEAR_END_REPORTING_AS", "YEAR_END_REPORTING_ANS", "YEAR_END_REPORTING_DA", "YEAR_END_REPORTING_STI", "YEAR_END_REPORTING_ORG", "YEAR_END_REPORTING_SA", "YEAR_END_REPORTING_FLI", "YEAR_END_REPORTING_NUF", "PRIMARY_INDUSTRY", "STICOS", "PRO", "FIXED_ASSETS_REGISTER", "ZTL" ] }, "costStartDate" : { "type" : "string" } }, "description" : "Sales modules (functionality in the application) to activate for the newly created account. Some modules have extra costs." }, "ResponseWrapperSalesModule" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/SalesModule" } } }, "CompanyRepresentative" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "name" : { "type" : "string", "readOnly" : true }, "roleInCompany" : { "type" : "string", "enum" : [ "UNKNOWN", "DAGL", "LEDE", "NEST", "MEDL", "DTPR", "DTSO", "KOMP", "INNH", "SIGN", "SIFE", "SIHV", "PROK", "POFE", "POHV" ] }, "birthdate" : { "type" : "string", "description" : "birthdate", "readOnly" : true }, "companyName" : { "type" : "string", "readOnly" : true }, "signatureStatus" : { "type" : "string", "enum" : [ "NOT_SIGNED", "PENDING_SIGNATURE", "SIGNED", "NOT_A_SIGNER" ] }, "description" : { "type" : "string", "readOnly" : true }, "email" : { "type" : "string" }, "employeeId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "canReceiveReminder" : { "type" : "boolean" } }, "readOnly" : true }, "ResponseWrapperContact" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/Contact" } } }, "ListResponseContact" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Contact" } } } }, "ActionBlock" : { "type" : "object", "description" : "Single action item block", "allOf" : [ { "$ref" : "#/components/schemas/AssistantResponseBlock" }, { "type" : "object", "properties" : { "actionListId" : { "type" : "string" }, "id" : { "type" : "string" }, "status" : { "type" : "string", "enum" : [ "IN_PROGRESS", "SUCCESS", "FAILED" ] }, "header" : { "type" : "string" }, "description" : { "type" : "string" }, "url" : { "type" : "string" } } } ] }, "ActionListBlock" : { "type" : "object", "description" : "Action list header block", "allOf" : [ { "$ref" : "#/components/schemas/AssistantResponseBlock" }, { "type" : "object", "properties" : { "title" : { "type" : "string" }, "id" : { "type" : "string" } } } ] }, "ActionUpdateBlock" : { "type" : "object", "description" : "Action status update block", "allOf" : [ { "$ref" : "#/components/schemas/AssistantResponseBlock" }, { "type" : "object", "properties" : { "actionListId" : { "type" : "string" }, "actionId" : { "type" : "string" }, "status" : { "type" : "string", "enum" : [ "IN_PROGRESS", "SUCCESS", "FAILED" ] }, "url" : { "type" : "string" } } } ] }, "AssistantResponseBlock" : { "type" : "object", "properties" : { "type" : { "type" : "string" } }, "description" : "Base type for assistant response blocks", "discriminator" : { "propertyName" : "type" } }, "AssistantResponseBlocks" : { "type" : "object", "properties" : { "blocks" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/AssistantResponseBlock" } } }, "description" : "Container for response blocks that form a complete assistant response" }, "ChartDatapoint" : { "type" : "object", "properties" : { "xValue" : { "type" : "string" }, "dataSeriesPoints" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/DataSeriesPoint" } } }, "description" : "Chart data point" }, "ChartSummary" : { "type" : "object", "properties" : { "header" : { "type" : "number", "format" : "double" }, "label" : { "type" : "string" } }, "description" : "Chart summary information" }, "CopilotApiCaller" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "response" : { "type" : "string" }, "urlParameters" : { "type" : "string" }, "visualization" : { "type" : "string" } }, "description" : "list of CopilotApiCaller" }, "CopilotFollowUpQuestion" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "followUpQuestion" : { "type" : "string" }, "existing" : { "type" : "boolean" }, "sourceAgent" : { "type" : "string" } }, "description" : "List of follow-up questions" }, "CopilotReportAnalyzer" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "response" : { "type" : "string" }, "responseType" : { "type" : "string" }, "report" : { "type" : "string" }, "filters" : { "type" : "string" }, "visualization" : { "type" : "string" } }, "description" : "Response from analysis" }, "CopilotRequest" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "userId" : { "type" : "integer", "format" : "int32" }, "userRequestedAgent" : { "type" : "string", "enum" : [ "ASSISTANT", "SUPPORT", "STICOS", "INSIGHT", "INSIGHT_REPORT", "INSIGHT_INVOICE", "GENERAL_LLM", "API_CALLER", "ERROR", "SALARY_OVERVIEW", "LEDGER_OVERVIEW", "SUPPLIER_SUB_LEDGER", "ACTION_TIMESHEET_ENTRY", "ACTION", "INSIGHT_ANOMALY" ] }, "model" : { "type" : "string", "enum" : [ "SUPPORT_ARTICLES", "ACCOUNTPLAN", "DATA_ANALYZER", "TRIPLETEX_COPILOT", "TEST", "REPORT_MODEL", "STICOS", "COPILOT_URL_NAVIGATION_INVOICE", "COPILOT_REPORT_ANALYZER", "COPILOT_API_CALLER", "GENERAL_LLM", "ACTION" ] }, "prompt" : { "type" : "string" }, "isConversationStarter" : { "type" : "integer", "format" : "int32" }, "isFollowUpQuestion" : { "type" : "integer", "format" : "int32" }, "quickPromptOrder" : { "type" : "integer", "format" : "int32" } } }, "CopilotResponse" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "copilotRequest" : { "$ref" : "#/components/schemas/CopilotRequest" }, "supportAIConversationMessage" : { "$ref" : "#/components/schemas/SupportAIConversationMessage" }, "sticosConversationMessage" : { "$ref" : "#/components/schemas/SticosConversationMessage" }, "responseStartTimestamp" : { "type" : "string" }, "responseEndTimestamp" : { "type" : "string" }, "errorCode" : { "type" : "string", "enum" : [ "NO_ERROR", "OTHER_ERROR", "COPILOT_INVALID_FORMAT", "SUPPORT_AI_SERVER_ERROR", "SUPPORT_AI_SERVER_UNAVAILABLE", "COPILOT_INCOMPLETE_RESPONSE" ] }, "source" : { "type" : "string", "enum" : [ "SUPPORT", "STICOS", "ACCOUNT_PLAN", "COPILOT_URL_NAVIGATION", "COPILOT_REPORT_ANALYZER", "COPILOT_API_CALLER", "SPRING_AI", "GENERAL_LLM" ] }, "sourceAgent" : { "type" : "string", "enum" : [ "ASSISTANT", "SUPPORT", "STICOS", "INSIGHT", "INSIGHT_REPORT", "INSIGHT_INVOICE", "GENERAL_LLM", "API_CALLER", "ERROR", "SALARY_OVERVIEW", "LEDGER_OVERVIEW", "SUPPLIER_SUB_LEDGER", "ACTION_TIMESHEET_ENTRY", "ACTION", "INSIGHT_ANOMALY" ] }, "preferredModel" : { "type" : "string", "enum" : [ "SUPPORT", "STICOS", "ACCOUNT_PLAN", "COPILOT_URL_NAVIGATION", "COPILOT_REPORT_ANALYZER", "COPILOT_API_CALLER", "SPRING_AI", "GENERAL_LLM" ] }, "routerPreferredAgent" : { "type" : "string", "enum" : [ "ASSISTANT", "SUPPORT", "STICOS", "INSIGHT", "INSIGHT_REPORT", "INSIGHT_INVOICE", "GENERAL_LLM", "API_CALLER", "ERROR", "SALARY_OVERVIEW", "LEDGER_OVERVIEW", "SUPPLIER_SUB_LEDGER", "ACTION_TIMESHEET_ENTRY", "ACTION", "INSIGHT_ANOMALY" ] }, "responseType" : { "type" : "string", "enum" : [ "ANSWER", "NO_ANSWER", "TALK_TO_SUPPORT" ] }, "feedback" : { "type" : "string", "enum" : [ "NO_FEEDBACK", "THUMBS_UP", "THUMBS_DOWN" ] }, "comment" : { "type" : "string" }, "copilotFollowUpQuestion" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/CopilotFollowUpQuestion" } }, "copilotUrlNavigations" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/CopilotUrlNavigation" } }, "copilotReportAnalyzer" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/CopilotReportAnalyzer" } }, "copilotApiCaller" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/CopilotApiCaller" } }, "sticosStatus" : { "type" : "string", "description" : "Sticos banner status", "enum" : [ "NO_BANNER", "LARGE_BANNER_ADMIN", "LARGE_BANNER_ADMIN_BLACKLIST", "LARGE_BANNER_NORMAL", "SMALL_BANNER_ADMIN", "SMALL_BANNER_ADMIN_BLACKLIST", "SMALL_BANNER_NORMAL", "FADED_OUT_LARGE_BANNER", "LARGE_BANNER_AO", "SMALL_BANNER_AO", "LARGE", "SMALL", "FADED_OUT" ] }, "responseBlocks" : { "$ref" : "#/components/schemas/AssistantResponseBlocks" } } }, "CopilotUrlNavigation" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "response" : { "type" : "string" }, "urlParameters" : { "type" : "string" }, "dataTable" : { "type" : "string", "enum" : [ "INVOICE", "PROJECT" ] } }, "description" : "List of CopilotUrlNavigation" }, "DataSeriesDefinition" : { "type" : "object", "properties" : { "name" : { "type" : "string" }, "aggregation" : { "type" : "string" } }, "description" : "Data series definition for charts" }, "DataSeriesPoint" : { "type" : "object", "properties" : { "name" : { "type" : "string" }, "value" : { "type" : "string" } }, "description" : "Data series point" }, "FollowUpQuestionBlock" : { "type" : "object", "properties" : { "followUpQuestion" : { "type" : "string" }, "sourceAgent" : { "type" : "string" }, "existing" : { "type" : "boolean" } }, "description" : "Follow-up question block" }, "FollowUpQuestionsBlock" : { "type" : "object", "description" : "Block containing a list of follow-up questions", "allOf" : [ { "$ref" : "#/components/schemas/AssistantResponseBlock" }, { "type" : "object", "properties" : { "questions" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/FollowUpQuestionBlock" } } } } ] }, "Presort" : { "type" : "object", "properties" : { "column" : { "type" : "string" }, "direction" : { "type" : "string" } }, "description" : "Presort configuration for chart data ordering" }, "ProgressBlock" : { "type" : "object", "description" : "Progress update block", "allOf" : [ { "$ref" : "#/components/schemas/AssistantResponseBlock" }, { "type" : "object", "properties" : { "text" : { "type" : "string" } } } ] }, "ResponseWrapperCopilotResponse" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/CopilotResponse" } } }, "SourceBlock" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int32" }, "url" : { "type" : "string" }, "header" : { "type" : "string" }, "text" : { "type" : "string" } }, "description" : "Source reference block" }, "SourceListBlock" : { "type" : "object", "description" : "Block containing a list of source references", "allOf" : [ { "$ref" : "#/components/schemas/AssistantResponseBlock" }, { "type" : "object", "properties" : { "sources" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/SourceBlock" } } } } ] }, "SticosConversationMessage" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "response" : { "type" : "string" }, "confidence" : { "minimum" : -1, "type" : "integer", "format" : "int32" }, "flag" : { "type" : "integer", "format" : "int32" }, "sessionId" : { "type" : "string" }, "sticosLinks" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/SticosLink" } }, "sticosStatus" : { "type" : "string", "description" : "Sticos banner status" } } }, "SticosLink" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "linkId" : { "type" : "integer", "format" : "int32" }, "title" : { "type" : "string" }, "header" : { "type" : "string" }, "linkUrl" : { "type" : "string" } }, "description" : "List of sticos sources" }, "SupportAIConversationMessage" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "response" : { "type" : "string" }, "responseType" : { "type" : "string" }, "supportAIMatchedArticles" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/SupportAIMatchedArticle" } } } }, "SupportAIMatchedArticle" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "articleUrl" : { "type" : "string" }, "usedInResponse" : { "type" : "boolean" }, "title" : { "type" : "string" } }, "description" : "List of supportAIMatchedArticles" }, "TextBlock" : { "type" : "object", "description" : "Text content block", "allOf" : [ { "$ref" : "#/components/schemas/AssistantResponseBlock" }, { "type" : "object", "properties" : { "text" : { "type" : "string" } } } ] }, "VisualizationBlock" : { "type" : "object", "description" : "Visualization block containing chart data", "allOf" : [ { "$ref" : "#/components/schemas/AssistantResponseBlock" }, { "type" : "object", "properties" : { "chartType" : { "type" : "string" }, "chartTitle" : { "type" : "string" }, "xAxisDataKey" : { "type" : "string" }, "dataSeriesDefinitions" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/DataSeriesDefinition" } }, "datapoints" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ChartDatapoint" } }, "summary" : { "$ref" : "#/components/schemas/ChartSummary" }, "presort" : { "$ref" : "#/components/schemas/Presort" } } } ] }, "EmailRequestPayload" : { "type" : "object", "properties" : { "prompt" : { "type" : "string" }, "ticket_id" : { "type" : "integer", "format" : "int32" } } }, "ListResponseCopilotResponse" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/CopilotResponse" } } } }, "CopilotMeta" : { "type" : "object", "properties" : { "sseUrl" : { "type" : "string", "readOnly" : true }, "myHelpRequestsUrl" : { "type" : "string", "readOnly" : true }, "firstName" : { "type" : "string", "readOnly" : true }, "lastName" : { "type" : "string", "readOnly" : true }, "hasAlwaysSeeChatWithSupportAI" : { "type" : "boolean", "readOnly" : true }, "hasSalesforceSupport" : { "type" : "boolean", "readOnly" : true }, "companyIsAnAS" : { "type" : "boolean", "readOnly" : true }, "employeeIsNew" : { "type" : "boolean", "readOnly" : true }, "hasCopilotUrlNavigationPilot" : { "type" : "boolean", "readOnly" : true }, "showInsightAndGeneralLLMBetaOnboarding" : { "type" : "boolean", "description" : "True if user should see the Insight and General LLM beta onboarding screen (has beta access and hasn't closed the onboarding)", "readOnly" : true }, "hasInsightAccess" : { "type" : "boolean", "description" : "True if user has access to insight agents (through old or new pilot mechanism)", "readOnly" : true }, "hasGeneralLLMAccess" : { "type" : "boolean", "description" : "True if user has access to General LLM", "readOnly" : true }, "hasActionBetaPilot" : { "type" : "boolean", "description" : "True if user has Action beta pilot", "readOnly" : true }, "sticosAccess" : { "type" : "string", "readOnly" : true, "enum" : [ "NO_ACCESS", "ACCESS", "TRIAL" ] }, "isAdmin" : { "type" : "boolean", "readOnly" : true }, "isSticosBlacklist" : { "type" : "boolean", "readOnly" : true }, "isAOorAuditor" : { "type" : "boolean", "readOnly" : true }, "companyHasSticosModule" : { "type" : "boolean", "readOnly" : true }, "companyId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "EmployeeId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "killswitchChat" : { "type" : "string", "readOnly" : true, "enum" : [ "NONE", "SLOW_RESPONSE", "NO_RESPONSE", "NO_HELPCENTER", "SLOW_RESPONSE_WITHOUT_HELPCENTER", "REMOVE_ZENDESK_AND_POINT_TO_HELP_CENTER", "INSIGHT_KILLSWITCH", "GENERAL_LLM_KILLSWITCH", "INSIGHT_AND_GENERAL_LLM_KILLSWITCH" ] }, "hasNeverTriedSticos" : { "type" : "boolean", "readOnly" : true }, "hasCopilotSurvey" : { "type" : "boolean", "readOnly" : true } } }, "ResponseWrapperCopilotMeta" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/CopilotMeta" } } }, "CopilotReportAxesFilter" : { "type" : "object", "properties" : { "limit" : { "type" : "integer", "description" : "Optional limit to set on axis, 0 to disable limit, empty/null to not change existing limit", "format" : "int32" }, "orderBys" : { "type" : "array", "description" : "Order by to apply to the axis", "items" : { "$ref" : "#/components/schemas/CopilotReportOrderBy" } } }, "description" : "CopilotReportAxesFilter defines a generalFilter for limiting and a orderBy for sorting to inject into arbitrary column or row blueprint definition" }, "CopilotReportOrderBy" : { "type" : "object", "properties" : { "order" : { "type" : "string", "description" : "Order direction, either 'Ascending' or 'Descending'" }, "expression" : { "type" : "string", "description" : "The expression to order by." } }, "description" : "Defines ordering for report axes" }, "CopilotReportRender" : { "type" : "object", "properties" : { "reportId" : { "type" : "integer", "description" : "Report id", "format" : "int64" }, "globalFilter" : { "$ref" : "#/components/schemas/ReportGroupFilter" }, "columnFilters" : { "type" : "object", "additionalProperties" : { "$ref" : "#/components/schemas/CopilotReportAxesFilter" }, "description" : "Replace, amend, or set filters, including ordering, on column variableNames" }, "rowFilters" : { "type" : "object", "additionalProperties" : { "$ref" : "#/components/schemas/CopilotReportAxesFilter" }, "description" : "Replace, amend, or set filters, including ordering, on row variableNames" } }, "description" : "CopilotReportRender Data Transfer Object" }, "ReportAccountFilterV3" : { "type" : "object", "properties" : { "rangeFilters" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ReportRangeFilter" } }, "singularFilters" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ReportSingularFilter" } }, "complementSingularFilters" : { "type" : "boolean" }, "version" : { "type" : "integer", "format" : "int32" } } }, "ReportActivityFilter" : { "type" : "object", "properties" : { "filters" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ReportSingularFilter" } }, "complement" : { "type" : "boolean" }, "version" : { "type" : "integer", "format" : "int32" } } }, "ReportCustomerCategory1Filter" : { "type" : "object", "properties" : { "filters" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ReportSingularFilter" } }, "complement" : { "type" : "boolean" }, "excludeEmptyElement" : { "type" : "boolean" }, "version" : { "type" : "integer", "format" : "int32" } } }, "ReportCustomerCategory2Filter" : { "type" : "object", "properties" : { "filters" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ReportSingularFilter" } }, "complement" : { "type" : "boolean" }, "excludeEmptyElement" : { "type" : "boolean" }, "version" : { "type" : "integer", "format" : "int32" } } }, "ReportCustomerCategory3Filter" : { "type" : "object", "properties" : { "filters" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ReportSingularFilter" } }, "complement" : { "type" : "boolean" }, "excludeEmptyElement" : { "type" : "boolean" }, "version" : { "type" : "integer", "format" : "int32" } } }, "ReportCustomerFilter" : { "type" : "object", "properties" : { "filters" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ReportSingularFilter" } }, "complement" : { "type" : "boolean" }, "excludeEmptyElement" : { "type" : "boolean" }, "version" : { "type" : "integer", "format" : "int32" } } }, "ReportDepartmentFilter" : { "type" : "object", "properties" : { "filters" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ReportSingularFilter" } }, "complement" : { "type" : "boolean" }, "excludeEmptyElement" : { "type" : "boolean" }, "version" : { "type" : "integer", "format" : "int32" } } }, "ReportEmployeeFilter" : { "type" : "object", "properties" : { "filters" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ReportSingularFilter" } }, "complement" : { "type" : "boolean" }, "excludeEmptyElement" : { "type" : "boolean" }, "version" : { "type" : "integer", "format" : "int32" } } }, "ReportFilterPeriodDatum" : { "type" : "object", "properties" : { "amount" : { "type" : "integer", "format" : "int32" }, "unit" : { "type" : "integer", "format" : "int32" } } }, "ReportFreeDimension1Filter" : { "type" : "object", "properties" : { "filters" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ReportSingularFilter" } }, "complement" : { "type" : "boolean" }, "excludeEmptyElement" : { "type" : "boolean" }, "version" : { "type" : "integer", "format" : "int32" } } }, "ReportFreeDimension2Filter" : { "type" : "object", "properties" : { "filters" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ReportSingularFilter" } }, "complement" : { "type" : "boolean" }, "excludeEmptyElement" : { "type" : "boolean" }, "version" : { "type" : "integer", "format" : "int32" } } }, "ReportFreeDimension3Filter" : { "type" : "object", "properties" : { "filters" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ReportSingularFilter" } }, "complement" : { "type" : "boolean" }, "excludeEmptyElement" : { "type" : "boolean" }, "version" : { "type" : "integer", "format" : "int32" } } }, "ReportGeneralFilter" : { "type" : "object", "properties" : { "expression" : { "type" : "string" }, "limit" : { "minimum" : -1, "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" } } }, "ReportGroupFilter" : { "type" : "object", "properties" : { "account" : { "$ref" : "#/components/schemas/ReportAccountFilterV3" }, "customer" : { "$ref" : "#/components/schemas/ReportCustomerFilter" }, "department" : { "$ref" : "#/components/schemas/ReportDepartmentFilter" }, "employee" : { "$ref" : "#/components/schemas/ReportEmployeeFilter" }, "period" : { "$ref" : "#/components/schemas/ReportPeriodFilter" }, "product" : { "$ref" : "#/components/schemas/ReportProductFilter" }, "project" : { "$ref" : "#/components/schemas/ReportProjectFilter" }, "projectCategory" : { "$ref" : "#/components/schemas/ReportProjectCategoryFilter" }, "activity" : { "$ref" : "#/components/schemas/ReportActivityFilter" }, "supplier" : { "$ref" : "#/components/schemas/ReportSupplierFilter" }, "general" : { "$ref" : "#/components/schemas/ReportGeneralFilter" }, "customerCategory1" : { "$ref" : "#/components/schemas/ReportCustomerCategory1Filter" }, "customerCategory2" : { "$ref" : "#/components/schemas/ReportCustomerCategory2Filter" }, "customerCategory3" : { "$ref" : "#/components/schemas/ReportCustomerCategory3Filter" }, "freeDimension1" : { "$ref" : "#/components/schemas/ReportFreeDimension1Filter" }, "freeDimension2" : { "$ref" : "#/components/schemas/ReportFreeDimension2Filter" }, "freeDimension3" : { "$ref" : "#/components/schemas/ReportFreeDimension3Filter" }, "version" : { "type" : "integer", "format" : "int32" } } }, "ReportPeriodFilter" : { "type" : "object", "properties" : { "type" : { "type" : "integer", "format" : "int32" }, "start" : { "type" : "string" }, "end" : { "type" : "string" }, "duration" : { "$ref" : "#/components/schemas/ReportFilterPeriodDatum" }, "offset" : { "$ref" : "#/components/schemas/ReportFilterPeriodDatum" }, "constrainEndToInterval" : { "type" : "boolean" }, "version" : { "type" : "integer", "format" : "int32" } } }, "ReportProductFilter" : { "type" : "object", "properties" : { "filters" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ReportSingularFilter" } }, "complement" : { "type" : "boolean" }, "excludeEmptyElement" : { "type" : "boolean" }, "version" : { "type" : "integer", "format" : "int32" } } }, "ReportProjectCategoryFilter" : { "type" : "object", "properties" : { "filters" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ReportSingularFilter" } }, "complement" : { "type" : "boolean" }, "excludeEmptyElement" : { "type" : "boolean" }, "version" : { "type" : "integer", "format" : "int32" } } }, "ReportProjectFilter" : { "type" : "object", "properties" : { "filters" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ReportSingularFilter" } }, "complement" : { "type" : "boolean" }, "excludeEmptyElement" : { "type" : "boolean" }, "version" : { "type" : "integer", "format" : "int32" } } }, "ReportRangeFilter" : { "type" : "object", "properties" : { "from" : { "type" : "integer", "format" : "int32" }, "to" : { "type" : "integer", "format" : "int32" }, "version" : { "type" : "integer", "format" : "int32" } } }, "ReportSingularFilter" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int32" }, "version" : { "type" : "integer", "format" : "int32" } } }, "ReportSupplierFilter" : { "type" : "object", "properties" : { "filters" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ReportSingularFilter" } }, "complement" : { "type" : "boolean" }, "excludeEmptyElement" : { "type" : "boolean" }, "version" : { "type" : "integer", "format" : "int32" } } }, "ResponseWrapperSticosAccess" : { "type" : "object", "properties" : { "value" : { "type" : "string", "enum" : [ "NO_ACCESS", "ACCESS", "TRIAL" ] } } }, "AssistantAgentTestRequestDTO" : { "type" : "object", "properties" : { "agent" : { "type" : "string", "enum" : [ "ASSISTANT", "SUPPORT", "STICOS", "INSIGHT", "INSIGHT_REPORT", "INSIGHT_INVOICE", "GENERAL_LLM", "API_CALLER", "ERROR", "SALARY_OVERVIEW", "LEDGER_OVERVIEW", "SUPPLIER_SUB_LEDGER", "ACTION_TIMESHEET_ENTRY", "ACTION", "INSIGHT_ANOMALY" ] }, "prompt" : { "type" : "string" }, "chatHistory" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/CopilotChatMessage" } } } }, "CopilotChatMessage" : { "type" : "object", "properties" : { "prompt" : { "type" : "string" }, "response" : { "type" : "string" }, "agentName" : { "type" : "string" } } }, "ChatHistoryEntry" : { "type" : "object", "properties" : { "role" : { "type" : "string" }, "message" : { "type" : "string" } }, "description" : "Optional: The chat history" }, "GPTWrapperAPIRequest" : { "type" : "object", "properties" : { "question" : { "type" : "string", "description" : "The question to ask the LLM" }, "gpt_model" : { "type" : "string", "description" : "Which gpt model to use, defaults to gpt-4o-mini", "enum" : [ "GPT4o", "GPT4oMini" ] }, "system_prompt" : { "type" : "string", "description" : "Optional: The system prompt to the LLM" }, "chat_history" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ChatHistoryEntry" } }, "json_schema" : { "type" : "string", "description" : "Optional: The json schema" } }, "description" : "GPTWrapperAPIRequest Data Transfer Object" }, "ResponseWrapperCountry" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/Country" } } }, "ListResponseCountry" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Country" } } } }, "CspReport" : { "type" : "object", "properties" : { "type" : { "type" : "string", "readOnly" : true }, "url" : { "type" : "string", "readOnly" : true }, "user_agent" : { "type" : "string", "readOnly" : true }, "age" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "body" : { "$ref" : "#/components/schemas/CspReportBody" } } }, "CspReportBody" : { "type" : "object", "properties" : { "blockedURL" : { "type" : "string", "readOnly" : true }, "columnNumber" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "disposition" : { "type" : "string", "readOnly" : true }, "documentURL" : { "type" : "string", "readOnly" : true }, "effectiveDirective" : { "type" : "string", "readOnly" : true }, "lineNumber" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "originalPolicy" : { "type" : "string", "readOnly" : true }, "referrer" : { "type" : "string", "readOnly" : true }, "sample" : { "type" : "string", "readOnly" : true }, "sourceFile" : { "type" : "string", "readOnly" : true }, "statusCode" : { "type" : "integer", "format" : "int32", "readOnly" : true } }, "readOnly" : true }, "ResponseWrapperCurrency" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/Currency" } } }, "ListResponseCurrency" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Currency" } } } }, "CurrencyExchangeRate" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "targetCurrency" : { "$ref" : "#/components/schemas/Currency" }, "sourceCurrency" : { "$ref" : "#/components/schemas/Currency" }, "rate" : { "minimum" : 0, "type" : "number" }, "source" : { "type" : "string", "description" : "Source of exchange rates, i.e Norges Bank", "enum" : [ "NORGES_BANK", "HALLONEN" ] }, "date" : { "type" : "string" } } }, "ResponseWrapperCurrencyExchangeRate" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/CurrencyExchangeRate" } } }, "CurrencyWithRates" : { "type" : "object", "properties" : { "targetCurrencyId" : { "type" : "integer", "format" : "int64" }, "code" : { "type" : "string" }, "description" : { "type" : "string" }, "factor" : { "maximum" : 100, "minimum" : 1, "type" : "integer", "format" : "int32" }, "isDisabled" : { "type" : "boolean" }, "sourceCurrency" : { "$ref" : "#/components/schemas/Currency" }, "date" : { "type" : "string" }, "rate" : { "minimum" : 0, "type" : "number" }, "source" : { "type" : "string", "description" : "Source of exchange rates, i.e Norges Bank", "enum" : [ "NORGES_BANK", "HALLONEN" ] }, "displayName" : { "type" : "string" } }, "readOnly" : true }, "ListResponseCurrencyWithRates" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/CurrencyWithRates" } } } }, "ResponseWrapperCustomer" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/Customer" } } }, "ListResponseCustomer" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Customer" } } } }, "MaventaCompany" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "uuid" : { "type" : "string" } } }, "ResponseWrapperMaventaCompany" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/MaventaCompany" } } }, "ResponseWrapperCustomerCategory" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/CustomerCategory" } } }, "ListResponseCustomerCategory" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/CustomerCategory" } } } }, "DashboardDTO" : { "type" : "object", "properties" : { "version" : { "minimum" : 0, "type" : "integer", "format" : "int32" }, "content" : { "type" : "string" } } }, "ResponseWrapperDashboardDTO" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/DashboardDTO" } } }, "DataflytValidationDTO" : { "type" : "object", "properties" : { "validationMessageCode" : { "type" : "integer", "format" : "int64" } } }, "DebtCollector" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "name" : { "type" : "string" }, "sendType" : { "type" : "string", "enum" : [ "API", "EMAIL", "SFTP" ] }, "annualFee" : { "type" : "number", "format" : "float", "readOnly" : true }, "feePerCase" : { "type" : "number", "format" : "float", "readOnly" : true } } }, "ResponseWrapperDebtCollector" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/DebtCollector" } } }, "ResponseWrapperDepartment" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/Department" } } }, "ListResponseDepartment" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Department" } } } }, "DistributionKey" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "name" : { "type" : "string" }, "distributionKeyBlade" : { "$ref" : "#/components/schemas/DistributionKeyBlade" } }, "readOnly" : true }, "DistributionKeyBit" : { "type" : "object", "properties" : { "departmentId" : { "type" : "integer", "format" : "int32" }, "departmentName" : { "type" : "string" }, "percentage" : { "type" : "number" } } }, "DistributionKeyBlade" : { "type" : "object", "properties" : { "distributionKeyBits" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/DistributionKeyBit" } } } }, "ResponseWrapperDistributionKey" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/DistributionKey" } } }, "ListResponseDistributionKey" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/DistributionKey" } } } }, "ResponseWrapperDivision" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/Division" } } }, "ListResponseDivision" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Division" } } } }, "DocumentArchive" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "fileName" : { "maxLength" : 255, "minLength" : 0, "type" : "string", "description" : "The name of the document." }, "size" : { "minimum" : 0, "type" : "integer", "description" : "The size of the document in readable format.", "format" : "int32", "readOnly" : true }, "archiveDate" : { "type" : "string" }, "mimeType" : { "maxLength" : 100, "minLength" : 0, "type" : "string", "description" : "Type of the document" } } }, "ResponseWrapperDocumentArchive" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/DocumentArchive" } } }, "ListResponseDocumentArchive" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/DocumentArchive" } } } }, "ResponseWrapperListDocumentArchiveModelType" : { "type" : "object", "properties" : { "value" : { "type" : "array", "items" : { "type" : "string", "enum" : [ "NONE", "CUSTOMER", "SUPPLIER", "PROJECT", "ORDER", "OFFER", "PROJECT_OFFER", "PRODUCT", "EMPLOYEE", "ACCOUNT", "ASSET" ] } } } }, "BulkUpdateDocumentItemReceiver" : { "type" : "object", "properties" : { "messageIds" : { "type" : "array", "items" : { "type" : "number", "description" : "List of messageIds to change the receiver", "format" : "int64" } }, "receiverId" : { "type" : "integer", "description" : "Receiver Id", "format" : "int64" } } }, "DocumentReceptionResult" : { "type" : "object", "properties" : { "messageId" : { "type" : "integer", "format" : "int64" }, "documentId" : { "type" : "integer", "format" : "int64" }, "isValid" : { "type" : "boolean" }, "validationMessages" : { "type" : "array", "items" : { "type" : "string" } } } }, "ResponseWrapperListDocumentReceptionResult" : { "type" : "object", "properties" : { "value" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/DocumentReceptionResult" } } } }, "DocumentReceptionItem" : { "type" : "object", "properties" : { "messageId" : { "type" : "integer", "description" : "Message Id.", "format" : "int64" }, "documentId" : { "type" : "integer", "description" : "Document Id.", "format" : "int64" }, "documentName" : { "type" : "string", "description" : "The name of the document." }, "receiverEmployeeId" : { "type" : "integer", "description" : "Employee Id of the receiver of the document.", "format" : "int64" }, "receiverName" : { "type" : "string", "description" : "Document receiver.", "readOnly" : true }, "senderName" : { "type" : "string", "description" : "Document sender.", "readOnly" : true }, "displaySize" : { "type" : "string", "description" : "Document size in human readable format.", "readOnly" : true }, "size" : { "type" : "integer", "description" : "Document size.", "format" : "int64", "readOnly" : true }, "created" : { "type" : "string", "description" : "Document create date." }, "edited" : { "type" : "string", "description" : "Document edit date." }, "isNew" : { "type" : "boolean", "description" : "Is new document.", "readOnly" : true }, "mimeType" : { "type" : "string", "description" : "Document mime type.", "readOnly" : true } } }, "ListResponseDocumentReceptionItem" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/DocumentReceptionItem" } } } }, "DocumentReceptionPageContext" : { "type" : "object", "properties" : { "documentReceptionEmail" : { "type" : "string", "description" : "document reception email", "readOnly" : true }, "authAllEmployees" : { "type" : "boolean", "description" : "Can see all receivers", "readOnly" : true }, "authVoucherReception" : { "type" : "boolean", "description" : "Auth Voucher Reception", "readOnly" : true }, "maxFileSize" : { "type" : "integer", "description" : "Max file size allowed", "format" : "int64", "readOnly" : true } } }, "ResponseWrapperDocumentReceptionPageContext" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/DocumentReceptionPageContext" } } }, "DocumentArchiveTargetPath" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "displayName" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "ListResponseDocumentArchiveTargetPath" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/DocumentArchiveTargetPath" } } } }, "MoveToVoucher" : { "type" : "object", "properties" : { "messageIds" : { "type" : "array", "items" : { "type" : "number", "description" : "List of messageIds to move to voucher reception", "format" : "int64" } }, "messageIdsToSplit" : { "type" : "array", "items" : { "type" : "number", "description" : "List of messageIds to move to split", "format" : "int64" } } } }, "SendToDocumentArchive" : { "type" : "object", "properties" : { "messageIds" : { "type" : "array", "items" : { "type" : "integer", "description" : "List of messageIds to move to archive", "format" : "int64" } }, "pathId" : { "type" : "integer", "description" : "Target path in archive", "format" : "int64" }, "fileName" : { "type" : "string", "description" : "Override filename" }, "modelType" : { "type" : "string", "description" : "Add to specific archive", "enum" : [ "NONE", "CUSTOMER", "SUPPLIER", "PROJECT", "ORDER", "OFFER", "PROJECT_OFFER", "PRODUCT", "EMPLOYEE", "ACCOUNT", "ASSET" ] }, "modelId" : { "type" : "integer", "description" : "Model ID to archive", "format" : "int64" }, "invoiceArchiveRelation" : { "type" : "string", "description" : "Add to document to invoice", "enum" : [ "ADD_TO_INVOICE_NONE", "ADD_TO_INVOICE_NEXT", "ADD_TO_INVOICE_ALL" ] } } }, "ResponseWrapperDocumentReceptionItem" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/DocumentReceptionItem" } } }, "ResponseWrapperDocumentReceptionResult" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/DocumentReceptionResult" } } }, "ResponseWrapperEmployee" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/Employee" } } }, "EmployeeEmail" : { "type" : "object", "properties" : { "email" : { "type" : "string", "description" : "Employee e-mail address" } } }, "ListResponseMobileEmployee" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/MobileEmployee" } } } }, "MobileEmployee" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "firstName" : { "type" : "string" }, "lastName" : { "type" : "string" }, "displayName" : { "type" : "string", "readOnly" : true }, "employeeNumber" : { "type" : "string" }, "department" : { "$ref" : "#/components/schemas/Department" }, "dateOfBirth" : { "type" : "string" }, "email" : { "type" : "string" }, "allowInformationRegistration" : { "type" : "boolean", "description" : "Determines if salary information can be registered on the user including hours, travel expenses and employee expenses. The user may also be selected as a project member on projects.", "readOnly" : true }, "isContact" : { "type" : "boolean", "readOnly" : true }, "pictureId" : { "type" : "integer", "format" : "int32", "readOnly" : true } }, "readOnly" : true }, "ResponseWrapperEmployeeCategory" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/EmployeeCategory" } } }, "ListResponseEmployeeCategory" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/EmployeeCategory" } } } }, "EmployeeVacationBalance" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "employeeId" : { "type" : "integer", "format" : "int64" }, "date" : { "type" : "string" }, "vacationbalance" : { "type" : "number" } } }, "ResponseWrapperEmployeeVacationBalance" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/EmployeeVacationBalance" } } }, "ResponseWrapperEmployment" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/Employment" } } }, "ListResponseEmployment" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Employment" } } } }, "ResponseWrapperEmploymentDetails" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/EmploymentDetails" } } }, "ListResponseEmploymentDetails" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/EmploymentDetails" } } } }, "EmploymentType" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "employmentType" : { "type" : "string", "description" : "Defines the employment type option. ", "enum" : [ "ORDINARY", "MARITIME", "FREELANCE", "NOT_CHOSEN" ] }, "nameNO" : { "type" : "string" }, "code" : { "type" : "string" } }, "readOnly" : true }, "ListResponseEmploymentType" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/EmploymentType" } } } }, "LeaveOfAbsence" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "employment" : { "$ref" : "#/components/schemas/Employment" }, "importedLeaveOfAbsenceId" : { "type" : "string", "description" : "Existing leave of absence ID used by the current accounting system" }, "startDate" : { "type" : "string" }, "endDate" : { "type" : "string" }, "percentage" : { "type" : "number" }, "isWageDeduction" : { "type" : "boolean" }, "type" : { "type" : "string", "description" : "Define the leave of absence type.", "enum" : [ "LEAVE_OF_ABSENCE", "FURLOUGH", "PARENTAL_BENEFITS", "MILITARY_SERVICE", "EDUCATIONAL", "COMPASSIONATE", "OTHER_NOT_STATUTORILY_REQUIRED", "OTHER_STATUTORILY_REQUIRED", "EDUCATIONAL_NOT_STATUTORILY_REQUIRED", "EDUCATIONAL_STATUTORILY_REQUIRED" ] } }, "readOnly" : true }, "ResponseWrapperLeaveOfAbsence" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/LeaveOfAbsence" } } }, "ListResponseLeaveOfAbsence" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/LeaveOfAbsence" } } } }, "LeaveOfAbsenceType" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "leaveOfAbsenceType" : { "type" : "string", "description" : "Defines the leave of absence type option.", "enum" : [ "LEAVE_OF_ABSENCE", "FURLOUGH", "PARENTAL_BENEFITS", "MILITARY_SERVICE", "EDUCATIONAL", "COMPASSIONATE", "OTHER_NOT_STATUTORILY_REQUIRED", "OTHER_STATUTORILY_REQUIRED", "EDUCATIONAL_NOT_STATUTORILY_REQUIRED", "EDUCATIONAL_STATUTORILY_REQUIRED" ] }, "nameNO" : { "type" : "string" }, "code" : { "type" : "string" } }, "readOnly" : true }, "ListResponseLeaveOfAbsenceType" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/LeaveOfAbsenceType" } } } }, "ResponseWrapperOccupationCode" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/OccupationCode" } } }, "ListResponseOccupationCode" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/OccupationCode" } } } }, "ListResponseRemunerationType" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/RemunerationType" } } } }, "RemunerationType" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "remunerationType" : { "type" : "string", "description" : "Defines the remuneration type option. ", "enum" : [ "MONTHLY_WAGE", "HOURLY_WAGE", "COMMISION_PERCENTAGE", "FEE", "NOT_CHOSEN", "PIECEWORK_WAGE" ] }, "nameNO" : { "type" : "string" }, "code" : { "type" : "string" } }, "readOnly" : true }, "ListResponseWorkingHoursScheme" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/WorkingHoursScheme" } } } }, "WorkingHoursScheme" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "workingHoursScheme" : { "type" : "string", "description" : "Defines the working hours scheme option.", "enum" : [ "NOT_SHIFT", "ROUND_THE_CLOCK", "SHIFT_365", "OFFSHORE_336", "CONTINUOUS", "OTHER_SHIFT", "NOT_CHOSEN" ] }, "nameNO" : { "type" : "string" }, "code" : { "type" : "string" } }, "readOnly" : true }, "HourlyCostAndRate" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "employee" : { "$ref" : "#/components/schemas/Employee" }, "date" : { "type" : "string" }, "rate" : { "type" : "number" }, "budgetRate" : { "type" : "number" }, "hourCostRate" : { "type" : "number" } }, "readOnly" : true }, "ResponseWrapperHourlyCostAndRate" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/HourlyCostAndRate" } } }, "ListResponseHourlyCostAndRate" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/HourlyCostAndRate" } } } }, "EmployeeLoginInfo" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "employeeId" : { "type" : "integer", "description" : "Employee id", "format" : "int64", "readOnly" : true }, "username" : { "type" : "string", "description" : "Employee username", "readOnly" : true }, "lastLoginDate" : { "type" : "string", "description" : "Last successful employee login datetime", "readOnly" : true } } }, "ResponseWrapperEmployeeLoginInfo" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/EmployeeLoginInfo" } } }, "NextOfKin" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "employee" : { "$ref" : "#/components/schemas/Employee" }, "name" : { "type" : "string" }, "phoneNumber" : { "type" : "string" }, "address" : { "type" : "string" }, "typeOfRelationship" : { "type" : "string", "description" : "Define the employee's next of kin relationtype.
SPOUSE
PARTNER
PARENT
CHILD
SIBLING", "enum" : [ "SPOUSE", "PARTNER", "PARENT", "CHILD", "SIBLING" ] } }, "readOnly" : true }, "ResponseWrapperNextOfKin" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/NextOfKin" } } }, "ListResponseNextOfKin" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/NextOfKin" } } } }, "EmployeePreferences" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "employeeId" : { "type" : "integer", "format" : "int32" }, "companyId" : { "type" : "integer", "format" : "int32" }, "filterOnProjectParticipant" : { "type" : "boolean" }, "filterOnProjectManager" : { "type" : "boolean" }, "language" : { "type" : "string", "enum" : [ "NO", "EN" ] } } }, "ResponseWrapperEmployeePreferences" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/EmployeePreferences" } } }, "ListResponseEmployeePreferences" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/EmployeePreferences" } } } }, "ResponseWrapperStandardTime" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/StandardTime" } } }, "StandardTime" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "employee" : { "$ref" : "#/components/schemas/Employee" }, "fromDate" : { "type" : "string" }, "hoursPerDay" : { "type" : "number" } }, "readOnly" : true }, "ListResponseStandardTime" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/StandardTime" } } } }, "EmployeeBanner" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "employeeBannerType" : { "type" : "string", "readOnly" : true }, "closed" : { "type" : "boolean", "readOnly" : true } } }, "ResponseWrapperEmployeeBanner" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/EmployeeBanner" } } }, "Enhetsregisteret" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "name" : { "type" : "string", "readOnly" : true }, "orgNumber" : { "type" : "string", "readOnly" : true }, "address" : { "type" : "string", "readOnly" : true }, "city" : { "type" : "string", "readOnly" : true }, "postalCode" : { "type" : "string", "readOnly" : true }, "municipality" : { "type" : "string", "readOnly" : true }, "registrationDate" : { "type" : "string", "readOnly" : true }, "vatRegistered" : { "type" : "boolean", "readOnly" : true }, "enterprises" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Enterprise" } } }, "readOnly" : true }, "Enterprise" : { "type" : "object", "properties" : { "name" : { "type" : "string", "readOnly" : true }, "orgNumber" : { "type" : "string", "readOnly" : true }, "registrationDate" : { "type" : "string", "readOnly" : true }, "municipality" : { "type" : "string", "readOnly" : true }, "startDateMunicipality" : { "type" : "string", "readOnly" : true } } }, "ListResponseEnhetsregisteret" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Enhetsregisteret" } } } }, "Entitlement" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "employee" : { "$ref" : "#/components/schemas/Employee" }, "name" : { "type" : "string", "description" : "Descriptive name for the privilege. Might change between releases.", "readOnly" : true }, "entitlementId" : { "type" : "integer", "description" : "Unique id for the type of privilege.", "format" : "int32" }, "customer" : { "$ref" : "#/components/schemas/Company" } }, "readOnly" : true }, "ListResponseEntitlement" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Entitlement" } } } }, "RestrictedEntitlementChange" : { "type" : "object", "properties" : { "change" : { "type" : "string" }, "customerId" : { "type" : "integer", "format" : "int64" } } }, "ResponseWrapperEntitlement" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/Entitlement" } } }, "EntitlementTemplate" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "displayName" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "ListResponseEntitlementTemplate" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/EntitlementTemplate" } } } }, "EventInfo" : { "type" : "object", "properties" : { "name" : { "type" : "string", "readOnly" : true }, "description" : { "type" : "string", "readOnly" : true }, "payloadModel" : { "type" : "string", "readOnly" : true }, "examples" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/WebHookWrapper" } } } }, "ResponseWrapperEventInfo" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/EventInfo" } } }, "WebHookWrapper" : { "type" : "object", "properties" : { "value" : { "type" : "object", "readOnly" : true }, "event" : { "type" : "string", "readOnly" : true }, "subscriptionId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "id" : { "type" : "integer", "format" : "int64", "readOnly" : true } }, "readOnly" : true }, "EventInfoDescription" : { "type" : "object", "properties" : { "description" : { "type" : "string", "readOnly" : true } } }, "ResponseWrapperMapStringEventInfoDescription" : { "type" : "object", "properties" : { "value" : { "type" : "object", "additionalProperties" : { "$ref" : "#/components/schemas/EventInfoDescription" } } } }, "ResponseWrapperListVersionedType" : { "type" : "object", "properties" : { "value" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/VersionedType" } } } }, "VersionedType" : { "type" : "object", "properties" : { "type" : { "type" : "string" }, "version" : { "type" : "integer", "format" : "int32" } } }, "Notification" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "date" : { "type" : "string" }, "title" : { "type" : "string" }, "message" : { "type" : "string" }, "type" : { "type" : "string" }, "category" : { "type" : "string" }, "link" : { "type" : "string" }, "objectId" : { "type" : "number" } }, "readOnly" : true }, "ResponseWrapperNotification" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/Notification" } } }, "ListResponseNotification" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Notification" } } } }, "ResponseWrapperSpacesuitNotificationMeta" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/SpacesuitNotificationMeta" } } }, "SpacesuitNotificationMeta" : { "type" : "object", "properties" : { "sseUrl" : { "type" : "string", "readOnly" : true }, "clientName" : { "type" : "string", "readOnly" : true }, "notificationSettingsUrl" : { "type" : "string", "readOnly" : true } } }, "ResponseWrapperUnreadCount" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/UnreadCount" } } }, "UnreadCount" : { "type" : "object", "properties" : { "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "readCursor" : { "type" : "integer", "format" : "int64", "readOnly" : true } } }, "ResponseWrapperSubscription" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/Subscription" } } }, "Subscription" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "event" : { "type" : "string", "description" : "Event name (from /v2/event) you wish to subscribe to. Form should be: *subject.verb*.", "example" : "customer.create" }, "targetUrl" : { "type" : "string", "description" : "The callback URL used for subscriptions (including authentication tokens). Must be absolute and use HTTPS. Basic authentication is supported.", "example" : "https://username:password@myintegration.example/tripletexCallback" }, "fields" : { "type" : "string", "description" : "The fields in the object delivered with the notification callback, nested as in other API calls.", "example" : "id,version,number" }, "status" : { "type" : "string", "description" : "The status of the subscription.", "enum" : [ "ACTIVE", "DISABLED", "DISABLED_TOO_MANY_ERRORS", "DISABLED_RATE_LIMIT_EXCEEDED", "DISABLED_MISUSE" ] }, "authHeaderName" : { "type" : "string", "description" : "Custom authentication header name", "example" : "Authorization" }, "authHeaderValue" : { "type" : "string", "description" : "Custom authentication header value (write only)", "example" : "Basic dXNlcm5hbWU6cGFzc3dvcmQ=" }, "hmacSharedSecret" : { "type" : "string", "description" : "HMAC signing shared secret (write only). Optionally add this field to enable hmac signing. Calculation is header('x-request-signature') = base64(HmacSHA512(header('idempotency-key') + '&' + body))", "example" : "S5Yd3Dz6FWmj7q2uA4Uy9KcQMGBVpJHeCbTgEnaw" } }, "readOnly" : true }, "ListResponseSubscription" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Subscription" } } } }, "ExpenseBatchArgs" : { "type" : "object", "properties" : { "expenseIds" : { "type" : "string" }, "comment" : { "type" : "string" }, "voucherDate" : { "type" : "string" } } }, "ListResponseMapStringObject" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "type" : "object", "additionalProperties" : { "type" : "object", "readOnly" : true }, "readOnly" : true } } } }, "ListResponseTravelExpense" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/TravelExpense" } } } }, "TravelReportFilterParams" : { "type" : "object", "properties" : { "departmentIds" : { "type" : "string" }, "costCategoryIds" : { "type" : "string" }, "paymentTypeIds" : { "type" : "string" }, "employeeIds" : { "type" : "string" }, "attestationApproverIds" : { "type" : "string" }, "projectIds" : { "type" : "string" }, "projectDepartmentIds" : { "type" : "string" }, "projectLeaderIds" : { "type" : "string" }, "numberStart" : { "minimum" : 0, "type" : "integer", "format" : "int32" }, "numberEnd" : { "minimum" : 0, "type" : "integer", "format" : "int32" }, "dateFrom" : { "type" : "string" }, "dateTo" : { "type" : "string" }, "orderBy" : { "type" : "string", "enum" : [ "NUMBER", "TITLE", "DATE", "PROJECT", "DEPARTMENT", "EMPLOYEE_NAME", "AMOUNT", "STATUS", "CHARGEABLE" ] }, "orderDirection" : { "type" : "string", "enum" : [ "ASC", "DESC" ] }, "expenseStatusEnums" : { "type" : "string" }, "expenseTypesEnums" : { "type" : "string" }, "query" : { "type" : "string" }, "idsToShowOnTop" : { "type" : "string" }, "voucheredStatus" : { "type" : "string", "enum" : [ "ALL", "VOUCHERED", "NOT_VOUCHERED" ] } } }, "ResponseWrapperUserFeedback" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/UserFeedback" } } }, "UserFeedback" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "receivedAt" : { "type" : "string" }, "message" : { "type" : "string" }, "contactRequest" : { "type" : "string" }, "browser" : { "type" : "string" }, "pageTitle" : { "type" : "string" }, "team" : { "type" : "string" }, "loginEmployee" : { "$ref" : "#/components/schemas/Employee" }, "actualEmployeeId" : { "$ref" : "#/components/schemas/Employee" } } }, "ResponseWrapperServerHealthStatus" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ServerHealthStatus" } } }, "ServerHealthStatus" : { "type" : "object", "properties" : { "timestamp" : { "type" : "string", "readOnly" : true }, "healthCheckDurationMs" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "percentageOfUnhealthyCompanies" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "percentageOfUnhealthyShards" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "shardHealthStatus" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ShardHealthStatus" } } } }, "ShardHealthStatus" : { "type" : "object", "properties" : { "shardInfoId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "shardName" : { "type" : "string", "readOnly" : true }, "clusterInfoId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "clusterName" : { "type" : "string", "readOnly" : true }, "countActiveCompanies" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "countInactiveCompanies" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "countUnhealthyCompanies" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "unhealthy" : { "type" : "boolean", "readOnly" : true } }, "readOnly" : true }, "HeatfloorProduct" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "elNumber" : { "type" : "string" }, "displayName" : { "type" : "string" }, "vktype" : { "type" : "string" }, "manufacturer" : { "type" : "string" }, "nomEffect" : { "type" : "number", "readOnly" : true }, "length" : { "type" : "number", "readOnly" : true }, "wattsPerMeter" : { "type" : "number", "readOnly" : true }, "nomResistance" : { "type" : "number", "readOnly" : true } }, "readOnly" : true }, "ResponseWrapperHeatfloorProduct" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/HeatfloorProduct" } } }, "ListResponseHeatfloorProduct" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/HeatfloorProduct" } } } }, "IdPortenLogin" : { "type" : "object", "properties" : { "url" : { "type" : "string", "description" : "The url which the client needs to redirect for performing authentication", "readOnly" : true } } }, "ResponseWrapperIdPortenLogin" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/IdPortenLogin" } } }, "IdPortenLoginRequest" : { "type" : "object", "properties" : { "internalRedirectUrl" : { "type" : "string", "description" : "The url where the user should be redirected back to when authentication is complete" } } }, "IdPortenLoginStatus" : { "type" : "object", "properties" : { "expiresAt" : { "type" : "string", "readOnly" : true }, "active" : { "type" : "boolean", "description" : "Is the token still active?", "readOnly" : true } } }, "ResponseWrapperIdPortenLoginStatus" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/IdPortenLoginStatus" } } }, "CustomerImport" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "importFile" : { "$ref" : "#/components/schemas/Document" }, "separator" : { "type" : "string", "enum" : [ "NONE", "COMMA", "SEMICOLON" ] }, "status" : { "type" : "string", "enum" : [ "FILE_UPLOADED", "FIELDS_MAPPED", "IMPORT_STARTED", "IMPORT_COMPLETED", "DELETE_DATA_STARTED" ] }, "importHeaders" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/CustomerImportHeader" } }, "startDate" : { "type" : "string" }, "employee" : { "$ref" : "#/components/schemas/Employee" }, "countCreated" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "countUpdated" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "countIgnored" : { "type" : "integer", "format" : "int32", "readOnly" : true } } }, "CustomerImportField" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "displayName" : { "type" : "string", "readOnly" : true }, "displayNameExpanded" : { "type" : "string", "readOnly" : true }, "isMandatory" : { "type" : "boolean", "readOnly" : true }, "sequence" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "fieldName" : { "type" : "string", "readOnly" : true }, "dependentOnFieldIds" : { "type" : "array", "readOnly" : true, "items" : { "type" : "integer", "format" : "int64", "readOnly" : true } }, "inputType" : { "type" : "string", "readOnly" : true, "enum" : [ "SELECT", "TEXTFIELD" ] }, "mandatory" : { "type" : "boolean", "writeOnly" : true } }, "readOnly" : true }, "CustomerImportHeader" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "importComponent" : { "$ref" : "#/components/schemas/CustomerImport" }, "orderOfColumn" : { "minimum" : 0, "type" : "integer", "format" : "int32" }, "name" : { "type" : "string" }, "sampleValue" : { "type" : "string" }, "suggestedColumnField" : { "$ref" : "#/components/schemas/CustomerImportField" } }, "readOnly" : true }, "ResponseWrapperCustomerImport" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/CustomerImport" } } }, "ListResponseCustomerImport" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/CustomerImport" } } } }, "ListResponseSelectFieldDTO" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/SelectFieldDTO" } } } }, "SelectFieldDTO" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "displayName" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "ListResponseCustomerImportField" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/CustomerImportField" } } } }, "ListResponseCustomerImportHeader" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/CustomerImportHeader" } } } }, "CustomerImportHeaderFieldsRelation" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "importComponent" : { "$ref" : "#/components/schemas/CustomerImport" }, "header" : { "$ref" : "#/components/schemas/CustomerImportHeader" }, "field" : { "$ref" : "#/components/schemas/CustomerImportField" } }, "readOnly" : true }, "ListResponseCustomerImportHeaderFieldsRelation" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/CustomerImportHeaderFieldsRelation" } } } }, "CustomerImportRowContent" : { "type" : "object", "properties" : { "customerNumber" : { "type" : "string" }, "customerName" : { "type" : "string" }, "organizationNumber" : { "type" : "string" }, "phoneNumber" : { "type" : "string" }, "phoneNumberMobile" : { "type" : "string" }, "email" : { "type" : "string" }, "postalAddress1" : { "type" : "string" }, "postalAddress2" : { "type" : "string" }, "postalCode" : { "type" : "string" }, "postalAddressCity" : { "type" : "string" }, "postalAddressCountry" : { "type" : "string" }, "isPrivatePerson" : { "type" : "string" }, "fax" : { "type" : "string" }, "currencyCode" : { "type" : "string" }, "category1Number" : { "type" : "string" }, "category1Name" : { "type" : "string" }, "category2Number" : { "type" : "string" }, "category2Name" : { "type" : "string" }, "category3Number" : { "type" : "string" }, "category3Name" : { "type" : "string" }, "contactFirstName" : { "type" : "string" }, "contactLastName" : { "type" : "string" }, "contactAddress1" : { "type" : "string" }, "contactAddress2" : { "type" : "string" }, "contactAddressPostalCode" : { "type" : "string" }, "contactAddressCity" : { "type" : "string" }, "contactAddressCountry" : { "type" : "string" }, "contactPhoneNumberWork" : { "type" : "string" }, "contactPhoneNumberMobile" : { "type" : "string" }, "contactEmail" : { "type" : "string" }, "businessAddress1" : { "type" : "string" }, "businessAddress2" : { "type" : "string" }, "businessAddressPostalCode" : { "type" : "string" }, "businessAddressCity" : { "type" : "string" }, "businessAddressCountry" : { "type" : "string" }, "deliveryAddress1" : { "type" : "string" }, "deliveryAddress2" : { "type" : "string" }, "deliveryAddressPostalCode" : { "type" : "string" }, "deliveryAddressCity" : { "type" : "string" }, "deliveryAddressCountry" : { "type" : "string" }, "invoiceEmail" : { "type" : "string" }, "invoiceDueDays" : { "type" : "string" }, "departmentName" : { "type" : "string" }, "departmentNumber" : { "type" : "string" }, "empty" : { "type" : "boolean" } }, "description" : "rowContent" }, "CustomerPotential" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "importComponent" : { "$ref" : "#/components/schemas/CustomerImport" }, "rowContent" : { "$ref" : "#/components/schemas/CustomerImportRowContent" }, "errorMessage" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ImportRowErrorMessage" } }, "rowStatus" : { "type" : "string", "enum" : [ "NEW", "UPDATE", "FAIL", "DUPLICATE" ] }, "rowNumber" : { "type" : "integer", "format" : "int32", "readOnly" : true } }, "readOnly" : true }, "ImportRowErrorMessage" : { "type" : "object", "properties" : { "fieldId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "fieldName" : { "type" : "string", "readOnly" : true }, "errorMessage" : { "type" : "string", "readOnly" : true } }, "description" : "errorMessage" }, "ResponseWrapperCustomerPotential" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/CustomerPotential" } } }, "ListResponseCustomerPotential" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/CustomerPotential" } } } }, "EmployeeImport" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "importFile" : { "$ref" : "#/components/schemas/Document" }, "separator" : { "type" : "string", "enum" : [ "NONE", "COMMA", "SEMICOLON" ] }, "status" : { "type" : "string", "enum" : [ "FILE_UPLOADED", "FIELDS_MAPPED", "IMPORT_STARTED", "IMPORT_COMPLETED", "DELETE_DATA_STARTED" ] }, "importHeaders" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/EmployeeImportHeader" } }, "startDate" : { "type" : "string" }, "employee" : { "$ref" : "#/components/schemas/Employee" }, "countCreated" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "countUpdated" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "countIgnored" : { "type" : "integer", "format" : "int32", "readOnly" : true } } }, "EmployeeImportField" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "displayName" : { "type" : "string", "readOnly" : true }, "displayNameExpanded" : { "type" : "string", "readOnly" : true }, "isMandatory" : { "type" : "boolean", "readOnly" : true }, "sequence" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "fieldName" : { "type" : "string", "readOnly" : true }, "dependentOnFieldIds" : { "type" : "array", "readOnly" : true, "items" : { "type" : "integer", "format" : "int64", "readOnly" : true } }, "inputType" : { "type" : "string", "readOnly" : true, "enum" : [ "SELECT", "TEXTFIELD" ] }, "mandatory" : { "type" : "boolean" } }, "readOnly" : true }, "EmployeeImportHeader" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "importComponent" : { "$ref" : "#/components/schemas/EmployeeImport" }, "orderOfColumn" : { "minimum" : 0, "type" : "integer", "format" : "int32" }, "name" : { "type" : "string" }, "sampleValue" : { "type" : "string" }, "suggestedColumnField" : { "$ref" : "#/components/schemas/EmployeeImportField" } }, "readOnly" : true }, "ResponseWrapperEmployeeImport" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/EmployeeImport" } } }, "ListResponseEmployeeImport" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/EmployeeImport" } } } }, "ListResponseEmployeeImportField" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/EmployeeImportField" } } } }, "ListResponseEmployeeImportHeader" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/EmployeeImportHeader" } } } }, "EmployeeImportHeaderFieldsRelation" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "importComponent" : { "$ref" : "#/components/schemas/EmployeeImport" }, "header" : { "$ref" : "#/components/schemas/EmployeeImportHeader" }, "field" : { "$ref" : "#/components/schemas/EmployeeImportField" } }, "readOnly" : true }, "ListResponseEmployeeImportHeaderFieldsRelation" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/EmployeeImportHeaderFieldsRelation" } } } }, "EmployeeImportRowContent" : { "type" : "object", "properties" : { "firstName" : { "type" : "string" }, "lastName" : { "type" : "string" }, "email" : { "type" : "string" }, "postalAddress1" : { "type" : "string" }, "postalAddress2" : { "type" : "string" }, "postalCode" : { "type" : "string" }, "postalAddressCity" : { "type" : "string" }, "postalAddressCountry" : { "type" : "string" }, "phoneNumberWork" : { "type" : "string" }, "phoneNumberMobile" : { "type" : "string" }, "employeeNumber" : { "type" : "string" }, "percentOfEmployment" : { "type" : "string" }, "dateOfBirth" : { "type" : "string" }, "socialSecurityNumber" : { "type" : "string" }, "getdNumber" : { "type" : "string" }, "bban" : { "type" : "string" }, "iban" : { "type" : "string" }, "swift" : { "type" : "string" }, "vacationAllowanceEarnedYear" : { "type" : "string" }, "vacationAllowanceBasis" : { "type" : "string" }, "vacationAllowanceAmount" : { "type" : "string" }, "vacationAllowanceExtraWeekAmount" : { "type" : "string" }, "startDate" : { "type" : "string" }, "employmentType" : { "type" : "string" }, "employmentForm" : { "type" : "string" }, "occupationCode" : { "type" : "string" }, "yearlyWage" : { "type" : "string" }, "hourlyWage" : { "type" : "string" }, "divisionNumber" : { "type" : "string" }, "internationalIdNumber" : { "type" : "string" }, "internationalIdType" : { "type" : "string" }, "internationalIdCountry" : { "type" : "string" }, "salaryType" : { "type" : "string" }, "departmentNumber" : { "type" : "string" }, "importedEmploymentId" : { "type" : "string" }, "endDate" : { "type" : "string" }, "employmentEndReason" : { "type" : "string" }, "employmentScheduleTypeAmeldingTypeId" : { "type" : "string" }, "shiftDurationHours" : { "type" : "string" }, "isMainEmployer" : { "type" : "string" }, "hourRate" : { "type" : "string" }, "hourCost" : { "type" : "string" }, "dateVacationAndHourBalance" : { "type" : "string" }, "vacationBalance" : { "type" : "string" }, "hourBalance" : { "type" : "string" }, "dnumber" : { "type" : "string", "writeOnly" : true }, "empty" : { "type" : "boolean" } }, "description" : "rowContent" }, "EmployeePotential" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "importComponent" : { "$ref" : "#/components/schemas/EmployeeImport" }, "rowContent" : { "$ref" : "#/components/schemas/EmployeeImportRowContent" }, "errorMessage" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ImportRowErrorMessage" } }, "rowStatus" : { "type" : "string", "enum" : [ "NEW", "UPDATE", "FAIL", "DUPLICATE" ] }, "rowNumber" : { "type" : "integer", "format" : "int32", "readOnly" : true } }, "readOnly" : true }, "ResponseWrapperEmployeePotential" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/EmployeePotential" } } }, "ListResponseEmployeePotential" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/EmployeePotential" } } } }, "ResponseWrapperSupplierImport" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/SupplierImport" } } }, "SupplierImport" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "importFile" : { "$ref" : "#/components/schemas/Document" }, "separator" : { "type" : "string", "enum" : [ "NONE", "COMMA", "SEMICOLON" ] }, "status" : { "type" : "string", "enum" : [ "FILE_UPLOADED", "FIELDS_MAPPED", "IMPORT_STARTED", "IMPORT_COMPLETED", "DELETE_DATA_STARTED" ] }, "importHeaders" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/SupplierImportHeader" } }, "startDate" : { "type" : "string" }, "employee" : { "$ref" : "#/components/schemas/Employee" }, "countCreated" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "countUpdated" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "countIgnored" : { "type" : "integer", "format" : "int32", "readOnly" : true } } }, "SupplierImportField" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "displayName" : { "type" : "string", "readOnly" : true }, "displayNameExpanded" : { "type" : "string", "readOnly" : true }, "isMandatory" : { "type" : "boolean", "readOnly" : true }, "sequence" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "fieldName" : { "type" : "string", "readOnly" : true }, "dependentOnFieldIds" : { "type" : "array", "readOnly" : true, "items" : { "type" : "integer", "format" : "int64", "readOnly" : true } }, "inputType" : { "type" : "string", "readOnly" : true, "enum" : [ "SELECT", "TEXTFIELD" ] }, "mandatory" : { "type" : "boolean", "writeOnly" : true } }, "readOnly" : true }, "SupplierImportHeader" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "importComponent" : { "$ref" : "#/components/schemas/SupplierImport" }, "orderOfColumn" : { "minimum" : 0, "type" : "integer", "format" : "int32" }, "name" : { "type" : "string" }, "sampleValue" : { "type" : "string" }, "suggestedColumnField" : { "$ref" : "#/components/schemas/SupplierImportField" } }, "readOnly" : true }, "ListResponseSupplierImport" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/SupplierImport" } } } }, "ListResponseSupplierImportField" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/SupplierImportField" } } } }, "ListResponseSupplierImportHeader" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/SupplierImportHeader" } } } }, "ListResponseSupplierImportHeaderFieldsRelation" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/SupplierImportHeaderFieldsRelation" } } } }, "SupplierImportHeaderFieldsRelation" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "importComponent" : { "$ref" : "#/components/schemas/SupplierImport" }, "header" : { "$ref" : "#/components/schemas/SupplierImportHeader" }, "field" : { "$ref" : "#/components/schemas/SupplierImportField" } }, "readOnly" : true }, "ResponseWrapperSupplierPotential" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/SupplierPotential" } } }, "SupplierImportRowContent" : { "type" : "object", "properties" : { "supplierNumber" : { "type" : "string" }, "supplierName" : { "type" : "string" }, "organizationNumber" : { "type" : "string" }, "phoneNumber" : { "type" : "string" }, "phoneNumberMobile" : { "type" : "string" }, "email" : { "type" : "string" }, "postalAddress1" : { "type" : "string" }, "postalAddress2" : { "type" : "string" }, "postalCode" : { "type" : "string" }, "postalAddressCity" : { "type" : "string" }, "postalAddressCountry" : { "type" : "string" }, "bban" : { "type" : "string" }, "iban" : { "type" : "string" }, "swift" : { "type" : "string" }, "isPrivatePerson" : { "type" : "string" }, "fax" : { "type" : "string" }, "currencyCode" : { "type" : "string" }, "category1Number" : { "type" : "string" }, "category1Name" : { "type" : "string" }, "category2Number" : { "type" : "string" }, "category2Name" : { "type" : "string" }, "category3Number" : { "type" : "string" }, "category3Name" : { "type" : "string" }, "contactFirstName" : { "type" : "string" }, "contactLastName" : { "type" : "string" }, "contactAddress1" : { "type" : "string" }, "contactAddress2" : { "type" : "string" }, "contactAddressPostalCode" : { "type" : "string" }, "contactAddressCity" : { "type" : "string" }, "contactAddressCountry" : { "type" : "string" }, "contactPhoneNumberWork" : { "type" : "string" }, "contactPhoneNumberMobile" : { "type" : "string" }, "contactEmail" : { "type" : "string" }, "businessAddress1" : { "type" : "string" }, "businessAddress2" : { "type" : "string" }, "businessAddressPostalCode" : { "type" : "string" }, "businessAddressCity" : { "type" : "string" }, "businessAddressCountry" : { "type" : "string" }, "deliveryAddress1" : { "type" : "string" }, "deliveryAddress2" : { "type" : "string" }, "deliveryAddressPostalCode" : { "type" : "string" }, "deliveryAddressCity" : { "type" : "string" }, "deliveryAddressCountry" : { "type" : "string" }, "selfEmployedWithoutBusinessAddress" : { "type" : "string" }, "socialSecurityNumber" : { "type" : "string" }, "departmentName" : { "type" : "string" }, "departmentNumber" : { "type" : "string" }, "empty" : { "type" : "boolean" } }, "description" : "rowContent" }, "SupplierPotential" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "importComponent" : { "$ref" : "#/components/schemas/SupplierImport" }, "rowContent" : { "$ref" : "#/components/schemas/SupplierImportRowContent" }, "errorMessage" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ImportRowErrorMessage" } }, "rowStatus" : { "type" : "string", "enum" : [ "NEW", "UPDATE", "FAIL", "DUPLICATE" ] }, "rowNumber" : { "type" : "integer", "format" : "int32", "readOnly" : true } }, "readOnly" : true }, "ListResponseSupplierPotential" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/SupplierPotential" } } } }, "IncomingInvoiceDuplicateCheckerResult" : { "type" : "object", "properties" : { "voucherId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "voucherNumber" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "numberAsString" : { "type" : "string", "readOnly" : true }, "year" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "url" : { "type" : "string", "readOnly" : true } } }, "ResponseWrapperIncomingInvoiceDuplicateCheckerResult" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/IncomingInvoiceDuplicateCheckerResult" } } }, "ListResponseVoucherDocument" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/VoucherDocument" } } } }, "VoucherDocument" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "description" : "Document ID", "format" : "int64", "readOnly" : true }, "title" : { "type" : "string", "description" : "Title of the document, usually the file name", "readOnly" : true }, "mimeType" : { "type" : "string", "description" : "MIME type of the document", "readOnly" : true }, "size" : { "type" : "integer", "description" : "Size of the document in bytes", "format" : "int32", "readOnly" : true }, "isDeletable" : { "type" : "boolean", "description" : "Whether the document can be deleted", "readOnly" : true }, "isAllowSendToInbox" : { "type" : "boolean", "description" : "Whether the document can be sent to inbox", "readOnly" : true }, "isVoucher" : { "type" : "boolean", "description" : "Whether the document represents the voucher attachment", "readOnly" : true } }, "description" : "All documents linked to this voucher for PDF display", "readOnly" : true }, "IncomingInvoicePaymentHistory" : { "type" : "object", "properties" : { "baseVoucherId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "baseVoucherRevision" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "transactions" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/IncomingInvoicePaymentHistoryTransaction" } }, "remainingAmountToPay" : { "type" : "number", "readOnly" : true }, "remainingAmountToPayCurrency" : { "type" : "number", "readOnly" : true } } }, "IncomingInvoicePaymentHistoryTransaction" : { "type" : "object", "properties" : { "type" : { "type" : "string", "readOnly" : true, "enum" : [ "VENDOR_POSTING", "POSTING_RULE", "AUTOPAY", "ZTL", "REMIT", "OPEN_POST", "CREDIT_NOTE", "CLOSED", "UNKNOWN" ] }, "paymentType" : { "type" : "string", "readOnly" : true, "enum" : [ "NONE", "NOT_PAID", "NETS", "AUTOPAY", "POSTING_RULE", "ZTL" ] }, "description" : { "type" : "string", "readOnly" : true }, "status" : { "$ref" : "#/components/schemas/Status" }, "baseVoucherId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "postingId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "voucherId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "voucherNumberAsString" : { "type" : "string", "readOnly" : true }, "voucherDetailsUrl" : { "type" : "string", "readOnly" : true }, "date" : { "type" : "string", "readOnly" : true }, "text1" : { "type" : "string", "readOnly" : true }, "text2" : { "type" : "string", "readOnly" : true }, "text3" : { "type" : "string", "readOnly" : true }, "amountNegative" : { "type" : "number", "readOnly" : true }, "amountCurrencyNegative" : { "type" : "number", "readOnly" : true }, "currencyId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "currencyCode" : { "type" : "string", "readOnly" : true }, "isDeletable" : { "type" : "boolean", "readOnly" : true }, "isReversed" : { "type" : "boolean", "readOnly" : true }, "deleteMessage" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "ResponseWrapperIncomingInvoicePaymentHistory" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/IncomingInvoicePaymentHistory" } } }, "Status" : { "type" : "object", "properties" : { "text" : { "type" : "string" }, "variant" : { "type" : "string" } }, "readOnly" : true }, "IncomingInvoiceAccount" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "number" : { "type" : "string", "readOnly" : true }, "name" : { "type" : "string", "readOnly" : true }, "displayName" : { "type" : "string", "readOnly" : true }, "departmentId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "vatTypeId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "vatLocked" : { "type" : "boolean", "readOnly" : true }, "departmentLocked" : { "type" : "boolean", "readOnly" : true }, "requiresDepartment" : { "type" : "boolean", "readOnly" : true }, "requiresProject" : { "type" : "boolean", "readOnly" : true }, "productUnit1Id" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "productUnit2Id" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "currentAccountBook" : { "type" : "string", "readOnly" : true, "enum" : [ "GENERAL", "CUSTOMER", "VENDOR", "EMPLOYEE", "ASSET" ] }, "requiresFreeDimension1" : { "type" : "boolean", "readOnly" : true }, "requiresFreeDimension2" : { "type" : "boolean", "readOnly" : true }, "requiresFreeDimension3" : { "type" : "boolean", "readOnly" : true } }, "readOnly" : true }, "IncomingInvoiceAggregateRead" : { "type" : "object", "properties" : { "invoiceHeader" : { "$ref" : "#/components/schemas/IncomingInvoiceHeaderRead" }, "orderLines" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/IncomingOrderLineRead" } }, "paymentDraft" : { "$ref" : "#/components/schemas/IncomingInvoicePaymentRead" }, "lookupData" : { "$ref" : "#/components/schemas/IncomingInvoiceLookupData" }, "metadata" : { "$ref" : "#/components/schemas/IncomingInvoiceMetadata" }, "permissions" : { "$ref" : "#/components/schemas/IncomingInvoicePermissions" }, "pageOptions" : { "$ref" : "#/components/schemas/IncomingInvoicePageOptions" }, "voucherDocuments" : { "type" : "array", "description" : "Documents linked to this invoice", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/VoucherDocument" } } } }, "IncomingInvoiceCompany" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "displayName" : { "type" : "string", "readOnly" : true }, "departmentId" : { "type" : "integer", "format" : "int64", "readOnly" : true } }, "readOnly" : true }, "IncomingInvoiceDepartment" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "displayName" : { "type" : "string", "readOnly" : true }, "vatReportType" : { "type" : "string", "readOnly" : true, "enum" : [ "PRIMARY_INDUSTRY", "GENERAL_INDUSTRY" ] } }, "readOnly" : true }, "IncomingInvoiceFreeDimension" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "displayName" : { "type" : "string", "readOnly" : true } }, "description" : "Free Dimension 3", "readOnly" : true }, "IncomingInvoiceHeaderRead" : { "type" : "object", "properties" : { "vendorId" : { "type" : "integer", "description" : "Id of the vendor", "format" : "int64", "readOnly" : true }, "vendorIsAutomated" : { "type" : "boolean", "description" : "Is vendor automated", "readOnly" : true }, "voucherNumber" : { "type" : "integer", "description" : "Voucher number", "format" : "int32", "readOnly" : true }, "voucherTempNumber" : { "type" : "integer", "description" : "Voucher number", "format" : "int32", "readOnly" : true }, "voucherYear" : { "type" : "integer", "description" : "Voucher number", "format" : "int32", "readOnly" : true }, "invoiceDate" : { "type" : "string", "description" : "Invoice date", "readOnly" : true }, "invoiceDateIsAutomated" : { "type" : "boolean", "description" : "Is invoice date automated", "readOnly" : true }, "invoiceNumber" : { "type" : "string", "description" : "Invoice number", "readOnly" : true }, "invoiceNumberIsAutomated" : { "type" : "boolean", "description" : "Is invoice number automated", "readOnly" : true }, "invoiceAmount" : { "type" : "number", "description" : "Invoice amount", "readOnly" : true }, "invoiceAmountIsAutomated" : { "type" : "boolean", "description" : "Is invoice amount automated", "readOnly" : true }, "dueDate" : { "type" : "string", "description" : "Due date", "readOnly" : true }, "dueDateIsAutomated" : { "type" : "boolean", "description" : "Is due date automated", "readOnly" : true }, "currencyId" : { "type" : "integer", "description" : "Currency id", "format" : "int64", "readOnly" : true }, "currencyIsAutomated" : { "type" : "boolean", "description" : "Is currency automated", "readOnly" : true }, "description" : { "type" : "string", "description" : "Description", "readOnly" : true }, "voucherTypeId" : { "type" : "integer", "description" : "Voucher type", "format" : "int64", "readOnly" : true }, "purchaseOrderId" : { "type" : "integer", "description" : "Purchase order id", "format" : "int64", "readOnly" : true }, "changedAt" : { "type" : "string", "description" : "Last changed date of the header", "readOnly" : true }, "note" : { "type" : "string", "description" : "Note", "readOnly" : true }, "ediDocumentId" : { "type" : "integer", "description" : "edi document id", "format" : "int64", "readOnly" : true }, "attachmentId" : { "type" : "integer", "description" : "main attachment id.", "format" : "int64", "readOnly" : true }, "includeAttachmentsOnReInvoiceOrderLines" : { "type" : "boolean", "description" : "Include receipts when re-invoicing", "readOnly" : true } }, "description" : "The invoice header.", "readOnly" : true }, "IncomingInvoiceLookupData" : { "type" : "object", "properties" : { "vendor" : { "$ref" : "#/components/schemas/IncomingInvoiceCompany" }, "vendorsAndCustomers" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/IncomingInvoiceCompany" } }, "accounts" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/IncomingInvoiceAccount" } }, "vatTypes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/IncomingInvoiceVatType" } }, "departments" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/IncomingInvoiceDepartment" } }, "freeDimension1" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/IncomingInvoiceFreeDimension" } }, "freeDimension2" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/IncomingInvoiceFreeDimension" } }, "freeDimension3" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/IncomingInvoiceFreeDimension" } }, "projects" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/IncomingInvoiceProject" } }, "projectSubContracts" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/IncomingInvoiceProjectSubContract" } } }, "description" : "The invoice lookup data.", "readOnly" : true }, "IncomingInvoiceMetadata" : { "type" : "object", "properties" : { "voucherId" : { "type" : "integer", "description" : "Voucher Id of the incoming invoice", "format" : "int64", "readOnly" : true }, "voucherNumber" : { "type" : "integer", "description" : "Voucher number", "format" : "int32", "readOnly" : true }, "voucherTempNumber" : { "type" : "integer", "description" : "Voucher temporary number", "format" : "int32", "readOnly" : true }, "voucherYear" : { "type" : "integer", "description" : "Voucher year", "format" : "int32", "readOnly" : true }, "version" : { "type" : "integer", "description" : "Voucher version", "format" : "int32", "readOnly" : true }, "invoiceSourceType" : { "type" : "string", "description" : "Invoice Source Type.", "readOnly" : true, "enum" : [ "PDF", "EHF", "EFO_NELFO" ] }, "invoiceLifeCycle" : { "type" : "string", "description" : "Invoice Life Cycle.", "readOnly" : true, "enum" : [ "DRAFT_IN_INBOX", "DRAFT_IN_NON_POSTED", "TEMPORARY_IN_LEDGER", "IN_LEDGER" ] }, "costLineMode" : { "type" : "string", "description" : "Cost line mode for the invoice", "readOnly" : true, "enum" : [ "GROUPED", "MIRRORED" ] }, "reverseVoucherId" : { "type" : "integer", "description" : "Id of reverse voucher", "format" : "int64", "readOnly" : true }, "reverseVoucherNumber" : { "type" : "string", "description" : "Number of reverse voucher", "readOnly" : true }, "accountingPeriodClosed" : { "type" : "boolean", "description" : "If accounting period is closed", "readOnly" : true }, "annualAccountsId" : { "type" : "integer", "description" : "The accounting period id this voucher belongs to", "format" : "int64", "readOnly" : true }, "primaryIndustryVatPeriodClosed" : { "type" : "boolean", "description" : "If vat period is closed for primary industries", "readOnly" : true }, "primaryIndustryVatPeriodClosedReportId" : { "type" : "integer", "description" : "If vat period is closed for primary industries report ID", "format" : "int64", "readOnly" : true }, "generalIndustryVatPeriodClosed" : { "type" : "boolean", "description" : "If vat period is closed for general industries", "readOnly" : true }, "generalIndustryVatPeriodClosedReportId" : { "type" : "integer", "description" : "If vat period is closed for general industries report ID", "format" : "int64", "readOnly" : true }, "defaultVatReportType" : { "type" : "string", "readOnly" : true, "enum" : [ "PRIMARY_INDUSTRY", "GENERAL_INDUSTRY" ] }, "changedAt" : { "type" : "string", "description" : "Changed at", "readOnly" : true }, "changedByEmployeeId" : { "type" : "integer", "description" : "Changed by employee ID", "format" : "int64", "readOnly" : true }, "changedByActualEmployeeId" : { "type" : "integer", "description" : "Changed by actual employee ID", "format" : "int64", "readOnly" : true }, "changedByActualCompanyId" : { "type" : "integer", "description" : "Changed by actual Company ID", "format" : "int64", "readOnly" : true }, "brregCompanyLookup" : { "$ref" : "#/components/schemas/BrregCompanyLookup" } }, "description" : "The invoice meta data.", "readOnly" : true }, "IncomingInvoicePageOptions" : { "type" : "object", "properties" : { "data" : { "type" : "object", "additionalProperties" : { "type" : "object", "description" : "The actual options as a JSON blob" }, "description" : "The actual options as a JSON blob" } } }, "IncomingInvoicePaymentRead" : { "type" : "object", "properties" : { "clientUUId" : { "type" : "string", "description" : "Client UUID.", "readOnly" : true }, "payLater" : { "type" : "boolean", "description" : "Flag to postpone the payment of the invoice." }, "paymentTypeClientUUId" : { "type" : "string", "description" : "Payment type client UUID.", "readOnly" : true }, "amountCurrency" : { "type" : "number", "description" : "Amount in currency.", "readOnly" : true }, "amountIsAutomated" : { "type" : "boolean", "description" : "Flag indicating amount in currency is automated", "readOnly" : true }, "oppositeAmountCurrency" : { "type" : "number", "description" : "Opposite amount from currency exchange." }, "paymentDate" : { "type" : "string", "description" : "Payment date.", "readOnly" : true }, "paymentDateIsAutomated" : { "type" : "boolean", "description" : "Flag indicating payment date is automated", "readOnly" : true }, "currencyId" : { "type" : "integer", "description" : "Currency ID.", "format" : "int64", "readOnly" : true }, "creditorIbanOrBban" : { "type" : "string", "description" : "Creditor IBAN or BBAN.", "readOnly" : true }, "originalInvoiceIbanOrBban" : { "type" : "string", "description" : "Bank account on an invoice.", "readOnly" : true }, "creditorIbanOrBbanIsAutomated" : { "type" : "boolean", "description" : "Flag indicating if the creditor IBAN or BBAN is automated.", "readOnly" : true }, "kidOrReceiverReference" : { "type" : "string", "description" : "KID or receiver reference.", "readOnly" : true }, "kidIsAutomated" : { "type" : "boolean", "description" : "Flag indicating if the KID or receiver reference is automated.", "readOnly" : true }, "foreignPayment" : { "type" : "boolean", "description" : "Flag for foreign payment.", "readOnly" : true }, "regulatoryReportingCode" : { "type" : "string", "description" : "Regulatory reporting code.", "readOnly" : true }, "regulatoryReportingInfo" : { "type" : "string", "description" : "Regulatory reporting info.", "readOnly" : true }, "creditorName" : { "type" : "string", "description" : "Creditor name.", "readOnly" : true }, "creditorBIC" : { "type" : "string", "description" : "Creditor BIC.", "readOnly" : true }, "creditorBicIsAutomated" : { "type" : "boolean", "description" : "Flag indicating if the creditor BIC is automated.", "readOnly" : true }, "creditorAddress" : { "type" : "string", "description" : "Creditor address.", "readOnly" : true }, "creditorPostalCity" : { "type" : "string", "description" : "Creditor postal city.", "readOnly" : true }, "creditorPostalCode" : { "type" : "string", "description" : "Creditor postal code.", "readOnly" : true }, "creditorCountryId" : { "type" : "integer", "description" : "Creditor country ID.", "format" : "int64", "readOnly" : true }, "creditorBankName" : { "type" : "string", "description" : "Creditor bank name.", "readOnly" : true }, "creditorBankAddress" : { "type" : "string", "description" : "Creditor bank address.", "readOnly" : true }, "creditorBankPostalCity" : { "type" : "string", "description" : "Creditor bank postal city.", "readOnly" : true }, "creditorBankPostalCode" : { "type" : "string", "description" : "Creditor bank postal code.", "readOnly" : true }, "creditorBankCountryId" : { "type" : "integer", "description" : "Creditor bank country ID.", "format" : "int64", "readOnly" : true }, "creditorClearingCode" : { "type" : "string", "description" : "Creditor clearing code.", "readOnly" : true }, "creditorBankIdentificator" : { "type" : "integer", "description" : "Creditor bank identifier.", "format" : "int64", "readOnly" : true }, "selectedCreditNotes" : { "type" : "array", "description" : "Credit notes deducted from payment amount.", "readOnly" : true, "items" : { "type" : "integer", "description" : "Credit notes deducted from payment amount.", "format" : "int64", "readOnly" : true } }, "goToApprovePayment" : { "type" : "boolean", "description" : "Flag to go to payment approval after book.", "readOnly" : true }, "prepaidAmount" : { "type" : "number", "description" : "Amount already paid for EHF", "readOnly" : true } } }, "IncomingInvoicePermissions" : { "type" : "object", "properties" : { "hasReadPermission" : { "type" : "boolean", "readOnly" : true }, "hasUpdatePermission" : { "type" : "boolean", "readOnly" : true }, "hasSendToNonPostedPermission" : { "type" : "boolean", "readOnly" : true }, "hasSendToLedgerPermission" : { "type" : "boolean", "readOnly" : true }, "hasRestrictedWageInfo" : { "type" : "boolean", "readOnly" : true } }, "description" : "The user rights for invoice.", "readOnly" : true }, "IncomingInvoiceProject" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "displayName" : { "type" : "string", "readOnly" : true }, "departmentId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "vatTypeId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "fixedPrice" : { "type" : "boolean", "readOnly" : true }, "internalProject" : { "type" : "boolean", "readOnly" : true }, "closed" : { "type" : "boolean", "readOnly" : true }, "currencyId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "markup" : { "type" : "number", "readOnly" : true }, "discount" : { "type" : "number", "readOnly" : true }, "useProductNetPrice" : { "type" : "boolean", "readOnly" : true } }, "readOnly" : true }, "IncomingInvoiceProjectSubContract" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "projectId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "vendorId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "displayName" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "IncomingInvoiceVatType" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "direction" : { "type" : "string", "readOnly" : true, "enum" : [ "IN", "OUT" ] }, "number" : { "type" : "string", "readOnly" : true }, "name" : { "type" : "string", "readOnly" : true }, "basisPercentage" : { "type" : "number", "readOnly" : true }, "percentage" : { "type" : "number", "readOnly" : true }, "isReverseInDeductableVatCode" : { "type" : "boolean", "readOnly" : true }, "isReverseInNonDeductableVatCode" : { "type" : "boolean", "readOnly" : true }, "displayName" : { "type" : "string", "readOnly" : true }, "reverseInDeductableVatCode" : { "type" : "boolean" }, "reverseInNonDeductableVatCode" : { "type" : "boolean" } }, "readOnly" : true }, "IncomingOrderLineRead" : { "type" : "object", "properties" : { "clientUUId" : { "type" : "string", "description" : "Client UUID.", "readOnly" : true }, "row" : { "type" : "integer", "description" : "Row number of the order line.", "format" : "int32", "readOnly" : true }, "description" : { "type" : "string", "description" : "Description of the order line.", "readOnly" : true }, "accountId" : { "type" : "integer", "description" : "ID of the account.", "format" : "int64", "readOnly" : true }, "accountIsAutomated" : { "type" : "boolean", "description" : "Flag indicating if the account is automated.", "readOnly" : true }, "count" : { "type" : "number", "description" : "Count of the order line.", "readOnly" : true }, "unitPrice" : { "type" : "number", "description" : "Unit price of the order line.", "readOnly" : true }, "amountInclVat" : { "type" : "number", "description" : "Amount including VAT.", "readOnly" : true }, "amountIsAutomated" : { "type" : "boolean", "description" : "Flag indicating if the amount is automated.", "readOnly" : true }, "vatTypeId" : { "type" : "integer", "description" : "ID of the VAT type.", "format" : "int64", "readOnly" : true }, "vatTypeIsAutomated" : { "type" : "boolean", "description" : "Flag indicating if the VAT type is automated.", "readOnly" : true }, "departmentId" : { "type" : "integer", "description" : "ID of the department.", "format" : "int64", "readOnly" : true }, "departmentIsAutomated" : { "type" : "boolean", "description" : "Flag indicating if the department is automated.", "readOnly" : true }, "projectId" : { "type" : "integer", "description" : "ID of the project.", "format" : "int64", "readOnly" : true }, "projectIsAutomated" : { "type" : "boolean", "description" : "Flag indicating if the project is automated.", "readOnly" : true }, "employeeId" : { "type" : "integer", "description" : "ID of the employee.", "format" : "int64", "readOnly" : true }, "productId" : { "type" : "integer", "description" : "ID of the product.", "format" : "int64", "readOnly" : true }, "assetId" : { "type" : "integer", "description" : "ID of the asset.", "format" : "int64", "readOnly" : true }, "customerId" : { "type" : "integer", "description" : "ID of the customer.", "format" : "int64", "readOnly" : true }, "vendorId" : { "type" : "integer", "description" : "ID of the vendor.", "format" : "int64", "readOnly" : true }, "taxTransactionTypeId" : { "type" : "integer", "description" : "Type of tax transaction.", "format" : "int64", "readOnly" : true }, "quantityAmount1" : { "type" : "number", "description" : "Quantity amount 1.", "readOnly" : true }, "productUnitId1" : { "type" : "integer", "description" : "ID of the product unit 1.", "format" : "int64", "readOnly" : true }, "quantityAmount2" : { "type" : "number", "description" : "Quantity amount 2.", "readOnly" : true }, "productUnitId2" : { "type" : "integer", "description" : "ID of the product unit 2.", "format" : "int64", "readOnly" : true }, "projectOrderLineIsApprovedOrCharged" : { "type" : "boolean", "description" : "Is project orderline approved or charged.", "readOnly" : true }, "reInvoiceOnProject" : { "type" : "boolean", "description" : "Re-invoice on project flag.", "readOnly" : true }, "reInvoiceProjectId" : { "type" : "integer", "description" : "Re-invoice project ID.", "format" : "int64", "readOnly" : true }, "reInvoiceSubContractId" : { "type" : "integer", "description" : "Re-invoice subcontract ID.", "format" : "int64", "readOnly" : true }, "reInvoiceMarkup" : { "type" : "number", "description" : "Re-invoice markup.", "readOnly" : true }, "reInvoiceDiscount" : { "type" : "number", "description" : "Re-invoice discount.", "readOnly" : true }, "reInvoiceUnitPrice" : { "type" : "number", "description" : "Re-invoice unit price in the project currency.", "readOnly" : true }, "reInvoiceVatTypeId" : { "type" : "integer", "description" : "Re-invoice VAT type ID.", "format" : "int64", "readOnly" : true }, "budgetOrderLineId" : { "type" : "integer", "description" : "ID of orderline in budget post", "format" : "int64", "readOnly" : true }, "changedAt" : { "type" : "string", "description" : "The date the order line was last changed.", "readOnly" : true }, "changedByEmployeeId" : { "type" : "integer", "description" : "Employee that changed the order line.", "format" : "int64", "readOnly" : true }, "changedByActualEmployeeId" : { "type" : "integer", "description" : "Actual employee that changed the order line.", "format" : "int64", "readOnly" : true }, "changedByActualCompanyId" : { "type" : "integer", "description" : "Company that changed the order line.", "format" : "int64", "readOnly" : true }, "periodizationAccountId" : { "type" : "integer", "description" : "Periodization Account ID.", "format" : "int64", "readOnly" : true }, "periodizationStartMonth" : { "type" : "integer", "description" : "Periodization Start Month.", "format" : "int32", "readOnly" : true }, "periodizationStartYear" : { "type" : "integer", "description" : "Periodization Start Year.", "format" : "int32", "readOnly" : true }, "periodizationPeriodsCount" : { "type" : "integer", "description" : "Number of Periodization Periods.", "format" : "int32", "readOnly" : true }, "saveOrderLine" : { "type" : "boolean", "description" : "The orderline has applied suggestions that has not been saved to the database and needs to be saved.", "readOnly" : true }, "freeDimension1Id" : { "type" : "integer", "description" : "Free dimension 1 value id.", "format" : "int64", "readOnly" : true }, "freeDimension2Id" : { "type" : "integer", "description" : "Free dimension 2 value id.", "format" : "int64", "readOnly" : true }, "freeDimension3Id" : { "type" : "integer", "description" : "Free dimension 3 value id.", "format" : "int64", "readOnly" : true } }, "readOnly" : true }, "ResponseWrapperIncomingInvoiceAggregateRead" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/IncomingInvoiceAggregateRead" } } }, "ListResponseVoucherInboxAttachment" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/VoucherInboxAttachment" } } } }, "VoucherInboxAttachment" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "description" : "Id for this voucher inbox attachment", "format" : "int64", "readOnly" : true }, "description" : { "type" : "string", "description" : "Description of this voucher inbox attachment", "readOnly" : true }, "date" : { "type" : "string", "description" : "Date uploaded for this voucher inbox attachment", "readOnly" : true }, "attachmentId" : { "type" : "integer", "description" : "attachmentId for this voucher inbox attachment", "format" : "int64", "readOnly" : true } }, "readOnly" : true }, "CreditNotePosting" : { "type" : "object", "properties" : { "postingId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "voucherId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "voucherNumber" : { "type" : "string", "readOnly" : true }, "invoiceNumber" : { "type" : "string", "readOnly" : true }, "invoiceDate" : { "type" : "string", "readOnly" : true }, "amountCurrency" : { "type" : "number", "readOnly" : true }, "voucherDetailsUrl" : { "type" : "string", "readOnly" : true }, "posted" : { "type" : "boolean" } }, "readOnly" : true }, "ListResponseCreditNotePosting" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/CreditNotePosting" } } } }, "ListResponseIncomingInvoiceDepartment" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/IncomingInvoiceDepartment" } } } }, "IncomingInvoiceHistory" : { "type" : "object", "properties" : { "date" : { "type" : "string", "format" : "date", "readOnly" : true }, "voucherNumber" : { "type" : "string", "readOnly" : true }, "invoiceNumber" : { "type" : "string", "readOnly" : true }, "amount" : { "type" : "number", "readOnly" : true }, "paymentStatus" : { "type" : "string", "readOnly" : true }, "url" : { "type" : "string", "readOnly" : true }, "currencyCode" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "ListResponseIncomingInvoiceHistory" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/IncomingInvoiceHistory" } } } }, "LastVendorInvoice" : { "type" : "object", "properties" : { "currencyId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "description" : { "type" : "string" }, "vatTypeId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "accountId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "projectId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "productId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "employeeId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "departmentId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "freeDimension1Id" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "freeDimension2Id" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "freeDimension3Id" : { "type" : "integer", "format" : "int64", "readOnly" : true } } }, "ResponseWrapperLastVendorInvoice" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/LastVendorInvoice" } } }, "ResponseWrapperIncomingInvoicePageOptions" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/IncomingInvoicePageOptions" } } }, "ListResponseIncomingInvoiceCompany" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/IncomingInvoiceCompany" } } } }, "IncomingInvoiceSaveResult" : { "type" : "object", "properties" : { "voucherId" : { "type" : "integer", "description" : "Voucher Id of the incoming invoice", "format" : "int64", "readOnly" : true }, "version" : { "type" : "integer", "description" : "Voucher version", "format" : "int32", "readOnly" : true }, "voucherNumber" : { "type" : "integer", "description" : "Voucher number of the incoming invoice", "format" : "int32", "readOnly" : true }, "voucherTempNumber" : { "type" : "integer", "description" : "Temporary voucher number of the incoming invoice", "format" : "int32", "readOnly" : true }, "voucherYear" : { "type" : "integer", "description" : "Voucher year of the incoming invoice", "format" : "int32", "readOnly" : true }, "invoiceLifeCycle" : { "type" : "string", "description" : "Invoice Life Cycle.", "readOnly" : true, "enum" : [ "DRAFT_IN_INBOX", "DRAFT_IN_NON_POSTED", "TEMPORARY_IN_LEDGER", "IN_LEDGER" ] }, "paymentIdsToApprove" : { "type" : "array", "description" : "List of payment ids that need to be approved", "readOnly" : true, "items" : { "type" : "integer", "description" : "List of payment ids that need to be approved", "format" : "int64", "readOnly" : true } }, "redirectUrl" : { "type" : "string", "description" : "Redirect URL after booking the incoming invoice", "readOnly" : true } } }, "ResponseWrapperIncomingInvoiceSaveResult" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/IncomingInvoiceSaveResult" } } }, "IncomingInvoiceAggregateWrite" : { "type" : "object", "properties" : { "voucherId" : { "type" : "integer", "description" : "Voucher Id of the incoming invoice", "format" : "int64" }, "version" : { "type" : "integer", "description" : "Voucher version", "format" : "int32" }, "costLineMode" : { "type" : "string", "description" : "Cost line mode for the invoice", "enum" : [ "GROUPED", "MIRRORED" ] }, "invoiceHeader" : { "$ref" : "#/components/schemas/IncomingInvoiceHeaderWrite" }, "orderLines" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/IncomingOrderLineWrite" } }, "paymentDraft" : { "$ref" : "#/components/schemas/IncomingInvoicePaymentWrite" }, "deletedOrderLines" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/IncomingOrderLineWrite" } } } }, "IncomingInvoiceHeaderWrite" : { "type" : "object", "properties" : { "vendorId" : { "type" : "integer", "description" : "The Incoming invoice draft vendor", "format" : "int64" }, "vendorIsAutomated" : { "type" : "boolean", "description" : "Indicates if the vendor is automated." }, "invoiceDate" : { "type" : "string", "description" : "The date the invoice was issued." }, "invoiceDateIsAutomated" : { "type" : "boolean", "description" : "Indicates if the invoice date is automated." }, "dueDate" : { "type" : "string", "description" : "The date the invoice is due." }, "dueDateIsAutomated" : { "type" : "boolean", "description" : "Indicates if the due date is automated." }, "currencyId" : { "type" : "integer", "description" : "Currency used in the invoice.", "format" : "int64" }, "currencyIsAutomated" : { "type" : "boolean", "description" : "Indicates if the currency is automated." }, "invoiceAmount" : { "type" : "number", "description" : "Amount including VAT." }, "invoiceAmountIsAutomated" : { "type" : "boolean", "description" : "Indicates if the invoice amount is automated." }, "description" : { "type" : "string", "description" : "Description of the invoice." }, "invoiceNumber" : { "type" : "string", "description" : "If value is set to 0, the invoice number will be generated." }, "invoiceNumberIsAutomated" : { "type" : "boolean", "description" : "Indicates if the invoice number is automated." }, "voucherTypeId" : { "type" : "integer", "description" : "Voucher type of the invoice.", "format" : "int64" }, "purchaseOrderId" : { "type" : "integer", "description" : "The purchase order that the invoice belongs to.", "format" : "int64" }, "includeAttachmentsOnReInvoiceOrderLines" : { "type" : "boolean", "description" : "Include receipts when re-invoicing" } }, "description" : "The invoice header.", "readOnly" : true }, "IncomingInvoicePaymentWrite" : { "type" : "object", "properties" : { "clientUUId" : { "type" : "string", "description" : "Client UUID." }, "payLater" : { "type" : "boolean", "description" : "Flag to postpone the payment of the invoice." }, "paymentTypeClientUUId" : { "type" : "string", "description" : "Payment type client UUID." }, "amountCurrency" : { "type" : "number", "description" : "Amount in currency." }, "oppositeAmountCurrency" : { "type" : "number", "description" : "Opposite amount from currency exchange." }, "paymentDate" : { "type" : "string", "description" : "Payment date." }, "currencyId" : { "type" : "integer", "description" : "Currency ID.", "format" : "int64" }, "creditorIbanOrBban" : { "type" : "string", "description" : "Creditor IBAN or BBAN." }, "originalInvoiceIbanOrBban" : { "type" : "string", "description" : "Bank account on an invoice." }, "creditorIbanOrBbanIsAutomated" : { "type" : "boolean", "description" : "Flag indicating if the creditor IBAN or BBAN is automated." }, "kidOrReceiverReference" : { "type" : "string", "description" : "KID or receiver reference." }, "kidIsAutomated" : { "type" : "boolean", "description" : "Flag indicating if the KID or receiver reference is automated." }, "foreignPayment" : { "type" : "boolean", "description" : "Flag for foreign payment." }, "regulatoryReportingCode" : { "type" : "string", "description" : "Regulatory reporting code." }, "regulatoryReportingInfo" : { "type" : "string", "description" : "Regulatory reporting info." }, "creditorName" : { "type" : "string", "description" : "Creditor name." }, "creditorBIC" : { "type" : "string", "description" : "Creditor BIC." }, "creditorBicIsAutomated" : { "type" : "boolean", "description" : "Flag indicating if the creditor BIC is automated." }, "creditorAddress" : { "type" : "string", "description" : "Creditor address." }, "creditorPostalCity" : { "type" : "string", "description" : "Creditor postal city." }, "creditorPostalCode" : { "type" : "string", "description" : "Creditor postal code." }, "creditorCountryId" : { "type" : "integer", "description" : "Creditor country ID.", "format" : "int64" }, "creditorBankName" : { "type" : "string", "description" : "Creditor bank name." }, "creditorBankAddress" : { "type" : "string", "description" : "Creditor bank address." }, "creditorBankPostalCity" : { "type" : "string", "description" : "Creditor bank postal city." }, "creditorBankPostalCode" : { "type" : "string", "description" : "Creditor bank postal code." }, "creditorBankCountryId" : { "type" : "integer", "description" : "Creditor bank country ID.", "format" : "int64" }, "creditorClearingCode" : { "type" : "string", "description" : "Creditor clearing code." }, "creditorBankIdentificator" : { "type" : "integer", "description" : "Creditor bank identifier.", "format" : "int64" }, "interpretKidRefFieldAsKid" : { "type" : "boolean", "description" : "Flag for interpreting kid ref field as kid." }, "selectedCreditNotes" : { "type" : "array", "description" : "Credit notes deducted from payment amount.", "items" : { "type" : "integer", "description" : "Credit notes deducted from payment amount.", "format" : "int64" } }, "goToApprovePayment" : { "type" : "boolean", "description" : "Flag to go to payment approval after book." }, "prepaidAmount" : { "type" : "number", "description" : "Amount already paid for EHF." } }, "description" : "The invoice payment.", "readOnly" : true }, "IncomingOrderLineWrite" : { "type" : "object", "properties" : { "clientUUId" : { "type" : "string", "description" : "Client UUID." }, "row" : { "minimum" : 0, "type" : "integer", "description" : "Row number of the order line.", "format" : "int32" }, "description" : { "type" : "string", "description" : "Description of the order line." }, "accountId" : { "type" : "integer", "description" : "ID of the account.", "format" : "int64" }, "accountIsAutomated" : { "type" : "boolean", "description" : "Indicates if the account is automated." }, "count" : { "type" : "number", "description" : "Count of the order line." }, "unitPrice" : { "type" : "number", "description" : "Unit price of the order line." }, "amountInclVat" : { "type" : "number", "description" : "Amount including VAT." }, "amountEditOrder" : { "type" : "string", "description" : "Amount edit order." }, "amountIsAutomated" : { "type" : "boolean", "description" : "Indicates if the amount is automated." }, "vatTypeId" : { "type" : "integer", "description" : "ID of the VAT type.", "format" : "int64" }, "vatTypeIsAutomated" : { "type" : "boolean", "description" : "Indicates if the VAT type is automated." }, "departmentId" : { "type" : "integer", "description" : "ID of the department.", "format" : "int64" }, "departmentIsAutomated" : { "type" : "boolean", "description" : "Indicates if the department is automated." }, "projectId" : { "type" : "integer", "description" : "ID of the project.", "format" : "int64" }, "projectIsAutomated" : { "type" : "boolean", "description" : "Indicates if the project is automated." }, "employeeId" : { "type" : "integer", "description" : "ID of the employee.", "format" : "int64" }, "productId" : { "type" : "integer", "description" : "ID of the product.", "format" : "int64" }, "assetId" : { "type" : "integer", "description" : "ID of the asset.", "format" : "int64" }, "customerId" : { "type" : "integer", "description" : "ID of the customer.", "format" : "int64" }, "vendorId" : { "type" : "integer", "description" : "ID of the vendor.", "format" : "int64" }, "taxTransactionTypeId" : { "type" : "integer", "description" : "ID of tax transaction.", "format" : "int64" }, "quantityAmount1" : { "type" : "number", "description" : "Quantity amount 1." }, "productUnitId1" : { "type" : "integer", "description" : "ID of the product unit 1.", "format" : "int64" }, "quantityAmount2" : { "type" : "number", "description" : "Quantity amount 2." }, "productUnitId2" : { "type" : "integer", "description" : "ID of the product unit 2.", "format" : "int64" }, "reInvoiceOnProject" : { "type" : "boolean", "description" : "Re-invoice on project flag." }, "reInvoiceProjectId" : { "type" : "integer", "description" : "Re-invoice project ID.", "format" : "int64" }, "reInvoiceSubContractId" : { "type" : "integer", "description" : "Re-invoice subcontract ID.", "format" : "int64" }, "reInvoiceMarkup" : { "type" : "number", "description" : "Re-invoice markup." }, "reInvoiceDiscount" : { "type" : "number", "description" : "Re-invoice discount." }, "reInvoiceUnitPrice" : { "type" : "number", "description" : "Re-invoice unit price in the project currency." }, "reInvoiceVatTypeId" : { "type" : "integer", "description" : "Re-invoice VAT type ID.", "format" : "int64" }, "budgetOrderLineId" : { "type" : "integer", "description" : "ID of orderline used as budget item", "format" : "int64" }, "periodizationAccountId" : { "type" : "integer", "description" : "Periodization Account ID.", "format" : "int64" }, "periodizationStartMonth" : { "minimum" : 1, "type" : "integer", "description" : "Periodization Start Month.", "format" : "int32" }, "periodizationStartYear" : { "minimum" : 1990, "type" : "integer", "description" : "Periodization Start Year.", "format" : "int32" }, "periodizationPeriodsCount" : { "minimum" : 1, "type" : "integer", "description" : "Number of Periodization Periods.", "format" : "int32" }, "freeDimension1Id" : { "type" : "integer", "description" : "Free dimension 1 value id.", "format" : "int64" }, "freeDimension2Id" : { "type" : "integer", "description" : "Free dimension 2 value id.", "format" : "int64" }, "freeDimension3Id" : { "type" : "integer", "description" : "Free dimension 3 value id.", "format" : "int64" } }, "description" : "The invoice deleted order lines.", "readOnly" : true }, "IncomingInvoiceRevertResult" : { "type" : "object", "properties" : { "reverseVoucherId" : { "type" : "integer", "description" : "Id of reverse voucher", "format" : "int64", "readOnly" : true }, "reverseVoucherNumber" : { "type" : "string", "description" : "Number of reverse voucher", "readOnly" : true } } }, "ResponseWrapperIncomingInvoiceRevertResult" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/IncomingInvoiceRevertResult" } } }, "ListResponseIncomingOrderLineRead" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/IncomingOrderLineRead" } } } }, "ListResponseString" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "type" : "string", "readOnly" : true } } } }, "ListResponseIncomingInvoiceAccount" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/IncomingInvoiceAccount" } } } }, "IncomingInvoicePaymentResult" : { "type" : "object" }, "ResponseWrapperIncomingInvoicePaymentResult" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/IncomingInvoicePaymentResult" } } }, "IncomingInvoicePaymentExternalWrite" : { "type" : "object", "properties" : { "paymentTypeClientUUId" : { "type" : "string", "description" : "Payment type client UUID." }, "amountCurrency" : { "type" : "number", "description" : "Amount in currency." }, "paymentDate" : { "type" : "string", "description" : "Payment date." }, "creditorIbanOrBban" : { "type" : "string", "description" : "Creditor IBAN or BBAN." }, "kidOrReceiverReference" : { "type" : "string", "description" : "KID or receiver reference." }, "useDefaultPaymentType" : { "type" : "boolean", "description" : "Set paymentType to last type for vendor, autopay, ztl or first available other type" }, "partialPayment" : { "type" : "boolean", "description" : "Set to true to allow multiple payments registered." } } }, "IncomingInvoiceAggregateExternalRead" : { "type" : "object", "properties" : { "voucherId" : { "type" : "integer", "description" : "Voucher Id of the incoming invoice", "format" : "int64", "readOnly" : true }, "invoiceHeader" : { "$ref" : "#/components/schemas/IncomingInvoiceHeaderExternalRead" }, "orderLines" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/IncomingOrderLineExternalRead" } }, "metadata" : { "$ref" : "#/components/schemas/IncomingInvoiceMetadataExternal" }, "permissions" : { "$ref" : "#/components/schemas/IncomingInvoicePermissions" } }, "readOnly" : true }, "IncomingInvoiceHeaderExternalRead" : { "type" : "object", "properties" : { "vendorId" : { "type" : "integer", "description" : "Id of the vendor", "format" : "int64", "readOnly" : true }, "vendorIsAutomated" : { "type" : "boolean", "description" : "Is vendor automated", "readOnly" : true }, "invoiceDate" : { "type" : "string", "description" : "Invoice date", "readOnly" : true }, "invoiceDateIsAutomated" : { "type" : "boolean", "description" : "Is invoice date automated", "readOnly" : true }, "invoiceNumber" : { "type" : "string", "description" : "Invoice number", "readOnly" : true }, "invoiceNumberIsAutomated" : { "type" : "boolean", "description" : "Is invoice number automated", "readOnly" : true }, "invoiceAmount" : { "type" : "number", "description" : "Invoice amount", "readOnly" : true }, "invoiceAmountIsAutomated" : { "type" : "boolean", "description" : "Is invoice amount automated", "readOnly" : true }, "dueDate" : { "type" : "string", "description" : "Due date", "readOnly" : true }, "dueDateIsAutomated" : { "type" : "boolean", "description" : "Is due date automated", "readOnly" : true }, "currencyId" : { "type" : "integer", "description" : "Currency id", "format" : "int64", "readOnly" : true }, "currencyIsAutomated" : { "type" : "boolean", "description" : "Is currency automated", "readOnly" : true }, "companyCurrencyId" : { "type" : "integer", "description" : "Company currency id", "format" : "int64", "readOnly" : true }, "description" : { "type" : "string", "description" : "Description", "readOnly" : true }, "voucherTypeId" : { "type" : "integer", "description" : "Voucher type", "format" : "int64", "readOnly" : true }, "purchaseOrderId" : { "type" : "integer", "description" : "Purchase order id", "format" : "int64", "readOnly" : true }, "note" : { "type" : "string", "description" : "Note", "readOnly" : true } }, "description" : "The invoice header.", "readOnly" : true }, "IncomingInvoiceMetadataExternal" : { "type" : "object", "properties" : { "voucherNumber" : { "type" : "integer", "description" : "Voucher number", "format" : "int32", "readOnly" : true }, "voucherTempNumber" : { "type" : "integer", "description" : "Voucher temporary number", "format" : "int32", "readOnly" : true }, "voucherYear" : { "type" : "integer", "description" : "Voucher year", "format" : "int32", "readOnly" : true }, "version" : { "type" : "integer", "description" : "Voucher version", "format" : "int32", "readOnly" : true }, "invoiceLifeCycle" : { "type" : "string", "description" : "Invoice Life Cycle.", "readOnly" : true, "enum" : [ "DRAFT_IN_INBOX", "DRAFT_IN_NON_POSTED", "TEMPORARY_IN_LEDGER", "IN_LEDGER" ] }, "reverseVoucherId" : { "type" : "integer", "description" : "Id of reverse voucher", "format" : "int64", "readOnly" : true }, "accountingPeriodClosed" : { "type" : "boolean", "description" : "If accounting period is closed", "readOnly" : true }, "primaryIndustryVatPeriodClosed" : { "type" : "boolean", "description" : "If vat period is closed for primary industries", "readOnly" : true }, "generalIndustryVatPeriodClosed" : { "type" : "boolean", "description" : "If vat period is closed for general industries", "readOnly" : true }, "defaultVatReportType" : { "type" : "string", "readOnly" : true, "enum" : [ "PRIMARY_INDUSTRY", "GENERAL_INDUSTRY" ] } }, "description" : "The invoice meta data.", "readOnly" : true }, "IncomingOrderLineExternalRead" : { "type" : "object", "properties" : { "externalId" : { "type" : "string", "description" : "Client UUID.", "readOnly" : true }, "row" : { "type" : "integer", "description" : "Row number of the order line.", "format" : "int32", "readOnly" : true }, "description" : { "type" : "string", "description" : "Description of the order line.", "readOnly" : true }, "accountId" : { "type" : "integer", "description" : "ID of the account.", "format" : "int64", "readOnly" : true }, "accountIsAutomated" : { "type" : "boolean", "description" : "Flag indicating if the account is automated.", "readOnly" : true }, "count" : { "type" : "number", "description" : "Count of the order line.", "readOnly" : true }, "unitPrice" : { "type" : "number", "description" : "Unit price of the order line.", "readOnly" : true }, "amountInclVat" : { "type" : "number", "description" : "Amount including VAT.", "readOnly" : true }, "amountIsAutomated" : { "type" : "boolean", "description" : "Flag indicating if the amount is automated.", "readOnly" : true }, "amountExclVat" : { "type" : "number", "description" : "Amount excluding VAT.", "readOnly" : true }, "amountVat" : { "type" : "number", "description" : "Total VAT amount.", "readOnly" : true }, "vatTypeId" : { "type" : "integer", "description" : "ID of the VAT type.", "format" : "int64", "readOnly" : true }, "vatTypeIsAutomated" : { "type" : "boolean", "description" : "Flag indicating if the VAT type is automated.", "readOnly" : true }, "departmentId" : { "type" : "integer", "description" : "ID of the department.", "format" : "int64", "readOnly" : true }, "departmentIsAutomated" : { "type" : "boolean", "description" : "Flag indicating if the department is automated.", "readOnly" : true }, "projectId" : { "type" : "integer", "description" : "ID of the project.", "format" : "int64", "readOnly" : true }, "projectIsAutomated" : { "type" : "boolean", "description" : "Flag indicating if the project is automated.", "readOnly" : true }, "employeeId" : { "type" : "integer", "description" : "ID of the employee.", "format" : "int64", "readOnly" : true }, "productId" : { "type" : "integer", "description" : "ID of the product.", "format" : "int64", "readOnly" : true }, "assetId" : { "type" : "integer", "description" : "ID of the asset.", "format" : "int64", "readOnly" : true }, "customerId" : { "type" : "integer", "description" : "ID of the customer.", "format" : "int64", "readOnly" : true }, "vendorId" : { "type" : "integer", "description" : "ID of the vendor.", "format" : "int64", "readOnly" : true }, "taxTransactionTypeId" : { "type" : "integer", "description" : "Type of tax transaction.", "format" : "int64", "readOnly" : true }, "quantityAmount1" : { "type" : "number", "description" : "Quantity amount 1.", "readOnly" : true }, "productUnitId1" : { "type" : "integer", "description" : "ID of the product unit 1.", "format" : "int64", "readOnly" : true }, "quantityAmount2" : { "type" : "number", "description" : "Quantity amount 2.", "readOnly" : true }, "productUnitId2" : { "type" : "integer", "description" : "ID of the product unit 2.", "format" : "int64", "readOnly" : true }, "reInvoiceOnProject" : { "type" : "boolean", "description" : "Re-invoice on project flag.", "readOnly" : true }, "periodizationAccountId" : { "type" : "integer", "description" : "Periodization Account ID.", "format" : "int64", "readOnly" : true }, "periodizationStartMonth" : { "type" : "integer", "description" : "Periodization Start Month.", "format" : "int32", "readOnly" : true }, "periodizationStartYear" : { "type" : "integer", "description" : "Periodization Start Year.", "format" : "int32", "readOnly" : true }, "periodizationPeriodsCount" : { "type" : "integer", "description" : "Number of Periodization Periods.", "format" : "int32", "readOnly" : true }, "budgetOrderLineId" : { "type" : "integer", "description" : "ID of order line used as budget item.", "format" : "int64", "readOnly" : true }, "freeDimension1Id" : { "type" : "integer", "description" : "Free dimension 1 value id.", "format" : "int64", "readOnly" : true }, "freeDimension2Id" : { "type" : "integer", "description" : "Free dimension 2 value id.", "format" : "int64", "readOnly" : true }, "freeDimension3Id" : { "type" : "integer", "description" : "Free dimension 3 value id.", "format" : "int64", "readOnly" : true } }, "description" : "The invoice order lines.", "readOnly" : true }, "ResponseWrapperIncomingInvoiceAggregateExternalRead" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/IncomingInvoiceAggregateExternalRead" } } }, "IncomingInvoiceAggregateExternalWrite" : { "type" : "object", "properties" : { "version" : { "type" : "integer", "description" : "Voucher version", "format" : "int32" }, "invoiceHeader" : { "$ref" : "#/components/schemas/IncomingInvoiceHeaderExternalWrite" }, "orderLines" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/IncomingOrderLineExternalWrite" } } } }, "IncomingInvoiceHeaderExternalWrite" : { "type" : "object", "properties" : { "vendorId" : { "type" : "integer", "description" : "The Incoming invoice vendor", "format" : "int64" }, "invoiceDate" : { "type" : "string", "description" : "The date the invoice was issued." }, "dueDate" : { "type" : "string", "description" : "The date the invoice is due." }, "currencyId" : { "type" : "integer", "description" : "Currency used in the invoice.", "format" : "int64" }, "invoiceAmount" : { "type" : "number", "description" : "Amount including VAT." }, "description" : { "type" : "string", "description" : "Description of the invoice." }, "invoiceNumber" : { "type" : "string", "description" : "Number of the invoice" }, "voucherTypeId" : { "type" : "integer", "description" : "Voucher type of the invoice.", "format" : "int64" }, "purchaseOrderId" : { "type" : "integer", "description" : "The purchase order that the invoice belongs to.", "format" : "int64" } }, "description" : "The invoice header." }, "IncomingOrderLineExternalWrite" : { "type" : "object", "properties" : { "externalId" : { "type" : "string", "description" : "Unique Id for this invoice. Will be used in validation messages." }, "row" : { "minimum" : 1, "type" : "integer", "description" : "Row number of the order line. Starts at 1", "format" : "int32" }, "description" : { "type" : "string", "description" : "Description of the order line." }, "accountId" : { "type" : "integer", "description" : "ID of the account.", "format" : "int64" }, "count" : { "type" : "number", "description" : "Count of the order line. Max 10 decimals" }, "amountInclVat" : { "type" : "number", "description" : "Amount including VAT. Max 2 decimals" }, "vatTypeId" : { "type" : "integer", "description" : "ID of the VAT type.", "format" : "int64" }, "departmentId" : { "type" : "integer", "description" : "ID of the department.", "format" : "int64" }, "projectId" : { "type" : "integer", "description" : "ID of the project.", "format" : "int64" }, "employeeId" : { "type" : "integer", "description" : "ID of the employee.", "format" : "int64" }, "productId" : { "type" : "integer", "description" : "ID of the product.", "format" : "int64" }, "assetId" : { "type" : "integer", "description" : "ID of the asset.", "format" : "int64" }, "customerId" : { "type" : "integer", "description" : "ID of the customer.", "format" : "int64" }, "vendorId" : { "type" : "integer", "description" : "ID of the vendor.", "format" : "int64" }, "taxTransactionTypeId" : { "type" : "integer", "description" : "ID of tax transaction.", "format" : "int64" }, "quantityAmount1" : { "type" : "number", "description" : "Quantity amount 1." }, "productUnitId1" : { "type" : "integer", "description" : "ID of the product unit 1.", "format" : "int64" }, "quantityAmount2" : { "type" : "number", "description" : "Quantity amount 2." }, "productUnitId2" : { "type" : "integer", "description" : "ID of the product unit 2.", "format" : "int64" }, "reInvoiceOnProject" : { "type" : "boolean", "description" : "Re-invoice on project flag." }, "budgetOrderLineId" : { "type" : "integer", "description" : "ID of order line used as budget item", "format" : "int64" }, "periodizationAccountId" : { "type" : "integer", "description" : "Periodization Account ID.", "format" : "int64" }, "periodizationStartMonth" : { "maximum" : 12, "minimum" : 1, "type" : "integer", "description" : "Periodization Start Month.", "format" : "int32" }, "periodizationStartYear" : { "minimum" : 1990, "type" : "integer", "description" : "Periodization Start Year.", "format" : "int32" }, "periodizationPeriodsCount" : { "minimum" : 1, "type" : "integer", "description" : "Number of Periodization Periods.", "format" : "int32" }, "freeDimension1Id" : { "type" : "integer", "description" : "Free dimension 1 value id.", "format" : "int64" }, "freeDimension2Id" : { "type" : "integer", "description" : "Free dimension 2 value id.", "format" : "int64" }, "freeDimension3Id" : { "type" : "integer", "description" : "Free dimension 3 value id.", "format" : "int64" } }, "description" : "The invoice order lines." }, "ListResponseIncomingInvoiceAggregateExternalRead" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/IncomingInvoiceAggregateExternalRead" } } } }, "ResponseWrapperIncomingInvoicePaymentRead" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/IncomingInvoicePaymentRead" } } }, "ListResponseIncomingInvoiceProject" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/IncomingInvoiceProject" } } } }, "ListResponseIncomingInvoiceProjectSubContract" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/IncomingInvoiceProjectSubContract" } } } }, "IncomingInvoiceTaxType" : { "type" : "object", "properties" : { "accountId" : { "type" : "integer", "description" : "The account ID", "format" : "int64" }, "taxTransactionTypeIds" : { "type" : "array", "description" : "List of tax transaction type IDs available for this account", "items" : { "type" : "integer", "description" : "List of tax transaction type IDs available for this account", "format" : "int64" } } }, "description" : "Tax transaction types for a specific account", "readOnly" : true }, "ListResponseIncomingInvoiceTaxType" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/IncomingInvoiceTaxType" } } } }, "ListResponseTaxTransactionType" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/TaxTransactionType" } } } }, "TaxTransactionType" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "displayName" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "SmartScanSimulationData" : { "type" : "object", "properties" : { "vendorId" : { "type" : "integer", "description" : "The Incoming invoice draft vendor", "format" : "int64" }, "invoiceDate" : { "type" : "string", "description" : "The date the invoice was issued." }, "dueDate" : { "type" : "string", "description" : "The date the invoice is due." }, "currencyId" : { "type" : "integer", "description" : "Currency used in the invoice.", "format" : "int64" }, "invoiceAmount" : { "type" : "number", "description" : "Amount including VAT." }, "invoiceNumber" : { "type" : "string", "description" : "If value is set to 0, the invoice number will be generated." }, "documentType" : { "type" : "string", "description" : "Voucher type of the invoice.", "enum" : [ "TYPE_UNKNOWN", "TYPE_INVOICE", "TYPE_RECEIPT", "TYPE_CREDIT_NOTE" ] } } }, "ListResponseIncomingInvoiceVatType" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/IncomingInvoiceVatType" } } } }, "LegalVatTypesForAccount" : { "type" : "object", "properties" : { "accountId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "legalVatTypeIds" : { "type" : "array", "readOnly" : true, "items" : { "type" : "integer", "format" : "int64", "readOnly" : true } } }, "readOnly" : true }, "LegalVatTypesForAccounts" : { "type" : "object", "properties" : { "date" : { "type" : "string", "readOnly" : true }, "legalVatTypes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/LegalVatTypesForAccount" } } } }, "ResponseWrapperLegalVatTypesForAccounts" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/LegalVatTypesForAccounts" } } }, "IncomingOrderLineOriginal" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "description" : "Unique identifier for the order line.", "format" : "int64", "readOnly" : true }, "incomingInvoiceOriginalId" : { "type" : "integer", "description" : "Reference to the original invoice this order line belongs to.", "format" : "int64", "readOnly" : true }, "orderLineType" : { "type" : "string", "description" : "Type of the order line (e.g., EXPENSE).", "readOnly" : true, "enum" : [ "EXPENSE", "ROUND_OFF", "ALLOWANCE", "CHARGE", "MARKUP", "DISCOUNT" ] }, "row" : { "type" : "integer", "description" : "Sequence number of the order line, starting at 1. Start with 1 to align with posting row numbers.", "format" : "int32", "readOnly" : true }, "rowId" : { "type" : "string", "description" : "Unique identifier for the order line within an EHF invoice.", "readOnly" : true }, "name" : { "type" : "string", "description" : "Name of the order line.", "readOnly" : true }, "description" : { "type" : "string", "description" : "Description of the order line.", "readOnly" : true }, "count" : { "type" : "number", "description" : "Quantity/count of the order line.", "readOnly" : true }, "unitPrice" : { "type" : "number", "description" : "Unit price of the order line, excluding VAT, including discount, markup, allowances, and charges.", "readOnly" : true }, "amountExclVat" : { "type" : "number", "description" : "Total amount of the order line, excluding VAT, including discount, markup, allowances, and charges.", "readOnly" : true }, "amountInclVat" : { "type" : "number", "description" : "Total amount of the order line, including VAT, including discount, markup, allowances, and charges.", "readOnly" : true }, "discount" : { "type" : "number", "description" : "Discount and allowance combined, in percentage.", "readOnly" : true }, "markup" : { "type" : "number", "description" : "Markup and charge combined, in percentage.", "readOnly" : true }, "vatType" : { "type" : "string", "description" : "Vat type code from the EHF standard, e.g., 'S', 'M', 'H', 'E'.", "readOnly" : true }, "vatPercent" : { "type" : "number", "description" : "Vat rate in percentage, e.g., 25.0 for 25%.", "readOnly" : true }, "sellersProductIdentification" : { "type" : "string", "description" : "Seller's product identification code.", "readOnly" : true }, "standardProductIdentificationId" : { "type" : "string", "description" : "Standard product identification ID.", "readOnly" : true }, "standardProductIdentificationSchemeId" : { "type" : "string", "description" : "Standard product identification scheme ID.", "readOnly" : true }, "productName" : { "type" : "string", "description" : "Product name.", "readOnly" : true } }, "readOnly" : true }, "ListResponseIncomingOrderLineOriginal" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/IncomingOrderLineOriginal" } } } }, "AutoPayMessage" : { "type" : "object", "properties" : { "messageId" : { "type" : "string" }, "messageType" : { "type" : "string" }, "message" : { "type" : "string" } } }, "ApproveResponse" : { "type" : "object", "properties" : { "redirectUrl" : { "type" : "string", "description" : "The redirect URL to AutoPay 2FA or ZTL SCA after payments are sent to be approved", "readOnly" : true }, "toBeApproved" : { "type" : "array", "description" : "List of payments that will be sent to AutoPay approval/ZTL", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Payment" } }, "notApproved" : { "type" : "array", "description" : "List of payments that won't be sent to AutoPay approval/ZTL", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Payment" } }, "exchangeRateExpiration" : { "type" : "string", "description" : "Expiration for given exchangeRate/quote. Only shown for international transactions. Example: 2022-08-05T13:13:59.633957965+02:00", "readOnly" : true }, "exchangeRateSums" : { "type" : "array", "description" : "Sum of all to be approved payments by currencies", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/CurrencyPaymentsSum" } }, "lockedExchangeRateSums" : { "type" : "array", "description" : "Sum of all to be approved payments with locked exchange rates by currencies", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/CurrencyPaymentsSum" } }, "nonExchangeRateSums" : { "type" : "array", "description" : "Sum of all to be approved payments without exchange rates by currencies", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/CurrencyPaymentsSum" } } } }, "AutoPayTransaction" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "paymentSource" : { "type" : "string", "enum" : [ "AutoPayTransaction", "ZtlTransaction" ] }, "paymentDate" : { "type" : "string" }, "bookingDate" : { "type" : "string", "readOnly" : true }, "valueDate" : { "type" : "string", "readOnly" : true }, "amountCurrency" : { "type" : "number", "description" : "In the specified currency." }, "currency" : { "$ref" : "#/components/schemas/Currency" }, "creditorName" : { "type" : "string", "readOnly" : true }, "creditorIbanOrBban" : { "type" : "string", "readOnly" : true }, "creditorBankName" : { "type" : "string", "readOnly" : true }, "creditorBankAddress" : { "type" : "string", "readOnly" : true }, "creditorBankPostalCode" : { "type" : "string", "readOnly" : true }, "creditorBankPostalCity" : { "type" : "string", "readOnly" : true }, "statusId" : { "type" : "string", "description" : "The payment status Id. Usually all the payments in one batch have the same status ID, at least to the point of being received by bank.NEW: Payment is new.
PENDING_SIGNING: Payment is sent to AutoPay but not signed yet, requires re-approving.
CANCELLED: Payment was cancelled by ERP.
ERROR: Payment that failed.
RECEIVED_BY_BANK: Payment was received by the bank.
ACCEPTED_BY_BANK: Payment was accepted by bank.
CANCELLED_IN_BANK: Payment was cancelled in bank.
REJECTED_BY_BANK: Payment was rejected by bank.
PAID: Payment is paid.
OTHER: In case status in unknown. Will never be a final status.
", "enum" : [ "NEW", "PENDING_SIGNING", "CANCELLED", "ERROR", "RECEIVED_BY_BANK", "ACCEPTED_BY_BANK", "PENDING_IN_BANK", "PENDING_SIGNING_IN_BANK", "CANCELLED_IN_BANK", "REJECTED_BY_BANK", "PAID", "OTHER" ] }, "isFinalStatus" : { "type" : "boolean", "readOnly" : true }, "isForeignPayment" : { "type" : "boolean", "readOnly" : true }, "isSalary" : { "type" : "boolean", "readOnly" : true }, "description" : { "type" : "string", "readOnly" : true }, "kid" : { "type" : "string", "description" : "KID - Kundeidentifikasjonsnummer.", "readOnly" : true }, "receiverReference" : { "type" : "string", "readOnly" : true }, "sourceVoucher" : { "$ref" : "#/components/schemas/Voucher" }, "postings" : { "$ref" : "#/components/schemas/Posting" }, "account" : { "$ref" : "#/components/schemas/Account" }, "amountInAccountCurrency" : { "type" : "number", "description" : "Amount specified in the currency of the bank agreements account.", "readOnly" : true }, "isDisabledForUpdate" : { "type" : "boolean", "description" : "Can this payment date be changed.", "readOnly" : true }, "isDisabledForAmountChange" : { "type" : "boolean", "description" : "Can this payment amount be changed.", "readOnly" : true }, "isDueDateUpdatable" : { "type" : "boolean", "description" : "Can this payment due date be changed.", "readOnly" : true }, "isSelectable" : { "type" : "boolean", "description" : "Is this payment selectable.", "readOnly" : true }, "isManuallyBookable" : { "type" : "boolean", "description" : "Is this payment manually bookable.", "readOnly" : true }, "acceptors" : { "type" : "array", "description" : "Who approved this payment.", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Employee" } }, "numberOfApprovedInBank" : { "type" : "integer", "description" : "Number of how many times this transaction has been approved in nettbank", "format" : "int32", "readOnly" : true }, "numberOfApprovers" : { "type" : "integer", "description" : "Number of approvers required for this transaction. Ztl only!", "format" : "int32", "readOnly" : true }, "paymentCategory" : { "type" : "string", "description" : "The payment category.", "readOnly" : true, "enum" : [ "TRANSFER_BETWEEN_ACCOUNTS", "REIMBURSEMENT", "SUPPLIER_INVOICE", "WITHHOLDING_TAX", "TAX_DEDUCTION", "VAT", "SALARY", "ENI", "REGISTERED" ] }, "displayStatus" : { "type" : "string", "description" : "The payment filter status.", "readOnly" : true }, "isApproveDisabled" : { "type" : "boolean", "description" : "Can this payment be approved.", "readOnly" : true }, "isDeleteDisabled" : { "type" : "boolean", "description" : "Can this payment be deleted", "readOnly" : true }, "isCancelDisabled" : { "type" : "boolean", "description" : "Can this payment be cancelled.", "readOnly" : true }, "urlForVoucher" : { "type" : "string", "description" : "The url to access the connected invoice/wage period transaction/vat returns/wage transaction.", "readOnly" : true }, "isSalaryDateInvalid" : { "type" : "boolean", "description" : "Is the due date invalid, if this is a salary payment.", "readOnly" : true }, "expired" : { "type" : "boolean", "description" : "Is this transaction expired.", "readOnly" : true }, "receiverLink" : { "type" : "string", "description" : "The payment receiver link or name.", "readOnly" : true }, "mergingBanksMessage" : { "type" : "string", "description" : "Message regarding merging of banks", "readOnly" : true }, "bank" : { "$ref" : "#/components/schemas/Bank" }, "sendToBank" : { "type" : "boolean", "readOnly" : true }, "smsApproval" : { "type" : "boolean", "readOnly" : true }, "rejectionMessage" : { "type" : "string", "readOnly" : true }, "status" : { "type" : "string", "readOnly" : true, "enum" : [ "NOT_APPROVED", "CANCELLED", "APPROVED", "SENT_TO_AUTOPAY", "RECEIVED_BY_BANK", "ACCEPTED_BY_BANK", "FAILED", "SUCCESS", "NOT_UPDATED", "ON_HOLD", "IMPORTED", "INITIALIZED", "AUTHORIZATION_REQUIRED", "SETTLEMENT_IN_PROGRESS", "REJECTED", "BOOKED", "SETTLEMENT_COMPLETED", "BATCH_FAILED", "BATCH_TIMEOUT", "CANCEL_PENDING", "PAYROLL_AWAITING_AUTHORIZATION", "PAYROLL_SETTLEMENT_IN_PROGRESS", "PAYROLL_SETTLEMENT_COMPLETED", "PAYROLL_CANCELLED", "PAYROLL_SETTLEMENT_NOT_COMPLETED_IN_TIME", "PAYROLL_PAYMENT_INITIATED", "PAYROLL_PAYMENT_ACCEPTED_TECHNICAL_VALIDATION", "PAYROLL_ACCEPTED_FOR_EXECUTION", "PAYROLL_FAILED", "PAYROLL_EXECUTION_COMPLETED", "AUTHORIZATION_REQUIRED_MULTIPLE_APPROVERS", "REJECTED_FUNDS_NOT_RECEIVED_IN_TIME", "BOOKED_READY_FOR_BOOKKEEPING", "UNSIGNED", "IN_PROGRESS", "COMPLETED", "CUSTOMER_ACTION_REQUIRED", "PARTLY_SIGNED", "SMS_CONFIRMATION_REQUIRED", "INSUFFICIENT_FUNDS" ] } }, "readOnly" : true }, "CurrencyPaymentsSum" : { "type" : "object", "properties" : { "currency" : { "$ref" : "#/components/schemas/Currency" }, "sum" : { "type" : "number", "description" : "Sum of the payments in currency", "readOnly" : true }, "exchangeRate" : { "type" : "number", "description" : "Exchange rate used for the sum", "readOnly" : true }, "displayExchangeRate" : { "type" : "number", "description" : "Display exchange rate used for the sum. Eg. EURNOK are displayed per 1 (9.87), while SEKNOK per 100 (98,27)", "readOnly" : true }, "exchangedAmountsSum" : { "type" : "number", "description" : "Sum of the amounts after exchange rate applied. Eg. if exchange rate is 10, then 100 EUR will be 1000 NOK", "readOnly" : true }, "count" : { "type" : "integer", "description" : "Count of the payments in currency", "format" : "int32", "readOnly" : true } } }, "Payment" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "paymentSource" : { "type" : "string", "enum" : [ "AutoPayTransaction", "ZtlTransaction" ] }, "paymentDate" : { "type" : "string" }, "bookingDate" : { "type" : "string", "readOnly" : true }, "valueDate" : { "type" : "string", "readOnly" : true }, "amountCurrency" : { "type" : "number", "description" : "In the specified currency." }, "currency" : { "$ref" : "#/components/schemas/Currency" }, "creditorName" : { "type" : "string", "readOnly" : true }, "creditorIbanOrBban" : { "type" : "string", "readOnly" : true }, "creditorBankName" : { "type" : "string", "readOnly" : true }, "creditorBankAddress" : { "type" : "string", "readOnly" : true }, "creditorBankPostalCode" : { "type" : "string", "readOnly" : true }, "creditorBankPostalCity" : { "type" : "string", "readOnly" : true }, "statusId" : { "type" : "string", "description" : "The payment status Id. Usually all the payments in one batch have the same status ID, at least to the point of being received by bank.NEW: Payment is new.
PENDING_SIGNING: Payment is sent to AutoPay but not signed yet, requires re-approving.
CANCELLED: Payment was cancelled by ERP.
ERROR: Payment that failed.
RECEIVED_BY_BANK: Payment was received by the bank.
ACCEPTED_BY_BANK: Payment was accepted by bank.
CANCELLED_IN_BANK: Payment was cancelled in bank.
REJECTED_BY_BANK: Payment was rejected by bank.
PAID: Payment is paid.
OTHER: In case status in unknown. Will never be a final status.
", "enum" : [ "NEW", "PENDING_SIGNING", "CANCELLED", "ERROR", "RECEIVED_BY_BANK", "ACCEPTED_BY_BANK", "PENDING_IN_BANK", "PENDING_SIGNING_IN_BANK", "CANCELLED_IN_BANK", "REJECTED_BY_BANK", "PAID", "OTHER" ] }, "isFinalStatus" : { "type" : "boolean", "readOnly" : true }, "isForeignPayment" : { "type" : "boolean", "readOnly" : true }, "isSalary" : { "type" : "boolean", "readOnly" : true }, "description" : { "type" : "string", "readOnly" : true }, "kid" : { "type" : "string", "description" : "KID - Kundeidentifikasjonsnummer.", "readOnly" : true }, "receiverReference" : { "type" : "string", "readOnly" : true }, "sourceVoucher" : { "$ref" : "#/components/schemas/Voucher" }, "postings" : { "$ref" : "#/components/schemas/Posting" }, "account" : { "$ref" : "#/components/schemas/Account" }, "amountInAccountCurrency" : { "type" : "number", "description" : "Amount specified in the currency of the bank agreements account.", "readOnly" : true }, "isDisabledForUpdate" : { "type" : "boolean", "description" : "Can this payment date be changed.", "readOnly" : true }, "isDisabledForAmountChange" : { "type" : "boolean", "description" : "Can this payment amount be changed.", "readOnly" : true }, "isDueDateUpdatable" : { "type" : "boolean", "description" : "Can this payment due date be changed.", "readOnly" : true }, "isSelectable" : { "type" : "boolean", "description" : "Is this payment selectable.", "readOnly" : true }, "isManuallyBookable" : { "type" : "boolean", "description" : "Is this payment manually bookable.", "readOnly" : true }, "acceptors" : { "type" : "array", "description" : "Who approved this payment.", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Employee" } }, "numberOfApprovedInBank" : { "type" : "integer", "description" : "Number of how many times this transaction has been approved in nettbank", "format" : "int32", "readOnly" : true }, "numberOfApprovers" : { "type" : "integer", "description" : "Number of approvers required for this transaction. Ztl only!", "format" : "int32", "readOnly" : true }, "paymentCategory" : { "type" : "string", "description" : "The payment category.", "readOnly" : true, "enum" : [ "TRANSFER_BETWEEN_ACCOUNTS", "REIMBURSEMENT", "SUPPLIER_INVOICE", "WITHHOLDING_TAX", "TAX_DEDUCTION", "VAT", "SALARY", "ENI", "REGISTERED" ] }, "displayStatus" : { "type" : "string", "description" : "The payment filter status.", "readOnly" : true }, "isApproveDisabled" : { "type" : "boolean", "description" : "Can this payment be approved.", "readOnly" : true }, "isDeleteDisabled" : { "type" : "boolean", "description" : "Can this payment be deleted", "readOnly" : true }, "isCancelDisabled" : { "type" : "boolean", "description" : "Can this payment be cancelled.", "readOnly" : true }, "urlForVoucher" : { "type" : "string", "description" : "The url to access the connected invoice/wage period transaction/vat returns/wage transaction.", "readOnly" : true }, "isSalaryDateInvalid" : { "type" : "boolean", "description" : "Is the due date invalid, if this is a salary payment.", "readOnly" : true }, "expired" : { "type" : "boolean", "description" : "Is this transaction expired.", "readOnly" : true }, "receiverLink" : { "type" : "string", "description" : "The payment receiver link or name.", "readOnly" : true }, "mergingBanksMessage" : { "type" : "string", "description" : "Message regarding merging of banks", "readOnly" : true }, "bank" : { "$ref" : "#/components/schemas/Bank" } }, "readOnly" : true, "discriminator" : { "propertyName" : "paymentSource" } }, "ResponseWrapperApproveResponse" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ApproveResponse" } } }, "ZtlTransaction" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "paymentSource" : { "type" : "string", "enum" : [ "AutoPayTransaction", "ZtlTransaction" ] }, "paymentDate" : { "type" : "string" }, "bookingDate" : { "type" : "string", "readOnly" : true }, "valueDate" : { "type" : "string", "readOnly" : true }, "amountCurrency" : { "type" : "number", "description" : "In the specified currency." }, "currency" : { "$ref" : "#/components/schemas/Currency" }, "creditorName" : { "type" : "string", "readOnly" : true }, "creditorIbanOrBban" : { "type" : "string", "readOnly" : true }, "creditorBankName" : { "type" : "string", "readOnly" : true }, "creditorBankAddress" : { "type" : "string", "readOnly" : true }, "creditorBankPostalCode" : { "type" : "string", "readOnly" : true }, "creditorBankPostalCity" : { "type" : "string", "readOnly" : true }, "statusId" : { "type" : "string", "description" : "The payment status Id. Usually all the payments in one batch have the same status ID, at least to the point of being received by bank.NEW: Payment is new.
PENDING_SIGNING: Payment is sent to AutoPay but not signed yet, requires re-approving.
CANCELLED: Payment was cancelled by ERP.
ERROR: Payment that failed.
RECEIVED_BY_BANK: Payment was received by the bank.
ACCEPTED_BY_BANK: Payment was accepted by bank.
CANCELLED_IN_BANK: Payment was cancelled in bank.
REJECTED_BY_BANK: Payment was rejected by bank.
PAID: Payment is paid.
OTHER: In case status in unknown. Will never be a final status.
", "enum" : [ "NEW", "PENDING_SIGNING", "CANCELLED", "ERROR", "RECEIVED_BY_BANK", "ACCEPTED_BY_BANK", "PENDING_IN_BANK", "PENDING_SIGNING_IN_BANK", "CANCELLED_IN_BANK", "REJECTED_BY_BANK", "PAID", "OTHER" ] }, "isFinalStatus" : { "type" : "boolean", "readOnly" : true }, "isForeignPayment" : { "type" : "boolean", "readOnly" : true }, "isSalary" : { "type" : "boolean", "readOnly" : true }, "description" : { "type" : "string", "readOnly" : true }, "kid" : { "type" : "string", "description" : "KID - Kundeidentifikasjonsnummer.", "readOnly" : true }, "receiverReference" : { "type" : "string", "readOnly" : true }, "sourceVoucher" : { "$ref" : "#/components/schemas/Voucher" }, "postings" : { "$ref" : "#/components/schemas/Posting" }, "account" : { "$ref" : "#/components/schemas/Account" }, "amountInAccountCurrency" : { "type" : "number", "description" : "Amount specified in the currency of the bank agreements account.", "readOnly" : true }, "isDisabledForUpdate" : { "type" : "boolean", "description" : "Can this payment date be changed.", "readOnly" : true }, "isDisabledForAmountChange" : { "type" : "boolean", "description" : "Can this payment amount be changed.", "readOnly" : true }, "isDueDateUpdatable" : { "type" : "boolean", "description" : "Can this payment due date be changed.", "readOnly" : true }, "isSelectable" : { "type" : "boolean", "description" : "Is this payment selectable.", "readOnly" : true }, "isManuallyBookable" : { "type" : "boolean", "description" : "Is this payment manually bookable.", "readOnly" : true }, "acceptors" : { "type" : "array", "description" : "Who approved this payment.", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Employee" } }, "numberOfApprovedInBank" : { "type" : "integer", "description" : "Number of how many times this transaction has been approved in nettbank", "format" : "int32", "readOnly" : true }, "numberOfApprovers" : { "type" : "integer", "description" : "Number of approvers required for this transaction. Ztl only!", "format" : "int32", "readOnly" : true }, "paymentCategory" : { "type" : "string", "description" : "The payment category.", "readOnly" : true, "enum" : [ "TRANSFER_BETWEEN_ACCOUNTS", "REIMBURSEMENT", "SUPPLIER_INVOICE", "WITHHOLDING_TAX", "TAX_DEDUCTION", "VAT", "SALARY", "ENI", "REGISTERED" ] }, "displayStatus" : { "type" : "string", "description" : "The payment filter status.", "readOnly" : true }, "isApproveDisabled" : { "type" : "boolean", "description" : "Can this payment be approved.", "readOnly" : true }, "isDeleteDisabled" : { "type" : "boolean", "description" : "Can this payment be deleted", "readOnly" : true }, "isCancelDisabled" : { "type" : "boolean", "description" : "Can this payment be cancelled.", "readOnly" : true }, "urlForVoucher" : { "type" : "string", "description" : "The url to access the connected invoice/wage period transaction/vat returns/wage transaction.", "readOnly" : true }, "isSalaryDateInvalid" : { "type" : "boolean", "description" : "Is the due date invalid, if this is a salary payment.", "readOnly" : true }, "expired" : { "type" : "boolean", "description" : "Is this transaction expired.", "readOnly" : true }, "receiverLink" : { "type" : "string", "description" : "The payment receiver link or name.", "readOnly" : true }, "mergingBanksMessage" : { "type" : "string", "description" : "Message regarding merging of banks", "readOnly" : true }, "bank" : { "$ref" : "#/components/schemas/Bank" }, "statusReason" : { "type" : "string", "readOnly" : true }, "paymentId" : { "type" : "string", "readOnly" : true }, "endToEndId" : { "type" : "string", "readOnly" : true }, "cancellationMessage" : { "type" : "string" }, "flowId" : { "type" : "string" }, "status" : { "type" : "string", "readOnly" : true, "enum" : [ "NOT_APPROVED", "CANCELLED", "APPROVED", "SENT_TO_AUTOPAY", "RECEIVED_BY_BANK", "ACCEPTED_BY_BANK", "FAILED", "SUCCESS", "NOT_UPDATED", "ON_HOLD", "IMPORTED", "INITIALIZED", "AUTHORIZATION_REQUIRED", "SETTLEMENT_IN_PROGRESS", "REJECTED", "BOOKED", "SETTLEMENT_COMPLETED", "BATCH_FAILED", "BATCH_TIMEOUT", "CANCEL_PENDING", "PAYROLL_AWAITING_AUTHORIZATION", "PAYROLL_SETTLEMENT_IN_PROGRESS", "PAYROLL_SETTLEMENT_COMPLETED", "PAYROLL_CANCELLED", "PAYROLL_SETTLEMENT_NOT_COMPLETED_IN_TIME", "PAYROLL_PAYMENT_INITIATED", "PAYROLL_PAYMENT_ACCEPTED_TECHNICAL_VALIDATION", "PAYROLL_ACCEPTED_FOR_EXECUTION", "PAYROLL_FAILED", "PAYROLL_EXECUTION_COMPLETED", "AUTHORIZATION_REQUIRED_MULTIPLE_APPROVERS", "REJECTED_FUNDS_NOT_RECEIVED_IN_TIME", "BOOKED_READY_FOR_BOOKKEEPING", "UNSIGNED", "IN_PROGRESS", "COMPLETED", "CUSTOMER_ACTION_REQUIRED", "PARTLY_SIGNED", "SMS_CONFIRMATION_REQUIRED", "INSUFFICIENT_FUNDS" ] } }, "readOnly" : true }, "CancelResponseDTO" : { "type" : "object", "properties" : { "redirectUrl" : { "type" : "string", "description" : "The redirect URL to ZTL SCA for cancelling the payment", "readOnly" : true }, "cancellationSuccessful" : { "type" : "boolean", "description" : "Was the cancellation successful?", "readOnly" : true }, "paymentToBeCancelled" : { "$ref" : "#/components/schemas/Payment" } } }, "ResponseWrapperCancelResponseDTO" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/CancelResponseDTO" } } }, "ResponseWrapperPayment" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/Payment" } } }, "PaymentCardInfoDTO" : { "type" : "object", "properties" : { "cancelled" : { "type" : "array", "description" : "Amount of cancelled payments", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/PaymentCardInfoDetails" } }, "underProcessing" : { "type" : "array", "description" : "Amount of payments under processing", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/PaymentCardInfoDetails" } }, "forApproval" : { "type" : "array", "description" : "Amount of payments for approval", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/PaymentCardInfoDetails" } } } }, "PaymentCardInfoDetails" : { "type" : "object", "properties" : { "amount" : { "type" : "number", "readOnly" : true }, "currency" : { "$ref" : "#/components/schemas/Currency" }, "numberOfPayments" : { "type" : "integer", "format" : "int32", "readOnly" : true } }, "description" : "Amount of payments for approval", "readOnly" : true }, "ResponseWrapperPaymentCardInfoDTO" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/PaymentCardInfoDTO" } } }, "PaymentsSumDTO" : { "type" : "object", "properties" : { "unpaidTransactionsSum" : { "type" : "array", "description" : "Sum of all payments excluding paid and under process in bank, by currencies.", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/CurrencyPaymentsSum" } }, "ongoingTransactionsSum" : { "type" : "array", "description" : "Sum of the all ongoing payments by currencies.", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/CurrencyPaymentsSum" } }, "overdueTransactionsSum" : { "type" : "array", "description" : "Sum of all overdue payments by currencies.", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/CurrencyPaymentsSum" } }, "forApprovalPaymentsCount" : { "type" : "number", "description" : "Number of payments for approval.", "readOnly" : true }, "cancelledPaymentsCount" : { "type" : "number", "description" : "Number of cancelled payments.", "readOnly" : true }, "rejectedPaymentsCount" : { "type" : "number", "description" : "Number of rejected payments.", "readOnly" : true } } }, "ResponseWrapperPaymentsSumDTO" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/PaymentsSumDTO" } } }, "ResponseWrapperListStatusLog" : { "type" : "object", "properties" : { "value" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/StatusLog" } } } }, "StatusLog" : { "type" : "object", "properties" : { "actionType" : { "type" : "string", "readOnly" : true, "enum" : [ "PAYMENT_CREATED", "PAYMENT_APPROVED", "PAYMENT_APPROVAL_ABORTED", "PAYMENT_SENT_TO_BANK", "PAYMENT_RECEIVED_BY_BANK", "PAYMENT_ACCEPTED_BY_BANK", "PAYMENT_CANCELLED_IN_BANK", "PAYMENT_AMOUNT_CHANGED", "PAYMENT_DUE_DATE_CHANGED", "PAYMENT_REJECTED", "PAYMENT_NOT_UPDATED", "PAYMENT_APPROVAL_MULTIPLE_APPROVERS", "PAYMENT_ATTESTED", "PAYMENT_ATTESTATION_REJECTED", "PAYMENT_IMPORTED_AND_NOT_SENT", "PAYMENT_PAID", "PAYMENT_BOOKED", "INSUFFICIENT_FUNDS", "SMS_CONFIRMATION_REQUIRED", "PAYMENT_INITIATION_FAILED" ] }, "actionDate" : { "type" : "string", "readOnly" : true }, "actionCreator" : { "$ref" : "#/components/schemas/Employee" }, "rejectionMessage" : { "type" : "string", "description" : "Rejection message if payment was rejected by the bank.", "readOnly" : true } } }, "PaymentStatusCountsDTO" : { "type" : "object", "properties" : { "counts" : { "type" : "object", "additionalProperties" : { "type" : "integer", "description" : "Map of status name to count", "format" : "int64", "readOnly" : true }, "description" : "Map of status name to count", "readOnly" : true } } }, "ResponseWrapperPaymentStatusCountsDTO" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/PaymentStatusCountsDTO" } } }, "PaymentStatusInfo" : { "type" : "object", "properties" : { "text" : { "type" : "string", "readOnly" : true }, "color" : { "type" : "string", "readOnly" : true }, "variant" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "PaymentStatusInfoWrapperDTO" : { "type" : "object", "properties" : { "version" : { "type" : "string", "readOnly" : true }, "statuses" : { "type" : "object", "additionalProperties" : { "$ref" : "#/components/schemas/PaymentStatusInfo" }, "readOnly" : true } } }, "ResponseWrapperPaymentStatusInfoWrapperDTO" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/PaymentStatusInfoWrapperDTO" } } }, "ResponseWrapperListCurrencyPaymentsSum" : { "type" : "object", "properties" : { "value" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/CurrencyPaymentsSum" } } } }, "ListResponsePayment" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Payment" } } } }, "TlxNumber" : { "type" : "object", "properties" : { "evenNumber" : { "type" : "boolean" }, "scale" : { "type" : "number", "writeOnly" : true } } }, "ListResponseAutoPayTransaction" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/AutoPayTransaction" } } } }, "LinkMobilityReport" : { "type" : "object", "properties" : { "refId" : { "type" : "string" }, "operator" : { "type" : "string" }, "resultCode" : { "type" : "integer", "format" : "int32" } } }, "PGCallback" : { "type" : "object", "properties" : { "odpcompanyID" : { "type" : "integer", "format" : "int32" }, "odpcustomerID" : { "type" : "integer", "format" : "int32" }, "pgRequestId" : { "type" : "string" }, "tenantId" : { "type" : "string" }, "ODPCustomerID" : { "type" : "integer", "format" : "int32" }, "ODPCompanyID" : { "type" : "integer", "format" : "int32" }, "autoPayKey" : { "type" : "string" }, "autoPayKeyLastGeneratedDate" : { "type" : "string" }, "status" : { "type" : "string" }, "errorMessage" : { "type" : "string" }, "erpCustomerId" : { "type" : "integer", "format" : "int64" } } }, "ListResponseZtlTransaction" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ZtlTransaction" } } } }, "EmployeeFilters" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "filterUrl" : { "type" : "string" }, "params" : { "type" : "object", "additionalProperties" : { "type" : "string" } }, "name" : { "type" : "string" } }, "readOnly" : true }, "ResponseWrapperEmployeeFilters" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/EmployeeFilters" } } }, "ListResponseEmployeeFilters" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/EmployeeFilters" } } } }, "ResponseWrapperInventory" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/Inventory" } } }, "ListResponseInventory" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Inventory" } } } }, "Inventories" : { "type" : "object", "properties" : { "product" : { "$ref" : "#/components/schemas/Product" }, "stock" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Stock" } } }, "readOnly" : true }, "ListResponseInventories" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Inventories" } } } }, "Stock" : { "type" : "object", "properties" : { "inventory" : { "type" : "string", "readOnly" : true }, "inventoryId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "openingStock" : { "type" : "number", "readOnly" : true }, "changesInPeriod" : { "type" : "number", "readOnly" : true }, "closingStock" : { "type" : "number", "readOnly" : true } }, "readOnly" : true }, "ResponseWrapperInventoryLocation" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/InventoryLocation" } } }, "ListResponseInventoryLocation" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/InventoryLocation" } } } }, "ResponseWrapperStocktaking" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/Stocktaking" } } }, "Stocktaking" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "number" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "date" : { "type" : "string" }, "comment" : { "type" : "string" }, "typeOfStocktaking" : { "type" : "string", "description" : "[Deprecated] Define the type of stoctaking.
ALL_PRODUCTS_WITH_INVENTORIES: Create a stocktaking for all products with inventories.
INCLUDE_PRODUCTS: Create a stocktaking which includes all products.
NO_PRODUCTS: Create a stocktaking without products.
If not specified, the value 'ALL_PRODUCTS_WITH_INVENTORIES' is used.", "enum" : [ "ALL_PRODUCTS_WITH_INVENTORIES", "INCLUDE_PRODUCTS", "NO_PRODUCTS" ] }, "inventory" : { "$ref" : "#/components/schemas/Inventory" }, "isCompleted" : { "type" : "boolean" }, "warehouseValue" : { "type" : "number", "description" : "Warehouse value", "readOnly" : true }, "discrepancySum" : { "type" : "number", "description" : "Discrepancy sum", "readOnly" : true } } }, "ListResponseStocktaking" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Stocktaking" } } } }, "ProductLine" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "stocktaking" : { "$ref" : "#/components/schemas/Stocktaking" }, "product" : { "$ref" : "#/components/schemas/Product" }, "count" : { "type" : "number" }, "unitCostCurrency" : { "type" : "number", "description" : "Unit price purchase (cost) excluding VAT in the order's currency" }, "costCurrency" : { "type" : "number", "readOnly" : true }, "comment" : { "type" : "string" }, "counted" : { "type" : "boolean", "description" : "If a line is counted or not - only for internal use; will return true/false based on whether the stocktaking is completed otherwise.", "readOnly" : true }, "counter" : { "$ref" : "#/components/schemas/Employee" }, "dateCounted" : { "type" : "string", "description" : "When the line was counted - only for internal use", "readOnly" : true }, "expectedStock" : { "type" : "number", "description" : "For internal use only", "readOnly" : true }, "location" : { "$ref" : "#/components/schemas/InventoryLocation" } } }, "ResponseWrapperProductLine" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ProductLine" } } }, "ListResponseProductLine" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ProductLine" } } } }, "InventoryCorrection" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "number" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "date" : { "type" : "string" }, "comment" : { "type" : "string" }, "fromWarehouse" : { "$ref" : "#/components/schemas/Inventory" }, "warehouse" : { "$ref" : "#/components/schemas/Inventory" }, "stockChanges" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/StockChange" } } }, "readOnly" : true }, "ListResponseInventoryCorrection" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/InventoryCorrection" } } } }, "StockChange" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "stockChangeWarehouseLocationRelation" : { "$ref" : "#/components/schemas/StockChangeWarehouseLocationRelation" } } }, "StockChangeWarehouseLocationRelation" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "fromWarehouse" : { "$ref" : "#/components/schemas/Inventory" }, "toWarehouse" : { "$ref" : "#/components/schemas/Inventory" } } }, "AccrualOfIncomeAdvancedRequest" : { "type" : "object", "properties" : { "sourceType" : { "type" : "string", "enum" : [ "ORDER_LINE", "TRAVEL_EXPENSE", "FEE", "MARKUP_FEE" ] }, "sourceId" : { "type" : "integer", "format" : "int64" }, "incomeAccountId" : { "type" : "integer", "format" : "int64" }, "accrualAccountId" : { "type" : "integer", "format" : "int64" }, "month" : { "maximum" : 11, "minimum" : 0, "type" : "integer", "format" : "int32" }, "year" : { "maximum" : 2075, "minimum" : 2020, "type" : "integer", "format" : "int32" }, "numberOfPeriods" : { "maximum" : 240, "minimum" : 1, "type" : "integer", "format" : "int32" } } }, "AccrualOfIncomeSimpleRequest" : { "type" : "object", "properties" : { "sources" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/AccrualSourceItemRequest" } }, "incomeAccountId" : { "type" : "integer", "format" : "int64" }, "accrualAccountId" : { "type" : "integer", "format" : "int64" }, "month" : { "maximum" : 11, "minimum" : 0, "type" : "integer", "format" : "int32" }, "year" : { "maximum" : 2075, "minimum" : 2020, "type" : "integer", "format" : "int32" }, "numberOfPeriods" : { "maximum" : 240, "minimum" : 1, "type" : "integer", "format" : "int32" } } }, "AccrualSourceItemRequest" : { "type" : "object", "properties" : { "sourceType" : { "type" : "string", "enum" : [ "ORDER_LINE", "TRAVEL_EXPENSE", "FEE", "MARKUP_FEE" ] }, "sourceId" : { "type" : "integer", "format" : "int64" } } }, "BatchInvoicePayment" : { "type" : "object", "properties" : { "voucherNumber" : { "type" : "string", "readOnly" : true }, "voucherUrl" : { "type" : "string", "readOnly" : true } } }, "ResponseWrapperBatchInvoicePayment" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/BatchInvoicePayment" } } }, "InvoicePayment" : { "type" : "object", "properties" : { "invoiceId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "paymentDate" : { "type" : "string", "readOnly" : true }, "paymentTypeId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "paidAmount" : { "type" : "number", "readOnly" : true }, "paidAmountCurrency" : { "type" : "number", "readOnly" : true } } }, "ResponseWrapperInvoice" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/Invoice" } } }, "ListResponseInvoice" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Invoice" } } } }, "ResponseWrapperListLong" : { "type" : "object", "properties" : { "value" : { "type" : "array", "items" : { "type" : "integer", "format" : "int64" } } } }, "ResponseWrapperInvoiceRemark" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/InvoiceRemark" } } }, "MaventaEventData" : { "type" : "object", "properties" : { "invoice_id" : { "type" : "string" }, "invoice_number" : { "type" : "string" }, "destination" : { "type" : "string" }, "recipient_name" : { "type" : "string" }, "recipient_bid" : { "type" : "string" }, "network" : { "type" : "string" }, "id" : { "type" : "string" }, "profiles" : { "type" : "array", "items" : { "type" : "string" } }, "error_message" : { "type" : "string" }, "recipient_eia" : { "type" : "string" } } }, "MaventaStatus" : { "type" : "object", "properties" : { "event" : { "type" : "string" }, "company_id" : { "type" : "string" }, "event_timestamp" : { "type" : "string" }, "event_data" : { "$ref" : "#/components/schemas/MaventaEventData" } } }, "PaymentType" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "description" : { "type" : "string" }, "displayName" : { "type" : "string" }, "debitAccount" : { "$ref" : "#/components/schemas/Account" }, "creditAccount" : { "$ref" : "#/components/schemas/Account" }, "vatType" : { "$ref" : "#/components/schemas/VatType" }, "sequence" : { "minimum" : 0, "type" : "integer", "description" : "Defines the priority of order, when displayed in a list with order payment types", "format" : "int32" }, "customer" : { "$ref" : "#/components/schemas/Customer" }, "supplier" : { "$ref" : "#/components/schemas/Supplier" }, "currencyId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "currencyCode" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "ResponseWrapperPaymentType" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/PaymentType" } } }, "ListResponsePaymentType" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/PaymentType" } } } }, "ResponseWrapperProjectInvoiceDetails" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ProjectInvoiceDetails" } } }, "ListResponseProjectInvoiceDetails" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ProjectInvoiceDetails" } } } }, "InvoiceSendType" : { "type" : "object", "properties" : { "customerId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "phoneNumber" : { "type" : "string", "readOnly" : true }, "canReceiveEHF" : { "type" : "boolean", "readOnly" : true }, "canReceiveEFaktura" : { "type" : "boolean", "readOnly" : true }, "elmaLookupAlive" : { "type" : "boolean", "readOnly" : true } }, "readOnly" : true }, "ResponseWrapperInvoiceSendType" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/InvoiceSendType" } } }, "ListResponseInvoiceSendType" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/InvoiceSendType" } } } }, "InvoiceSettings" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "orderOfferEmailSignature" : { "type" : "string" }, "hasFirstInvoiceNumber" : { "type" : "boolean" }, "nextInvoiceNumber" : { "type" : "integer", "format" : "int32" }, "bankAccountReady" : { "type" : "boolean" }, "defaultSendTypeB2B" : { "type" : "string", "enum" : [ "EMAIL", "EHF", "EFAKTURA", "AVTALEGIRO", "VIPPS", "PAPER", "MANUAL", "DIRECT", "AUTOINVOICE_EHF_OUTBOUND", "AUTOINVOICE_EHF_INCOMING", "PEPPOL_EHF_INCOMING" ] }, "defaultSendTypeB2C" : { "type" : "string", "enum" : [ "EMAIL", "EHF", "EFAKTURA", "AVTALEGIRO", "VIPPS", "PAPER", "MANUAL", "DIRECT", "AUTOINVOICE_EHF_OUTBOUND", "AUTOINVOICE_EHF_INCOMING", "PEPPOL_EHF_INCOMING" ] }, "newOrderOfferOurContactDefaultValue" : { "type" : "string", "enum" : [ "ACCOUNT_MANAGER", "LOGIN_USER", "NONE" ] }, "offerFromCurrentUser" : { "type" : "boolean" }, "orderConfirmationCurrentUser" : { "type" : "boolean" }, "invoiceFromCurrentUser" : { "type" : "boolean" }, "invoiceFromEmail" : { "type" : "string" }, "offerFromEmail" : { "type" : "string" }, "orderConfirmationEmail" : { "type" : "string" }, "defaultOrderInvoiceComment" : { "type" : "string", "readOnly" : true }, "showBackorder" : { "type" : "boolean" }, "setDeliverToAvailableStock" : { "type" : "boolean" }, "availableInventory" : { "type" : "boolean" }, "invoiceShowOrderNumber" : { "type" : "boolean" }, "sendTypes" : { "type" : "array", "items" : { "type" : "string", "enum" : [ "EMAIL", "EHF", "AVTALEGIRO", "EFAKTURA", "VIPPS", "PAPER", "MANUAL" ] } }, "isAutomaticSoftReminderEnabled" : { "type" : "boolean", "description" : "Has automatic soft reminders enabled for this company. This setting need to be enabled both here and on each customer card to take effect.", "readOnly" : true }, "automaticSoftReminderDaysAfterDueDate" : { "type" : "integer", "description" : "Number of days after due date automatic soft reminders should be sent out if enabled.", "format" : "int32", "readOnly" : true }, "isAutomaticReminderEnabled" : { "type" : "boolean", "description" : "Has automatic reminders enabled for this company. This setting need to be enabled both here and on each customer card to take effect.", "readOnly" : true }, "automaticReminderDaysAfterDueDate" : { "type" : "integer", "description" : "Number of days after due date automatic reminders should be sent ouf if enabled.", "format" : "int32", "readOnly" : true }, "isAutomaticNoticeOfDebtCollectionEnabled" : { "type" : "boolean", "description" : "Has automatic notices of debt collection enabled for this company. This setting need to be enabled both here and on each customer card to take effect.", "readOnly" : true }, "automaticNoticeOfDebtCollectionDaysAfterDueDate" : { "type" : "integer", "description" : "Number of days after due date automatic notices of debt collection should be sent out if enabled.", "format" : "int32", "readOnly" : true }, "externalInvoiceNumber" : { "type" : "integer", "description" : "Highest external invoice number for this company", "format" : "int32", "readOnly" : true }, "hasSentFirstInvoice" : { "type" : "boolean", "description" : "Has company sent first invoice", "readOnly" : true }, "invoicesDueIn" : { "maximum" : 10000, "minimum" : 0, "type" : "integer", "description" : "Sets the default value on customers for number of days/months in which invoices created from this order is due", "format" : "int32" }, "invoicesDueInType" : { "type" : "string", "description" : "Set the default time unit of invoicesDueIn. The special case RECURRING_DAY_OF_MONTH enables the due date to be fixed to a specific day of the month, in this case the fixed due date will automatically be set as standard on all invoices created from this order. Note that when RECURRING_DAY_OF_MONTH is set, the due date will be set to the last day of month if \"31\" is set in invoicesDueIn.", "enum" : [ "DAYS", "MONTHS", "RECURRING_DAY_OF_MONTH" ] } } }, "ResponseWrapperInvoiceSettings" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/InvoiceSettings" } } }, "ReminderChargeAndInterest" : { "type" : "object", "properties" : { "chargeAmount" : { "type" : "number", "description" : "chargedAmount", "readOnly" : true }, "interestAmount" : { "type" : "number", "description" : "interestAmount", "readOnly" : true }, "interestPercentage" : { "type" : "number", "description" : "interestPercentage", "readOnly" : true }, "currency" : { "type" : "string", "description" : "currency" } } }, "ResponseWrapperReminderChargeAndInterest" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ReminderChargeAndInterest" } } }, "CreditNoteDetails" : { "type" : "object", "properties" : { "invoiceId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "isCredited" : { "type" : "boolean", "readOnly" : true }, "isCreditNote" : { "type" : "boolean", "readOnly" : true }, "isSubscriptionInvoice" : { "type" : "boolean", "readOnly" : true }, "customerEmail" : { "type" : "string", "readOnly" : true }, "preferredCustomerSendType" : { "type" : "string", "readOnly" : true, "enum" : [ "EMAIL", "EHF", "EFAKTURA", "AVTALEGIRO", "VIPPS", "PAPER", "MANUAL", "DIRECT", "AUTOINVOICE_EHF_OUTBOUND", "AUTOINVOICE_EHF_INCOMING", "PEPPOL_EHF_INCOMING" ] } } }, "ResponseWrapperCreditNoteDetails" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/CreditNoteDetails" } } }, "InvoiceReminderDetails" : { "type" : "object", "properties" : { "invoiceId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "chargedMoreThanTwice" : { "type" : "boolean", "readOnly" : true }, "lastReminderDueDate" : { "type" : "string", "readOnly" : true }, "lastReminderType" : { "type" : "string", "readOnly" : true, "enum" : [ "SOFT_REMINDER", "REMINDER", "NOTICE_OF_DEBT_COLLECTION", "DEBT_COLLECTION" ] }, "lastChargedReminderDate" : { "type" : "string", "readOnly" : true }, "lastNoticeOfDebtCollectionDate" : { "type" : "string", "readOnly" : true }, "isCreditNote" : { "type" : "boolean", "readOnly" : true }, "isPaid" : { "type" : "boolean", "readOnly" : true }, "isSentToFactoring" : { "type" : "boolean", "readOnly" : true }, "email" : { "type" : "string", "readOnly" : true }, "smsNumber" : { "type" : "string", "readOnly" : true }, "address" : { "$ref" : "#/components/schemas/Address" }, "debtCollector" : { "$ref" : "#/components/schemas/DebtCollector" } }, "readOnly" : true }, "ListResponseInvoiceReminderDetails" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/InvoiceReminderDetails" } } } }, "InvoiceOverviewSumDTO" : { "type" : "object", "properties" : { "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "sumTotal" : { "type" : "number", "readOnly" : true }, "sumTotalExclVat" : { "type" : "number", "readOnly" : true }, "sumPaid" : { "type" : "number", "readOnly" : true }, "sumOutstanding" : { "type" : "number", "readOnly" : true } } }, "ResponseWrapperInvoiceOverviewSumDTO" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/InvoiceOverviewSumDTO" } } }, "InvoiceOverviewMetaDTO" : { "type" : "object", "properties" : { "hasModuleProject" : { "type" : "boolean", "readOnly" : true }, "hasModuleDepartment" : { "type" : "boolean", "readOnly" : true }, "hasModuleDepartmentAccounting" : { "type" : "boolean", "readOnly" : true }, "hasModuleSmsNotification" : { "type" : "boolean", "readOnly" : true }, "hasModuleNetsPrint" : { "type" : "boolean", "readOnly" : true }, "hasModuleFactoring" : { "type" : "boolean", "readOnly" : true }, "isVatOn" : { "type" : "boolean", "readOnly" : true }, "isReminderDebtCollectionActionAllowed" : { "type" : "boolean", "readOnly" : true }, "isCreditActionAllowed" : { "type" : "boolean", "readOnly" : true }, "companyCurrencyId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "companyCurrency" : { "$ref" : "#/components/schemas/Currency" }, "companyCountryId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "hasAnyInvoices" : { "type" : "boolean", "readOnly" : true }, "hasAnyOtherPostings" : { "type" : "boolean", "readOnly" : true }, "startBalanceDate" : { "type" : "string", "readOnly" : true } } }, "ResponseWrapperInvoiceOverviewMetaDTO" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/InvoiceOverviewMetaDTO" } } }, "DebtCollectionInfoDTO" : { "type" : "object", "properties" : { "status" : { "type" : "string", "readOnly" : true }, "comments" : { "type" : "array", "readOnly" : true, "items" : { "type" : "string", "readOnly" : true } }, "referenceNumber" : { "type" : "string", "readOnly" : true }, "url" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "DescriptionDTO" : { "type" : "object", "properties" : { "descriptions" : { "type" : "array", "readOnly" : true, "items" : { "type" : "string", "readOnly" : true } }, "isRead" : { "type" : "boolean", "readOnly" : true }, "hasError" : { "type" : "boolean", "readOnly" : true } }, "readOnly" : true }, "HistoryEntryDTO" : { "type" : "object", "properties" : { "sendDate" : { "type" : "string", "readOnly" : true }, "dueDate" : { "type" : "string", "readOnly" : true }, "descriptions" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/DescriptionDTO" } }, "sendMethods" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/SendMethodDTO" } }, "amount" : { "type" : "number", "readOnly" : true }, "amountCurrency" : { "type" : "number", "readOnly" : true }, "debtCollectionInfo" : { "$ref" : "#/components/schemas/DebtCollectionInfoDTO" } }, "readOnly" : true }, "InfoDTO" : { "type" : "object", "properties" : { "internalComment" : { "type" : "string", "readOnly" : true }, "postponedReminderDate" : { "type" : "string", "readOnly" : true }, "relatedInvoices" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/RelatedInvoicesDTO" } } }, "readOnly" : true }, "InvoiceDetails" : { "type" : "object", "properties" : { "invoiceId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "history" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/HistoryEntryDTO" } }, "info" : { "$ref" : "#/components/schemas/InfoDTO" }, "autoReminderStatus" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "InvoiceStatusDTO" : { "type" : "object", "properties" : { "displayName" : { "type" : "string", "readOnly" : true }, "status" : { "type" : "string", "readOnly" : true }, "isCritical" : { "type" : "boolean", "readOnly" : true } }, "readOnly" : true }, "InvoiceSummary" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "documentId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "invoiceNumber" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "invoiceDetailsUrl" : { "type" : "string", "readOnly" : true }, "customerId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "customerNumber" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "customer" : { "type" : "string", "readOnly" : true }, "customerDetailsUrl" : { "type" : "string", "readOnly" : true }, "invoiceDate" : { "type" : "string", "readOnly" : true }, "invoiceDueDate" : { "type" : "string", "readOnly" : true }, "dueDate" : { "type" : "string", "readOnly" : true }, "currency" : { "type" : "string", "readOnly" : true }, "amountExVat" : { "type" : "number", "readOnly" : true }, "amountInclVat" : { "type" : "number", "readOnly" : true }, "paidAmount" : { "type" : "number", "readOnly" : true }, "invoiceStatus" : { "$ref" : "#/components/schemas/InvoiceStatusDTO" }, "projectDetailsUrl" : { "type" : "string", "readOnly" : true }, "projectName" : { "type" : "string", "readOnly" : true }, "projectNumber" : { "type" : "string", "readOnly" : true }, "amountOutstanding" : { "type" : "number", "readOnly" : true }, "currencyId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "orderId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "isProject" : { "type" : "boolean", "readOnly" : true }, "invoiceDetails" : { "$ref" : "#/components/schemas/InvoiceDetails" }, "factoringCustomerId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "factoringCustomer" : { "type" : "string", "readOnly" : true }, "factoringCustomerAccountNumber" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "reference" : { "type" : "string", "readOnly" : true }, "brregStatus" : { "type" : "number", "readOnly" : true }, "customerOrganizationNumber" : { "type" : "string", "readOnly" : true }, "projectManagerName" : { "type" : "string", "readOnly" : true }, "projectManagerNumber" : { "type" : "string", "readOnly" : true }, "departmentName" : { "type" : "string", "readOnly" : true }, "departmentNumber" : { "type" : "string", "readOnly" : true }, "comment" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "RelatedInvoicesDTO" : { "type" : "object", "properties" : { "invoiceId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "invoiceNumber" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "isCreditNote" : { "type" : "boolean", "readOnly" : true } }, "readOnly" : true }, "SendMethodDTO" : { "type" : "object", "properties" : { "method" : { "type" : "string", "readOnly" : true }, "receiverInformation" : { "type" : "array", "readOnly" : true, "items" : { "type" : "string", "readOnly" : true } } }, "readOnly" : true }, "RegisterOtherPostingPaymentDTO" : { "type" : "object", "properties" : { "postingId" : { "type" : "integer", "format" : "int64" }, "paymentDate" : { "type" : "string" }, "paymentTypeId" : { "type" : "integer", "format" : "int64" }, "paidAmount" : { "type" : "number" }, "paidAmountCurrency" : { "type" : "number" } } }, "ListResponseOtherPosting" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/OtherPosting" } } } }, "OtherPosting" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "voucherId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "voucherNumber" : { "type" : "string", "readOnly" : true }, "voucherUrl" : { "type" : "string", "readOnly" : true }, "voucherPdfUrl" : { "type" : "string", "readOnly" : true }, "customerId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "customerName" : { "type" : "string", "readOnly" : true }, "customerNumber" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "customerUrl" : { "type" : "string", "readOnly" : true }, "projectName" : { "type" : "string", "readOnly" : true }, "projectNumber" : { "type" : "string", "readOnly" : true }, "projectUrl" : { "type" : "string", "readOnly" : true }, "description" : { "type" : "string", "readOnly" : true }, "senderName" : { "type" : "string", "readOnly" : true }, "senderMessage" : { "type" : "string", "readOnly" : true }, "status" : { "type" : "string", "readOnly" : true, "enum" : [ "OPEN", "CLOSED" ] }, "type" : { "type" : "string", "readOnly" : true, "enum" : [ "UNKNOWN_PAYMENT", "ADVANCED_VOUCHER", "OPENING_BALANCE", "INCOME" ] }, "date" : { "type" : "string", "readOnly" : true }, "amount" : { "type" : "number", "readOnly" : true }, "amountCurrency" : { "type" : "number", "readOnly" : true }, "closeGroupId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "reference" : { "type" : "string", "readOnly" : true }, "currencyId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "currencyCode" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "OtherPostingsSumDTO" : { "type" : "object", "properties" : { "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "sumTotal" : { "type" : "number", "readOnly" : true } } }, "ResponseWrapperOtherPostingsSumDTO" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/OtherPostingsSumDTO" } } }, "ResponseWrapperMapFeatureBoolean" : { "type" : "object", "properties" : { "value" : { "type" : "object", "additionalProperties" : { "type" : "boolean" } } } }, "LandbruketsDataflyt" : { "type" : "object", "properties" : { "submittedToLandbruketsDataflytBy" : { "type" : "string" }, "submittedToLandbruketsDataflytDate" : { "type" : "string" }, "submittedToNibioBy" : { "type" : "string" }, "submittedToNibioDate" : { "type" : "string" } } }, "ResponseWrapperLandbruketsDataflyt" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/LandbruketsDataflyt" } } }, "LastPosted" : { "type" : "object", "properties" : { "voucherId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "voucherNumber" : { "minimum" : 0, "type" : "integer", "format" : "int32", "readOnly" : true }, "voucherDate" : { "type" : "string", "readOnly" : true }, "timestamp" : { "type" : "string", "readOnly" : true }, "supplier" : { "type" : "string", "readOnly" : true }, "amount" : { "type" : "number", "readOnly" : true }, "paymentStatus" : { "type" : "string", "readOnly" : true }, "postedByEmployee" : { "type" : "string", "readOnly" : true }, "actualEmployeeId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "automaticallyPosted" : { "type" : "boolean", "readOnly" : true }, "commentCount" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "lastComment" : { "type" : "string", "readOnly" : true }, "companyId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "hasAttachment" : { "type" : "boolean", "readOnly" : true }, "voucherDocuments" : { "type" : "array", "description" : "All documents linked to this voucher for PDF display", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/VoucherDocument" } }, "description" : { "type" : "string", "readOnly" : true }, "url" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "ListResponseLastPosted" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/LastPosted" } } } }, "ListResponseSupplierBalance" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/SupplierBalance" } } } }, "SupplierBalance" : { "type" : "object", "properties" : { "supplier" : { "$ref" : "#/components/schemas/Supplier" }, "balanceIn" : { "type" : "number", "readOnly" : true }, "balanceChange" : { "type" : "number", "readOnly" : true }, "balanceOut" : { "type" : "number", "readOnly" : true }, "balanceInCurrencies" : { "type" : "array", "description" : "Currencies that have been used prior to this period, for the given filter", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Currency" } }, "sumAmountNegative" : { "type" : "number", "readOnly" : true } }, "readOnly" : true }, "LedgerAccount" : { "type" : "object", "properties" : { "account" : { "$ref" : "#/components/schemas/Account" }, "sumAmount" : { "type" : "number", "readOnly" : true }, "currency" : { "$ref" : "#/components/schemas/Currency" }, "sumAmountCurrency" : { "type" : "number", "readOnly" : true }, "openingBalance" : { "type" : "number", "readOnly" : true }, "openingBalanceCurrency" : { "type" : "number", "readOnly" : true }, "closingBalance" : { "type" : "number", "readOnly" : true }, "closingBalanceCurrency" : { "type" : "number", "readOnly" : true }, "balanceOutInAccountCurrency" : { "type" : "number", "readOnly" : true }, "postings" : { "type" : "array", "description" : "Link to postings on this account.", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Posting" } } }, "readOnly" : true }, "ListResponseLedgerAccount" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/LedgerAccount" } } } }, "AccountSuggestion" : { "type" : "object", "properties" : { "description" : { "type" : "string", "readOnly" : true }, "tags" : { "type" : "array", "readOnly" : true, "items" : { "type" : "string", "readOnly" : true } } }, "readOnly" : true }, "AccountWithHelpInfo" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "displayName" : { "type" : "string", "readOnly" : true }, "numberPretty" : { "type" : "string", "readOnly" : true }, "description" : { "type" : "string", "readOnly" : true }, "account" : { "$ref" : "#/components/schemas/Account" }, "accountHelp" : { "$ref" : "#/components/schemas/AccountSuggestion" } }, "readOnly" : true }, "ListResponseAccountWithHelpInfo" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/AccountWithHelpInfo" } } } }, "ListResponseAccount" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Account" } } } }, "AccountHelpJson" : { "type" : "object", "properties" : { "revision" : { "minimum" : 1, "type" : "integer", "description" : "Revision number of the account help data", "format" : "int32" }, "accounts" : { "type" : "array", "description" : "List of account suggestions", "items" : { "$ref" : "#/components/schemas/AccountSuggestionModel" } } } }, "AccountSuggestionModel" : { "type" : "object", "properties" : { "description" : { "type" : "string", "description" : "Account description in markdown format" }, "accountNumber" : { "minimum" : 1000, "type" : "integer", "description" : "Account number", "format" : "int32" }, "accountName" : { "type" : "string", "description" : "Account name" }, "tags" : { "type" : "array", "description" : "List of tags for searching", "items" : { "type" : "string", "description" : "List of tags for searching" } } }, "description" : "List of account suggestions" }, "ResponseWrapperAccountHelpJson" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/AccountHelpJson" } } }, "AccountingDimensionFixedUpdateDTO" : { "type" : "object", "properties" : { "moduleDepartmentAccounting" : { "type" : "boolean", "description" : "Toggle department accounting module on/off" }, "moduleFixedAssetRegister" : { "type" : "boolean", "description" : "Toggle fixed asset register on/off" }, "moduleProjectAccounting" : { "type" : "boolean", "description" : "Toggle project accounting module on/off" }, "moduleProductAccounting" : { "type" : "boolean", "description" : "Toggle product accounting module on/off" } } }, "AccountingDimensionName" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "dimensionName" : { "type" : "string", "description" : "The name of the dimension." }, "description" : { "type" : "string", "description" : "The description of the dimension." }, "dimensionIndex" : { "type" : "integer", "description" : "The index of the dimension. Possible vales are 1, 2 and 3", "format" : "int32", "readOnly" : true }, "active" : { "type" : "boolean", "description" : "Indicates if the dimension is active." } }, "readOnly" : true }, "ResponseWrapperAccountingDimensionName" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/AccountingDimensionName" } } }, "ListResponseAccountingDimensionName" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/AccountingDimensionName" } } } }, "AccountingDimensionContext" : { "type" : "object", "properties" : { "contextId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "companyName" : { "type" : "string", "readOnly" : true }, "hasModules" : { "type" : "boolean", "description" : "Returns true if the free accounting dimensions feature is enabled.", "readOnly" : true }, "canActivateAssetRegistry" : { "type" : "boolean", "description" : "Returns true if the asset registry can be activated (requires Smart or above).", "readOnly" : true }, "canActivateProjectAccounting" : { "type" : "boolean", "description" : "Returns true if project accounting can be activated (requires Smart with project, or Komplett and above.", "readOnly" : true } } }, "ResponseWrapperAccountingDimensionContext" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/AccountingDimensionContext" } } }, "ResponseWrapperAccountingDimensionValue" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/AccountingDimensionValue" } } }, "ListResponseAccountingDimensionValue" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/AccountingDimensionValue" } } } }, "ListResponseAccountingPeriod" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/AccountingPeriod" } } } }, "ResponseWrapperAccountingPeriod" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/AccountingPeriod" } } }, "AnnualAccount" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "year" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "start" : { "type" : "string", "readOnly" : true }, "end" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "ResponseWrapperAnnualAccount" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/AnnualAccount" } } }, "ListResponseAnnualAccount" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/AnnualAccount" } } } }, "ResponseWrapperUnallocatedResult" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/UnallocatedResult" } } }, "UnallocatedResult" : { "type" : "object", "properties" : { "incomingUnallocatedProfitPreviousYear" : { "type" : "number", "readOnly" : true }, "outgoingUnallocatedProfitPreviousYear" : { "type" : "number", "readOnly" : true } } }, "AccountBalanceSheet" : { "type" : "object", "properties" : { "rows" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/AccountBalanceSheetRow" } }, "sumBalanceIn" : { "type" : "number", "readOnly" : true }, "sumBalanceChange" : { "type" : "number", "readOnly" : true }, "sumBalanceOut" : { "type" : "number", "readOnly" : true } } }, "AccountBalanceSheetRow" : { "type" : "object", "properties" : { "accountId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "accountNumber" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "accountName" : { "type" : "string", "readOnly" : true }, "balanceIn" : { "type" : "number", "readOnly" : true }, "balanceChange" : { "type" : "number", "readOnly" : true }, "balanceOut" : { "type" : "number", "readOnly" : true }, "generalLedgerUrl" : { "type" : "string", "description" : "Link to general ledger page for this account", "readOnly" : true }, "accountUrl" : { "type" : "string", "description" : "Link to chart of accounts page for this account", "readOnly" : true }, "hasPostingsInPeriod" : { "type" : "boolean", "description" : "True if there are postings in the period for this account, even if they sum to zero", "readOnly" : true } }, "readOnly" : true }, "ResponseWrapperAccountBalanceSheet" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/AccountBalanceSheet" } } }, "ResponseWrapperCloseGroup" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/CloseGroup" } } }, "ListResponseCloseGroup" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/CloseGroup" } } } }, "ListResponsePostingValidationMessage" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/PostingValidationMessage" } } } }, "PostingValidationMessage" : { "type" : "object", "properties" : { "postingId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "message" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "GeneralLedgerCloseGroup" : { "type" : "object", "properties" : { "closeGroupPostings" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/GeneralLedgerPosting" } }, "closedByIdentifier" : { "type" : "string", "readOnly" : true }, "closedTime" : { "type" : "string", "readOnly" : true }, "closedByActualEmployeeName" : { "type" : "string", "readOnly" : true }, "closedByExternalAccountant" : { "type" : "boolean", "readOnly" : true } } }, "GeneralLedgerPosting" : { "type" : "object", "properties" : { "postingIds" : { "type" : "array", "readOnly" : true, "items" : { "type" : "integer", "format" : "int64", "readOnly" : true } }, "postingsKey" : { "type" : "string", "readOnly" : true }, "voucherId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "voucherNumber" : { "type" : "string", "readOnly" : true }, "voucherUrl" : { "type" : "string", "readOnly" : true }, "postingDate" : { "type" : "string", "readOnly" : true }, "description" : { "type" : "string", "readOnly" : true }, "descriptionCount" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "vatTypeId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "vatNumber" : { "type" : "string", "readOnly" : true }, "vatTypeNameShort" : { "type" : "string", "readOnly" : true }, "vatPercentage" : { "type" : "number", "readOnly" : true }, "amount" : { "type" : "number", "readOnly" : true }, "currency" : { "type" : "string", "readOnly" : true }, "amountCurrency" : { "type" : "number", "readOnly" : true }, "amountVat" : { "type" : "number", "readOnly" : true }, "closeGroupIds" : { "type" : "array", "readOnly" : true, "items" : { "type" : "integer", "format" : "int64", "readOnly" : true } }, "departmentIds" : { "type" : "array", "readOnly" : true, "items" : { "type" : "integer", "format" : "int64", "readOnly" : true } }, "departmentName" : { "type" : "string", "readOnly" : true }, "departmentNumber" : { "type" : "string", "readOnly" : true }, "departmentNameForExport" : { "type" : "string" }, "departmentUrl" : { "type" : "string", "readOnly" : true }, "projectIds" : { "type" : "array", "readOnly" : true, "items" : { "type" : "integer", "format" : "int64", "readOnly" : true } }, "projectName" : { "type" : "string", "readOnly" : true }, "projectNumber" : { "type" : "string", "readOnly" : true }, "projectNameForExport" : { "type" : "string" }, "projectUrl" : { "type" : "string", "readOnly" : true }, "supplierIds" : { "type" : "array", "readOnly" : true, "items" : { "type" : "integer", "format" : "int64", "readOnly" : true } }, "supplierNumber" : { "type" : "string", "readOnly" : true }, "supplierName" : { "type" : "string", "readOnly" : true }, "supplierUrl" : { "type" : "string", "readOnly" : true }, "customerIds" : { "type" : "array", "readOnly" : true, "items" : { "type" : "integer", "format" : "int64", "readOnly" : true } }, "customerNumber" : { "type" : "string", "readOnly" : true }, "customerName" : { "type" : "string", "readOnly" : true }, "customerUrl" : { "type" : "string", "readOnly" : true }, "employeeIds" : { "type" : "array", "readOnly" : true, "items" : { "type" : "integer", "format" : "int64", "readOnly" : true } }, "employeeNumber" : { "type" : "string", "readOnly" : true }, "employeeName" : { "type" : "string", "readOnly" : true }, "employeeUrl" : { "type" : "string", "readOnly" : true }, "productIds" : { "type" : "array", "readOnly" : true, "items" : { "type" : "integer", "format" : "int64", "readOnly" : true } }, "productNumber" : { "type" : "string", "readOnly" : true }, "productName" : { "type" : "string", "readOnly" : true }, "productUrl" : { "type" : "string", "readOnly" : true }, "productNameForExport" : { "type" : "string" }, "isClosed" : { "type" : "boolean", "readOnly" : true }, "termOfPaymentDate" : { "type" : "string", "readOnly" : true }, "invoiceNumber" : { "type" : "string", "readOnly" : true }, "hasAttachment" : { "type" : "boolean", "readOnly" : true }, "assetIds" : { "type" : "array", "readOnly" : true, "items" : { "type" : "integer", "format" : "int64", "readOnly" : true } }, "assetName" : { "type" : "string", "readOnly" : true }, "assetUrl" : { "type" : "string", "readOnly" : true }, "taxTransactionTypes" : { "type" : "array", "readOnly" : true, "items" : { "type" : "string", "readOnly" : true } }, "taxTransactionTypeName" : { "type" : "string", "readOnly" : true }, "quantityAmount1" : { "type" : "number", "readOnly" : true }, "productUnitId1" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "productUnit1Name" : { "type" : "string", "readOnly" : true }, "quantityAmount2" : { "type" : "number", "readOnly" : true }, "productUnitId2" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "productUnit2Name" : { "type" : "string", "readOnly" : true }, "lastComment" : { "type" : "string", "readOnly" : true }, "freeDimension1Ids" : { "type" : "array", "readOnly" : true, "items" : { "type" : "integer", "format" : "int64", "readOnly" : true } }, "freeDimension1Number" : { "type" : "string", "readOnly" : true }, "freeDimension1Name" : { "type" : "string", "readOnly" : true }, "freeDimension1NameForExport" : { "type" : "string" }, "freeDimension1Url" : { "type" : "string", "readOnly" : true }, "freeDimension2Ids" : { "type" : "array", "readOnly" : true, "items" : { "type" : "integer", "format" : "int64", "readOnly" : true } }, "freeDimension2Number" : { "type" : "string", "readOnly" : true }, "freeDimension2Name" : { "type" : "string", "readOnly" : true }, "freeDimension2NameForExport" : { "type" : "string" }, "freeDimension2Url" : { "type" : "string", "readOnly" : true }, "freeDimension3Ids" : { "type" : "array", "readOnly" : true, "items" : { "type" : "integer", "format" : "int64", "readOnly" : true } }, "freeDimension3Number" : { "type" : "string", "readOnly" : true }, "freeDimension3Name" : { "type" : "string", "readOnly" : true }, "freeDimension3NameForExport" : { "type" : "string" }, "freeDimension3Url" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "ResponseWrapperGeneralLedgerCloseGroup" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/GeneralLedgerCloseGroup" } } }, "GeneralLedgerContext" : { "type" : "object", "properties" : { "contextId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "companyName" : { "type" : "string", "readOnly" : true }, "hasDepartments" : { "type" : "boolean", "readOnly" : true }, "hasProjects" : { "type" : "boolean", "readOnly" : true }, "hasProducts" : { "type" : "boolean", "readOnly" : true }, "hasEmployees" : { "type" : "boolean", "readOnly" : true }, "hasEmployeeFilter" : { "type" : "boolean", "readOnly" : true }, "hasMultipleLedgers" : { "type" : "boolean", "readOnly" : true }, "hasFixedAssetRegister" : { "type" : "boolean", "readOnly" : true }, "hasYearEndReport" : { "type" : "boolean", "readOnly" : true }, "hasMultipleVatReportTypes" : { "type" : "boolean", "readOnly" : true }, "hasOnlyAccessToOwnDepartment" : { "type" : "boolean", "readOnly" : true }, "hasQuantityHandling" : { "type" : "boolean", "readOnly" : true }, "loginEmployeeDepartmentId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "loginEmployeeId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "developerMode" : { "type" : "boolean", "readOnly" : true }, "canUserMarkAccountingPeriodAsChecked" : { "type" : "boolean", "readOnly" : true }, "hasDepartmentIndustry" : { "type" : "boolean", "readOnly" : true }, "shallNumberBePrettyPrinted" : { "type" : "boolean", "readOnly" : true }, "showTourMe" : { "type" : "boolean", "readOnly" : true }, "hasFreeDimension1" : { "type" : "boolean", "readOnly" : true }, "hasFreeDimension2" : { "type" : "boolean", "readOnly" : true }, "hasFreeDimension3" : { "type" : "boolean", "readOnly" : true }, "freeDimension1Name" : { "type" : "string", "readOnly" : true }, "freeDimension2Name" : { "type" : "string", "readOnly" : true }, "freeDimension3Name" : { "type" : "string", "readOnly" : true }, "isTripletexTest" : { "type" : "boolean", "readOnly" : true }, "hasAccessToOldLedger" : { "type" : "boolean", "readOnly" : true }, "hasAccessToNewBalanceSheet" : { "type" : "boolean", "readOnly" : true } } }, "ResponseWrapperGeneralLedgerContext" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/GeneralLedgerContext" } } }, "ResponseWrapperMapLongBoolean" : { "type" : "object", "properties" : { "value" : { "type" : "object", "additionalProperties" : { "type" : "boolean" } } } }, "GeneralLedgerAccountSum" : { "type" : "object", "properties" : { "accountId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "balanceChange" : { "type" : "number", "readOnly" : true }, "balanceIn" : { "type" : "number", "readOnly" : true }, "balanceOut" : { "type" : "number", "readOnly" : true }, "noOfCurrencies" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "balanceCurrency" : { "type" : "string", "readOnly" : true }, "balanceCurrencyChange" : { "type" : "number", "readOnly" : true }, "balanceCurrencyIn" : { "type" : "number", "readOnly" : true }, "balanceCurrencyOut" : { "type" : "number", "readOnly" : true }, "noOfQuantity1Units" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "quantity1ProductUnit" : { "type" : "string", "readOnly" : true }, "quantity1BalanceIn" : { "type" : "number", "readOnly" : true }, "quantity1BalanceOut" : { "type" : "number", "readOnly" : true }, "quantity1BalanceChange" : { "type" : "number", "readOnly" : true }, "noOfQuantity2Units" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "quantity2ProductUnit" : { "type" : "string", "readOnly" : true }, "quantity2BalanceIn" : { "type" : "number", "readOnly" : true }, "quantity2BalanceOut" : { "type" : "number", "readOnly" : true }, "quantity2BalanceChange" : { "type" : "number", "readOnly" : true } }, "readOnly" : true }, "ListResponseGeneralLedgerAccountSum" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/GeneralLedgerAccountSum" } } } }, "GeneralLedgerAccount" : { "type" : "object", "properties" : { "accountId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "accountNumber" : { "type" : "string", "readOnly" : true }, "accountNumberAsInt" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "accountName" : { "type" : "string", "readOnly" : true }, "isFirstPostingForAccountIncluded" : { "type" : "boolean", "readOnly" : true }, "isLastPostingForAccountIncluded" : { "type" : "boolean", "readOnly" : true }, "postings" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/GeneralLedgerPosting" } }, "hasHiddenWagePostings" : { "type" : "boolean", "readOnly" : true } }, "readOnly" : true }, "ListResponseGeneralLedgerAccount" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/GeneralLedgerAccount" } } } }, "PaymentTypeOut" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "description" : { "type" : "string" }, "isBruttoWageDeduction" : { "type" : "boolean", "description" : "true if it should be a deduction from the wage. The module PROVISIONSALARY is required to both view and change this setting" }, "creditAccount" : { "$ref" : "#/components/schemas/Account" }, "showIncomingInvoice" : { "type" : "boolean", "description" : "true if the payment type should be available in supplier invoices" }, "showWagePayment" : { "type" : "boolean", "description" : "true if the payment type should be available in wage payments. The wage module is required to both view and change this setting" }, "showVatReturns" : { "type" : "boolean", "description" : "true if the payment type should be available in vat returns" }, "showWagePeriodTransaction" : { "type" : "boolean", "description" : "true if the payment type should be available in period transactionsThe wage module is required to both view and change this setting" }, "requiresSeparateVoucher" : { "type" : "boolean", "description" : "true if a separate voucher is required" }, "sequence" : { "type" : "integer", "description" : "determines in which order the types should be listed. No 1 is listed first", "format" : "int32" }, "isInactive" : { "type" : "boolean", "description" : "true if the payment type should be hidden from available payment types" }, "displayName" : { "type" : "string", "description" : "Value of a Dropdown Type used in the payment type dropdown" }, "currencyId" : { "type" : "integer", "description" : "currency Id", "format" : "int32" }, "currencyCode" : { "type" : "string", "description" : "currency code" } }, "readOnly" : true }, "ResponseWrapperPaymentTypeOut" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/PaymentTypeOut" } } }, "ListResponsePaymentTypeOut" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/PaymentTypeOut" } } } }, "ResponseWrapperPosting" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/Posting" } } }, "HistoricalPosting" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "voucher" : { "$ref" : "#/components/schemas/Voucher" }, "date" : { "type" : "string", "description" : "The posting date." }, "description" : { "type" : "string", "description" : "The description of the posting." }, "account" : { "$ref" : "#/components/schemas/Account" }, "customer" : { "$ref" : "#/components/schemas/Customer" }, "supplier" : { "$ref" : "#/components/schemas/Supplier" }, "employee" : { "$ref" : "#/components/schemas/Employee" }, "project" : { "$ref" : "#/components/schemas/Project" }, "product" : { "$ref" : "#/components/schemas/Product" }, "department" : { "$ref" : "#/components/schemas/Department" }, "vatType" : { "$ref" : "#/components/schemas/VatType" }, "amount" : { "type" : "number", "description" : "The posting amount in company currency. Important: The amounts in this amount field must have sum = 0 on all the dates. If multiple postings with different dates, then the sum must be 0 on each of the dates." }, "amountCurrency" : { "type" : "number", "description" : "The posting amount in posting currency." }, "amountGross" : { "type" : "number", "description" : "The posting gross amount in company currency." }, "amountGrossCurrency" : { "type" : "number", "description" : "The posting gross amount in posting currency." }, "amountVat" : { "type" : "number", "description" : "The amount of vat on this posting in company currency (NOK)." }, "currency" : { "$ref" : "#/components/schemas/Currency" }, "invoiceNumber" : { "type" : "string", "description" : "Invoice number." }, "termOfPayment" : { "type" : "string", "description" : "Due date." }, "closeGroup" : { "type" : "string", "description" : "Optional. Used to create a close group for postings." }, "quantityAmount1" : { "type" : "number", "description" : "The quantity amount associated with the posting" }, "quantityType1" : { "$ref" : "#/components/schemas/ProductUnit" }, "quantityAmount2" : { "type" : "number", "description" : "The quantity amount associated with the posting" }, "quantityType2" : { "$ref" : "#/components/schemas/ProductUnit" } }, "description" : "The list of postings of the voucher. In postings, these fields must be provided: date, account, currency, amount, amountBasis, amountVat, amountCurrency, amountBasisCurrency." }, "ResponseWrapperHistoricalPosting" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/HistoricalPosting" } } }, "ResponseWrapperVatSettings" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/VatSettings" } } }, "VatSettings" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "vatRegistrationStatus" : { "type" : "string", "description" : "VAT registration status of the company", "enum" : [ "VAT_NOT_REGISTERED", "VAT_APPLICANT", "VAT_REGISTERED", "VAT_COMPENSATION" ] } } }, "ResponseWrapperVatType" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/VatType" } } }, "ListResponseVatType" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/VatType" } } } }, "OpeningBalance" : { "type" : "object", "properties" : { "voucherDate" : { "type" : "string", "description" : "The date for the opening balance" }, "balancePostings" : { "type" : "array", "description" : "Balance postings", "items" : { "$ref" : "#/components/schemas/OpeningBalanceBalancePosting" } }, "customerPostings" : { "type" : "array", "description" : "Postings in the customer sub ledger", "items" : { "$ref" : "#/components/schemas/OpeningBalanceCustomerPosting" } }, "supplierPostings" : { "type" : "array", "description" : "Postings in the supplier sub ledger", "items" : { "$ref" : "#/components/schemas/OpeningBalanceSupplierPosting" } }, "employeePostings" : { "type" : "array", "description" : "Postings in the employee sub ledger", "items" : { "$ref" : "#/components/schemas/OpeningBalanceEmployeePosting" } } } }, "OpeningBalanceBalancePosting" : { "type" : "object", "properties" : { "account" : { "$ref" : "#/components/schemas/Account" }, "project" : { "$ref" : "#/components/schemas/Project" }, "department" : { "$ref" : "#/components/schemas/Department" }, "product" : { "$ref" : "#/components/schemas/Product" }, "employee" : { "$ref" : "#/components/schemas/Employee" }, "amount" : { "type" : "number" }, "amountCurrency" : { "type" : "number", "description" : "Only relevant for accounts in a different currency than the company currency, e.g an EUR account in a Norwegian company. If provided on other accounts, it must always equal 'amount'" } }, "description" : "Balance postings" }, "OpeningBalanceCustomerPosting" : { "type" : "object", "properties" : { "customer" : { "$ref" : "#/components/schemas/Customer" }, "amount" : { "type" : "number" }, "description" : { "type" : "string" } }, "description" : "Postings in the customer sub ledger" }, "OpeningBalanceEmployeePosting" : { "type" : "object", "properties" : { "employee" : { "$ref" : "#/components/schemas/Employee" }, "amount" : { "type" : "number" }, "description" : { "type" : "string" } }, "description" : "Postings in the employee sub ledger" }, "OpeningBalanceSupplierPosting" : { "type" : "object", "properties" : { "supplier" : { "$ref" : "#/components/schemas/Supplier" }, "amount" : { "type" : "number" }, "description" : { "type" : "string" } }, "description" : "Postings in the supplier sub ledger" }, "IdOnlyDTO" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "url" : { "type" : "string" } } }, "ResponseWrapperVoucherOptions" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/VoucherOptions" } } }, "VoucherOptionDeleteMetadata" : { "type" : "object", "properties" : { "available" : { "type" : "boolean", "description" : "Is the delete operation available for this Voucher?", "readOnly" : true }, "reasons" : { "type" : "array", "description" : "If the delete operation is not available then this is a list of reasons why. Otherwise the list will be empty", "readOnly" : true, "items" : { "type" : "string", "description" : "If the delete operation is not available then this is a list of reasons why. Otherwise the list will be empty", "readOnly" : true } } }, "description" : "A data structure containing information about the delete operation.", "readOnly" : true }, "VoucherOptions" : { "type" : "object", "properties" : { "delete" : { "$ref" : "#/components/schemas/VoucherOptionDeleteMetadata" } } }, "VoucherSearchResponse" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Voucher" } }, "totalNumberOfPostings" : { "type" : "integer", "description" : "[DEPRECATED] Number of postings returned (if postings are returned)", "format" : "int32", "readOnly" : true } } }, "HistoricalVoucher" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "date" : { "type" : "string", "description" : "The voucher date." }, "externalVoucherNumber" : { "type" : "string", "description" : "External voucher number. This is the voucher number in the historical system. Maximum 70 characters." }, "number" : { "minimum" : 0, "type" : "integer", "description" : "The voucher number generated by Tripletex. System generated number that cannot be changed.", "format" : "int32", "readOnly" : true }, "year" : { "minimum" : 0, "type" : "integer", "description" : "Voucher year. System generated number that cannot be changed.", "format" : "int32", "readOnly" : true }, "description" : { "type" : "string", "description" : "The voucher description." }, "voucherType" : { "$ref" : "#/components/schemas/VoucherType" }, "postings" : { "type" : "array", "description" : "The list of postings of the voucher. In postings, these fields must be provided: date, account, currency, amount, amountBasis, amountVat, amountCurrency, amountBasisCurrency.", "items" : { "$ref" : "#/components/schemas/HistoricalPosting" } } } }, "ListResponseHistoricalVoucher" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/HistoricalVoucher" } } } }, "ResponseWrapperHistoricalVoucher" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/HistoricalVoucher" } } }, "IncomeVoucher" : { "type" : "object", "properties" : { "voucherId" : { "type" : "integer", "format" : "int64" }, "voucherNumber" : { "type" : "string" }, "invoiceNumber" : { "type" : "string" }, "invoiceDate" : { "type" : "string" }, "incomeDate" : { "type" : "string" }, "description" : { "type" : "string" }, "customerId" : { "type" : "integer", "format" : "int32" }, "sendToLedger" : { "type" : "boolean" }, "dueDate" : { "type" : "string" }, "incomePostings" : { "type" : "array", "description" : "Income postings", "items" : { "$ref" : "#/components/schemas/IncomeVoucherPosting" } }, "paymentPostings" : { "type" : "array", "description" : "Payment postings", "items" : { "$ref" : "#/components/schemas/IncomeVoucherPaymentPosting" } }, "paymentPostingIdsForDeletion" : { "type" : "array", "description" : "Ids for payment postings to be deleted", "items" : { "type" : "integer", "description" : "Ids for payment postings to be deleted", "format" : "int64" } }, "currency" : { "$ref" : "#/components/schemas/Currency" }, "voucherTempNumber" : { "minimum" : 0, "type" : "integer", "format" : "int32" }, "debitPostingId" : { "type" : "integer", "format" : "int64" }, "attachmentId" : { "type" : "integer", "description" : "Id of attachment linked to the voucher", "format" : "int32" }, "canBeDeleted" : { "type" : "boolean" }, "canBeReversed" : { "type" : "boolean" }, "isTemporary" : { "type" : "boolean" }, "reverseVoucher" : { "$ref" : "#/components/schemas/Voucher" }, "commentCount" : { "minimum" : 0, "type" : "integer", "format" : "int32" }, "lastComment" : { "type" : "string" }, "voucherTypeId" : { "type" : "integer", "format" : "int64" }, "voucherDocuments" : { "type" : "array", "description" : "Documents linked to this voucher", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/VoucherDocument" } } } }, "IncomeVoucherPaymentPosting" : { "type" : "object", "properties" : { "account" : { "$ref" : "#/components/schemas/Account" }, "customer" : { "$ref" : "#/components/schemas/Customer" }, "vatType" : { "$ref" : "#/components/schemas/VatType" }, "product" : { "$ref" : "#/components/schemas/Product" }, "project" : { "$ref" : "#/components/schemas/Project" }, "employee" : { "$ref" : "#/components/schemas/Employee" }, "department" : { "$ref" : "#/components/schemas/Department" }, "asset" : { "$ref" : "#/components/schemas/Asset" }, "incomeDescription" : { "type" : "string" }, "postingId" : { "type" : "integer", "format" : "int64" }, "currency" : { "$ref" : "#/components/schemas/Currency" }, "clientId" : { "type" : "string" }, "amount" : { "type" : "number" }, "quantity1" : { "type" : "number" }, "productUnit1" : { "$ref" : "#/components/schemas/ProductUnit" }, "quantity2" : { "type" : "number" }, "productUnit2" : { "$ref" : "#/components/schemas/ProductUnit" }, "date" : { "type" : "string" }, "amountGross" : { "type" : "number" }, "isVatClosed" : { "type" : "boolean", "description" : "Is vat code closed?", "readOnly" : true }, "isAmountVatClosed" : { "type" : "boolean", "description" : "Is amount of this posting (for VAT purposes) changeable", "readOnly" : true }, "amountGrossCurrency" : { "type" : "number" }, "paymentTypeId" : { "type" : "integer", "format" : "int64" } }, "description" : "Payment postings" }, "IncomeVoucherPosting" : { "type" : "object", "properties" : { "account" : { "$ref" : "#/components/schemas/Account" }, "customer" : { "$ref" : "#/components/schemas/Customer" }, "vatType" : { "$ref" : "#/components/schemas/VatType" }, "product" : { "$ref" : "#/components/schemas/Product" }, "project" : { "$ref" : "#/components/schemas/Project" }, "employee" : { "$ref" : "#/components/schemas/Employee" }, "department" : { "$ref" : "#/components/schemas/Department" }, "asset" : { "$ref" : "#/components/schemas/Asset" }, "incomeDescription" : { "type" : "string" }, "postingId" : { "type" : "integer", "format" : "int64" }, "currency" : { "$ref" : "#/components/schemas/Currency" }, "clientId" : { "type" : "string" }, "amount" : { "type" : "number" }, "quantity1" : { "type" : "number" }, "productUnit1" : { "$ref" : "#/components/schemas/ProductUnit" }, "quantity2" : { "type" : "number" }, "productUnit2" : { "$ref" : "#/components/schemas/ProductUnit" }, "date" : { "type" : "string" }, "amountGross" : { "type" : "number" }, "isVatClosed" : { "type" : "boolean", "description" : "Is vat code closed?", "readOnly" : true }, "isAmountVatClosed" : { "type" : "boolean", "description" : "Is amount of this posting (for VAT purposes) changeable", "readOnly" : true }, "amountGrossCurrency" : { "type" : "number" } }, "description" : "Income postings" }, "ResponseWrapperIncomeVoucher" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/IncomeVoucher" } } }, "ResponseWrapperIncomeVoucherPosting" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/IncomeVoucherPosting" } } }, "ListResponseVoucherInternal" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/VoucherInternal" } } } }, "VoucherInternal" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "date" : { "type" : "string" }, "number" : { "minimum" : 0, "type" : "integer", "description" : "System generated number that cannot be changed.", "format" : "int32", "readOnly" : true }, "tempNumber" : { "minimum" : 0, "type" : "integer", "description" : "Temporary voucher number.", "format" : "int32", "readOnly" : true }, "year" : { "minimum" : 0, "type" : "integer", "description" : "System generated number that cannot be changed.", "format" : "int32", "readOnly" : true }, "description" : { "type" : "string" }, "voucherType" : { "$ref" : "#/components/schemas/VoucherType" }, "reverseVoucher" : { "$ref" : "#/components/schemas/Voucher" }, "postings" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/Posting" } }, "document" : { "$ref" : "#/components/schemas/Document" }, "attachment" : { "$ref" : "#/components/schemas/Document" }, "externalVoucherNumber" : { "type" : "string", "description" : "External voucher number. Maximum 70 characters." }, "ediDocument" : { "$ref" : "#/components/schemas/Document" }, "supplierVoucherType" : { "type" : "string", "description" : "Supplier voucher type - simple and detailed.", "readOnly" : true, "enum" : [ "TYPE_SUPPLIER_INVOICE_SIMPLE", "TYPE_SUPPLIER_INVOICE_DETAILED" ] }, "wasAutoMatched" : { "type" : "boolean", "description" : "Voucher was auto matched", "readOnly" : true }, "vendorInvoiceNumber" : { "type" : "string", "description" : "Vendor invoice number." }, "displayName" : { "type" : "string", "readOnly" : true }, "numberAsString" : { "type" : "string", "readOnly" : true }, "urlDetails" : { "type" : "string" } }, "readOnly" : true }, "ResponseWrapperVoucherType" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/VoucherType" } } }, "ListResponseVoucherType" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/VoucherType" } } } }, "License" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "description" : "Returns the license id.", "format" : "int64", "readOnly" : true }, "name" : { "type" : "string", "description" : "Returns license name.", "readOnly" : true }, "date" : { "type" : "string", "description" : "Returns license creation date.", "readOnly" : true }, "displayTextKey" : { "type" : "string", "description" : "Returns license display text", "readOnly" : true }, "content" : { "type" : "string", "description" : "Returns license content", "readOnly" : true } }, "readOnly" : true }, "ListResponseLicense" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/License" } } } }, "ListResponseSearchCompletion" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/SearchCompletion" } } } }, "SearchCompletion" : { "type" : "object", "properties" : { "id" : { "type" : "string", "readOnly" : true }, "name" : { "type" : "string", "readOnly" : true }, "alternateName" : { "type" : "string", "readOnly" : true }, "address" : { "type" : "string", "readOnly" : true }, "postalCode" : { "type" : "string", "readOnly" : true }, "postalArea" : { "type" : "string", "readOnly" : true }, "latitude" : { "type" : "number", "readOnly" : true }, "longitude" : { "type" : "number", "readOnly" : true }, "category" : { "type" : "string", "readOnly" : true }, "score" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "sources" : { "type" : "array", "readOnly" : true, "items" : { "type" : "string", "readOnly" : true, "enum" : [ "SEARCH1881", "TRIPLETEX", "NICKNAME", "EMPLOYEE", "CONTACT", "ACTIVITY", "PROJECT", "ORDER", "OFFER", "CUSTOMER", "COMPANY", "CONTROLSCHEMA", "HOUR", "TRAVELEXPENSE" ] } } }, "readOnly" : true }, "ListResponsePersonAutoComplete" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/PersonAutoComplete" } } } }, "PersonAutoComplete" : { "type" : "object", "properties" : { "id" : { "type" : "string", "readOnly" : true }, "name" : { "type" : "string", "readOnly" : true }, "alternateName" : { "type" : "string", "readOnly" : true }, "address" : { "type" : "string", "readOnly" : true }, "postalCode" : { "type" : "string", "readOnly" : true }, "postalArea" : { "type" : "string", "readOnly" : true }, "latitude" : { "type" : "number", "readOnly" : true }, "longitude" : { "type" : "number", "readOnly" : true }, "category" : { "type" : "string", "readOnly" : true }, "score" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "sources" : { "type" : "array", "readOnly" : true, "items" : { "type" : "string", "readOnly" : true, "enum" : [ "SEARCH1881", "TRIPLETEX", "NICKNAME", "EMPLOYEE", "CONTACT", "ACTIVITY", "PROJECT", "ORDER", "OFFER", "CUSTOMER", "COMPANY", "CONTROLSCHEMA", "HOUR", "TRAVELEXPENSE" ] } }, "firstname" : { "type" : "string", "readOnly" : true }, "lastname" : { "type" : "string", "readOnly" : true }, "phoneNumber" : { "type" : "string", "readOnly" : true }, "phoneNumberMobile" : { "type" : "string", "readOnly" : true }, "email" : { "type" : "string", "readOnly" : true }, "url" : { "type" : "string", "readOnly" : true }, "countryId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "reserved" : { "type" : "boolean", "readOnly" : true } }, "readOnly" : true }, "ResponseWrapperTrip" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/Trip" } } }, "Trip" : { "type" : "object", "properties" : { "distance" : { "type" : "number" }, "travelTimeInMinutes" : { "type" : "number" }, "sumTollNOK" : { "type" : "number" } } }, "Lookup1881Coordinate" : { "type" : "object", "properties" : { "latitude" : { "type" : "number" }, "longitude" : { "type" : "number" } } }, "Lookup1881Day" : { "type" : "object", "properties" : { "weekDay" : { "type" : "number", "readOnly" : true }, "hours" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Lookup1881Hours" } } }, "readOnly" : true }, "Lookup1881Hours" : { "type" : "object", "properties" : { "startTime" : { "type" : "string", "readOnly" : true }, "endTime" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "Lookup1881Price" : { "type" : "object", "properties" : { "vehicle" : { "type" : "string", "readOnly" : true, "enum" : [ "NotSet", "CarDiesel", "CarGasolineOrHybrid", "CarZeroEmission", "TruckEuroV", "TruckEuroVI", "CarGeneral", "TruckGeneral", "MC", "VanZeroEmission", "CarHydrogen" ] }, "price" : { "type" : "number", "readOnly" : true }, "rushHoursToll" : { "$ref" : "#/components/schemas/Lookup1881RushHoursToll" }, "vehicleDescription" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "Lookup1881RushHoursToll" : { "type" : "object", "properties" : { "days" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Lookup1881Day" } }, "price" : { "type" : "number", "readOnly" : true }, "description" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "Lookup1881TollStationV2" : { "type" : "object", "properties" : { "name" : { "type" : "string", "readOnly" : true }, "prices" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Lookup1881Price" } }, "coordinate" : { "$ref" : "#/components/schemas/Lookup1881Coordinate" }, "time" : { "type" : "number", "readOnly" : true }, "distance" : { "type" : "number", "readOnly" : true } }, "readOnly" : true }, "Lookup1881TotalToll" : { "type" : "object", "properties" : { "vehicle" : { "type" : "string", "readOnly" : true, "enum" : [ "NotSet", "CarDiesel", "CarGasolineOrHybrid", "CarZeroEmission", "TruckEuroV", "TruckEuroVI", "CarGeneral", "TruckGeneral", "MC", "VanZeroEmission", "CarHydrogen" ] }, "rushHoursToll" : { "type" : "number", "readOnly" : true }, "regularToll" : { "type" : "number", "readOnly" : true }, "totalPrice" : { "type" : "number", "readOnly" : true } }, "readOnly" : true }, "ResponseWrapperTripSearchResponse" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/TripSearchResponse" } } }, "TripSearchResponse" : { "type" : "object", "properties" : { "distance" : { "type" : "number", "readOnly" : true }, "travelTimeInMinutes" : { "type" : "number", "readOnly" : true }, "totalToll" : { "$ref" : "#/components/schemas/Lookup1881TotalToll" }, "tollStations" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Lookup1881TollStationV2" } } } }, "TripSearch" : { "type" : "object", "properties" : { "routePoints" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/Lookup1881Coordinate" } }, "vehicleType" : { "type" : "string", "enum" : [ "NotSet", "CarDiesel", "CarGasolineOrHybrid", "CarZeroEmission", "TruckEuroV", "TruckEuroVI", "CarGeneral", "TruckGeneral", "MC", "VanZeroEmission", "CarHydrogen" ] } } }, "Message" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "sendTime" : { "type" : "string" }, "content" : { "type" : "string" }, "emailTo" : { "type" : "array", "readOnly" : true, "items" : { "type" : "string", "readOnly" : true } }, "emailAttachments" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Document" } } }, "readOnly" : true }, "ResponseWrapperMessage" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/Message" } } }, "ListResponseMessage" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Message" } } } }, "DeviceRegistration" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "mobileSubscription" : { "$ref" : "#/components/schemas/MobileSubscription" }, "deviceRegistrationToken" : { "type" : "string", "description" : "Device registration token." }, "deviceType" : { "type" : "string", "description" : "Device type (ANDROID or IOS)", "enum" : [ "UNKNOWN", "ANDROID", "IOS" ] } } }, "MobileSubscription" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "employeeId" : { "$ref" : "#/components/schemas/Employee" }, "webhookSubscriptionToken" : { "type" : "string" } }, "readOnly" : true }, "ResponseWrapperDeviceRegistration" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/DeviceRegistration" } } }, "PlantScore" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "employeeId" : { "$ref" : "#/components/schemas/Employee" }, "currentScore" : { "minimum" : 0, "type" : "number" }, "currentStreak" : { "minimum" : 0, "type" : "number" }, "longestStreak" : { "minimum" : 0, "type" : "number" }, "monthlyScores" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/TimeSheetMonthlyScore" } }, "plantedTreesThisMonth" : { "minimum" : 0, "type" : "number" }, "totalPlantedTrees" : { "minimum" : 0, "type" : "number" } } }, "ResponseWrapperPlantScore" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/PlantScore" } } }, "TimeSheetMonthlyScore" : { "type" : "object", "properties" : { "employeeId" : { "$ref" : "#/components/schemas/Employee" }, "score" : { "minimum" : 0, "type" : "number" }, "date" : { "type" : "string" } } }, "MobileAppModules" : { "type" : "object", "properties" : { "numberOfRegisteredHoursToday" : { "minimum" : 0, "type" : "number", "description" : "Number of registered hours today.", "readOnly" : true }, "numberOfOpenOrders" : { "minimum" : 0, "type" : "number", "description" : "Number of orders.", "readOnly" : true }, "numberOfTravelsAndExpensesForApproval" : { "minimum" : 0, "type" : "number", "description" : "Number of travels & expenses for approval.", "readOnly" : true }, "numberOfVouchersForApproval" : { "minimum" : 0, "type" : "number", "description" : "Number of vouchers for approval.", "readOnly" : true }, "numberOfRequestedVacationDaysForApproval" : { "minimum" : 0, "type" : "number", "description" : "Number of pending approvals requested vacation days for approval.", "readOnly" : true }, "numberOfOpenAndRejectedTravelsExpenses" : { "minimum" : 0, "type" : "number", "description" : "Number of open and rejected travels & expenses.", "readOnly" : true }, "numberOfPayslips" : { "minimum" : 0, "type" : "number", "description" : "Number of payslips.", "readOnly" : true } } }, "ResponseWrapperMobileAppModules" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/MobileAppModules" } } }, "MobileNotificationSettings" : { "type" : "object", "properties" : { "notificationPreferences" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/NotificationSettings" } }, "dailyTimeSheetNotificationSettings" : { "$ref" : "#/components/schemas/MobileSettings" } } }, "MobileSettings" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "employee" : { "$ref" : "#/components/schemas/Employee" }, "isTimeSheetDailyNotificationActive" : { "type" : "boolean" }, "notificationTime" : { "type" : "string" }, "isMondayActive" : { "type" : "boolean" }, "isTuesdayActive" : { "type" : "boolean" }, "isWednesdayActive" : { "type" : "boolean" }, "isThursdayActive" : { "type" : "boolean" }, "isFridayActive" : { "type" : "boolean" }, "isSaturdayActive" : { "type" : "boolean" }, "isSundayActive" : { "type" : "boolean" } } }, "NotificationSettings" : { "type" : "object", "properties" : { "type" : { "type" : "string", "description" : "The notification type", "readOnly" : true, "enum" : [ "WAGE_PERIOD_TRANSACTION", "PAYSLIP", "TIME_SHEET_REGISTRATION_MISSING", "EXPENSE_APPROVED", "TRAVEL_EXPENSE_APPROVED", "EXPENSES_FOR_APPROVAL", "TRAVEL_EXPENSES_FOR_APPROVAL", "RECONCILIATION_READY", "PAYMENT_CANCELLED", "VOUCHER_FOR_ATTESTATION", "INBOX_VOUCHER", "INBOX_VOUCHER_UPLOAD", "INCOMPLETE_VOUCHER", "INCOMING_INVOICE_AUTOMATION", "VOUCHER_REMIT", "INBOX_EHF", "TASK_ACTIVITY", "AUTOPAY_BANK_AGREEMENT_CREATED", "AUTOPAY_BANK_AGREEMENT_REQUIRES_LINKING", "AUTOPAY_BANK_AGREEMENT_REQUIRES_ACTIVATION", "ASK_FOR_BANK_ID", "BBS_AGREEMENTS_OCR_DISABLED", "BANK_AGREEMENT_FAILURE", "BANK_ONBOARDING_ACCESS_REQUEST", "SWITCH_TO_AUTOPAY_INCOMING_PAYMENTS", "PROJECT_MANAGER_ASSIGNED_TO_PROJECT", "IMPORT_VOUCHER_ERROR", "DISCOUNT_AGREEMENT", "AUTO_INVOICE_PROBLEMS", "SELF_TRIGGER_BANK_ONBOARDING_EMAIL", "DEBT_COLLECTION_FAILED", "SUPPORT_READ_ACCESS_REQUEST", "SELF_TRIGGER_PROVISIONING", "PAYMENT_FAILED", "BANK_STATEMENT_IN_CLOSED_RECONCILIATION", "AUTOPAY_ACTIVATION_FAILED", "PSD2_BANK_AGREEMENT_FAILURE", "AUTOPAY_REIMPORT_INCOMING_PAYMENT_VOUCHER_SUCCESS", "AUTOPAY_REIMPORT_INCOMING_PAYMENT_VOUCHER_FAILURE", "AUTOPAY_INCOMING_PAYMENT_SENT_TO_VOUCHER_RECEPTION", "APRILA_INVOICE_SALES_ONBOARDING_FAILED", "APRILA_CASH_CREDIT_ONBOARDING_FAILED", "APRILA_INVOICE_SALES_ACTIVATION_COMPLETE", "APRILA_CASH_CREDIT_ACTIVATION_COMPLETE", "APRILA_INVOICE_SALES_ACTIVATION_CANCELLED", "APRILA_CASH_CREDIT_ACTIVATION_CANCELLED", "APRILA_INVOICE_SALES_ACTIVATION_FAILED", "APRILA_CASH_CREDIT_ACTIVATION_FAILED", "APRILA_INVOICE_SALES_DEACTIVATION_COMPLETE", "APRILA_CASH_CREDIT_DEACTIVATION_COMPLETE", "AUTOPAY_OUTDATED_PAYMENTS", "AUTOPAY_USER_UPDATED", "MY_VACATION_DAYS_APPROVAL_STATUS", "VACATION_DAYS_TO_REVIEW", "WHOLESALER_IMPORT_FAILED", "EXPENSE_REJECTED", "TRAVEL_EXPENSE_REJECTED", "RESOURCE_PLAN_ASSIGNED_TO_JOBS", "DATAFLYT_INTEGRATION_STATUS_UPDATE", "TIME_SHEET_REMINDER_MOBILE_APP", "IN_APP_CHAT", "REPORT_SHARED", "AO_RECONCILIATION_CONTROL_REQUESTED", "ATTESTATION_NEXT_IN_LINE", "BALANCE_RECONCILIATION_OBSOLETE", "BANK", "VOUCHER", "BUSINESS", "DOCUMENT", "DONE", "EXTERNAL", "SUPPORT", "TRAVEL_REPORT", "EMPLOYEE_EXPENSE", "SALARY", "HOURLIST", "WARNING", "TEST", "OTHER" ] }, "choice" : { "type" : "boolean", "description" : "Whether the notification is enabled or disabled" }, "deliveryType" : { "type" : "string", "description" : "The delivery type", "readOnly" : true } } }, "ResponseWrapperMobileNotificationSettings" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/MobileNotificationSettings" } } }, "AutocompleteSuggestion" : { "type" : "object", "properties" : { "id" : { "type" : "string", "readOnly" : true }, "description" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "ListResponseAutocompleteSuggestion" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/AutocompleteSuggestion" } } } }, "ListResponseRoutePoint" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/RoutePoint" } } } }, "RoutePoint" : { "type" : "object", "properties" : { "latitude" : { "type" : "number", "readOnly" : true }, "longitude" : { "type" : "number", "readOnly" : true } }, "readOnly" : true }, "MobileAppRightsInfo" : { "type" : "object", "properties" : { "hourRegistrationEnabled" : { "type" : "boolean" }, "projectEnabled" : { "type" : "boolean" }, "departmentEnabled" : { "type" : "boolean" }, "userIsAllowedToRegisterHours" : { "type" : "boolean" }, "payrollAccountingEnabled" : { "type" : "boolean" }, "userIsAuthWageMenu" : { "type" : "boolean" }, "userIsAuthMySalary" : { "type" : "boolean" }, "electronicVouchersEnabled" : { "type" : "boolean" }, "travelExpenseEnabled" : { "type" : "boolean" }, "documentArchiveEnabled" : { "type" : "boolean" }, "archiveReceptionEnabled" : { "type" : "boolean" }, "userIsPayslipOnly" : { "type" : "boolean" }, "travelExpenseRatesEnabled" : { "type" : "boolean" }, "taxFreeMileageRatesEnabled" : { "type" : "boolean" }, "approveTravelExpenseEnabled" : { "type" : "boolean" }, "userIsAuthProjectInfo" : { "type" : "boolean" }, "userIsAuthTravelAndExpenseApprove" : { "type" : "boolean" }, "userIsAuthEmployeeInfo" : { "type" : "boolean" }, "userIsAuthVoucherApprove" : { "type" : "boolean" }, "userIsAuthInvoicing" : { "type" : "boolean" }, "userIsAuthCreateOrder" : { "type" : "boolean" }, "vatOnForCompany" : { "type" : "boolean" }, "taxFreeDietRatesEnabled" : { "type" : "boolean" }, "travelDietIgnorePostingEnabled" : { "type" : "boolean" }, "employeeEnabled" : { "type" : "boolean" }, "hourBalanceEnabledForEmployee" : { "type" : "boolean" }, "vacationBalanceEnabledForEmployee" : { "type" : "boolean" }, "userIsAuthCreateCustomer" : { "type" : "boolean" }, "userIsAuthProjectMenu" : { "type" : "boolean" }, "userIsAuthCompanyAccountingReports" : { "type" : "boolean" }, "vvselectroEnabled" : { "type" : "boolean" }, "customerEnabled" : { "type" : "boolean" }, "userIsAuthCustomerInfo" : { "type" : "boolean" }, "userIsAuthProductAdmin" : { "type" : "boolean" }, "userIsAuthDirectRemitAutopayAdmin" : { "type" : "boolean" }, "userIsAuthDirectRemitAutopayLight" : { "type" : "boolean" }, "userIsAuthDirectRemitZtl" : { "type" : "boolean" } } }, "ResponseWrapperMobileAppRightsInfo" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/MobileAppRightsInfo" } } }, "ResponseWrapperMobileSettings" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/MobileSettings" } } }, "ResponseWrapperWorkingHoursCollection" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/WorkingHoursCollection" } } }, "WorkingHours" : { "type" : "object", "properties" : { "hours" : { "type" : "number", "readOnly" : true }, "date" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "WorkingHoursCollection" : { "type" : "object", "properties" : { "employeeWorkingHours" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/WorkingHours" } }, "companyWorkingHours" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/WorkingHours" } } } }, "MobileAppSpecificRightsInfo" : { "type" : "object", "properties" : { "hourRegistrationEnabled" : { "type" : "boolean" }, "projectEnabled" : { "type" : "boolean" }, "departmentEnabled" : { "type" : "boolean" }, "userIsAllowedToRegisterHours" : { "type" : "boolean" }, "payrollAccountingEnabled" : { "type" : "boolean" }, "userIsAuthWageMenu" : { "type" : "boolean" }, "userIsAuthMySalary" : { "type" : "boolean" }, "electronicVouchersEnabled" : { "type" : "boolean" }, "travelExpenseEnabled" : { "type" : "boolean" }, "documentArchiveEnabled" : { "type" : "boolean" }, "archiveReceptionEnabled" : { "type" : "boolean" }, "userIsPayslipOnly" : { "type" : "boolean" }, "travelExpenseRatesEnabled" : { "type" : "boolean" }, "taxFreeMileageRatesEnabled" : { "type" : "boolean" }, "approveTravelExpenseEnabled" : { "type" : "boolean" }, "userIsAuthProjectInfo" : { "type" : "boolean" }, "userIsAuthTravelAndExpenseApprove" : { "type" : "boolean" }, "userIsAuthEmployeeInfo" : { "type" : "boolean" }, "userIsAuthVoucherApprove" : { "type" : "boolean" }, "userIsAuthInvoicing" : { "type" : "boolean" }, "userIsAuthCreateOrder" : { "type" : "boolean" }, "vatOnForCompany" : { "type" : "boolean" }, "taxFreeDietRatesEnabled" : { "type" : "boolean" }, "travelDietIgnorePostingEnabled" : { "type" : "boolean" }, "employeeEnabled" : { "type" : "boolean" }, "hourBalanceEnabledForEmployee" : { "type" : "boolean" }, "vacationBalanceEnabledForEmployee" : { "type" : "boolean" }, "userIsAuthCreateCustomer" : { "type" : "boolean" }, "userIsAuthProjectMenu" : { "type" : "boolean" }, "userIsAuthCompanyAccountingReports" : { "type" : "boolean" }, "vvselectroEnabled" : { "type" : "boolean" }, "customerEnabled" : { "type" : "boolean" }, "userIsAuthCustomerInfo" : { "type" : "boolean" }, "userIsAuthProductAdmin" : { "type" : "boolean" }, "userIsAuthDirectRemitAutopayAdmin" : { "type" : "boolean" }, "userIsAuthDirectRemitAutopayLight" : { "type" : "boolean" }, "userIsAuthDirectRemitZtl" : { "type" : "boolean" } } }, "ResponseWrapperMobileAppSpecificRightsInfo" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/MobileAppSpecificRightsInfo" } } }, "DeprecatedWorkingHours" : { "type" : "object", "properties" : { "hours" : { "type" : "number", "readOnly" : true }, "date" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "DeprecatedWorkingHoursCollection" : { "type" : "object", "properties" : { "employeeWorkingHours" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/DeprecatedWorkingHours" } }, "companyWorkingHours" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/DeprecatedWorkingHours" } } } }, "ResponseWrapperDeprecatedWorkingHoursCollection" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/DeprecatedWorkingHoursCollection" } } }, "ListResponseMunicipality" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Municipality" } } } }, "ResponseWrapperServiceActivationResponseDTO" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ServiceActivationResponseDTO" } } }, "Result" : { "type" : "object", "properties" : { "returnValue" : { "type" : "object" }, "forward" : { "type" : "string" }, "messages" : { "type" : "array", "items" : { "type" : "string" } }, "validations" : { "type" : "array", "items" : { "type" : "string" } }, "popups" : { "type" : "array", "items" : { "type" : "string" } }, "changes" : { "type" : "array", "items" : { "type" : "object" } } }, "readOnly" : true }, "ServiceActivationResponseDTO" : { "type" : "object", "properties" : { "result" : { "$ref" : "#/components/schemas/Result" } } }, "AccountClosureInfo" : { "type" : "object", "properties" : { "readAccess" : { "type" : "boolean" }, "nbOfYears" : { "minimum" : 0, "type" : "integer", "format" : "int32" } } }, "MySubscriptionAccountInfo" : { "type" : "object", "properties" : { "readOnlyPackagePrice" : { "type" : "number", "readOnly" : true }, "voucherModule" : { "type" : "string", "readOnly" : true }, "suspended" : { "type" : "boolean", "readOnly" : true }, "canReopen" : { "type" : "boolean", "readOnly" : true }, "reopenLimitDate" : { "type" : "string", "readOnly" : true }, "reopenNumberOfDays" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "readOnlyUser" : { "type" : "boolean", "readOnly" : true }, "discountsNotReinstated" : { "type" : "boolean", "readOnly" : true }, "mikroVoucherModule" : { "type" : "string", "readOnly" : true }, "calculatedEndDate" : { "type" : "string", "readOnly" : true }, "isTemporarilyActive" : { "type" : "boolean", "readOnly" : true }, "subscriptionEndDate" : { "type" : "string", "readOnly" : true }, "isTripletexSuspended" : { "type" : "boolean", "readOnly" : true } } }, "ResponseWrapperMySubscriptionAccountInfo" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/MySubscriptionAccountInfo" } } }, "BetaProgramDTO" : { "type" : "object", "properties" : { "name" : { "type" : "string" }, "titleKey" : { "type" : "string" }, "summaryKey" : { "type" : "string" }, "descriptionActivationKey" : { "type" : "string" }, "descriptionDeactivationKey" : { "type" : "string" }, "state" : { "type" : "string", "enum" : [ "ACTIVE", "AVAILABLE", "NOT_AVAILABLE" ] } }, "readOnly" : true }, "ListResponseBetaProgramDTO" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/BetaProgramDTO" } } } }, "CustomerInvoiceDetails" : { "type" : "object", "properties" : { "invoiceEmail" : { "type" : "string" }, "invoiceSendMethod" : { "type" : "string", "description" : "Define the invoicing method for the customer.
EMAIL: Send invoices as email.
EHF: Send invoices as EHF.
EFAKTURA: Send invoices as EFAKTURA.
AVTALEGIRO: Send invoices as AVTALEGIRO.
VIPPS: Send invoices through VIPPS.
PAPER: Send invoices as paper invoice.
MANUAL: User will have to send invocie manually.
", "enum" : [ "EMAIL", "EHF", "EFAKTURA", "AVTALEGIRO", "VIPPS", "PAPER", "MANUAL" ] }, "otherInvoiceReceiver" : { "type" : "boolean", "readOnly" : true }, "invoiceReceiverName" : { "type" : "string", "readOnly" : true } } }, "ResponseWrapperCustomerInvoiceDetails" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/CustomerInvoiceDetails" } } }, "InvoiceOptions" : { "type" : "object", "properties" : { "sendTypes" : { "type" : "array", "readOnly" : true, "items" : { "type" : "string" } } } }, "ResponseWrapperInvoiceOptions" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/InvoiceOptions" } } }, "MySubscriptionModuleDTO" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "title" : { "type" : "string", "readOnly" : true }, "shortDescription" : { "type" : "string", "readOnly" : true }, "descriptionPart1" : { "type" : "string", "readOnly" : true }, "descriptionPart2" : { "type" : "string", "readOnly" : true }, "perUsePrice" : { "type" : "number", "readOnly" : true }, "perUserPrice" : { "type" : "number", "readOnly" : true }, "perUserStartup" : { "type" : "number", "readOnly" : true }, "monthlyPrice" : { "type" : "number", "readOnly" : true }, "monthlyMainModulePrice" : { "type" : "number", "readOnly" : true }, "monthlyVoucherPrice" : { "type" : "number", "nullable" : true, "readOnly" : true }, "yearlyPrice" : { "type" : "number", "readOnly" : true }, "startUpPrice" : { "type" : "number", "readOnly" : true }, "perUserOverLimitPrice" : { "type" : "number", "readOnly" : true }, "priceDescription" : { "type" : "string", "readOnly" : true }, "active" : { "type" : "boolean", "readOnly" : true }, "available" : { "type" : "boolean", "readOnly" : true }, "processing" : { "type" : "boolean", "readOnly" : true }, "futurePurchase" : { "type" : "boolean", "readOnly" : true }, "infoText" : { "type" : "string", "readOnly" : true }, "unavailableText" : { "type" : "string", "readOnly" : true }, "licenseUrl" : { "type" : "string", "readOnly" : true }, "redirectUrl" : { "type" : "string", "readOnly" : true }, "priceLine1Text" : { "type" : "string", "readOnly" : true }, "priceLine2Text" : { "type" : "string", "readOnly" : true }, "priceLine3Text" : { "type" : "string", "readOnly" : true }, "price1" : { "type" : "number", "readOnly" : true }, "price2" : { "type" : "number", "readOnly" : true }, "price3" : { "type" : "number", "readOnly" : true }, "canDeactivate" : { "type" : "boolean", "readOnly" : true }, "deactivationError" : { "type" : "string", "readOnly" : true }, "possibleStartDate" : { "type" : "string", "readOnly" : true }, "purchaseStartDate" : { "type" : "string", "readOnly" : true }, "purchaseEndDate" : { "type" : "string", "readOnly" : true }, "hasAutoInvoice" : { "type" : "boolean", "readOnly" : true }, "currencyCode" : { "type" : "string", "readOnly" : true }, "deactivationErrorType" : { "type" : "string", "readOnly" : true }, "activationInfo" : { "type" : "string", "readOnly" : true }, "categories" : { "type" : "array", "readOnly" : true, "items" : { "type" : "string", "readOnly" : true, "enum" : [ "VOUCHER", "AUTOMATION", "ACCOUNTS", "INTEGRATIONS", "BANK", "SALARY", "WAREHOUSE", "INVOICE", "QUALITY" ] } }, "servicePrices" : { "type" : "object", "additionalProperties" : { "$ref" : "#/components/schemas/MySubscriptionPrice" }, "description" : "Prices of additional services. Note that prices for main modules are contained in named fields and not in this object.", "readOnly" : true }, "ordered" : { "type" : "boolean" } } }, "MySubscriptionPrice" : { "type" : "object", "properties" : { "price" : { "type" : "number", "readOnly" : true }, "textKey" : { "type" : "string", "readOnly" : true } }, "description" : "Prices of additional services. Note that prices for main modules are contained in named fields and not in this object.", "readOnly" : true }, "ResponseWrapperListMySubscriptionModuleDTO" : { "type" : "object", "properties" : { "value" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/MySubscriptionModuleDTO" } } } }, "AccountClosureFeedback" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "reason" : { "type" : "string" }, "comment" : { "type" : "string" } } }, "ResponseWrapperAccountClosureFeedback" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/AccountClosureFeedback" } } }, "ResponseWrapperTripletexSalesModulePurchase" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/TripletexSalesModulePurchase" } } }, "TripletexSalesModulePurchase" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "tripletexCompanyId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "tripletexPriceList" : { "type" : "string", "readOnly" : true, "enum" : [ "UNKNOWN", "TRIPLETEX_STANDARD", "AGRO", "MAMUT", "BASIS", "SMART", "KOMPLETT", "VVS_ELEKTRO", "AUTOPLUS", "MIKRO", "INTEGRATION_PARTNER", "PLUSS", "DIYPACKAGE", "PRO" ] }, "employeeId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "purchaseDate" : { "type" : "string", "description" : "Purchase date", "readOnly" : true }, "endDate" : { "type" : "string", "description" : "Purchase end date", "readOnly" : true }, "customerId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "tripletexSalesModuleName" : { "type" : "string", "readOnly" : true } } }, "ResponseWrapperOrder" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/Order" } } }, "ListResponseOrder" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Order" } } } }, "OrderOffer" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "number" : { "type" : "string" }, "department" : { "$ref" : "#/components/schemas/Department" }, "offerDate" : { "type" : "string" }, "customer" : { "$ref" : "#/components/schemas/Customer" }, "displayName" : { "type" : "string", "readOnly" : true }, "customerName" : { "type" : "string", "readOnly" : true }, "projectManagerNameAndNumber" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "ResponseWrapperOrderOffer" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/OrderOffer" } } }, "ListResponseOrderOffer" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/OrderOffer" } } } }, "ResponseWrapperOrderGroup" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/OrderGroup" } } }, "ListResponseOrderGroup" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/OrderGroup" } } } }, "ResponseWrapperOrderLine" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/OrderLine" } } }, "ListResponseOrderLine" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/OrderLine" } } } }, "PhysicalOrder" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "order" : { "$ref" : "#/components/schemas/Order" }, "totalWeight" : { "type" : "number", "description" : "Total weight for order" }, "manuallyOverriddenWeight" : { "type" : "boolean" }, "weightUnit" : { "type" : "string", "enum" : [ "kg", "g", "hg" ] }, "totalVolume" : { "type" : "number", "description" : "Total volume for order" }, "manuallyOverriddenVolume" : { "type" : "boolean" }, "lengthCm" : { "type" : "number", "description" : "Length of package" }, "widthCm" : { "type" : "number", "description" : "Width of package" }, "heightCm" : { "type" : "number", "description" : "height of package" }, "volumeUnit" : { "type" : "string", "enum" : [ "cm3", "dm3", "m3" ] }, "transportMethod" : { "type" : "string", "enum" : [ "NOT_CHOSEN", "SENDING", "PICKUP", "BRING_EXPRESS_NEXT_DAY", "BRING_PACKAGE_TO_COMPANY", "BRING_PACKAGE_DELIVERED_HOME", "BRING_PACKAGE_TO_PICKUP_POINT", "BRING_PACKAGE_IN_MAILBOX" ] }, "transportLabelLink" : { "type" : "string" }, "trackingNumber" : { "type" : "string" }, "trackingNumberLink" : { "type" : "string" }, "deliveryContact" : { "$ref" : "#/components/schemas/Contact" }, "incoterms" : { "type" : "string", "enum" : [ "NOT_CHOSEN", "EXW", "FCA", "CPT", "CIP", "DAP", "DPU", "DDP", "FAS", "FOB", "CFR", "CIF" ] } } }, "ResponseWrapperPhysicalOrder" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/PhysicalOrder" } } }, "ListResponseOrderLineAccrual" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/OrderLineAccrual" } } } }, "OrderLineAccrual" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "sourceType" : { "type" : "string", "description" : "The type of source for this accrual (ORDER_LINE, TRAVEL_EXPENSE, FEE, or MARKUP_FEE)", "readOnly" : true, "enum" : [ "ORDER_LINE", "TRAVEL_EXPENSE", "FEE", "MARKUP_FEE" ] }, "sourceId" : { "type" : "integer", "description" : "The ID of the source entity (orderLine, travelExpense, feeInvoiceOrder, or markupInvoiceOrder depending on sourceType)", "format" : "int64", "readOnly" : true }, "orderLine" : { "$ref" : "#/components/schemas/OrderLine" }, "travelExpense" : { "$ref" : "#/components/schemas/TravelExpense" }, "feeInvoiceOrder" : { "$ref" : "#/components/schemas/ProjectInvoiceDetails" }, "markupFeeInvoiceOrder" : { "$ref" : "#/components/schemas/ProjectInvoiceDetails" }, "accrualAccount" : { "$ref" : "#/components/schemas/Account" }, "incomeAccount" : { "$ref" : "#/components/schemas/Account" }, "month" : { "type" : "integer", "description" : "The month the accrual starts", "format" : "int32", "readOnly" : true }, "year" : { "type" : "integer", "description" : "The year the accrual starts", "format" : "int32", "readOnly" : true }, "numberOfPeriods" : { "type" : "integer", "description" : "The number of periods for the accrual", "format" : "int32", "readOnly" : true } }, "readOnly" : true }, "ListResponseOutgoingStock" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/OutgoingStock" } } } }, "OutgoingStock" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "order" : { "$ref" : "#/components/schemas/Order" }, "product" : { "$ref" : "#/components/schemas/Product" }, "count" : { "type" : "number", "readOnly" : true } }, "readOnly" : true }, "ListResponsePaymentTypeAutomation" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/PaymentTypeAutomation" } } } }, "PaymentTypeAutomation" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "description" : "Id corresponding to a Dropdown Type used in the Payment Widget's dropdown elements", "format" : "int32" }, "description" : { "type" : "string", "description" : "Value of a Dropdown Type used in the Payment Widget's dropdown elements" }, "paymentIntegration" : { "type" : "string", "description" : "The Payment Type (NETS, AUTOPAY, POSTING_RULE)", "enum" : [ "NONE", "NOT_PAID", "NETS", "AUTOPAY", "POSTING_RULE", "ZTL" ] } }, "readOnly" : true }, "ResponseWrapperSimplePaymentWidget" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/SimplePaymentWidget" } } }, "SimplePaymentWidget" : { "type" : "object", "properties" : { "paymentTypes" : { "type" : "array", "description" : "List of payment types used in this Payment Widget", "items" : { "$ref" : "#/components/schemas/PaymentWidgetPaymentType" } }, "selectedPaymentType" : { "$ref" : "#/components/schemas/PaymentWidgetPaymentType" }, "date" : { "type" : "string", "description" : "Date of the payment to be registered in the Payment Widget" }, "amount" : { "type" : "number", "description" : "Amount of the payment to be registered in the Payment Widget" }, "bankAccount" : { "type" : "string", "description" : "Bank account used to register payment in the Payment Widget" }, "kid" : { "type" : "string", "description" : "Kid used to register payment in the Payment Widget" }, "readOnlyBankAccount" : { "type" : "boolean", "description" : "Field for making the bank account field readOnly in the Payment Widget" }, "readOnlyKid" : { "type" : "boolean", "description" : "Field for making the kid field readOnly in the Payment Widget" } } }, "CustomerVendorIbanOrBban" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "displayName" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "ListResponseCustomerVendorIbanOrBban" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/CustomerVendorIbanOrBban" } } } }, "ResponseWrapperAdvancedPaymentWidget" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/AdvancedPaymentWidget" } } }, "ListResponsePaymentWidgetPaymentType" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/PaymentWidgetPaymentType" } } } }, "RegulatoryReportingCode" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "name" : { "type" : "string", "readOnly" : true }, "displayName" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "ResponseWrapperListRegulatoryReportingCode" : { "type" : "object", "properties" : { "value" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/RegulatoryReportingCode" } } } }, "ListResponseRegulatoryReportingCode" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/RegulatoryReportingCode" } } } }, "CreateAndLinkSignatureLineRequest" : { "type" : "object", "properties" : { "documentId" : { "minimum" : 1, "type" : "integer", "format" : "int64" }, "role" : { "type" : "string" }, "signerId" : { "minimum" : 1, "type" : "integer", "format" : "int64" }, "year" : { "type" : "integer", "format" : "int32" } }, "description" : "Request for creating and linking a signature line" }, "CaseFileRequest" : { "type" : "object", "properties" : { "title" : { "type" : "string" }, "year" : { "type" : "integer", "format" : "int32" } }, "description" : "Request for creating a case file" }, "AddDocumentRequest" : { "type" : "object", "properties" : { "caseFileId" : { "minimum" : 1, "type" : "integer", "format" : "int64" }, "title" : { "type" : "string" }, "pdfBase64" : { "type" : "string" } }, "description" : "Request for adding a document to a case file" }, "AddRecipientRequest" : { "type" : "object", "properties" : { "caseFileId" : { "minimum" : 1, "type" : "integer", "description" : "The Penneo case file ID", "format" : "int64" }, "name" : { "type" : "string", "description" : "Name of the recipient" }, "email" : { "type" : "string", "description" : "Email address of the recipient" }, "storeAsContact" : { "type" : "boolean", "description" : "Whether to store this recipient as a contact for future use", "default" : false } }, "description" : "Request for adding a copy recipient to a case file" }, "UpdateDocumentRequest" : { "type" : "object", "properties" : { "documentId" : { "minimum" : 1, "type" : "integer", "format" : "int64" }, "title" : { "type" : "string" }, "pdfBase64" : { "type" : "string" } }, "description" : "Request for updating an existing document" }, "ResponseWrapperMapPilotFeatureBoolean" : { "type" : "object", "properties" : { "value" : { "type" : "object", "additionalProperties" : { "type" : "boolean" } } } }, "PostingRules" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "accountReceivableCustomersId" : { "$ref" : "#/components/schemas/Account" }, "accountDebtVendorsId" : { "$ref" : "#/components/schemas/Account" }, "accountDebtEmployeesAndOwnersId" : { "$ref" : "#/components/schemas/Account" }, "accountRoundDiffId" : { "$ref" : "#/components/schemas/Account" }, "vatPerDepartment" : { "type" : "boolean", "description" : "True if VAT postings generated by the system are done per department (when department is available), false if not", "readOnly" : true }, "multipleIndustries" : { "type" : "boolean", "description" : "True if multiple industries are enabled, false if not. If enabled, business activity types can be used to separate between different tax categories, and between general and primary VAT reports. This is done by setting a business activity type on the departments, as well as setting a default business activity type.", "readOnly" : true }, "defaultBusinessActivityTypeId" : { "type" : "integer", "description" : "The default business activity type for the company. This is used when a department does not have a business activity type set, or no departmentId is given in a Posting.If multiple industries are not enabled, this value is not relevant.", "format" : "int32", "readOnly" : true }, "accountSubscriptionAccrual" : { "$ref" : "#/components/schemas/Account" }, "accountProductSaleNoVat" : { "$ref" : "#/components/schemas/Account" } } }, "ResponseWrapperPostingRules" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/PostingRules" } } }, "ExternalProduct" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "name" : { "type" : "string" }, "displayName" : { "type" : "string", "readOnly" : true }, "elNumber" : { "type" : "string" }, "nrfNumber" : { "type" : "string" }, "costExcludingVatCurrency" : { "type" : "number", "description" : "Price purchase (cost) excluding VAT in the product's currency", "readOnly" : true }, "priceExcludingVatCurrency" : { "type" : "number", "description" : "Price of purchase excluding VAT in the product's currency" }, "priceIncludingVatCurrency" : { "type" : "number", "description" : "Price of purchase including VAT in the product's currency" }, "isInactive" : { "type" : "boolean" }, "productUnit" : { "$ref" : "#/components/schemas/ProductUnit" }, "isStockItem" : { "type" : "boolean" }, "vatType" : { "$ref" : "#/components/schemas/VatType" }, "currency" : { "$ref" : "#/components/schemas/Currency" }, "department" : { "$ref" : "#/components/schemas/Department" }, "account" : { "$ref" : "#/components/schemas/Account" }, "discountPrice" : { "type" : "number", "readOnly" : true } }, "readOnly" : true }, "ResponseWrapperExternalProduct" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ExternalProduct" } } }, "ListResponseExternalProduct" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ExternalProduct" } } } }, "ProductLabelSettings" : { "type" : "object", "properties" : { "showProductNumberSeparately" : { "type" : "boolean", "description" : "Show product number in separate row from product name" }, "showSellingPriceInclVat" : { "type" : "boolean", "description" : "Show selling price including VAT on the label" } } }, "ResponseWrapperProduct" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/Product" } } }, "ListResponseProduct" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Product" } } } }, "ResponseWrapperSupplierProduct" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/SupplierProduct" } } }, "ListResponseSupplierProduct" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/SupplierProduct" } } } }, "ResponseWrapperDiscountGroup" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/DiscountGroup" } } }, "ListResponseDiscountGroup" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/DiscountGroup" } } } }, "DiscountPolicy" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "percentage" : { "type" : "number" }, "fixedAmount" : { "type" : "number" }, "product" : { "$ref" : "#/components/schemas/Product" }, "customer" : { "$ref" : "#/components/schemas/Customer" }, "productGroup" : { "$ref" : "#/components/schemas/ProductGroup" }, "salesPriceWithDiscount" : { "type" : "number" }, "isPercentage" : { "type" : "number" }, "discountType" : { "type" : "string", "enum" : [ "CUSTOMER_DISCOUNT", "PRODUCT_DISCOUNT", "PRODUCT_GROUP_DISCOUNT" ] } }, "readOnly" : true }, "ProductGroup" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "name" : { "type" : "string", "description" : "Product group name" }, "displayName" : { "type" : "string", "description" : "Product group displayName", "readOnly" : true }, "parentGroup" : { "$ref" : "#/components/schemas/ProductGroup" }, "isDeletable" : { "type" : "boolean", "readOnly" : true } } }, "ResponseWrapperDiscountPolicy" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/DiscountPolicy" } } }, "ListResponseDiscountPolicy" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/DiscountPolicy" } } } }, "ProductInventoryLocation" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "product" : { "$ref" : "#/components/schemas/Product" }, "inventory" : { "$ref" : "#/components/schemas/Inventory" }, "inventoryLocation" : { "$ref" : "#/components/schemas/InventoryLocation" }, "isMainLocation" : { "type" : "boolean" }, "isInactive" : { "type" : "boolean" }, "stockOfGoods" : { "type" : "number", "readOnly" : true } }, "readOnly" : true }, "ResponseWrapperProductInventoryLocation" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ProductInventoryLocation" } } }, "ListResponseProductInventoryLocation" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ProductInventoryLocation" } } } }, "LogisticsSettings" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "hasWarehouseLocation" : { "type" : "boolean" }, "showOnboardingWizard" : { "type" : "boolean" }, "moduleSuggestedProductNumber" : { "type" : "boolean" }, "suggestedProductNumber" : { "type" : "string" }, "purchaseOrderDefaultComment" : { "type" : "string" }, "rackbeatAgreementNumber" : { "type" : "string", "description" : "Agreement number provided to customers using Rackbeat integration", "readOnly" : true }, "moduleBring" : { "type" : "boolean" } } }, "ResponseWrapperLogisticsSettings" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/LogisticsSettings" } } }, "ResponseWrapperProductGroup" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ProductGroup" } } }, "ListResponseProductGroup" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ProductGroup" } } } }, "ProductGroupRelation" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "product" : { "$ref" : "#/components/schemas/Product" }, "productGroup" : { "$ref" : "#/components/schemas/ProductGroup" } }, "readOnly" : true }, "ResponseWrapperProductGroupRelation" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ProductGroupRelation" } } }, "ListResponseProductGroupRelation" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ProductGroupRelation" } } } }, "ResourceGroupRelation" : { "type" : "object", "properties" : { "resourceIds" : { "type" : "string" }, "resourceProductIds" : { "type" : "string" }, "resourceGroupIds" : { "type" : "string" } } }, "ListResponseProductPrice" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ProductPrice" } } } }, "ProductPrice" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "product" : { "$ref" : "#/components/schemas/Product" }, "fromDate" : { "type" : "string" }, "toDate" : { "type" : "string" }, "purchasePrice" : { "type" : "number", "description" : "Purchase Price excluding VAT" }, "purchasePriceCurrency" : { "type" : "number", "description" : "Purchase Price (cost) excluding VAT in the product's currency" }, "costPrice" : { "type" : "number", "description" : "Cost Price" }, "salesPriceExcludingVat" : { "type" : "number", "description" : "Sales Price excluding VAT" }, "vatType" : { "$ref" : "#/components/schemas/VatType" }, "salesPriceIncludingVat" : { "type" : "number", "description" : "Sales Price including VAT" }, "isRoundPriceIncVat" : { "type" : "boolean", "description" : "Indicates whether the price incl. VAT is rounded off or not", "readOnly" : true } }, "readOnly" : true }, "ProductSettings" : { "type" : "object", "properties" : { "moduleWarehouse" : { "type" : "boolean" }, "hasWarehouseLocation" : { "type" : "boolean" }, "newCustomerAfterLogisticsRelease" : { "type" : "boolean", "readOnly" : true }, "productSetCostFromOrderLine" : { "type" : "boolean" }, "purchaseOrderDefaultComment" : { "type" : "string" }, "modulePurchaseOrderNumberSeries" : { "type" : "boolean" }, "purchaseOrderNumberSeries" : { "type" : "string" }, "showOnboardingWizard" : { "type" : "boolean" }, "moduleSuggestedProductNumber" : { "type" : "boolean" }, "suggestedProductNumber" : { "type" : "string" }, "purchaseOrderModule" : { "type" : "boolean" } } }, "ResponseWrapperProductSettings" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ProductSettings" } } }, "ProductImport" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "importFile" : { "$ref" : "#/components/schemas/Document" }, "separator" : { "type" : "string", "enum" : [ "NONE", "COMMA", "SEMICOLON" ] }, "supplier" : { "$ref" : "#/components/schemas/Supplier" }, "status" : { "type" : "string", "enum" : [ "FILE_UPLOADED", "FIELDS_MAPPED", "IMPORT_COMPLETED", "IMPORT_ABORTED" ] }, "productImportHeaders" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ProductImportHeader" } }, "startDate" : { "type" : "string" }, "employee" : { "$ref" : "#/components/schemas/Employee" }, "countCreated" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "countUpdated" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "countIgnored" : { "type" : "integer", "format" : "int32", "readOnly" : true } } }, "ProductImportField" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "displayName" : { "type" : "string", "readOnly" : true }, "format" : { "type" : "string", "readOnly" : true }, "isMandatory" : { "type" : "boolean", "readOnly" : true }, "sequence" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "fieldName" : { "type" : "string", "readOnly" : true }, "mandatory" : { "type" : "boolean", "writeOnly" : true } }, "readOnly" : true }, "ProductImportHeader" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "productImport" : { "$ref" : "#/components/schemas/ProductImport" }, "orderOfColumn" : { "minimum" : 0, "type" : "integer", "format" : "int32" }, "name" : { "type" : "string" }, "sampleValue" : { "type" : "string" }, "suggestedColumnField" : { "$ref" : "#/components/schemas/ProductImportField" } }, "readOnly" : true }, "ResponseWrapperProductImport" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ProductImport" } } }, "ListResponseProductImport" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ProductImport" } } } }, "ListResponseProductImportField" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ProductImportField" } } } }, "ListResponseProductImportHeader" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ProductImportHeader" } } } }, "ListResponseProductImportHeaderFieldsRelation" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ProductImportHeaderFieldsRelation" } } } }, "ProductImportHeaderFieldsRelation" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "productImport" : { "$ref" : "#/components/schemas/ProductImport" }, "header" : { "$ref" : "#/components/schemas/ProductImportHeader" }, "field" : { "$ref" : "#/components/schemas/ProductImportField" } }, "readOnly" : true }, "ListResponseProductPotential" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ProductPotential" } } } }, "ProductImportRowErrorMessage" : { "type" : "object", "properties" : { "fieldId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "errorMessage" : { "type" : "string", "readOnly" : true }, "fieldName" : { "type" : "string" } }, "description" : "errorMessage" }, "ProductPotential" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "productImport" : { "$ref" : "#/components/schemas/ProductImport" }, "rowContent" : { "$ref" : "#/components/schemas/ProductRowJSON" }, "errorMessage" : { "type" : "array", "description" : "errorMessage", "items" : { "$ref" : "#/components/schemas/ProductImportRowErrorMessage" } }, "rowStatus" : { "type" : "string", "enum" : [ "NEW", "UPDATE", "FAIL" ] } }, "readOnly" : true }, "ProductRowJSON" : { "type" : "object", "properties" : { "name" : { "type" : "string" }, "number" : { "type" : "string" }, "vatTypeId" : { "type" : "string" }, "vatTypeDisplayName" : { "type" : "string" }, "incomeAccountNumber" : { "type" : "string" }, "incomeAccountDisplayName" : { "type" : "string" }, "isStockItem" : { "type" : "string" }, "isStockItemDisplayName" : { "type" : "string" }, "productUnit" : { "type" : "string" }, "productUnitDisplayName" : { "type" : "string" }, "isInactive" : { "type" : "string" }, "isInactiveDisplayName" : { "type" : "string" }, "eanGtin" : { "type" : "string" }, "purchasePrice" : { "type" : "string" }, "sellingPriceExclVat" : { "type" : "string" }, "sellingPriceInclVat" : { "type" : "string" }, "currencyCode" : { "type" : "string" }, "rowNumber" : { "type" : "integer", "format" : "int32" }, "departmentNumber" : { "type" : "string" }, "departmentDisplayName" : { "type" : "string" }, "expenses" : { "type" : "string" }, "weight" : { "type" : "string" }, "weightUnit" : { "type" : "string" }, "volume" : { "type" : "string" }, "volumeUnit" : { "type" : "string" }, "stockCount" : { "type" : "string" }, "warehouseNumber" : { "type" : "string" }, "locationNumber" : { "type" : "string" }, "productDescription" : { "type" : "string" }, "orderLineDescription" : { "type" : "string" }, "minStockLevel" : { "type" : "string" }, "inactive" : { "type" : "string", "writeOnly" : true }, "inactiveDisplayName" : { "type" : "string", "writeOnly" : true }, "stockItem" : { "type" : "string", "writeOnly" : true } }, "description" : "rowContent" }, "ResponseWrapperProductUnit" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ProductUnit" } } }, "ListResponseProductUnit" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ProductUnit" } } } }, "ProductUnitMaster" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "name" : { "type" : "string", "readOnly" : true }, "nameShort" : { "type" : "string", "readOnly" : true }, "commonCode" : { "type" : "string", "readOnly" : true }, "peppolName" : { "type" : "string", "readOnly" : true }, "peppolSymbol" : { "type" : "string", "readOnly" : true }, "isInactive" : { "type" : "boolean", "readOnly" : true } }, "description" : "Product unit", "readOnly" : true }, "ResponseWrapperProductUnitMaster" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ProductUnitMaster" } } }, "ListResponseProductUnitMaster" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ProductUnitMaster" } } } }, "ActivityProfitabilityDTO" : { "type" : "object", "properties" : { "activityId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "activityName" : { "type" : "string", "readOnly" : true }, "income" : { "type" : "number", "readOnly" : true } }, "readOnly" : true }, "ListResponseActivityProfitabilityDTO" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ActivityProfitabilityDTO" } } } }, "EmployeeProfitabilityDTO" : { "type" : "object", "properties" : { "employeeId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "employeeName" : { "type" : "string", "readOnly" : true }, "income" : { "type" : "number", "readOnly" : true }, "cost" : { "type" : "number", "readOnly" : true }, "result" : { "type" : "number", "readOnly" : true }, "margin" : { "type" : "number", "readOnly" : true } }, "readOnly" : true }, "ListResponseEmployeeProfitabilityDTO" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/EmployeeProfitabilityDTO" } } } }, "ListResponseProject" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Project" } } } }, "ResponseWrapperProject" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/Project" } } }, "ProjectAccess" : { "type" : "object", "properties" : { "accessOrderLines" : { "type" : "string", "enum" : [ "NONE", "READ", "WRITE" ] }, "accessHours" : { "type" : "string", "enum" : [ "NONE", "READ", "WRITE" ] }, "accessAttachments" : { "type" : "string", "enum" : [ "NONE", "READ", "WRITE" ] }, "accessControlForms" : { "type" : "string", "enum" : [ "NONE", "READ", "WRITE" ] } } }, "ResponseWrapperProjectAccess" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ProjectAccess" } } }, "ResponseWrapperProjectCategory" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ProjectCategory" } } }, "ListResponseProjectCategory" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ProjectCategory" } } } }, "DynamicControlForm" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "title" : { "type" : "string" }, "comment" : { "type" : "string" }, "projectId" : { "type" : "integer", "format" : "int64" }, "originalTemplate" : { "$ref" : "#/components/schemas/DynamicControlFormTemplate" }, "isCompleted" : { "type" : "boolean" }, "isSigned" : { "type" : "boolean", "readOnly" : true }, "documentId" : { "type" : "integer", "format" : "int64" }, "addToInvoice" : { "type" : "integer", "format" : "int32" }, "fieldValues" : { "type" : "object", "properties" : { "empty" : { "type" : "boolean" } }, "additionalProperties" : { "$ref" : "#/components/schemas/ObjectNode" } }, "isSentToBoligmappa" : { "type" : "boolean", "readOnly" : true }, "lastSentToBoligmappaDate" : { "type" : "string" }, "isInvoiced" : { "type" : "boolean", "readOnly" : true }, "connectedInvoices" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Invoice" } }, "isSentWithEmail" : { "type" : "boolean", "readOnly" : true }, "lastSentWithEmailDate" : { "type" : "string" }, "isSignedSamsvarserklaeringLocked" : { "type" : "boolean", "readOnly" : true }, "guid" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "DynamicControlFormTemplate" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "type" : { "type" : "string" }, "displayName" : { "type" : "string", "readOnly" : true }, "description" : { "type" : "string" }, "formVersion" : { "type" : "string" }, "typeNumber" : { "type" : "integer", "format" : "int32" }, "previousTemplateId" : { "type" : "integer", "format" : "int64" }, "rootTemplateId" : { "type" : "integer", "format" : "int64" }, "isArchived" : { "type" : "boolean" }, "isNelfo" : { "type" : "boolean" }, "nhoVersion" : { "type" : "string" }, "signatureRequired" : { "type" : "boolean", "readOnly" : true }, "fields" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/DynamicFormField" } } }, "readOnly" : true }, "DynamicFormField" : { "type" : "object", "properties" : { "index" : { "type" : "string" }, "tag" : { "type" : "string" }, "type" : { "type" : "string" } }, "discriminator" : { "propertyName" : "type" } }, "FieldValues" : { "type" : "object", "properties" : { "empty" : { "type" : "boolean" } }, "additionalProperties" : { "$ref" : "#/components/schemas/ObjectNode" } }, "ObjectNode" : { "type" : "object" }, "ResponseWrapperDynamicControlForm" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/DynamicControlForm" } } }, "ListResponseDynamicControlForm" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/DynamicControlForm" } } } }, "SendFormEmail" : { "type" : "object", "properties" : { "ids" : { "type" : "array", "description" : "The IDs of the forms to send.", "items" : { "type" : "integer", "description" : "The IDs of the forms to send.", "format" : "int64" } }, "mergeAttachments" : { "type" : "boolean", "description" : "If true, the attachments will be merged into one PDF file before sending the email." }, "emailAddress" : { "type" : "string", "description" : "The email address to send the form to. This can be one or more emails separated by a comma." }, "message" : { "type" : "string", "description" : "The message to include in the email." } } }, "ResponseWrapperDynamicControlFormTemplate" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/DynamicControlFormTemplate" } } }, "CompanyFormsStatus" : { "type" : "object", "properties" : { "enabled" : { "type" : "boolean", "description" : "If true, the feature is enabled.", "readOnly" : true }, "hasAccess" : { "type" : "boolean", "description" : "If true, company forms can be accessed when enabled.", "readOnly" : true } } }, "ResponseWrapperCompanyFormsStatus" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/CompanyFormsStatus" } } }, "ListResponseDynamicControlFormTemplate" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/DynamicControlFormTemplate" } } } }, "ListResponseProjectManager" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ProjectManager" } } } }, "ProjectManager" : { "type" : "object", "properties" : { "employeeId" : { "type" : "integer", "description" : "The employeeId of the employee to be added as a project manager", "format" : "int64" }, "displayName" : { "type" : "string", "description" : "The display name of the employee that can be project manager" }, "canInvoice" : { "type" : "boolean", "description" : "Specifies whether the employee can invoice" } } }, "ResponseWrapperProjectOrderLine" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ProjectOrderLine" } } }, "ListResponseProjectOrderLine" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ProjectOrderLine" } } } }, "ListResponseProjectOverviewAggregate" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ProjectOverviewAggregate" } } } }, "ProjectOverviewAggregate" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int32" }, "name" : { "type" : "string" }, "displayName" : { "type" : "string" }, "number" : { "type" : "string" }, "startDate" : { "type" : "string" }, "endDate" : { "type" : "string" }, "isReadyForInvoicing" : { "type" : "boolean" }, "hasInvoiceReserve" : { "type" : "boolean" }, "isClosed" : { "type" : "boolean" }, "isFixedPrice" : { "type" : "boolean" }, "isInternal" : { "type" : "boolean" }, "currencyCode" : { "type" : "string" }, "isCompanyCurrency" : { "type" : "boolean" }, "isAuthProjectOverviewContractType" : { "type" : "boolean" }, "projectManager" : { "$ref" : "#/components/schemas/Employee" }, "customer" : { "$ref" : "#/components/schemas/Customer" }, "mainProject" : { "$ref" : "#/components/schemas/Project" }, "department" : { "$ref" : "#/components/schemas/Department" }, "projectCategory" : { "$ref" : "#/components/schemas/ProjectCategory" }, "plannedBudget" : { "type" : "number" }, "completedBudget" : { "type" : "number" }, "accessType" : { "type" : "string", "description" : "READ/WRITE access on project", "enum" : [ "NONE", "READ", "WRITE" ] }, "invoiceReserveTotalAmountCurrency" : { "type" : "number" }, "invoiceAkontoReserveAmountCurrency" : { "type" : "number" }, "invoiceExtracostsReserveCurrency" : { "type" : "number" }, "invoiceFeeReserveCurrency" : { "type" : "number" }, "hoursToApprove" : { "type" : "number" }, "invoicesToApprove" : { "type" : "number" }, "expensesToApprove" : { "type" : "number" }, "vouchersToApprove" : { "type" : "number" }, "isProjectAttestor" : { "type" : "boolean" } }, "readOnly" : true }, "ResponseWrapperProjectParticipant" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ProjectParticipant" } } }, "ListResponseProjectParticipant" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ProjectParticipant" } } } }, "ListResponseProjectBudgetStatus" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ProjectBudgetStatus" } } } }, "ProjectBudgetStatus" : { "type" : "object", "properties" : { "project" : { "$ref" : "#/components/schemas/Project" }, "totalTotalIncomeCurrency" : { "type" : "number", "readOnly" : true }, "budgetTotalIncomeCurrency" : { "type" : "number", "readOnly" : true }, "budgetTotalCostCurrency" : { "type" : "number", "readOnly" : true } } }, "ListResponseProjectPeriodInvoicingReserve" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ProjectPeriodInvoicingReserve" } } } }, "ProjectPeriodInvoicingReserve" : { "type" : "object", "properties" : { "project" : { "$ref" : "#/components/schemas/Project" }, "invoiceFeeReserveCurrency" : { "type" : "number", "readOnly" : true }, "periodOrderLinesIncomeCurrency" : { "type" : "number", "readOnly" : true }, "invoiceExtracostsReserveCurrency" : { "type" : "number", "readOnly" : true }, "invoiceAkontoReserveAmountCurrency" : { "type" : "number", "readOnly" : true }, "invoiceReserveTotalAmountCurrency" : { "type" : "number", "readOnly" : true } } }, "ResponseWrapperProjectBudgetStatus" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ProjectBudgetStatus" } } }, "ProjectPeriodHourlyReport" : { "type" : "object", "properties" : { "chargeableHours" : { "type" : "number", "readOnly" : true }, "nonChargeableHours" : { "type" : "number", "readOnly" : true }, "approvedButUnchargedHours" : { "type" : "number", "readOnly" : true }, "nonApprovedHours" : { "type" : "number", "readOnly" : true }, "registeredHours" : { "type" : "number", "readOnly" : true } } }, "ResponseWrapperProjectPeriodHourlyReport" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ProjectPeriodHourlyReport" } } }, "ProjectPeriodInvoiced" : { "type" : "object", "properties" : { "sumAmountPaid" : { "type" : "number", "readOnly" : true }, "sumAmountOutstanding" : { "type" : "number", "readOnly" : true }, "sumAmountDue" : { "type" : "number", "readOnly" : true }, "sumAmountDueOutstanding" : { "type" : "number", "readOnly" : true }, "sumAmount" : { "type" : "number", "readOnly" : true } } }, "ResponseWrapperProjectPeriodInvoiced" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ProjectPeriodInvoiced" } } }, "ResponseWrapperProjectPeriodInvoicingReserve" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ProjectPeriodInvoicingReserve" } } }, "ListResponseProjectPeriodMonthlyStatus" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ProjectPeriodMonthlyStatus" } } } }, "ProjectPeriodMonthlyStatus" : { "type" : "object", "properties" : { "income" : { "type" : "number", "readOnly" : true }, "costs" : { "type" : "number", "readOnly" : true }, "dateFrom" : { "type" : "string", "readOnly" : true }, "dateTo" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "ProjectPeriodOverallStatus" : { "type" : "object", "properties" : { "income" : { "type" : "number", "readOnly" : true }, "costs" : { "type" : "number", "readOnly" : true } } }, "ResponseWrapperProjectPeriodOverallStatus" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ProjectPeriodOverallStatus" } } }, "ResponseWrapperProjectActivity" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ProjectActivity" } } }, "ProjectControlForm" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "title" : { "type" : "string" }, "comment" : { "type" : "string" }, "completed" : { "type" : "boolean" }, "signatureRequired" : { "type" : "boolean", "readOnly" : true }, "signed" : { "type" : "boolean", "readOnly" : true }, "controlForm" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "ResponseWrapperProjectControlForm" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ProjectControlForm" } } }, "ListResponseProjectControlForm" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ProjectControlForm" } } } }, "ProjectControlFormType" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "name" : { "type" : "string" } }, "description" : "Control forms required for hour tracking" }, "ResponseWrapperProjectControlFormType" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ProjectControlFormType" } } }, "ListResponseProjectControlFormType" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ProjectControlFormType" } } } }, "ListResponseProjectHourlyRate" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ProjectHourlyRate" } } } }, "ResponseWrapperProjectHourlyRate" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ProjectHourlyRate" } } }, "HourlyRate" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "startDate" : { "type" : "string" }, "hourlyRateModel" : { "type" : "string", "description" : "Defines the model used for the hourly rate.", "enum" : [ "TYPE_PREDEFINED_HOURLY_RATES", "TYPE_PROJECT_SPECIFIC_HOURLY_RATES", "TYPE_FIXED_HOURLY_RATE" ] }, "projectSpecificRates" : { "type" : "array", "description" : "Project specific rates if hourlyRateModel is TYPE_PROJECT_SPECIFIC_HOURLY_RATES. ", "items" : { "$ref" : "#/components/schemas/ProjectSpecificRate" } }, "fixedRate" : { "type" : "number", "description" : "Fixed Hourly rates if hourlyRateModel is TYPE_FIXED_HOURLY_RATE." } } }, "ResponseWrapperProjectSpecificRate" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ProjectSpecificRate" } } }, "ListResponseProjectSpecificRate" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ProjectSpecificRate" } } } }, "ProjectActivities" : { "type" : "object", "properties" : { "showIncome" : { "type" : "boolean", "description" : "Whether income columns are shown", "readOnly" : true }, "fixedPrice" : { "type" : "boolean", "description" : "Whether project is fixed price", "readOnly" : true }, "showHourCost" : { "type" : "boolean", "description" : "Whether hour cost columns are shown", "readOnly" : true }, "currencyCode" : { "type" : "string", "description" : "Project currency code", "readOnly" : true }, "activities" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ProjectStatusActivity" } }, "summary" : { "$ref" : "#/components/schemas/ProjectActivitySummary" } } }, "ProjectActivitySummary" : { "type" : "object", "properties" : { "sumActivityBudgetHours" : { "type" : "number", "description" : "Sum of activity budget hours", "readOnly" : true }, "sumActivityBudgetFeeRateCurrency" : { "type" : "number", "description" : "Average/derived activity budget fee rate", "readOnly" : true }, "sumActivityBudgetFeeCurrency" : { "type" : "number", "description" : "Sum of activity budget fee", "readOnly" : true }, "sumActivityPeriodHours" : { "type" : "number", "description" : "Sum of period hours", "readOnly" : true }, "sumActivityPeriodFeeCurrency" : { "type" : "number", "description" : "Sum of period fee", "readOnly" : true }, "sumActivityPeriodHourCostCurrency" : { "type" : "number", "description" : "Sum of period hour cost", "readOnly" : true }, "sumActivityPeriodNetFeeCurrency" : { "type" : "number", "description" : "Sum of period net fee", "readOnly" : true }, "sumActivityTotalHours" : { "type" : "number", "description" : "Sum of total hours", "readOnly" : true }, "sumActivityTotalFeeCurrency" : { "type" : "number", "description" : "Sum of total fee", "readOnly" : true }, "sumActivityTotalHourCostCurrency" : { "type" : "number", "description" : "Sum of total hour cost", "readOnly" : true }, "sumActivityTotalNetFeeCurrency" : { "type" : "number", "description" : "Sum of total net fee", "readOnly" : true }, "sumActivityLeftHours" : { "type" : "number", "description" : "Sum of left hours", "readOnly" : true }, "sumActivityLeftFeeCurrency" : { "type" : "number", "description" : "Sum of left fee", "readOnly" : true } }, "description" : "Summary aggregation over all activities", "readOnly" : true }, "ProjectStatusActivity" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "description" : "Activity id", "format" : "int64", "readOnly" : true }, "nameAndNumber" : { "type" : "string", "description" : "Activity name and number", "readOnly" : true }, "general" : { "type" : "boolean", "description" : "Whether the activity is a general activity", "readOnly" : true }, "chargeable" : { "type" : "boolean", "description" : "Whether the activity is chargeable", "readOnly" : true }, "closed" : { "type" : "boolean", "description" : "Whether the activity is closed", "readOnly" : true }, "startDate" : { "type" : "string", "description" : "Start date (inclusive)", "format" : "date", "readOnly" : true }, "endDate" : { "type" : "string", "description" : "End date (exclusive domain)", "format" : "date", "readOnly" : true }, "budgetHours" : { "type" : "number", "description" : "Budgeted hours", "readOnly" : true }, "budgetFeeRateCurrency" : { "type" : "number", "description" : "Budget fee hourly rate", "readOnly" : true }, "budgetFeeCurrency" : { "type" : "number", "description" : "Budget fee amount", "readOnly" : true }, "periodHours" : { "type" : "number", "description" : "Hours in selected period", "readOnly" : true }, "periodFeeCurrency" : { "type" : "number", "description" : "Fee in selected period", "readOnly" : true }, "periodHourCostCurrency" : { "type" : "number", "description" : "Hour cost in selected period", "readOnly" : true }, "periodNetFeeCurrency" : { "type" : "number", "description" : "Net fee (fee - cost) in selected period", "readOnly" : true }, "totalHours" : { "type" : "number", "description" : "Total hours to date", "readOnly" : true }, "totalFeeCurrency" : { "type" : "number", "description" : "Total fee to date", "readOnly" : true }, "totalHourCostCurrency" : { "type" : "number", "description" : "Total hour cost to date", "readOnly" : true }, "totalNetFeeCurrency" : { "type" : "number", "description" : "Total net fee to date", "readOnly" : true }, "leftHours" : { "type" : "number", "description" : "Remaining hours (ETC)", "readOnly" : true }, "leftFeeCurrency" : { "type" : "number", "description" : "Remaining fee", "readOnly" : true } } }, "ResponseWrapperProjectActivities" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ProjectActivities" } } }, "Budget" : { "type" : "object", "properties" : { "showIncome" : { "type" : "boolean", "description" : "Indicates if income should be shown in the budget", "readOnly" : true }, "budgetItems" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/BudgetItem" } }, "noBudgetItem" : { "$ref" : "#/components/schemas/BudgetItem" }, "summary" : { "$ref" : "#/components/schemas/BudgetSummary" }, "currencyCode" : { "type" : "string", "description" : "Currency code for the budget amounts", "readOnly" : true } } }, "BudgetItem" : { "type" : "object", "properties" : { "displayName" : { "type" : "string", "description" : "The display name of the budget item", "readOnly" : true }, "budgetIncome" : { "type" : "number", "description" : "The budgeted income amount", "readOnly" : true }, "totalIncome" : { "type" : "number", "description" : "The total income amount", "readOnly" : true }, "deviationIncome" : { "type" : "number", "description" : "The deviation of income from the budget", "readOnly" : true }, "budgetCost" : { "type" : "number", "description" : "The budgeted cost amount", "readOnly" : true }, "totalExpenses" : { "type" : "number", "description" : "The total expenses amount", "readOnly" : true }, "deviationExpenses" : { "type" : "number", "description" : "The deviation of expenses from the budget", "readOnly" : true }, "budgetNetAmount" : { "type" : "number", "description" : "The budgeted net amount (income - cost)", "readOnly" : true }, "totalNetAmount" : { "type" : "number", "description" : "The total net amount (total income - total expenses)", "readOnly" : true }, "deviationNetAmount" : { "type" : "number", "description" : "The deviation of net amount from the budget", "readOnly" : true } }, "description" : "Budget item representing the 'No Budget' category", "readOnly" : true }, "BudgetSummary" : { "type" : "object", "properties" : { "sumBudgetIncome" : { "type" : "number", "description" : "Total budgeted income amount", "readOnly" : true }, "sumTotalIncome" : { "type" : "number", "description" : "Total income amount", "readOnly" : true }, "sumDeviationIncome" : { "type" : "number", "description" : "Deviation of income from the budget", "readOnly" : true }, "sumBudgetCost" : { "type" : "number", "description" : "Total budgeted cost amount", "readOnly" : true }, "sumTotalExpenses" : { "type" : "number", "description" : "Total expenses amount", "readOnly" : true }, "sumDeviationExpenses" : { "type" : "number", "description" : "Deviation of expenses from the budget", "readOnly" : true }, "sumBudgetNetAmount" : { "type" : "number", "description" : "Total budgeted net amount (income - cost)", "readOnly" : true }, "sumTotalNetAmount" : { "type" : "number", "description" : "Total net amount (total income - total expenses)", "readOnly" : true }, "sumDeviationNetAmount" : { "type" : "number", "description" : "Deviation of net amount from the budget", "readOnly" : true } }, "description" : "Summary row for the budget", "readOnly" : true }, "ResponseWrapperBudget" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/Budget" } } }, "ProjectStatusCost" : { "type" : "object", "properties" : { "currencyCode" : { "type" : "string", "description" : "Currency code representing the cost's currency", "readOnly" : true }, "date" : { "type" : "string", "description" : "The date of the cost", "readOnly" : true }, "description" : { "type" : "string", "description" : "Description of the cost", "readOnly" : true }, "cost" : { "type" : "number", "description" : "The cost amount", "readOnly" : true }, "costType" : { "type" : "string", "description" : "The type of costs", "readOnly" : true, "enum" : [ "ORDERLINE", "TRAVEL_REPORT_OR_EMPLOYEE_EXPENSE", "SUBORDER", "PURCHASE_ORDER" ] }, "income" : { "type" : "number", "description" : "The income amount", "readOnly" : true }, "invoiceNumber" : { "type" : "string", "description" : "The invoice number associated with this cost", "readOnly" : true }, "invoiceId" : { "type" : "integer", "description" : "The invoice ID associated with this cost", "format" : "int64", "readOnly" : true }, "vendorId" : { "type" : "integer", "description" : "The vendor ID for the purchase", "format" : "int64", "readOnly" : true }, "vendorName" : { "type" : "string", "description" : "The vendor name for the purchase", "readOnly" : true }, "orderOutId" : { "type" : "integer", "description" : "The out order ID of the purchase ", "format" : "int64", "readOnly" : true }, "orderLineNumber" : { "type" : "string", "description" : "The order number for the suborders", "readOnly" : true }, "orderId" : { "type" : "integer", "description" : "The order ID for the suborders", "format" : "int64", "readOnly" : true }, "travelReportId" : { "type" : "integer", "description" : "The ID of the travel report", "format" : "int64", "readOnly" : true } }, "description" : "All costs associated with the project", "readOnly" : true }, "ProjectStatusCostOverview" : { "type" : "object", "properties" : { "costs" : { "type" : "array", "description" : "All costs associated with the project", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ProjectStatusCost" } }, "totalIncome" : { "type" : "number", "description" : "Total income for the project in its currency", "readOnly" : true }, "totalCost" : { "type" : "number", "description" : "The total cost amount for the project in its currency", "readOnly" : true }, "showIncome" : { "type" : "boolean", "description" : "Flag indicating if income should be visible among costs", "readOnly" : true }, "multipleCurrencies" : { "type" : "boolean", "description" : "Flag indicating whether associated costs use different currencies", "readOnly" : true } } }, "ResponseWrapperProjectStatusCostOverview" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ProjectStatusCostOverview" } } }, "EmployeeMissingHourlyCost" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "displayName" : { "type" : "string" }, "canSetHourlyCost" : { "type" : "boolean" } }, "readOnly" : true }, "ListResponseEmployeeMissingHourlyCost" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/EmployeeMissingHourlyCost" } } } }, "ActivityHoursStatus" : { "type" : "object", "properties" : { "activity" : { "$ref" : "#/components/schemas/Activity" }, "employees" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/EmployeeHoursStatus" } }, "budgetHours" : { "type" : "number", "readOnly" : true }, "totalHours" : { "type" : "number", "readOnly" : true }, "remainingHours" : { "type" : "number", "readOnly" : true }, "forecastHours" : { "type" : "number", "readOnly" : true }, "deviationHours" : { "type" : "number", "readOnly" : true }, "deviationHoursValidationMessage" : { "type" : "string", "readOnly" : true }, "sumEmployeeBudgetHours" : { "type" : "number", "readOnly" : true }, "sumEmployeeBudgetHoursValidationMessage" : { "type" : "string", "readOnly" : true }, "sumEmployeeTotalHours" : { "type" : "number", "readOnly" : true }, "sumEmployeeRemainingHours" : { "type" : "number", "readOnly" : true }, "sumEmployeeRemainingHoursValidationMessage" : { "type" : "string", "readOnly" : true }, "sumEmployeeForecastHours" : { "type" : "number", "readOnly" : true }, "sumEmployeeForecastHoursValidationMessage" : { "type" : "string", "readOnly" : true }, "sumEmployeeDeviationHours" : { "type" : "number", "readOnly" : true }, "sumEmployeeDeviationHoursValidationMessage" : { "type" : "string", "readOnly" : true } }, "description" : "Activities " }, "EmployeeHoursStatus" : { "type" : "object", "properties" : { "employee" : { "$ref" : "#/components/schemas/Employee" }, "budgetHours" : { "type" : "number", "readOnly" : true }, "totalHours" : { "type" : "number", "readOnly" : true }, "remainingHours" : { "type" : "number", "readOnly" : true }, "forecastHours" : { "type" : "number", "readOnly" : true }, "deviationHours" : { "type" : "number", "readOnly" : true }, "deviationHoursValidationMessage" : { "type" : "string", "readOnly" : true } } }, "ProjectHoursStatus" : { "type" : "object", "properties" : { "activityBudgetHours" : { "type" : "number", "readOnly" : true }, "activityBudgetHoursValidationMessage" : { "type" : "string", "readOnly" : true }, "activityTotalHours" : { "type" : "number", "readOnly" : true }, "activityRemainingHours" : { "type" : "number", "readOnly" : true }, "activityForecastHours" : { "type" : "number", "readOnly" : true }, "activityDeviationHours" : { "type" : "number", "readOnly" : true }, "activityDeviationHoursValidationMessage" : { "type" : "string", "readOnly" : true }, "employeeBudgetHours" : { "type" : "number", "readOnly" : true }, "employeeTotalHours" : { "type" : "number", "readOnly" : true }, "employeeRemainingHours" : { "type" : "number", "readOnly" : true }, "employeeForecastHours" : { "type" : "number", "readOnly" : true }, "employeeDeviationHours" : { "type" : "number", "readOnly" : true }, "employeeDeviationHoursValidationMessage" : { "type" : "string", "readOnly" : true }, "projectRemainingHours" : { "type" : "number", "readOnly" : true }, "activities" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ActivityHoursStatus" } } } }, "ResponseWrapperProjectHoursStatus" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ProjectHoursStatus" } } }, "InvoiceReserve" : { "type" : "object", "properties" : { "invoiceAkontoReserveAmountCurrency" : { "type" : "number", "description" : "The total amount reserved for akonto invoices in the project", "readOnly" : true }, "invoiceExtracostsReserveCurrency" : { "type" : "number", "description" : "The total amount reserved for extra costs in the project", "readOnly" : true }, "invoiceFeeReserveCurrency" : { "type" : "number", "description" : "The total amount reserved for fees in the project", "readOnly" : true }, "invoiceReserveTotalAmountCurrency" : { "type" : "number", "description" : "The total amount reserved for the project in the specified currency", "readOnly" : true }, "currencyCode" : { "type" : "string", "description" : "The currency code for the reserved amounts", "readOnly" : true } } }, "ResponseWrapperInvoiceReserve" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/InvoiceReserve" } } }, "ProjectInvoice" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "invoiceNumber" : { "type" : "string", "readOnly" : true }, "invoiceDate" : { "type" : "string", "readOnly" : true }, "comment" : { "type" : "string", "readOnly" : true }, "amountAkontoCurrency" : { "type" : "number", "readOnly" : true }, "amountFeeCurrency" : { "type" : "number", "readOnly" : true }, "amountExpensesCurrency" : { "type" : "number", "readOnly" : true }, "amountExVatCurrency" : { "type" : "number", "readOnly" : true } }, "description" : "Charged invoices for project", "readOnly" : true }, "ProjectStatusInvoice" : { "type" : "object", "properties" : { "invoices" : { "type" : "array", "description" : "Charged invoices for project", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ProjectInvoice" } }, "totalInvoicedAkontoAmountAbsoluteCurrency" : { "type" : "number", "readOnly" : true }, "totalInvoicedFeeAbsoluteCurrency" : { "type" : "number", "readOnly" : true }, "invoicedAmountExpensesCurrency" : { "type" : "number", "readOnly" : true }, "invoicedAmountExVatCurrency" : { "type" : "number", "readOnly" : true } } }, "ResponseWrapperProjectStatusInvoice" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ProjectStatusInvoice" } } }, "ProjectOverallStatus" : { "type" : "object", "properties" : { "hours" : { "type" : "object", "additionalProperties" : { "$ref" : "#/components/schemas/ProjectStatusHoursData" } }, "other" : { "type" : "object", "additionalProperties" : { "$ref" : "#/components/schemas/ProjectStatusOtherData" } }, "total" : { "type" : "object", "additionalProperties" : { "$ref" : "#/components/schemas/ProjectStatusTotalData" } }, "remainingHours" : { "type" : "number" }, "remainingFeePerHour" : { "type" : "number" }, "remainingCostPerHour" : { "type" : "number" } } }, "ProjectStatusHoursData" : { "type" : "object", "properties" : { "hours" : { "type" : "number" }, "referenceFee" : { "type" : "number" }, "fee" : { "type" : "number" }, "feePerHour" : { "type" : "number" }, "cost" : { "type" : "number" }, "costPerHour" : { "type" : "number" }, "net" : { "type" : "number" }, "netPerHour" : { "type" : "number" } } }, "ProjectStatusOtherData" : { "type" : "object", "properties" : { "income" : { "type" : "number" }, "cost" : { "type" : "number" }, "net" : { "type" : "number" } } }, "ProjectStatusTotalData" : { "type" : "object", "properties" : { "income" : { "type" : "number" }, "incomePerHour" : { "type" : "number" }, "cost" : { "type" : "number" }, "costPerHour" : { "type" : "number" }, "net" : { "type" : "number" }, "netPerHour" : { "type" : "number" }, "coverageRate" : { "type" : "number" } } }, "ResponseWrapperProjectOverallStatus" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ProjectOverallStatus" } } }, "ProjectOverallStatusPermissions" : { "type" : "object", "properties" : { "hasBudgetAccess" : { "type" : "boolean", "readOnly" : true }, "hasProjectForecastAccess" : { "type" : "boolean", "readOnly" : true }, "hasReferenceFeeAccess" : { "type" : "boolean", "readOnly" : true }, "hasIncomeAccess" : { "type" : "boolean", "readOnly" : true }, "hasHourCostAccess" : { "type" : "boolean", "readOnly" : true }, "hasLeftHoursWriteAccess" : { "type" : "boolean", "readOnly" : true }, "hasLeftFeeRateWriteAccess" : { "type" : "boolean", "readOnly" : true }, "hasLeftHourCostRateWriteAccess" : { "type" : "boolean", "readOnly" : true } } }, "ResponseWrapperProjectOverallStatusPermissions" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ProjectOverallStatusPermissions" } } }, "ProjectOverallForecast" : { "type" : "object", "properties" : { "originalHours" : { "type" : "number" }, "originalFeePerHour" : { "type" : "number" }, "originalCostPerHour" : { "type" : "number" }, "hours" : { "type" : "number" }, "feePerHour" : { "type" : "number" }, "costPerHour" : { "type" : "number" } } }, "ResponseWrapperProjectOverallForecast" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ProjectOverallForecast" } } }, "ListResponseProjectSubContractStatus" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ProjectSubContractStatus" } } } }, "ProjectSubContract" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "project" : { "$ref" : "#/components/schemas/Project" }, "company" : { "$ref" : "#/components/schemas/Company" }, "budgetFeeCurrency" : { "type" : "number" }, "budgetExpensesCurrency" : { "type" : "number" }, "budgetIncomeCurrency" : { "type" : "number" }, "budgetNetAmountCurrency" : { "type" : "number" }, "displayName" : { "type" : "string" }, "name" : { "type" : "string" }, "description" : { "type" : "string" } }, "readOnly" : true }, "ProjectSubContractPeriod" : { "type" : "object", "properties" : { "totalIncomeCurrency" : { "type" : "number" }, "totalFeeCurrency" : { "type" : "number" }, "totalExpensesCurrency" : { "type" : "number" }, "totalNetAmountCurrency" : { "type" : "number" } }, "description" : "ProjectSubContractPeriod", "readOnly" : true }, "ProjectSubContractStatus" : { "type" : "object", "properties" : { "project" : { "$ref" : "#/components/schemas/Project" }, "projectSubContract" : { "$ref" : "#/components/schemas/ProjectSubContract" }, "projectSubContractPeriod" : { "$ref" : "#/components/schemas/ProjectSubContractPeriod" } }, "readOnly" : true }, "ResponseWrapperProjectStatusActivity" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ProjectStatusActivity" } } }, "ProjectActivityUpdate" : { "type" : "object", "properties" : { "closed" : { "type" : "boolean", "description" : "Closed state of the activity (true=closed, false=open)" }, "endDate" : { "type" : "string", "description" : "End date (exclusive in domain). If empty string we set the end date to null", "format" : "date", "nullable" : true } } }, "ProjectHoursForecast" : { "type" : "object", "properties" : { "forecastHoursByActivity" : { "type" : "object", "additionalProperties" : { "type" : "number", "readOnly" : true }, "readOnly" : true }, "forecastProject" : { "type" : "number", "readOnly" : true } } }, "ResponseWrapperProjectSubContract" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ProjectSubContract" } } }, "ListResponseProjectSubContract" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ProjectSubContract" } } } }, "ResourcePlanActivity" : { "type" : "object", "properties" : { "activityId" : { "type" : "integer", "format" : "int32" }, "activityName" : { "type" : "string" }, "employeeEntries" : { "type" : "array", "description" : "List of EmployeeResourcePlanDTO", "items" : { "$ref" : "#/components/schemas/ResourcePlanEmployee" } } }, "description" : "List of ActivityResourcePlanDTO" }, "ResourcePlanBudget" : { "type" : "object", "properties" : { "projectId" : { "type" : "integer", "format" : "int32" }, "projectName" : { "type" : "string" }, "periodStart" : { "type" : "string" }, "periodEnd" : { "type" : "string" }, "periodType" : { "type" : "string", "enum" : [ "HOUR", "DAY", "WEEK", "MONTH" ] }, "activityEntries" : { "type" : "array", "description" : "List of ActivityResourcePlanDTO", "items" : { "$ref" : "#/components/schemas/ResourcePlanActivity" } } } }, "ResourcePlanEmployee" : { "type" : "object", "properties" : { "employeeId" : { "type" : "integer", "format" : "int32" }, "employeeName" : { "type" : "string" }, "budget" : { "type" : "number" }, "remaining" : { "type" : "number" }, "totalHours" : { "type" : "number" }, "totalAllocated" : { "type" : "number" }, "hoursEntries" : { "type" : "array", "description" : "List of HoursResourcePlanDTO", "items" : { "$ref" : "#/components/schemas/ResourcePlanHours" } } }, "description" : "List of EmployeeResourcePlanDTO" }, "ResourcePlanHours" : { "type" : "object", "properties" : { "label" : { "type" : "string" }, "allocatedHours" : { "type" : "number" }, "workedHours" : { "type" : "number" } }, "description" : "List of HoursResourcePlanDTO" }, "ResponseWrapperResourcePlanBudget" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ResourcePlanBudget" } } }, "ProjectSettings" : { "type" : "object", "properties" : { "approveHourLists" : { "type" : "boolean" }, "approveInvoices" : { "type" : "boolean", "description" : "True if approval and invoicing are separate" }, "markReadyForInvoicing" : { "type" : "boolean" }, "historicalInformation" : { "type" : "boolean" }, "projectForecast" : { "type" : "boolean" }, "budgetOnSubcontracts" : { "type" : "boolean" }, "projectCategories" : { "type" : "boolean" }, "referenceFee" : { "type" : "boolean" }, "sortOrderProjects" : { "type" : "string", "enum" : [ "SORT_ORDER_NAME_AND_NUMBER", "SORT_ORDER_NAME" ] }, "autoCloseInvoicedProjects" : { "type" : "boolean" }, "mustApproveRegisteredHours" : { "type" : "boolean" }, "showProjectOrderLinesToAllProjectParticipants" : { "type" : "boolean" }, "hourCostPercentage" : { "type" : "boolean" }, "fixedPriceProjectsFeeCalcMethod" : { "type" : "string", "enum" : [ "FIXED_PRICE_PROJECTS_CALC_METHOD_INVOICED_FEE", "FIXED_PRICE_PROJECTS_CALC_METHOD_PERCENT_COMPLETED" ] }, "fixedPriceProjectsInvoiceByProgress" : { "type" : "boolean" }, "projectBudgetReferenceFee" : { "type" : "boolean" }, "allowMultipleProjectInvoiceVat" : { "type" : "boolean" }, "standardReinvoicing" : { "type" : "boolean" }, "isCurrentMonthDefaultPeriod" : { "type" : "boolean" }, "showProjectOnboarding" : { "type" : "boolean" }, "autoConnectIncomingOrderlineToProject" : { "type" : "boolean" }, "autoGenerateProjectNumber" : { "type" : "boolean" }, "autoGenerateStartingNumber" : { "minimum" : 0, "type" : "integer", "format" : "int32" }, "projectNameScheme" : { "type" : "string", "enum" : [ "NAME_STANDARD", "NAME_INCL_CUSTOMER_NAME", "NAME_INCL_PARENT_NAME", "NAME_INCL_PARENT_NUMBER", "NAME_INCL_PARENT_NAME_AND_NUMBER" ] }, "projectTypeOfContract" : { "type" : "string", "enum" : [ "PROJECT_FIXED_PRICE", "PROJECT_HOUR_RATES" ] }, "projectOrderLinesSortOrder" : { "type" : "string", "enum" : [ "SORT_ORDER_ID", "SORT_ORDER_DATE", "SORT_ORDER_PRODUCT", "SORT_ORDER_CUSTOM" ] }, "projectHourlyRateModel" : { "type" : "string", "enum" : [ "TYPE_PREDEFINED_HOURLY_RATES", "TYPE_PROJECT_SPECIFIC_HOURLY_RATES", "TYPE_FIXED_HOURLY_RATE" ] }, "onlyProjectMembersCanRegisterInfo" : { "type" : "boolean" }, "onlyProjectActivitiesTimesheetRegistration" : { "type" : "boolean" }, "hourlyRateProjectsWriteUpDown" : { "type" : "boolean" }, "showRecentlyClosedProjectsOnSupplierInvoice" : { "type" : "boolean" }, "defaultProjectContractComment" : { "type" : "string" }, "defaultProjectInvoicingComment" : { "type" : "string" }, "resourcePlanning" : { "type" : "boolean" }, "resourceGroups" : { "type" : "boolean" }, "holidayPlan" : { "type" : "boolean" }, "resourcePlanPeriod" : { "type" : "string", "enum" : [ "PERIOD_MONTH", "PERIOD_WEEK", "PERIOD_DAY" ] }, "customControlForms" : { "type" : "boolean" }, "controlFormsRequiredForInvoicing" : { "type" : "array", "description" : "Control forms required for invoicing", "items" : { "$ref" : "#/components/schemas/ProjectControlFormType" } }, "controlFormsRequiredForHourTracking" : { "type" : "array", "description" : "Control forms required for hour tracking", "items" : { "$ref" : "#/components/schemas/ProjectControlFormType" } }, "dynamicControlFormIdsRequiredForInvoicing" : { "type" : "array", "description" : "Dynamic control form ids required for invoicing", "items" : { "type" : "integer", "description" : "Dynamic control form ids required for invoicing", "format" : "int64" } }, "dynamicControlFormIdsRequiredForHourTracking" : { "type" : "array", "description" : "Dynamic control form ids required for hour tracking", "items" : { "type" : "integer", "description" : "Dynamic control form ids required for hour tracking", "format" : "int64" } }, "useLoggedInUserEmailOnProjectBudget" : { "type" : "boolean" }, "emailOnProjectBudget" : { "type" : "string" }, "useLoggedInUserEmailOnProjectContract" : { "type" : "boolean" }, "emailOnProjectContract" : { "type" : "string" }, "useLoggedInUserEmailOnDocuments" : { "type" : "boolean" }, "emailOnDocuments" : { "type" : "string" }, "useProductNetPrice" : { "type" : "boolean" }, "isNHOMember" : { "type" : "boolean" } } }, "ResponseWrapperProjectSettings" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ProjectSettings" } } }, "CompanyCurrency" : { "type" : "object", "properties" : { "currencyCode" : { "type" : "string", "readOnly" : true }, "currencyId" : { "type" : "integer", "format" : "int64", "readOnly" : true } } }, "ResponseWrapperCompanyCurrency" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/CompanyCurrency" } } }, "ListResponseProjectSupplierInvoiceSummary" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ProjectSupplierInvoiceSummary" } } } }, "ProjectSupplierInvoiceSummary" : { "type" : "object", "properties" : { "invoiceId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "vendorId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "vendorInvoiceNumber" : { "type" : "string", "readOnly" : true }, "expiredVendorInvoice" : { "type" : "boolean", "readOnly" : true }, "voucherId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "voucherNumberAsString" : { "type" : "string", "readOnly" : true }, "accountId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "attachmentId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "documentId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "vendorName" : { "type" : "string", "readOnly" : true }, "departmentName" : { "type" : "string", "readOnly" : true }, "departmentId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "invoiceDate" : { "type" : "string", "readOnly" : true }, "dueDate" : { "type" : "string", "readOnly" : true }, "amountExclVat" : { "type" : "number", "description" : "Amount excluding VAT in the given currency. If multiple postings exist for the same voucher, their amounts are summed.", "readOnly" : true }, "amountInclVat" : { "type" : "number", "description" : "Amount including VAT in the given currency. If multiple postings exist for the same voucher, their amounts are summed.", "readOnly" : true }, "paidAmount" : { "type" : "number", "description" : "Used to specify the prepaid amount of the invoice. If multiple postings exist for the same voucher, their amounts are summed.", "readOnly" : true }, "outstandingAmount" : { "type" : "number", "description" : "The amountCurrency outstanding based on the history collection, excluding reminders. If multiple postings exist for the same voucher, their amounts are summed.", "readOnly" : true }, "currencyCode" : { "type" : "string", "readOnly" : true }, "projectIdToSubProjectNameMap" : { "type" : "object", "additionalProperties" : { "type" : "string", "description" : "A map of project id to sub project name" }, "description" : "A map of project id to sub project name" }, "insufficientInfoForPaidAmount" : { "type" : "boolean", "description" : "Indicator used to show/hide warnings on UI when paid amount calculation has insufficient information.", "readOnly" : true }, "paidAmountInCompanyCurrency" : { "type" : "number", "description" : "Paid amount converted to the company's currency. If multiple currencies are involved, all amounts are converted and summed.", "readOnly" : true }, "outstandingAmountInCompanyCurrency" : { "type" : "number", "description" : "Outstanding amount converted to the company's currency. If multiple currencies are involved, all amounts are converted and summed.", "readOnly" : true }, "amountExclVatInCompanyCurrency" : { "type" : "number", "description" : "Amount excluding VAT converted to the company's currency. If multiple currencies are involved, all amounts are converted and summed.", "readOnly" : true }, "amountInclVatInCompanyCurrency" : { "type" : "number", "description" : "Amount including VAT converted to the company's currency. If multiple currencies are involved, all amounts are converted and summed.", "readOnly" : true }, "closeGroupId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "closed" : { "type" : "boolean", "description" : "Flag to know if the invoice and containing postings are closed", "readOnly" : true } }, "readOnly" : true }, "ListResponseTask" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Task" } } } }, "Task" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "name" : { "type" : "string", "readOnly" : true }, "status" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "ProjectHourlyRateTemplate" : { "type" : "object", "properties" : { "startDate" : { "type" : "string" }, "showInProjectOrder" : { "type" : "boolean", "description" : "Show on contract confirmation/offers" }, "hourlyRateModel" : { "type" : "string", "description" : "Defines the model used for the hourly rate.", "enum" : [ "TYPE_PREDEFINED_HOURLY_RATES", "TYPE_PROJECT_SPECIFIC_HOURLY_RATES", "TYPE_FIXED_HOURLY_RATE" ] }, "projectSpecificRates" : { "type" : "array", "description" : "Project specific rates if hourlyRateModel is TYPE_PROJECT_SPECIFIC_HOURLY_RATES. ", "items" : { "$ref" : "#/components/schemas/ProjectSpecificRateTemplate" } }, "fixedRate" : { "type" : "number", "description" : "Fixed Hourly rates if hourlyRateModel is TYPE_FIXED_HOURLY_RATE." } }, "description" : "Project Rate Types tied to the project." }, "ProjectSpecificRateTemplate" : { "type" : "object", "properties" : { "hourlyRate" : { "type" : "number" }, "hourlyCostPercentage" : { "type" : "number" }, "employee" : { "$ref" : "#/components/schemas/Employee" }, "activity" : { "$ref" : "#/components/schemas/Activity" } }, "description" : "Project specific rates if hourlyRateModel is TYPE_PROJECT_SPECIFIC_HOURLY_RATES. " }, "ProjectTemplate" : { "type" : "object", "properties" : { "name" : { "type" : "string" }, "startDate" : { "type" : "string" }, "endDate" : { "type" : "string" }, "isInternal" : { "type" : "boolean" }, "number" : { "type" : "string" }, "displayNameFormat" : { "type" : "string", "enum" : [ "NAME_STANDARD", "NAME_INCL_CUSTOMER_NAME", "NAME_INCL_PARENT_NAME", "NAME_INCL_PARENT_NUMBER", "NAME_INCL_PARENT_NAME_AND_NUMBER" ] }, "projectManager" : { "$ref" : "#/components/schemas/Employee" }, "department" : { "$ref" : "#/components/schemas/Department" }, "mainProject" : { "$ref" : "#/components/schemas/Project" }, "projectCategory" : { "$ref" : "#/components/schemas/ProjectCategory" }, "reference" : { "type" : "string" }, "externalAccountsNumber" : { "type" : "string" }, "description" : { "type" : "string" }, "invoiceComment" : { "type" : "string", "description" : "Comment for project invoices" }, "attention" : { "$ref" : "#/components/schemas/Contact" }, "contact" : { "$ref" : "#/components/schemas/Contact" }, "customer" : { "$ref" : "#/components/schemas/Customer" }, "deliveryAddress" : { "$ref" : "#/components/schemas/Address" }, "vatType" : { "$ref" : "#/components/schemas/VatType" }, "currency" : { "$ref" : "#/components/schemas/Currency" }, "markUpOrderLines" : { "type" : "number", "description" : "Set mark-up (%) for order lines." }, "markUpFeesEarned" : { "type" : "number", "description" : "Set mark-up (%) for fees earned." }, "isFixedPrice" : { "type" : "boolean", "description" : "Project is fixed price if set to true, hourly rate if set to false." }, "fixedprice" : { "type" : "number", "description" : "Fixed price amount, in the project's currency." }, "isPriceCeiling" : { "type" : "boolean", "description" : "Set to true if an hourly rate project has a price ceiling." }, "priceCeilingAmount" : { "type" : "number", "description" : "Price ceiling amount, in the project's currency." }, "generalProjectActivitiesPerProjectOnly" : { "type" : "boolean", "description" : "Set to true if a general project activity must be linked to project to allow time tracking." }, "forParticipantsOnly" : { "type" : "boolean", "description" : "Set to true if only project participants can register information on the project" }, "projectHourlyRates" : { "type" : "array", "description" : "Project Rate Types tied to the project.", "items" : { "$ref" : "#/components/schemas/ProjectHourlyRateTemplate" } } } }, "ResponseWrapperProjectTemplate" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ProjectTemplate" } } }, "ListResponseObject" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "type" : "object", "readOnly" : true } } } }, "PickupPoint" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "code" : { "type" : "string", "readOnly" : true }, "name" : { "type" : "string", "readOnly" : true }, "transportType" : { "$ref" : "#/components/schemas/TransportType" } }, "description" : "Pickup point, wholesaler specific" }, "ResponseWrapperPickupPoint" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/PickupPoint" } } }, "TransportType" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "nameKey" : { "type" : "string", "readOnly" : true }, "code" : { "type" : "string", "readOnly" : true }, "isPickUp" : { "type" : "boolean", "readOnly" : true }, "displayName" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "ListResponsePickupPoint" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/PickupPoint" } } } }, "PurchaseOrder" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "number" : { "type" : "string", "description" : "Purchase order number - read only" }, "receiverEmail" : { "type" : "string", "description" : "Email when purchase order is send by email." }, "discount" : { "type" : "number", "description" : "Discount Percentage" }, "internalComment" : { "type" : "string" }, "packingNoteMessage" : { "type" : "string", "description" : "Message on packing note.Wholesaler specific." }, "transporterMessage" : { "type" : "string", "description" : "Message to transporter.Wholesaler specific." }, "comments" : { "type" : "string", "description" : "Delivery information and invoice comments" }, "supplier" : { "$ref" : "#/components/schemas/Supplier" }, "deliveryDate" : { "type" : "string" }, "receivedDate" : { "type" : "string" }, "orderLines" : { "type" : "array", "description" : "Order lines tied to the purchase order", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/PurchaseOrderline" } }, "project" : { "$ref" : "#/components/schemas/Project" }, "department" : { "$ref" : "#/components/schemas/Department" }, "deliveryAddress" : { "$ref" : "#/components/schemas/Address" }, "creationDate" : { "type" : "string" }, "isClosed" : { "type" : "boolean" }, "ourContact" : { "$ref" : "#/components/schemas/Employee" }, "supplierContact" : { "$ref" : "#/components/schemas/Employee" }, "attention" : { "$ref" : "#/components/schemas/Employee" }, "status" : { "type" : "string", "enum" : [ "STATUS_OPEN", "STATUS_SENT", "STATUS_RECEIVING", "STATUS_CONFIRMED_DEVIATION_DETECTED", "STATUS_DEVIATION_OPEN", "STATUS_DEVIATION_CONFIRMED", "STATUS_CLOSED", "STATUS_CANCELLED", "STATUS_CONFIRMED" ] }, "currency" : { "$ref" : "#/components/schemas/Currency" }, "restorder" : { "$ref" : "#/components/schemas/PurchaseOrder" }, "transportType" : { "$ref" : "#/components/schemas/TransportType" }, "pickupPoint" : { "$ref" : "#/components/schemas/PickupPoint" }, "document" : { "$ref" : "#/components/schemas/Document" }, "attachment" : { "$ref" : "#/components/schemas/Document" }, "ediDocument" : { "$ref" : "#/components/schemas/Document" }, "lastSentTimestamp" : { "type" : "string" }, "lastSentEmployeeName" : { "type" : "string" }, "hasWholesalerExportUser" : { "type" : "boolean", "description" : "This field is relevant only if the supplier is a wholesaler. It indicates whether the wholesaler's export user is set. Available only on demand.", "readOnly" : true }, "orderLineSorting" : { "type" : "string", "enum" : [ "ID", "PRODUCT", "PRODUCT_DESCENDING", "CUSTOM" ] } }, "description" : "The purchase order to attach the orderline." }, "PurchaseOrderline" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "purchaseOrder" : { "$ref" : "#/components/schemas/PurchaseOrder" }, "product" : { "$ref" : "#/components/schemas/Product" }, "supplierProduct" : { "$ref" : "#/components/schemas/SupplierProduct" }, "resaleProduct" : { "$ref" : "#/components/schemas/Product" }, "description" : { "type" : "string" }, "count" : { "type" : "number" }, "quantityReceived" : { "type" : "number", "description" : "Used if the Purchase Order has a Goods received." }, "unitCostCurrency" : { "type" : "number", "description" : "Unit price purchase (cost) excluding VAT in the order's currency" }, "unitPriceExcludingVatCurrency" : { "type" : "number", "description" : "Unit price of purchase excluding VAT in the order's currency.If it's not specified,it takes the value from purchase price in productDTO" }, "unitListPriceCurrency" : { "type" : "number", "description" : "Unit list price of purchase excluding VAT in the order's currency.If it's not specified,it takes the value from purchase price in productDTO" }, "unitPriceIncVatCurrency" : { "type" : "number", "description" : "Unit price including VAT in the order's currency.If it's not specified,it takes the value from purchase price in productDTO" }, "currency" : { "$ref" : "#/components/schemas/Currency" }, "discount" : { "type" : "number", "description" : "Discount given as a percentage (%)" }, "amountExcludingVatCurrency" : { "type" : "number", "description" : "Total amount on order line excluding VAT in the order's currency" }, "amountIncludingVatCurrency" : { "type" : "number", "description" : "Total amount on order line including VAT in the order's currency", "readOnly" : true }, "customSortIndex" : { "type" : "integer", "format" : "int32" } } }, "ResponseWrapperPurchaseOrder" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/PurchaseOrder" } } }, "ListResponsePurchaseOrder" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/PurchaseOrder" } } } }, "PurchaseOrderEmail" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "email" : { "type" : "string" }, "subject" : { "type" : "string" }, "message" : { "type" : "string" } } }, "PurchaseOrderAddress" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "addressLine1" : { "type" : "string" }, "addressLine2" : { "type" : "string" }, "postalCode" : { "type" : "string" }, "city" : { "type" : "string" }, "country" : { "$ref" : "#/components/schemas/Country" }, "displayName" : { "type" : "string" }, "addressAsString" : { "type" : "string", "readOnly" : true }, "displayNameInklMatrikkel" : { "type" : "string", "readOnly" : true }, "knr" : { "minimum" : 0, "type" : "integer", "format" : "int32" }, "gnr" : { "minimum" : 0, "type" : "integer", "format" : "int32" }, "bnr" : { "minimum" : 0, "type" : "integer", "format" : "int32" }, "fnr" : { "minimum" : 0, "type" : "integer", "format" : "int32" }, "snr" : { "minimum" : 0, "type" : "integer", "format" : "int32" }, "unitNumber" : { "type" : "string" }, "name" : { "type" : "string" }, "customerVendor" : { "$ref" : "#/components/schemas/Customer" } }, "readOnly" : true }, "ResponseWrapperPurchaseOrderAddress" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/PurchaseOrderAddress" } } }, "ListResponsePurchaseOrderAddress" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/PurchaseOrderAddress" } } } }, "ListResponsePurchaseOrderInternal" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/PurchaseOrderInternal" } } } }, "PurchaseOrderInternal" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "totalAmount" : { "type" : "number", "description" : "totalAmount" } }, "readOnly" : true }, "ResponseWrapperTransportType" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/TransportType" } } }, "ListResponseTransportType" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/TransportType" } } } }, "Deviation" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "purchaseOrderLine" : { "$ref" : "#/components/schemas/PurchaseOrderline" }, "date" : { "type" : "string" }, "cause" : { "type" : "string", "enum" : [ "CAUSE_DEFECT", "CAUSE_TOO_FEW", "CAUSE_TOO_MANY", "CAUSE_REPLACEMENT" ] }, "action" : { "type" : "string", "enum" : [ "ACTION_IGNORE", "ACTION_GENERATE_RESTORDER", "ACTION_RETURN", "ACTION_RETURN_GENERATE_RESTORDER" ] }, "comment" : { "type" : "string" }, "receivedBy" : { "type" : "string", "readOnly" : true }, "quantityOrdered" : { "type" : "number", "readOnly" : true }, "quantityReceived" : { "type" : "number", "readOnly" : true }, "deviation" : { "type" : "number", "readOnly" : true } }, "readOnly" : true }, "ResponseWrapperDeviation" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/Deviation" } } }, "ListResponseDeviation" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Deviation" } } } }, "GoodsReceipt" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "purchaseOrder" : { "$ref" : "#/components/schemas/PurchaseOrder" }, "registrationDate" : { "type" : "string" }, "receivedBy" : { "$ref" : "#/components/schemas/Employee" }, "status" : { "type" : "string", "readOnly" : true, "enum" : [ "STATUS_OPEN", "STATUS_CONFIRMED" ] }, "comment" : { "type" : "string" }, "goodsReceiptLines" : { "type" : "array", "description" : "Purchase Order lines tied to the goods receipt", "items" : { "$ref" : "#/components/schemas/GoodsReceiptLine" } } }, "readOnly" : true }, "GoodsReceiptLine" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "purchaseOrder" : { "$ref" : "#/components/schemas/PurchaseOrder" }, "product" : { "$ref" : "#/components/schemas/Product" }, "resaleProduct" : { "$ref" : "#/components/schemas/Product" }, "inventory" : { "$ref" : "#/components/schemas/Inventory" }, "inventoryLocation" : { "$ref" : "#/components/schemas/InventoryLocation" }, "quantityOrdered" : { "type" : "number", "readOnly" : true }, "quantityReceived" : { "type" : "number" }, "quantityRest" : { "type" : "number", "readOnly" : true }, "deviation" : { "type" : "number", "readOnly" : true } }, "readOnly" : true }, "ResponseWrapperGoodsReceipt" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/GoodsReceipt" } } }, "ListResponseGoodsReceipt" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/GoodsReceipt" } } } }, "ResponseWrapperGoodsReceiptLine" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/GoodsReceiptLine" } } }, "ListResponseGoodsReceiptLine" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/GoodsReceiptLine" } } } }, "PurchaseOrderIncomingInvoiceRelation" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "orderOut" : { "$ref" : "#/components/schemas/PurchaseOrder" }, "voucher" : { "$ref" : "#/components/schemas/Voucher" } }, "readOnly" : true }, "ResponseWrapperPurchaseOrderIncomingInvoiceRelation" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/PurchaseOrderIncomingInvoiceRelation" } } }, "ListResponsePurchaseOrderIncomingInvoiceRelation" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/PurchaseOrderIncomingInvoiceRelation" } } } }, "ResponseWrapperPurchaseOrderline" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/PurchaseOrderline" } } }, "ListResponsePurchaseOrderline" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/PurchaseOrderline" } } } }, "RackbeatInventoryValue" : { "type" : "object", "properties" : { "rackbeatInventoryValue" : { "type" : "string" }, "tripletexInventoryValue" : { "type" : "string" }, "voucherDate" : { "type" : "string" }, "accountDebit" : { "type" : "integer", "format" : "int32" }, "accountCredit" : { "type" : "integer", "format" : "int32" } } }, "ResponseWrapperRackbeatInventoryValue" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/RackbeatInventoryValue" } } }, "ResponseWrapperReminder" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/Reminder" } } }, "ListResponseReminder" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Reminder" } } } }, "CellBlueprintV1" : { "type" : "object", "properties" : { "columnReference" : { "type" : "string" }, "rowReference" : { "type" : "string" }, "expression" : { "type" : "string" }, "variableName" : { "type" : "string" }, "valueFormat" : { "type" : "string" }, "cellFormat" : { "type" : "string" }, "version" : { "type" : "integer", "format" : "int32" } } }, "HeaderBlueprintV1" : { "type" : "object", "properties" : { "name" : { "type" : "string" }, "description" : { "type" : "string" }, "hideSelf" : { "type" : "boolean" }, "visibilityExpression" : { "type" : "string" }, "removeEmpty" : { "type" : "boolean" }, "expression" : { "type" : "string" }, "variableName" : { "type" : "string" }, "valueFormat" : { "type" : "string" }, "cellFormat" : { "type" : "string" }, "reference" : { "type" : "string" }, "initialExpansionState" : { "type" : "integer", "format" : "int32" }, "filter" : { "$ref" : "#/components/schemas/ReportGroupFilter" }, "autoGroup" : { "$ref" : "#/components/schemas/ReportGroupAutoGroup" }, "children" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/HeaderBlueprintV1" } }, "version" : { "type" : "integer", "format" : "int32" } } }, "ListResponseReportAccess" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ReportAccess" } } } }, "Report" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "name" : { "type" : "string", "description" : "Shortcut for Report name", "readOnly" : true }, "description" : { "type" : "string", "description" : "Shortcut for Report description", "readOnly" : true }, "helpComponent" : { "minimum" : 0, "type" : "integer", "description" : "helpComponent", "format" : "int32" }, "blueprint" : { "$ref" : "#/components/schemas/ReportBlueprintV2" } }, "description" : "The target resource to be granted permissions for" }, "ReportAccess" : { "type" : "object", "properties" : { "report" : { "$ref" : "#/components/schemas/Report" }, "grant" : { "$ref" : "#/components/schemas/ReportAuthorization" }, "reason" : { "type" : "string", "description" : "The reason for having access", "readOnly" : true, "enum" : [ "Global", "Owner", "Administrator", "Shared", "None" ] } }, "description" : "Metadata of what Report this render is for and how it is accessible", "readOnly" : true }, "ReportAuthorization" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "granter" : { "$ref" : "#/components/schemas/Employee" }, "granterDelegatorId" : { "minimum" : 0, "type" : "integer", "description" : "If set specifies the delegator to the granter proxy employee.", "format" : "int64" }, "subject" : { "$ref" : "#/components/schemas/Employee" }, "subjectDelegatorId" : { "minimum" : 0, "type" : "integer", "description" : "If set specifies the delegator to the subject proxy employee.", "format" : "int64" }, "report" : { "$ref" : "#/components/schemas/Report" }, "status" : { "type" : "string", "description" : "The status of this grant of authorization", "enum" : [ "Rejected", "Granted" ] }, "permission" : { "type" : "string", "description" : "The specific permission this grant of authorization is for", "enum" : [ "Invalid", "ViewResult", "Owner" ] }, "granterDelegatorCompanyId" : { "minimum" : 0, "type" : "integer", "description" : "The company id of the granter delegator", "format" : "int64" }, "subjectDelegatorCompanyId" : { "minimum" : 0, "type" : "integer", "description" : "The company id of the subject delegator", "format" : "int64" }, "subjectDelegatorName" : { "type" : "string", "description" : "The name of the subject delegator" } }, "description" : "The relevant grant of permission, if applicable", "readOnly" : true }, "ReportBlueprintV2" : { "type" : "object", "properties" : { "name" : { "type" : "string" }, "description" : { "type" : "string" }, "settings" : { "$ref" : "#/components/schemas/ReportSettings" }, "columns" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/HeaderBlueprintV1" } }, "rows" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/HeaderBlueprintV1" } }, "cells" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/CellBlueprintV1" } }, "version" : { "type" : "integer", "format" : "int32" } }, "description" : "blueprint" }, "ReportGroupAutoGroup" : { "type" : "object", "properties" : { "type" : { "type" : "integer", "format" : "int32" }, "defaultOrder" : { "type" : "string", "enum" : [ "Ascending", "Descending" ] }, "orderBy" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ReportGroupOrderBy" } }, "version" : { "type" : "integer", "format" : "int32" } } }, "ReportGroupOrderBy" : { "type" : "object", "properties" : { "order" : { "type" : "string", "enum" : [ "Ascending", "Descending" ] }, "expression" : { "type" : "string" } } }, "ReportSettings" : { "type" : "object", "properties" : { "headers" : { "$ref" : "#/components/schemas/ReportSettingsHeaders" }, "filters" : { "$ref" : "#/components/schemas/ReportSettingsFilters" }, "feedback" : { "$ref" : "#/components/schemas/ReportSettingsFeedback" }, "access" : { "$ref" : "#/components/schemas/ReportSettingsAccess" }, "version" : { "type" : "integer", "format" : "int32" } }, "description" : "Metadata describing the report settings", "readOnly" : true }, "ReportSettingsAccess" : { "type" : "object", "properties" : { "expression" : { "type" : "string" }, "version" : { "type" : "integer", "format" : "int32" } } }, "ReportSettingsFeedback" : { "type" : "object", "properties" : { "channel" : { "type" : "string" }, "team" : { "type" : "string" }, "version" : { "type" : "integer", "format" : "int32" } } }, "ReportSettingsFilters" : { "type" : "object", "properties" : { "order" : { "type" : "array", "items" : { "type" : "string", "enum" : [ "period", "account", "customer", "customerCategory1", "customerCategory2", "customerCategory3", "supplier", "employee", "department", "project", "projectCategory", "product", "activity", "freeDimension1", "freeDimension2", "freeDimension3" ] } }, "options" : { "$ref" : "#/components/schemas/ReportSettingsOptions" }, "version" : { "type" : "integer", "format" : "int32" } } }, "ReportSettingsFiltersOptionsPeriod" : { "type" : "object", "properties" : { "divisions" : { "type" : "object", "additionalProperties" : { "type" : "boolean" } }, "shortcuts" : { "type" : "object", "additionalProperties" : { "type" : "boolean" } }, "stepSize" : { "type" : "string", "enum" : [ "Day", "Week", "Month", "WageTerm", "VatTerm", "Year" ] }, "initialValueProvider" : { "type" : "string", "enum" : [ "All", "ThisDay", "ThisWeek", "NextSevenDays", "NextThirtyDays", "ThisMonth", "ThisYear", "SoFarThisWeek", "SoFarThisMonth", "SoFarThisYear", "LastYear" ] }, "start" : { "type" : "string" }, "end" : { "type" : "string" }, "version" : { "type" : "integer", "format" : "int32" } } }, "ReportSettingsHeaders" : { "type" : "object", "properties" : { "showColumnHeaders" : { "type" : "boolean" }, "showRowHeaders" : { "type" : "boolean" }, "columnHeaderVisibilityExpression" : { "type" : "string" }, "rowHeaderVisibilityExpression" : { "type" : "string" }, "version" : { "type" : "integer", "format" : "int32" } } }, "ReportSettingsOptions" : { "type" : "object", "properties" : { "period" : { "$ref" : "#/components/schemas/ReportSettingsFiltersOptionsPeriod" }, "version" : { "type" : "integer", "format" : "int32" } } }, "ListResponseReportClientAccess" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ReportClientAccess" } } } }, "ReportClientAccess" : { "type" : "object", "properties" : { "reportAccess" : { "type" : "array", "description" : "All ReportAccess for this client", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ReportAccess" } }, "clientName" : { "type" : "string", "description" : "The name of the client these ReportAccess are for", "readOnly" : true }, "clientId" : { "type" : "integer", "description" : "The id of the client these ReportAccess are for", "format" : "int64", "readOnly" : true } }, "readOnly" : true }, "ResponseWrapperReport" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/Report" } } }, "ListResponseReport" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Report" } } } }, "ReportResult" : { "type" : "object", "properties" : { "name" : { "type" : "string" }, "columnHeaders" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ReportResultColumnHeader" } }, "rowHeaders" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ReportResultRowHeader" } }, "tableContent" : { "type" : "array", "items" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ReportResultCell" } } }, "rowDepth" : { "type" : "integer", "format" : "int32" }, "height" : { "type" : "integer", "format" : "int32" }, "columnDepth" : { "type" : "integer", "format" : "int32" }, "width" : { "type" : "integer", "format" : "int32" } }, "description" : "The Report result", "readOnly" : true }, "ReportResultCell" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ReportResultCellValue" }, "formatted" : { "type" : "string" }, "style" : { "type" : "array", "items" : { "type" : "string" } }, "link" : { "type" : "string" } } }, "ReportResultCellValue" : { "type" : "object", "properties" : { "value" : { "type" : "object" }, "type" : { "type" : "string", "enum" : [ "NULL", "NUMBER", "STRING", "BOOLEAN", "DATE", "ERROR", "REFERENCE", "ARRAY", "OBJECT" ] } } }, "ReportResultColumnHeader" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ReportResultCellValue" }, "formatted" : { "type" : "string" }, "style" : { "type" : "array", "items" : { "type" : "string" } }, "initiallyExpanded" : { "type" : "boolean" }, "sourceRef" : { "type" : "string" }, "autoGroupType" : { "type" : "integer", "format" : "int32" }, "leaf" : { "type" : "boolean" }, "leafCount" : { "type" : "integer", "format" : "int32" }, "depth" : { "type" : "integer", "format" : "int32" }, "link" : { "type" : "string" } } }, "ReportResultEnvelope" : { "type" : "object", "properties" : { "result" : { "$ref" : "#/components/schemas/ReportResult" }, "access" : { "$ref" : "#/components/schemas/ReportAccess" }, "settings" : { "$ref" : "#/components/schemas/ReportSettings" } } }, "ReportResultRowHeader" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ReportResultCellValue" }, "formatted" : { "type" : "string" }, "style" : { "type" : "array", "items" : { "type" : "string" } }, "initiallyExpanded" : { "type" : "boolean" }, "sourceRef" : { "type" : "string" }, "autoGroupType" : { "type" : "integer", "format" : "int32" }, "leafCount" : { "type" : "integer", "format" : "int32" }, "depth" : { "type" : "integer", "format" : "int32" }, "link" : { "type" : "string" } } }, "ResponseWrapperReportResultEnvelope" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ReportResultEnvelope" } } }, "ResponseWrapperReportAccess" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ReportAccess" } } }, "ResponseWrapperReportAuthorization" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ReportAuthorization" } } }, "ListResponseReportAuthorization" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ReportAuthorization" } } } }, "ReelDocumentation" : { "type" : "object", "properties" : { "summaryKey" : { "type" : "string", "description" : "The summary text key" }, "descriptionKey" : { "type" : "string", "description" : "The description text key" } }, "description" : "The documentation for this function" }, "ReelDomain" : { "type" : "object", "properties" : { "namespace" : { "type" : "string", "description" : "The namespace of the domain", "readOnly" : true }, "name" : { "type" : "string", "description" : "The name of the domain", "readOnly" : true }, "functions" : { "type" : "array", "description" : "The functions of the domain", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ReelFunction" } }, "documentation" : { "$ref" : "#/components/schemas/ReelDocumentation" } }, "readOnly" : true }, "ReelFunction" : { "type" : "object", "properties" : { "name" : { "type" : "string", "description" : "The name of the function" }, "namespace" : { "type" : "string", "description" : "The domain namespace of the function" }, "documentation" : { "$ref" : "#/components/schemas/ReelDocumentation" } }, "readOnly" : true }, "ResponseWrapperReelDomain" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ReelDomain" } } }, "ListResponseReelDomain" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ReelDomain" } } } }, "ListResponseReelFunction" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ReelFunction" } } } }, "ReportResultParameters" : { "type" : "object", "properties" : { "filter" : { "$ref" : "#/components/schemas/ReportGroupFilter" }, "expandState" : { "type" : "object", "additionalProperties" : { "type" : "boolean" } } } }, "ListResponseSystemReportCategory" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/SystemReportCategory" } } } }, "SystemReport" : { "type" : "object", "properties" : { "textKey" : { "type" : "string", "description" : "The text key for the name of the report", "readOnly" : true }, "text" : { "type" : "string", "description" : "The name of the report", "readOnly" : true }, "path" : { "type" : "string", "description" : "The path to the report", "readOnly" : true }, "sorting" : { "type" : "integer", "description" : "Sorting order of the report (lower appears first, 0–99).", "format" : "int32", "readOnly" : true } }, "description" : "The reports in this report category", "readOnly" : true }, "SystemReportCategory" : { "type" : "object", "properties" : { "textKey" : { "type" : "string", "description" : "The text key for the name of the report category", "readOnly" : true }, "theme" : { "type" : "string", "description" : "The theme of the report category", "readOnly" : true }, "icon" : { "type" : "string", "description" : "The icon for the report category", "readOnly" : true }, "reports" : { "type" : "array", "description" : "The reports in this report category", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/SystemReport" } }, "subCategories" : { "type" : "array", "description" : "The report categories in this report category", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/SystemReportCategory" } } }, "readOnly" : true }, "ResourceMessages" : { "type" : "object", "properties" : { "no" : { "type" : "object", "additionalProperties" : { "type" : "string", "description" : "Map of key value pairs for Norwegian text" }, "description" : "Map of key value pairs for Norwegian text" }, "en" : { "type" : "object", "additionalProperties" : { "type" : "string", "description" : "Map of key value pairs for English text" }, "description" : "Map of key value pairs for English text" } } }, "ResponseWrapperResourceMessages" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ResourceMessages" } } }, "ResourceMessagesArgs" : { "type" : "object", "properties" : { "keys" : { "type" : "array", "items" : { "type" : "string" } } } }, "RP2Permissions" : { "type" : "object", "properties" : { "canViewEmployees" : { "type" : "boolean" }, "canViewProjects" : { "type" : "boolean" }, "canSeeOtherEmployees" : { "type" : "boolean" }, "canOpenJobs" : { "type" : "boolean" }, "canEdit" : { "type" : "boolean" }, "canCreate" : { "type" : "boolean" }, "canDelete" : { "type" : "boolean" }, "canFilter" : { "type" : "boolean" }, "canBatchEdit" : { "type" : "boolean" }, "canBatchSelect" : { "type" : "boolean" }, "canBatchDelete" : { "type" : "boolean" }, "canAssignOwnProjects" : { "type" : "boolean" }, "canAssignAllProjects" : { "type" : "boolean" } } }, "ResponseWrapperRP2Permissions" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/RP2Permissions" } } }, "RP2ModalPermissions" : { "type" : "object", "properties" : { "readonly" : { "type" : "boolean" } } }, "ResponseWrapperRP2ModalPermissions" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/RP2ModalPermissions" } } }, "ListResponseRP2EmployeeAvailableTime" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/RP2EmployeeAvailableTime" } } } }, "RP2EmployeeAvailableTime" : { "type" : "object", "properties" : { "employeeId" : { "minimum" : 0, "type" : "integer", "format" : "int64" }, "periodId" : { "minimum" : 1, "type" : "integer", "format" : "int32" }, "duration" : { "type" : "number" }, "durationUnit" : { "type" : "string" } }, "readOnly" : true }, "ListResponseRP2EmployeeBookedTime" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/RP2EmployeeBookedTime" } } } }, "RP2EmployeeBookedTime" : { "type" : "object", "properties" : { "employeeId" : { "type" : "integer", "format" : "int64" }, "periodId" : { "minimum" : 1, "type" : "integer", "format" : "int32" }, "duration" : { "type" : "number" }, "durationUnit" : { "type" : "string" } }, "readOnly" : true }, "ListResponseRP2EmployeeJob" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/RP2EmployeeJob" } } } }, "RP2EmployeeJob" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int32" }, "label" : { "type" : "string" }, "subLabel" : { "type" : "string" }, "duration" : { "type" : "number" }, "durationUnit" : { "type" : "string" }, "periodId" : { "minimum" : 1, "type" : "integer", "format" : "int32" }, "subPeriodId" : { "minimum" : 1, "type" : "integer", "format" : "int32" }, "startDate" : { "type" : "string" }, "startTime" : { "type" : "string" }, "endTime" : { "type" : "string" } }, "readOnly" : true }, "RP2EmployeeJobMoveResponse" : { "type" : "object", "properties" : { "jobId" : { "type" : "integer", "format" : "int32" }, "employeeIds" : { "type" : "array", "items" : { "type" : "integer", "format" : "int32" } } } }, "ResponseWrapperRP2EmployeeJobMoveResponse" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/RP2EmployeeJobMoveResponse" } } }, "RP2JobTemplate" : { "type" : "object", "properties" : { "employeeIds" : { "type" : "array", "description" : "List of employeeIds assigned to the job", "items" : { "type" : "integer", "description" : "List of employeeIds assigned to the job", "format" : "int32" } }, "activityId" : { "minimum" : 0, "type" : "integer", "format" : "int32" }, "projectId" : { "minimum" : 0, "type" : "integer", "format" : "int32" }, "date" : { "type" : "string" }, "durationAmount" : { "type" : "number" }, "durationUnit" : { "type" : "string" }, "description" : { "type" : "string" }, "periodCount" : { "minimum" : 1, "type" : "integer", "format" : "int32" }, "startTime" : { "type" : "string" }, "endTime" : { "type" : "string" } } }, "ResponseWrapperRP2JobTemplate" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/RP2JobTemplate" } } }, "RP2JobPatchTemplate" : { "type" : "object", "properties" : { "employeeIds" : { "type" : "array", "description" : "List of employeeIds assigned to the job", "items" : { "type" : "integer", "description" : "List of employeeIds assigned to the job", "format" : "int32" } }, "activityId" : { "minimum" : 0, "type" : "integer", "format" : "int32" }, "projectId" : { "minimum" : 0, "type" : "integer", "format" : "int32" }, "date" : { "type" : "string" }, "durationAmount" : { "type" : "number" }, "durationUnit" : { "type" : "string" }, "description" : { "type" : "string" }, "startTime" : { "type" : "string" }, "endTime" : { "type" : "string" } } }, "ListResponseRP2ProjectBookedTime" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/RP2ProjectBookedTime" } } } }, "RP2ProjectBookedTime" : { "type" : "object", "properties" : { "projectId" : { "type" : "integer", "format" : "int64" }, "periodId" : { "minimum" : 1, "type" : "integer", "format" : "int32" }, "duration" : { "type" : "number" }, "durationUnit" : { "type" : "string" } }, "readOnly" : true }, "ListResponseRP2ProjectJob" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/RP2ProjectJob" } } } }, "RP2ProjectJob" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int32" }, "label" : { "type" : "string" }, "subLabel" : { "type" : "string" }, "duration" : { "type" : "number" }, "durationUnit" : { "type" : "string" }, "periodId" : { "minimum" : 1, "type" : "integer", "format" : "int32" }, "subPeriodId" : { "minimum" : 1, "type" : "integer", "format" : "int32" }, "startDate" : { "type" : "string" }, "startTime" : { "type" : "string" }, "endTime" : { "type" : "string" } }, "readOnly" : true }, "RP2ProjectJobMoveResponse" : { "type" : "object", "properties" : { "jobId" : { "type" : "integer", "format" : "int32" }, "projectId" : { "type" : "integer", "format" : "int32" } } }, "ResponseWrapperRP2ProjectJobMoveResponse" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/RP2ProjectJobMoveResponse" } } }, "ListResponseRP2TotalTime" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/RP2TotalTime" } } } }, "RP2TotalTime" : { "type" : "object", "properties" : { "periodId" : { "maximum" : 7, "minimum" : 1, "type" : "integer", "format" : "int32" }, "duration" : { "type" : "number" }, "durationUnit" : { "type" : "string" } }, "readOnly" : true }, "ListResponseResultBudget" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ResultBudget" } } } }, "ResultBudget" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "account" : { "$ref" : "#/components/schemas/Account" }, "accountingPeriod" : { "$ref" : "#/components/schemas/AccountingPeriod" }, "amount" : { "type" : "number" }, "department" : { "$ref" : "#/components/schemas/Department" }, "project" : { "$ref" : "#/components/schemas/Project" }, "product" : { "$ref" : "#/components/schemas/Product" }, "employee" : { "$ref" : "#/components/schemas/Employee" }, "resultBudgetType" : { "type" : "string", "readOnly" : true, "enum" : [ "COMPANY", "DEPARTMENT", "EMPLOYEE", "PROJECT", "PRODUCT" ] } }, "readOnly" : true }, "ResponseWrapperResultBudget" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ResultBudget" } } }, "ResponseWrapperSalaryType" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/SalaryType" } } }, "ListResponseSalaryType" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/SalaryType" } } } }, "ResponseWrapperAmeldingStatusInternal" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/AmeldingStatusInternal" } } }, "AmeldingType" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "displayName" : { "type" : "string", "description" : "displayName", "readOnly" : true }, "code" : { "type" : "string", "description" : "code", "readOnly" : true }, "type" : { "type" : "integer", "description" : "type", "format" : "int32", "readOnly" : true } }, "readOnly" : true }, "ListResponseAmeldingType" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/AmeldingType" } } } }, "CompanyEmployeeRate" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "hourlyRate" : { "type" : "number", "readOnly" : true }, "hourlyCost" : { "type" : "number", "readOnly" : true } }, "readOnly" : true }, "ResponseWrapperCompanyEmployeeRate" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/CompanyEmployeeRate" } } }, "EmployeeOverviewBodyArgs" : { "type" : "object", "properties" : { "employeeIds" : { "type" : "string" }, "employeeIdsToShowOnTop" : { "type" : "string" }, "query" : { "type" : "string" } } }, "EmployeeOverview" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "firstName" : { "type" : "string" }, "lastName" : { "type" : "string" }, "displayName" : { "type" : "string", "readOnly" : true }, "number" : { "type" : "string" }, "dateOfBirth" : { "type" : "string" }, "email" : { "type" : "string" }, "phoneNumberMobile" : { "type" : "string", "readOnly" : true }, "phoneNumberHome" : { "type" : "string" }, "phoneNumberWork" : { "type" : "string" }, "nationalIdentityNumber" : { "type" : "string" }, "isContact" : { "type" : "boolean", "readOnly" : true }, "address" : { "$ref" : "#/components/schemas/Address" }, "department" : { "$ref" : "#/components/schemas/Department" }, "employeeCategory" : { "$ref" : "#/components/schemas/EmployeeCategory" }, "pictureId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "companyId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "lastActiveEmployment" : { "$ref" : "#/components/schemas/Employment" }, "currentCompanyEmployeeRate" : { "$ref" : "#/components/schemas/CompanyEmployeeRate" }, "deliveryMethodWageSlipString" : { "type" : "string", "readOnly" : true }, "bankAccountNumber" : { "type" : "string" }, "allowLogin" : { "type" : "boolean" }, "authReadOnly" : { "type" : "boolean" }, "isProxy" : { "type" : "boolean" }, "vismaConnect2FAactive" : { "type" : "boolean", "readOnly" : true }, "hasResigned" : { "type" : "boolean", "readOnly" : true }, "isUserAdministrator" : { "type" : "boolean", "readOnly" : true }, "allowRegInfo" : { "type" : "boolean", "readOnly" : true }, "socialSecurityNumberOrDNumber" : { "type" : "string", "readOnly" : true }, "isPayslipOnly" : { "type" : "boolean", "readOnly" : true }, "employmentDetails" : { "$ref" : "#/components/schemas/EmploymentDetails" }, "employeeApprover" : { "$ref" : "#/components/schemas/Employee" }, "employeeApproverRelationType" : { "type" : "string", "readOnly" : true, "enum" : [ "DEPARTMENT_MANAGER", "NONE", "CUSTOM" ] } }, "readOnly" : true }, "ListResponseEmployeeOverview" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/EmployeeOverview" } } } }, "ResponseWrapperTskInternalContextDTO" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/TskInternalContextDTO" } } }, "TskInternalContextDTO" : { "type" : "object", "properties" : { "companyName" : { "type" : "string", "readOnly" : true }, "hasDepartment" : { "type" : "boolean", "readOnly" : true }, "hasEmployeeCategory" : { "type" : "boolean", "readOnly" : true }, "hasDivision" : { "type" : "boolean", "readOnly" : true }, "maxEmployeesPerSalaryTransaction" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "isPilotSalaryRun" : { "type" : "boolean", "readOnly" : true }, "contextCompanyId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "loginEmployeeId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "actualEmployeeId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "isProxyLogin" : { "type" : "boolean", "readOnly" : true }, "isShowSalaryOnboarding" : { "type" : "boolean", "readOnly" : true }, "isPayInAdvance" : { "type" : "boolean", "readOnly" : true }, "isTestAccount" : { "type" : "boolean", "readOnly" : true }, "isTrialAccount" : { "type" : "boolean", "readOnly" : true }, "authLevelWage" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "authLevelEmployeeOrWage" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "userDepartmentId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "newCustomerFrom2025" : { "type" : "boolean" } } }, "CreateSalaryEmployee" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "firstName" : { "type" : "string" }, "lastName" : { "type" : "string" }, "displayName" : { "type" : "string", "readOnly" : true }, "number" : { "type" : "string" }, "department" : { "$ref" : "#/components/schemas/Department" }, "employeeCategory" : { "$ref" : "#/components/schemas/EmployeeCategory" }, "pictureId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "isContact" : { "type" : "boolean", "readOnly" : true } }, "description" : "Employee", "readOnly" : true }, "ResponseWrapperCreateSalaryEmployee" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/CreateSalaryEmployee" } } }, "ResponseWrapperSalaryV2Employee" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/SalaryV2Employee" } } }, "SalaryV2Employee" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "firstName" : { "type" : "string" }, "lastName" : { "type" : "string" }, "displayName" : { "type" : "string", "readOnly" : true }, "employeeNumber" : { "type" : "string" }, "department" : { "$ref" : "#/components/schemas/Department" }, "pictureId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "phoneNumberSmsCertified" : { "type" : "string", "readOnly" : true }, "nameAndNumber" : { "type" : "string", "readOnly" : true }, "bankAccountOrIban" : { "type" : "string", "readOnly" : true } } }, "ListResponseSalaryV2AMessageWageOverview" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/SalaryV2AMessageWageOverview" } } } }, "SalaryV2AMessageWageOverview" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "period" : { "type" : "string", "readOnly" : true }, "date" : { "type" : "string" }, "status" : { "type" : "string", "readOnly" : true }, "voucherId" : { "type" : "integer", "format" : "int32", "readOnly" : true } }, "readOnly" : true }, "ListResponseSalaryV2PensionVoucher" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/SalaryV2PensionVoucher" } } } }, "SalaryV2PensionVoucher" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "voucherNumberAsString" : { "type" : "string", "readOnly" : true }, "datePeriod" : { "type" : "string", "readOnly" : true }, "voucherDate" : { "type" : "string" }, "displayName" : { "type" : "string", "readOnly" : true }, "ameldingWageId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "voucherId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "ameldingDueDate" : { "type" : "string" }, "ameldingStatus" : { "type" : "string", "readOnly" : true, "enum" : [ "NEUTRAL", "SUCCESS", "WARNING", "WARNING_GUIDELINE", "ERROR", "ERROR_IMMEDIATELY", "ERROR_REJECTED" ] }, "eniBasis" : { "type" : "number", "readOnly" : true } }, "readOnly" : true }, "ListResponseSalaryV2OverviewReimbursements" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/SalaryV2OverviewReimbursements" } } } }, "SalaryV2OverviewReimbursements" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "voucherNumberAsString" : { "type" : "string", "readOnly" : true }, "datePeriod" : { "type" : "string", "readOnly" : true }, "voucherDate" : { "type" : "string" }, "displayName" : { "type" : "string", "readOnly" : true }, "ameldingWageId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "voucherId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "ameldingDueDate" : { "type" : "string" }, "ameldingStatus" : { "type" : "string", "readOnly" : true, "enum" : [ "NEUTRAL", "SUCCESS", "WARNING", "WARNING_GUIDELINE", "ERROR", "ERROR_IMMEDIATELY", "ERROR_REJECTED" ] }, "eniBasis" : { "type" : "number", "readOnly" : true } }, "readOnly" : true }, "ListResponseSalaryV2OverviewTax" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/SalaryV2OverviewTax" } } } }, "SalaryV2OverviewTax" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "voucherNumberAsString" : { "type" : "string", "readOnly" : true }, "voucherDate" : { "type" : "string" }, "voucherDescription" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "ResponseWrapperSalaryV2VoucherOverview" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/SalaryV2VoucherOverview" } } }, "SalaryV2VoucherOverview" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "voucherNumberAsString" : { "type" : "string", "readOnly" : true }, "datePeriod" : { "type" : "string", "readOnly" : true }, "voucherDate" : { "type" : "string" }, "displayName" : { "type" : "string", "readOnly" : true }, "ameldingWageId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "voucherId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "ameldingDueDate" : { "type" : "string" }, "ameldingStatus" : { "type" : "string", "readOnly" : true, "enum" : [ "NEUTRAL", "SUCCESS", "WARNING", "WARNING_GUIDELINE", "ERROR", "ERROR_IMMEDIATELY", "ERROR_REJECTED" ] }, "eniBasis" : { "type" : "number", "readOnly" : true }, "paymentDate" : { "type" : "string" }, "comment" : { "type" : "string" }, "isReversed" : { "type" : "boolean", "readOnly" : true }, "wagePeriodTransactionId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "wagePeriodTransactionVoucherNumber" : { "type" : "string", "readOnly" : true }, "reversedVoucherDisplayName" : { "type" : "string", "readOnly" : true }, "reversedBy" : { "type" : "string", "readOnly" : true }, "completedLogId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "isHistorical" : { "type" : "boolean", "readOnly" : true }, "approvedBy" : { "$ref" : "#/components/schemas/Employee" }, "approvalDate" : { "type" : "string", "readOnly" : true } } }, "ListResponseSalaryV2VoucherOverview" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/SalaryV2VoucherOverview" } } } }, "ResponseWrapperSalaryV2Specification" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/SalaryV2Specification" } } }, "SalaryV2Payment" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "employee" : { "$ref" : "#/components/schemas/SalaryV2Employee" }, "employment" : { "$ref" : "#/components/schemas/Employment" }, "date" : { "type" : "string", "description" : "Voucher date." }, "year" : { "type" : "integer", "format" : "int32" }, "month" : { "type" : "integer", "format" : "int32" }, "grossAmount" : { "type" : "number", "readOnly" : true }, "amount" : { "type" : "number", "readOnly" : true }, "number" : { "minimum" : 0, "type" : "integer", "format" : "int32", "readOnly" : true }, "payrollTaxMunicipality" : { "$ref" : "#/components/schemas/Municipality" }, "division" : { "$ref" : "#/components/schemas/Company" }, "holidayAllowanceRate" : { "type" : "number", "readOnly" : true }, "bankAccountOrIban" : { "type" : "string", "readOnly" : true }, "payrollTaxPercentage" : { "type" : "number", "readOnly" : true }, "deliveryMethodPaySlip" : { "type" : "string", "readOnly" : true, "enum" : [ "MANUAL", "PRINT", "EMAIL", "APP" ] }, "isTaxCardMissing" : { "type" : "boolean", "readOnly" : true }, "comment" : { "type" : "string" }, "specifications" : { "type" : "array", "description" : "Link to salary specifications.", "items" : { "$ref" : "#/components/schemas/SalaryV2Specification" } }, "travelExpenses" : { "type" : "array", "description" : "Link to salary specifications.", "items" : { "$ref" : "#/components/schemas/SalaryV2TravelExpense" } }, "employeeHourlyWage" : { "type" : "number", "readOnly" : true }, "seamenDaysOnBoard" : { "type" : "integer", "format" : "int32" }, "lastMonthPaidAmount" : { "type" : "number", "readOnly" : true }, "employeeSalaryDate" : { "type" : "string", "readOnly" : true }, "suggestAddReadjustment" : { "type" : "boolean", "readOnly" : true }, "isEmploymentInfoAmeldinger" : { "type" : "boolean", "readOnly" : true }, "seamenDeduction" : { "type" : "boolean" }, "validationResults" : { "$ref" : "#/components/schemas/SalaryV2PaymentValidationResult" } } }, "SalaryV2PaymentValidationResult" : { "type" : "object", "properties" : { "warnings" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ValidationLink" } }, "validations" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ValidationLink" } }, "poisonPills" : { "type" : "array", "readOnly" : true, "items" : { "type" : "string", "readOnly" : true } } }, "readOnly" : true }, "SalaryV2Specification" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "specificationType" : { "type" : "string", "description" : "Type of specification; only TYPE_MANUAL are user create- and editable", "enum" : [ "TYPE_MONTHLY_PAY", "TYPE_HOURLIST", "TYPE_HOURS", "TYPE_TRAVEL_REPORT", "TYPE_TAX", "TYPE_MANUAL", "TYPE_VACATION_ALLOWANCE", "TYPE_VACATION_ALLOWANCE_EXTRA", "TYPE_VACATION_CORRECTION", "TYPE_VACATION_FULL_MONTH_DEDUCTION", "TYPE_LEDGER", "TYPE_FLEXI_ADJUSTMENT", "TYPE_VACATION_ADJUSTMENT", "TYPE_MESAN_BONUS", "TYPE_REGULAR", "TYPE_ABSENCE", "TYPE_READJUSTMENT" ] }, "rate" : { "type" : "number" }, "count" : { "type" : "number" }, "project" : { "$ref" : "#/components/schemas/Project" }, "department" : { "$ref" : "#/components/schemas/Department" }, "salaryType" : { "$ref" : "#/components/schemas/SalaryV2Type" }, "salaryPayment" : { "$ref" : "#/components/schemas/SalaryV2Payment" }, "description" : { "type" : "string" }, "date" : { "type" : "string", "description" : "date" }, "year" : { "type" : "integer", "format" : "int32" }, "month" : { "type" : "integer", "format" : "int32" }, "amount" : { "type" : "number" }, "paymentAmount" : { "type" : "number" }, "supplement" : { "$ref" : "#/components/schemas/SalaryV2Supplement" }, "externalChangesSinceLastTime" : { "type" : "boolean" }, "costCarrierEditable" : { "type" : "boolean" }, "countAndRateEditable" : { "type" : "boolean" }, "salaryTypeEditable" : { "type" : "boolean" }, "templateIncrement" : { "type" : "boolean" }, "refYear" : { "type" : "integer", "format" : "int32" }, "freeCarSpec" : { "type" : "boolean" }, "unionSpec" : { "type" : "boolean" }, "validations" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ApiValidationMessage" } } } }, "SalaryV2Supplement" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "salarySpecification" : { "$ref" : "#/components/schemas/SalaryV2Specification" }, "country" : { "$ref" : "#/components/schemas/Country" }, "taxCountry" : { "$ref" : "#/components/schemas/Country" }, "carNumberOfKm" : { "type" : "number" }, "carNumberOfKmToHomeOrWork" : { "type" : "number" }, "carListPrice" : { "type" : "number" }, "carRegistrationNumber" : { "type" : "string" }, "numberOfJourneys" : { "type" : "integer", "format" : "int32" }, "upgrossingBasis" : { "type" : "number" }, "upgrossingTableNumber" : { "type" : "integer", "format" : "int32" }, "yearOfIncome" : { "type" : "integer", "format" : "int32" }, "deductedArtistTax" : { "type" : "integer", "format" : "int32" }, "taxPaidAbroad" : { "type" : "number" }, "continentalShaft" : { "type" : "boolean" }, "startDate" : { "type" : "string", "description" : "start date, currently only for Norwegian Continental Shaft" }, "endDate" : { "type" : "string", "description" : "end date, currently only for Norwegian Continental Shaft" }, "numberOfDays" : { "type" : "integer", "format" : "int32" }, "validations" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ApiValidationMessage" } } }, "readOnly" : true }, "SalaryV2TravelExpense" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "description" : { "type" : "string" }, "isExpense" : { "type" : "boolean" }, "specifications" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/SalaryV2Specification" } }, "title" : { "type" : "string" }, "salaryDescription" : { "type" : "string" } }, "description" : "Link to salary specifications." }, "SalaryV2Type" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "number" : { "type" : "string" }, "name" : { "type" : "string" }, "displayName" : { "type" : "string" }, "payStatementCode" : { "type" : "string" }, "description" : { "type" : "string" }, "showInTimesheet" : { "type" : "boolean", "readOnly" : true }, "taxable" : { "type" : "boolean", "readOnly" : true }, "payrollTaxable" : { "type" : "boolean", "readOnly" : true }, "vacationPayable" : { "type" : "boolean", "readOnly" : true }, "sickPayable" : { "type" : "boolean", "readOnly" : true }, "payment" : { "type" : "boolean", "readOnly" : true }, "vacationAllowance" : { "type" : "boolean", "readOnly" : true }, "requiresAdditionalInfo" : { "type" : "boolean", "readOnly" : true }, "requiresSupplement" : { "type" : "boolean", "readOnly" : true }, "requiredSupplementFields" : { "type" : "array", "readOnly" : true, "items" : { "type" : "string", "readOnly" : true, "enum" : [ "COUNTRY", "TAX_COUNTRY", "CAR_NUMBER_OF_KM", "CAR_NUMBER_OF_KM_TO_HOME_OR_WORK", "CAR_LIST_PRICE", "CAR_REGISTRATION_NUMBER", "NUMBER_OF_JOURNEYS", "UPGROSSING_BASIS", "UPGROSSING_TABLE_NUMBER", "YEAR_OF_INCOME", "DEDUCTED_ARTIST_TAX", "TAX_PAID_ABROAD", "SUPPORT_VESSEL", "IS_CONTINENTAL_SHAFT", "NORWEGIAN_SHAFT_PERIOD", "NORWEGIAN_SHAFT_FIRST_60_DAYS", "NUMBER_OF_DAYS" ] } }, "rate" : { "type" : "number", "readOnly" : true }, "percentIncrease" : { "type" : "number", "readOnly" : true }, "maxRate" : { "type" : "number", "readOnly" : true }, "minRate" : { "type" : "number", "readOnly" : true }, "calcType" : { "type" : "integer", "format" : "int32", "readOnly" : true } } }, "ValidationLink" : { "type" : "object", "properties" : { "message" : { "type" : "string", "readOnly" : true }, "href" : { "type" : "string", "readOnly" : true }, "linkDescription" : { "type" : "string", "readOnly" : true }, "automatedAction" : { "type" : "boolean", "readOnly" : true }, "severity" : { "type" : "string", "readOnly" : true, "enum" : [ "warning", "info" ] } }, "readOnly" : true }, "ResponseWrapperSalaryV2Payment" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/SalaryV2Payment" } } }, "ResponseWrapperSalaryPermission" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/SalaryPermission" } } }, "SalaryPermission" : { "type" : "object", "properties" : { "canAccessAnnualAccounts" : { "type" : "boolean", "readOnly" : true } } }, "ResponseWrapperSalaryV2Settings" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/SalaryV2Settings" } } }, "SalaryV2Settings" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "prefersOtherPayrollTaxCalculationMethod" : { "type" : "boolean" } } }, "ResponseWrapperSalaryV2Supplement" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/SalaryV2Supplement" } } }, "ResponseWrapperSalaryV2Transaction" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/SalaryV2Transaction" } } }, "SalaryV2PaymentType" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "displayName" : { "type" : "string", "readOnly" : true }, "typeOfPayment" : { "type" : "string", "readOnly" : true, "enum" : [ "NONE", "NOT_PAID", "NETS", "AUTOPAY", "POSTING_RULE", "ZTL" ] }, "currency" : { "$ref" : "#/components/schemas/Currency" }, "accountId" : { "type" : "integer", "format" : "int32", "readOnly" : true } }, "description" : "Payment type in use, or default payment type", "readOnly" : true }, "SalaryV2Transaction" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "displayName" : { "type" : "string", "readOnly" : true }, "date" : { "type" : "string", "description" : "Voucher date." }, "year" : { "type" : "integer", "format" : "int32" }, "month" : { "type" : "integer", "format" : "int32" }, "periodAsString" : { "type" : "string" }, "isHistorical" : { "type" : "boolean", "description" : "With historical wage vouchers you can update the wage system with information dated before the opening balance." }, "payrollTaxCalcMethod" : { "type" : "string", "description" : "Employee National Insurance calculation method" }, "voucherComment" : { "type" : "string", "description" : "Comment on voucher" }, "payslipGeneralComment" : { "type" : "string", "description" : "Comment to be shown on all payslips" }, "completed" : { "type" : "boolean" }, "reversed" : { "type" : "boolean" }, "reverser" : { "type" : "boolean" }, "okAllowReverseDifferentDate" : { "type" : "boolean" }, "paySlipsAvailableDate" : { "type" : "string", "description" : "The date payslips are made available to the employee. Defaults to voucherDate." }, "salaryPayments" : { "type" : "array", "description" : "Link to individual payslip objects.", "items" : { "$ref" : "#/components/schemas/SalaryV2Payment" } }, "paymentDate" : { "type" : "string", "description" : "The date payslips are paid" }, "notDeletableMessage" : { "type" : "array", "description" : "List of messages that explain why voucher cannot be deleted", "readOnly" : true, "items" : { "type" : "string", "description" : "List of messages that explain why voucher cannot be deleted", "readOnly" : true } }, "hasBankTransfers" : { "type" : "boolean" }, "voucher" : { "$ref" : "#/components/schemas/SalaryV2Voucher" }, "allowDeletePayments" : { "type" : "boolean", "description" : "True if bank payments are deletable" }, "sumPaidAmount" : { "type" : "number", "readOnly" : true }, "sumTaxDeductionAmount" : { "type" : "number", "readOnly" : true }, "anyExternalChangesOnThisTransaction" : { "type" : "boolean" }, "attachment" : { "$ref" : "#/components/schemas/Document" }, "ameldingWageId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "containsNegativeWps" : { "type" : "boolean" }, "useLandscapeForBankList" : { "type" : "boolean" }, "numberEmployees" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "wagePeriodTransactionId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "ameldingWageNumber" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "wagePeriodTransactionNumber" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "reverseVoucherDisplayName" : { "type" : "string", "readOnly" : true }, "urlDetails" : { "type" : "string", "readOnly" : true }, "paymentType" : { "$ref" : "#/components/schemas/SalaryV2PaymentType" } } }, "SalaryV2Voucher" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "date" : { "type" : "string" }, "number" : { "minimum" : 0, "type" : "integer", "description" : "System generated number that cannot be changed.", "format" : "int32", "readOnly" : true }, "reverseVoucher" : { "$ref" : "#/components/schemas/SalaryV2Voucher" }, "numberAsString" : { "type" : "string" }, "urlDetails" : { "type" : "string" }, "deletable" : { "type" : "boolean" }, "reversible" : { "type" : "boolean" }, "ztlOrAutoPayInProgress" : { "type" : "boolean" }, "notDeletableMessage" : { "type" : "string" }, "description" : { "type" : "string" }, "attachmentId" : { "type" : "integer", "format" : "int32" } } }, "ResponseWrapperListSalaryV2Employee" : { "type" : "object", "properties" : { "value" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/SalaryV2Employee" } } } }, "ListResponseListChangeLog" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ChangeLog" } } } } }, "ResponseWrapperSalaryV2Modules" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/SalaryV2Modules" } } }, "SalaryV2Modules" : { "type" : "object", "properties" : { "moduleDepartment" : { "type" : "boolean", "description" : "Module department", "readOnly" : true }, "moduleNets" : { "type" : "boolean", "description" : "Module Nets", "readOnly" : true }, "moduleAutopay" : { "type" : "boolean", "description" : "Module Autopay", "readOnly" : true }, "moduleZtl" : { "type" : "boolean", "description" : "Module Ztl", "readOnly" : true }, "moduleAgro" : { "type" : "boolean", "description" : "Module Agro", "readOnly" : true }, "moduleMamut" : { "type" : "boolean", "description" : "Module Mamut", "readOnly" : true }, "moduleEncryptedPayslip" : { "type" : "boolean", "description" : "Module Encrypted Payslip", "readOnly" : true }, "moduleUnionDeduction" : { "type" : "boolean", "description" : "Module Union Deduction", "readOnly" : true }, "moduleFreeCompanyCar" : { "type" : "boolean", "description" : "Module Free Company Car", "readOnly" : true }, "moduleMesan" : { "type" : "boolean", "description" : "Module Mesan", "readOnly" : true }, "moduleDepartmentAccounting" : { "type" : "boolean", "description" : "Module department accounting", "readOnly" : true }, "moduleWageProjectAccounting" : { "type" : "boolean", "description" : "Module wage project accounting", "readOnly" : true }, "moduleElectronicVoucher" : { "type" : "boolean", "description" : "Module Electronic vouchers", "readOnly" : true }, "moduleSeamenDeduction" : { "type" : "boolean", "description" : "Module seamen deduction", "readOnly" : true } } }, "ResponseWrapperListSalaryV2EmployeeToEmploymentsRelationship" : { "type" : "object", "properties" : { "value" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/SalaryV2EmployeeToEmploymentsRelationship" } } } }, "SalaryV2EmployeeToEmploymentsRelationship" : { "type" : "object", "properties" : { "employee" : { "$ref" : "#/components/schemas/SalaryV2Employee" }, "employments" : { "type" : "array", "description" : "Employments", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Employment" } } } }, "ResponseWrapperListSalaryV2PaymentType" : { "type" : "object", "properties" : { "value" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/SalaryV2PaymentType" } } } }, "ReverseSalaryArgs" : { "type" : "object", "properties" : { "employeeIds" : { "type" : "string" }, "reverseVoucherDate" : { "type" : "string" } } }, "ResponseWrapperSalaryV2OverviewData" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/SalaryV2OverviewData" } } }, "SalaryV2OverviewData" : { "type" : "object", "properties" : { "salaryPayments" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/SalaryV2OverviewDataSalaryPayment" } }, "rows" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/SalaryV2OverviewDataWageCodeRow" } } } }, "SalaryV2OverviewDataSalaryPayment" : { "type" : "object", "properties" : { "salaryPaymentId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "displayName" : { "type" : "string", "readOnly" : true }, "paymentAmount" : { "type" : "number", "readOnly" : true }, "payrollTaxBasisAmount" : { "type" : "number", "readOnly" : true }, "employee" : { "$ref" : "#/components/schemas/Employee" } }, "readOnly" : true }, "SalaryV2OverviewDataWageCodeColumn" : { "type" : "object", "properties" : { "salaryPaymentId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "displayName" : { "type" : "string", "readOnly" : true }, "count" : { "type" : "number", "readOnly" : true }, "amount" : { "type" : "number", "readOnly" : true }, "isHours" : { "type" : "boolean", "readOnly" : true }, "employee" : { "$ref" : "#/components/schemas/Employee" } }, "readOnly" : true }, "SalaryV2OverviewDataWageCodeRow" : { "type" : "object", "properties" : { "salaryTypeId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "displayName" : { "type" : "string", "readOnly" : true }, "totalCount" : { "type" : "number", "readOnly" : true }, "totalAmount" : { "type" : "number", "readOnly" : true }, "isPayrollTaxable" : { "type" : "boolean", "readOnly" : true }, "columns" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/SalaryV2OverviewDataWageCodeColumn" } } }, "readOnly" : true }, "CreateSalaryEmployeeToEmploymentRelationship" : { "type" : "object", "properties" : { "employee" : { "$ref" : "#/components/schemas/CreateSalaryEmployee" }, "employments" : { "type" : "array", "description" : "Employments", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Employment" } }, "validationResults" : { "type" : "array", "description" : "ValidationResults", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/SalaryV2PaymentValidationResult" } }, "previousSalaries" : { "type" : "array", "description" : "Previous Salaries", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/PreviousSalaryAggregates" } } }, "readOnly" : true }, "ListResponseCreateSalaryEmployeeToEmploymentRelationship" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/CreateSalaryEmployeeToEmploymentRelationship" } } } }, "PreviousSalaryAggregates" : { "type" : "object", "properties" : { "salaryTransactionId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "wagePaymentIdOfEmployee" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "displayName" : { "type" : "string", "readOnly" : true }, "isAccessibleToLoggedInUser" : { "type" : "boolean", "readOnly" : true } }, "description" : "Previous Salaries", "readOnly" : true }, "ResponseWrapperListSalaryV2Voucher" : { "type" : "object", "properties" : { "value" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/SalaryV2Voucher" } } } }, "ResponseWrapperSalaryV2TravelExpense" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/SalaryV2TravelExpense" } } }, "ResponseWrapperSalaryV2Type" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/SalaryV2Type" } } }, "ListResponseSalaryV2Type" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/SalaryV2Type" } } } }, "ResponseWrapperSalaryV2Voucher" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/SalaryV2Voucher" } } }, "ResponseWrapperSalarySettingsInternal" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/SalarySettingsInternal" } } }, "SalarySettingsInternal" : { "type" : "object", "properties" : { "isPaidInAdvance" : { "type" : "boolean", "description" : "Is salary paid in advance" }, "halfTaxMonth" : { "type" : "string", "description" : "Month for half tax", "enum" : [ "JANUARY", "FEBRUARY", "MARCH", "APRIL", "MAY", "JUNE", "JULY", "AUGUST", "SEPTEMBER", "OCTOBER", "NOVEMBER", "DECEMBER", "NOT_CHOSEN" ] }, "vacationCorrectionMonth" : { "type" : "string", "description" : "Month for salary correction", "enum" : [ "JANUARY", "FEBRUARY", "MARCH", "APRIL", "MAY", "JUNE", "JULY", "AUGUST", "SEPTEMBER", "OCTOBER", "NOVEMBER", "DECEMBER", "NOT_CHOSEN" ] }, "vacationMonth" : { "type" : "string", "description" : "Month for vacation", "enum" : [ "JANUARY", "FEBRUARY", "MARCH", "APRIL", "MAY", "JUNE", "JULY", "AUGUST", "SEPTEMBER", "OCTOBER", "NOVEMBER", "DECEMBER", "NOT_CHOSEN" ] }, "vacationPayMonth" : { "type" : "string", "description" : "Month for vacation pay", "enum" : [ "JANUARY", "FEBRUARY", "MARCH", "APRIL", "MAY", "JUNE", "JULY", "AUGUST", "SEPTEMBER", "OCTOBER", "NOVEMBER", "DECEMBER", "NOT_CHOSEN" ] }, "isFreeCar" : { "type" : "boolean", "description" : "Company has free car" }, "isUnionDeduction" : { "type" : "boolean", "description" : "Company has union deduction" }, "moduleSalaryApproval" : { "type" : "boolean", "description" : "Company has salary approval module" }, "taxBankAccountNumber" : { "type" : "string", "description" : "Bank account number of tax account" }, "expensesIncludeVouchersOnly" : { "type" : "boolean", "description" : "Expenses include vouchers only" } } }, "ResponseWrapperSalaryTaxcardInternal" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/SalaryTaxcardInternal" } } }, "SalaryAdvanceTaxcardInternal" : { "type" : "object", "properties" : { "altinnTaxDeductionCardId" : { "$ref" : "#/components/schemas/SalaryTaxcardInternal" }, "trekkode" : { "type" : "string" }, "trekkodeDescription" : { "type" : "string" }, "type" : { "minimum" : 0, "type" : "integer", "format" : "int32" }, "typeDescription" : { "type" : "string" }, "tabelltype" : { "type" : "string" }, "tabellnummer" : { "type" : "string" }, "prosentsats" : { "type" : "number" }, "antallMndForTrekk" : { "type" : "number" }, "frikortbelop" : { "type" : "number" }, "remainingFreeCardAmount" : { "type" : "number" } } }, "SalaryTaxcardInternal" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "advanceTaxcards" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/SalaryAdvanceTaxcardInternal" } }, "additionalInfo" : { "type" : "string" }, "date" : { "type" : "string" }, "utstedtDato" : { "type" : "string" }, "arbeidstakerIdentifikator" : { "type" : "string" }, "status" : { "type" : "string" }, "statusDescription" : { "type" : "string" }, "orderId" : { "type" : "integer", "format" : "int32" }, "altinn3taxcardOrderId" : { "type" : "integer", "format" : "int64" }, "yearOfIncome" : { "minimum" : 0, "type" : "integer", "format" : "int32" }, "skattekortIdentifikator" : { "minimum" : 0, "type" : "integer", "format" : "int64" }, "deductionPeriod" : { "minimum" : 0, "type" : "integer", "format" : "int32" }, "payrollTaxMunicipalityId" : { "minimum" : 0, "type" : "integer", "format" : "int32" } } }, "PrepareTaxcardsArgsInternal" : { "type" : "object", "properties" : { "employeeIds" : { "type" : "string" }, "contactEmployeeId" : { "type" : "integer", "format" : "int32" }, "contactEmail" : { "type" : "string" }, "taxcardYear" : { "type" : "integer", "format" : "int32" }, "mobilePhone" : { "type" : "string" }, "mobilePhoneCountryId" : { "type" : "integer", "format" : "int32" }, "notificationType" : { "type" : "string" } } }, "ListResponseTaxcardEmployeeInternal" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/TaxcardEmployeeInternal" } } } }, "TaxcardEmployeeInternal" : { "type" : "object", "properties" : { "taxcard" : { "$ref" : "#/components/schemas/SalaryTaxcardInternal" }, "department" : { "$ref" : "#/components/schemas/Department" }, "id" : { "type" : "integer", "format" : "int32" }, "displayName" : { "type" : "string" }, "number" : { "type" : "string" } }, "readOnly" : true }, "PhonePrefixCountryInternal" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "displayName" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "ResponseWrapperPhonePrefixCountryInternal" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/PhonePrefixCountryInternal" } } }, "ListResponsePhonePrefixCountryInternal" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/PhonePrefixCountryInternal" } } } }, "ListResponseReportingCompanyInternal" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ReportingCompanyInternal" } } } }, "ReportingCompanyInternal" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "displayName" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "ResponseWrapperTaxcardContactInternal" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/TaxcardContactInternal" } } }, "TaxcardContactInternal" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "displayName" : { "type" : "string", "readOnly" : true }, "phoneNumberMobileCountry" : { "$ref" : "#/components/schemas/Country" }, "phoneNumberMobile" : { "type" : "string" }, "email" : { "type" : "string" } }, "readOnly" : true }, "ListResponseTaxcardContactInternal" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/TaxcardContactInternal" } } } }, "ListResponseUnionDetails" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/UnionDetails" } } } }, "UnionDetails" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "displayName" : { "type" : "string", "description" : "Union details name to comply with Dropdown", "readOnly" : true } }, "readOnly" : true }, "WageSpecificationTemplate" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "description" : { "type" : "string" }, "wageCodeId" : { "type" : "integer", "format" : "int32" }, "startDate" : { "type" : "string", "description" : "StarDate" }, "endDate" : { "type" : "string", "description" : "EndDate" }, "type" : { "maximum" : 17, "minimum" : 1, "type" : "integer", "format" : "int32" }, "amount" : { "minimum" : 0, "type" : "number" }, "percentage" : { "minimum" : 0, "type" : "number" }, "maxPaymentAmount" : { "minimum" : 0, "type" : "number" }, "wageSpecificationExtra" : { "$ref" : "#/components/schemas/SalaryV2Supplement" } } }, "ResponseWrapperWageSpecificationTemplate" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/WageSpecificationTemplate" } } }, "ResponseWrapperSalaryCompilation" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/SalaryCompilation" } } }, "SalaryCompilation" : { "type" : "object", "properties" : { "employee" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "year" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "vacationPayBasis" : { "type" : "number", "readOnly" : true }, "wages" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/SalaryCompilationLine" } }, "expenses" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/SalaryCompilationLine" } }, "taxDeductions" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/SalaryCompilationLine" } }, "mandatoryTaxDeductions" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/SalaryCompilationLine" } } } }, "SalaryCompilationLine" : { "type" : "object", "properties" : { "description" : { "type" : "string", "readOnly" : true }, "amount" : { "type" : "number", "readOnly" : true }, "taxable" : { "type" : "boolean", "readOnly" : true }, "taxableDescription" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "ResponseWrapperPayslip" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/Payslip" } } }, "ListResponsePayslip" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Payslip" } } } }, "ResponseWrapperSalarySettings" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/SalarySettings" } } }, "SalarySettings" : { "type" : "object", "properties" : { "municipality" : { "$ref" : "#/components/schemas/Municipality" }, "payrollTaxCalcMethod" : { "type" : "string", "description" : "Define the Payroll Tax Calculation Method. AA General industries,BB Central government administration and health trusts, CC Exempted business sectors (and undertakings in economic difficulty),DD Agriculture and forestry, fisheries etc., EE Reporting of payroll withholding tax only,GG Road freight transport", "enum" : [ "AA", "BB", "CC", "C2", "DD", "EE", "GG", "JJ", "" ] } } }, "CompanyHoliday" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "year" : { "type" : "integer", "format" : "int32" }, "days" : { "type" : "number" }, "vacationPayPercentage1" : { "type" : "number" }, "vacationPayPercentage2" : { "type" : "number" }, "isMaxPercentage2Amount6G" : { "type" : "boolean" } }, "readOnly" : true }, "ResponseWrapperCompanyHoliday" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/CompanyHoliday" } } }, "ListResponseCompanyHoliday" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/CompanyHoliday" } } } }, "GlobalPension" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "displayName" : { "type" : "string" }, "number" : { "type" : "string" }, "fromDate" : { "type" : "string" }, "toDate" : { "type" : "string" } }, "readOnly" : true }, "ListResponseGlobalPension" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/GlobalPension" } } } }, "PensionScheme" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "pensionSchemeId" : { "type" : "integer", "format" : "int32" }, "number" : { "type" : "string" }, "startDate" : { "type" : "string" }, "endDate" : { "type" : "string" } }, "readOnly" : true }, "ResponseWrapperPensionScheme" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/PensionScheme" } } }, "ListResponsePensionScheme" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/PensionScheme" } } } }, "CompanyStandardTime" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "company" : { "$ref" : "#/components/schemas/Company" }, "fromDate" : { "type" : "string" }, "hoursPerDay" : { "type" : "number" } }, "readOnly" : true }, "ResponseWrapperCompanyStandardTime" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/CompanyStandardTime" } } }, "ListResponseCompanyStandardTime" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/CompanyStandardTime" } } } }, "ResponseWrapperSalarySpecification" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/SalarySpecification" } } }, "ListResponseSalarySpecification" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/SalarySpecification" } } } }, "ResponseWrapperSalarySpecificationSupplement" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/SalarySpecificationSupplement" } } }, "ResponseWrapperSalaryTransaction" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/SalaryTransaction" } } }, "ListResponseSalaryTransaction" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/SalaryTransaction" } } } }, "ResponseWrapperScoreboardUserDTO" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ScoreboardUserDTO" } } }, "ScoreboardUserDTO" : { "type" : "object", "properties" : { "nickname" : { "type" : "string" }, "maxScore" : { "minimum" : 0, "type" : "integer", "format" : "int64" }, "gamesPlayed" : { "minimum" : 0, "type" : "integer", "format" : "int64" } } }, "LeaderboardEntryDTO" : { "type" : "object", "properties" : { "rank" : { "minimum" : 1, "type" : "integer", "format" : "int32", "readOnly" : true }, "nickname" : { "type" : "string", "readOnly" : true }, "score" : { "minimum" : 0, "type" : "integer", "format" : "int64", "readOnly" : true }, "currentUser" : { "type" : "boolean" } }, "readOnly" : true }, "LeaderboardResponseDTO" : { "type" : "object", "properties" : { "topPlayers" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/LeaderboardEntryDTO" } }, "currentPlayer" : { "$ref" : "#/components/schemas/LeaderboardEntryDTO" } } }, "ResponseWrapperLeaderboardResponseDTO" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/LeaderboardResponseDTO" } } }, "ResponseWrapper" : { "type" : "object", "properties" : { "value" : { "type" : "object" } } }, "ShardInfo" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "name" : { "type" : "string" }, "lifeCycleStage" : { "type" : "string" } } }, "ResponseWrapperCompanyVerificationType" : { "type" : "object", "properties" : { "value" : { "type" : "string", "enum" : [ "UNVERIFIED", "VERIFIED_ACCOUNTANT", "VERIFIED_CLIENT_OF_ACCOUNTANT", "VERIFIED_CUSTOMER_BANKID", "VERIFIED_BY_ALTINN_MESSAGE", "VERIFIED_BY_TRIPLETEX_SUPPORT", "VERIFIED_BANK_AGREEMENT", "VERIFIED_TRIPLETEX" ] } } }, "ResponseWrapperSignatureStatus" : { "type" : "object", "properties" : { "value" : { "type" : "string", "enum" : [ "NOT_SIGNED", "PENDING_SIGNATURE", "SIGNED", "NOT_A_SIGNER" ] } } }, "ListResponseSignatureCombination" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/SignatureCombination" } } } }, "SignatureCombination" : { "type" : "object", "properties" : { "signatureCombinationDescription" : { "type" : "string", "readOnly" : true }, "uniqueKey" : { "type" : "string", "readOnly" : true }, "companyRepresentativeDTOList" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/CompanyRepresentative" } } }, "readOnly" : true }, "ResponseWrapperMapStringBoolean" : { "type" : "object", "properties" : { "value" : { "type" : "object", "additionalProperties" : { "type" : "boolean" } } } }, "ResponseWrapperSnowplowContextSnowplowGlobalCompany" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/SnowplowContextSnowplowGlobalCompany" } } }, "SnowplowContextSnowplowGlobalCompany" : { "type" : "object", "properties" : { "schema" : { "type" : "string", "readOnly" : true }, "data" : { "$ref" : "#/components/schemas/SnowplowGlobalCompany" } } }, "SnowplowGlobalCompany" : { "type" : "object", "properties" : { "companyId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "customerId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "isPaying" : { "type" : "boolean", "readOnly" : true }, "customerType" : { "type" : "string", "readOnly" : true, "enum" : [ "Mamut", "Agro", "Paying", "Free", "Test" ] }, "package" : { "type" : "string", "readOnly" : true }, "pilotFeatures" : { "type" : "array", "readOnly" : true, "items" : { "type" : "string" } }, "registrationDate" : { "type" : "string", "readOnly" : true }, "startDate" : { "type" : "string", "readOnly" : true }, "isAccountant" : { "type" : "boolean", "readOnly" : true }, "organizationNumber" : { "type" : "integer", "format" : "int64", "readOnly" : true } }, "readOnly" : true }, "ResponseWrapperSnowplowContextSnowplowGlobalEmployee" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/SnowplowContextSnowplowGlobalEmployee" } } }, "SnowplowContextSnowplowGlobalEmployee" : { "type" : "object", "properties" : { "schema" : { "type" : "string", "readOnly" : true }, "data" : { "$ref" : "#/components/schemas/SnowplowGlobalEmployee" } } }, "SnowplowGlobalEmployee" : { "type" : "object", "properties" : { "userId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "employeeId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "tripletexEmployeeId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "isAccountant" : { "type" : "boolean", "readOnly" : true }, "roleIds" : { "type" : "array", "readOnly" : true, "items" : { "type" : "integer", "format" : "int32" } } }, "readOnly" : true }, "ResponseWrapperSseInitializationResult" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/SseInitializationResult" } } }, "SseInitializationResult" : { "type" : "object", "properties" : { "contextId" : { "type" : "integer", "description" : "The contextId of the employee", "format" : "int64", "readOnly" : true }, "employeeId" : { "type" : "integer", "description" : "The companyId of the employee", "format" : "int64", "readOnly" : true }, "currentHiddenCursor" : { "type" : "integer", "description" : "The current hidden cursor", "format" : "int64", "readOnly" : true }, "currentReadCursor" : { "type" : "integer", "description" : "The current read cursor", "format" : "int64", "readOnly" : true } } }, "ListResponseSupplier" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Supplier" } } } }, "ResponseWrapperSupplier" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/Supplier" } } }, "ListResponseSupplierInvoice" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/SupplierInvoice" } } } }, "OrderLinePosting" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "posting" : { "$ref" : "#/components/schemas/Posting" }, "orderLine" : { "$ref" : "#/components/schemas/OrderLine" } } }, "ResponseWrapperVoucherApprovalListElement" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/VoucherApprovalListElement" } } }, "ListResponseVoucherApprovalListElement" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/VoucherApprovalListElement" } } } }, "AutomationRuleDetails" : { "type" : "object", "properties" : { "automationRuleId" : { "type" : "integer", "format" : "int32" }, "description" : { "type" : "string" }, "accountId" : { "type" : "integer", "format" : "int32" }, "vatTypeId" : { "type" : "integer", "format" : "int32" }, "amountMax" : { "type" : "number" }, "amountMaxMonthly" : { "type" : "number" }, "departmentId" : { "type" : "integer", "format" : "int32" }, "autoPayBankAgreementId" : { "type" : "integer", "format" : "int32" }, "selectedPaymentType" : { "minimum" : 0, "type" : "integer", "format" : "int64" }, "enabled" : { "type" : "boolean" }, "distributionKeyId" : { "type" : "integer", "format" : "int32" }, "distributionKeyName" : { "type" : "string", "readOnly" : true }, "accountName" : { "type" : "string" }, "departmentName" : { "type" : "string" }, "paymentType" : { "type" : "string" } }, "description" : "The vendor rule details of the vendor if he/she has chosen to have his own rules on the automation instead of FabricAi." }, "ListResponseSupplierAutomation" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/SupplierAutomation" } } } }, "SupplierAutomation" : { "type" : "object", "properties" : { "vendorId" : { "type" : "integer", "format" : "int32" }, "name" : { "type" : "string" }, "vendorAccountNumber" : { "type" : "integer", "format" : "int32" }, "activated" : { "type" : "boolean", "description" : "Is automation activated?" }, "automatedCount" : { "minimum" : 0, "type" : "integer", "description" : "Number of automated vouchers", "format" : "int32" }, "voucherCountLast190DaysEhf" : { "minimum" : 0, "type" : "integer", "description" : "Number of EHF vouchers last 190 days.", "format" : "int32" }, "voucherCountLast190DaysNonEhf" : { "minimum" : 0, "type" : "integer", "description" : "Number of non-EHF vouchers last 190 days.", "format" : "int32" }, "voucherCount" : { "minimum" : 0, "type" : "integer", "description" : "Number of EHF vouchers send from this supplier regardless of time.", "format" : "int32", "readOnly" : true }, "canSendEhf" : { "type" : "boolean", "description" : "Whether the vendor can send EHF" }, "email" : { "type" : "string", "description" : "email of the vendor" }, "automationRulesDetails" : { "$ref" : "#/components/schemas/AutomationRuleDetails" }, "paymentTypeFabricAi" : { "minimum" : 0, "type" : "integer", "description" : "If set, the payment type to be used when automating an invoice from this vendor.", "format" : "int64" }, "paymentTypeName" : { "type" : "string", "description" : "Description of the payment type" }, "invoicesWithValidPredictionCount" : { "minimum" : 0, "type" : "integer", "description" : "Number of invoices with valid predictions", "format" : "int32" }, "amountMaxFabricAiVendorInvoice" : { "type" : "integer", "description" : "If set, gives the amount limit for automating invoices for this vendor, it the total invoice amount is above the limit, the invoice is not automated.", "format" : "int32" }, "dateRequestEhfSent" : { "type" : "string", "description" : "The date the user has sent the request to a supplier to receive EHF." }, "allowSendEhfRequest" : { "type" : "boolean", "description" : "Whether to allow sending EHF requests" }, "voucherCountLast90DaysNonEhf" : { "minimum" : 0, "type" : "integer", "description" : "Number of non-EHF vouchers last 90 days.", "format" : "int32" }, "readyForAutomation" : { "type" : "string", "description" : "Ready for automation status", "enum" : [ "0", "1", "2" ] }, "lastChangedBy" : { "type" : "string", "description" : "Last Changed By which employee" }, "lastChangedDate" : { "type" : "string", "description" : "Last changed Date for the activation" } }, "readOnly" : true }, "AutomationSettingsDTO" : { "type" : "object", "properties" : { "canAccessAutoPay" : { "type" : "boolean" }, "canAccessFabricAi" : { "type" : "boolean" }, "canAccessFabricAiTraining" : { "type" : "boolean" }, "canAddAutoPayPayments" : { "type" : "boolean" }, "canAccessWelcomeBanner" : { "type" : "boolean" }, "automationLevelOption" : { "type" : "string", "enum" : [ "MANUAL", "AUTOMATIC_ALL" ] }, "standardAmountMax" : { "minimum" : 0, "type" : "integer", "format" : "int32" }, "standardPaymentTypeId" : { "type" : "integer", "format" : "int64" }, "hasTaskFoxTestCompanies" : { "type" : "boolean" }, "hasBankIntegration" : { "type" : "boolean" }, "standardPaymentTypeName" : { "type" : "string" }, "postingRuleId" : { "type" : "integer", "format" : "int64" }, "companyName" : { "type" : "string" }, "hasBookkeepingBeforeAttestationSetting" : { "type" : "boolean" }, "hasVoucherApprovalModule" : { "type" : "boolean" }, "testAccount" : { "type" : "boolean" } } }, "ResponseWrapperAutomationSettingsDTO" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/AutomationSettingsDTO" } } }, "ResponseWrapperTrialInfoAutomation" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/TrialInfoAutomation" } } }, "TrialInfoAutomation" : { "type" : "object", "properties" : { "totalCouldBeAutomated190days" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "totalCouldBeAutomated365days" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "percentSuggestionsEHF" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "percentAutomatedEHF" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "totalEHFinvoices" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "totalCorrectSuggestions" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "correctSuggestions190days" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "correctSuggestions365days" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "totalAutomated190days" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "totalAutomated365days" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "countDeactivatedVendors" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "countActivatedVendors" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "getvendorsCouldBeAutomated" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "vendorsNotSendingEhf" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "voucherCountNonEhf" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "percentVendorsNotSendingEhf" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "percentInvoicesNonEhf" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "showProjectHint" : { "type" : "boolean", "readOnly" : true }, "voucherCount30DaysEHF" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "voucherCount30DaysPDF" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "voucherCount180DaysEHF" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "voucherCount180DaysPDF" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "voucherCount365DaysEHF" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "voucherCount365DaysPDF" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "totalVendorsSendingEHF" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "totalVendorsSendingPDF" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "allAutomaticallyBooked" : { "type" : "array", "readOnly" : true, "items" : { "type" : "integer", "format" : "int32" } }, "pdfAutomaticallyBooked" : { "type" : "array", "readOnly" : true, "items" : { "type" : "integer", "format" : "int32" } }, "ehfAutomaticallyBooked" : { "type" : "array", "readOnly" : true, "items" : { "type" : "integer", "format" : "int32" } }, "allPartiallyAutomated" : { "type" : "array", "readOnly" : true, "items" : { "type" : "integer", "format" : "int32" } }, "ehfPartiallyAutomated" : { "type" : "array", "readOnly" : true, "items" : { "type" : "integer", "format" : "int32" } }, "pdfPartiallyAutomated" : { "type" : "array", "readOnly" : true, "items" : { "type" : "integer", "format" : "int32" } }, "allManuallyEntered" : { "type" : "array", "readOnly" : true, "items" : { "type" : "integer", "format" : "int32" } }, "pdfManuallyEntered" : { "type" : "array", "readOnly" : true, "items" : { "type" : "integer", "format" : "int32" } }, "ehfManuallyEntered" : { "type" : "array", "readOnly" : true, "items" : { "type" : "integer", "format" : "int32" } } } }, "ExistingSupplierCustomerWrapper" : { "type" : "object", "properties" : { "foundByNumber" : { "type" : "boolean", "readOnly" : true }, "foundByName" : { "type" : "boolean", "readOnly" : true }, "supplierCustomer" : { "$ref" : "#/components/schemas/SupplierCustomer" } } }, "ResponseWrapperExistingSupplierCustomerWrapper" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ExistingSupplierCustomerWrapper" } } }, "SupplierCustomer" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "displayName" : { "type" : "string" }, "organizationNumber" : { "type" : "string" }, "customerType" : { "type" : "integer", "format" : "int32" }, "isInactive" : { "type" : "boolean" }, "isPrivateIndividual" : { "type" : "boolean" }, "phoneNumberMobile" : { "type" : "string" }, "postalAddress" : { "$ref" : "#/components/schemas/Address" } }, "readOnly" : true }, "ListResponseSupplierCustomer" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/SupplierCustomer" } } } }, "ListResponseSupportDashboardCustomer" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/SupportDashboardCustomer" } } } }, "SupportDashboardCustomer" : { "type" : "object", "properties" : { "tripletexCompanyId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "tripletexCustomerId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "orgNumber" : { "type" : "string", "readOnly" : true }, "name" : { "type" : "string", "readOnly" : true }, "category2" : { "type" : "string", "readOnly" : true }, "category3" : { "type" : "string", "readOnly" : true }, "startDate" : { "type" : "string", "readOnly" : true }, "endDate" : { "type" : "string", "readOnly" : true }, "suspended" : { "type" : "boolean", "readOnly" : true }, "bankrupt" : { "type" : "boolean", "readOnly" : true }, "liquidated" : { "type" : "boolean", "readOnly" : true }, "forceLiquidated" : { "type" : "boolean", "readOnly" : true }, "excludedFromDisabling" : { "type" : "boolean", "readOnly" : true }, "excludedFromDeletion" : { "type" : "boolean", "readOnly" : true } }, "readOnly" : true }, "ExtraCopilotMetrics" : { "type" : "object", "properties" : { "showTalkToSupportButton" : { "type" : "boolean" }, "chatAvailable" : { "type" : "boolean" }, "chatWithSupportStatus" : { "type" : "string" }, "messagesLength" : { "minimum" : 0, "type" : "integer", "format" : "int32" }, "lastRequestId" : { "minimum" : 0, "type" : "integer", "format" : "int64" }, "lastPrompt" : { "type" : "string" }, "lastMessageSource" : { "type" : "string" }, "lastResponse" : { "type" : "string" }, "lastMessageStatus" : { "type" : "string" }, "lastMessageErrorCode" : { "type" : "string" }, "errorMessageLocaleId" : { "type" : "string" }, "lastMessageFeedback" : { "type" : "string" }, "streamingRequestId" : { "minimum" : 0, "type" : "integer", "format" : "int64" } }, "description" : "Additional metrics for Copilot-related feedback" }, "SurveyFeedback" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "surveyType" : { "type" : "string", "enum" : [ "1", "2", "3" ] }, "rating" : { "type" : "integer", "description" : "A rating based on numbers from 1 to 5.", "format" : "int32" }, "comment" : { "type" : "string", "description" : "A comment given in addition to the highest rating." }, "contactRequest" : { "type" : "string" }, "extraCopilotMetrics" : { "$ref" : "#/components/schemas/ExtraCopilotMetrics" } } }, "ResponseWrapperTermsOfService" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/TermsOfService" } } }, "TermsOfService" : { "type" : "object", "properties" : { "renderDialog" : { "type" : "boolean", "readOnly" : true }, "companyLicense" : { "$ref" : "#/components/schemas/License" }, "renderCompanyLicense" : { "type" : "boolean", "readOnly" : true }, "userLicense" : { "$ref" : "#/components/schemas/License" }, "renderUserLicense" : { "type" : "boolean", "description" : "Terms for the user", "readOnly" : true }, "askCanSign" : { "type" : "boolean", "description" : "If there are no account admin and no accountant paying the bills, we don't know who should sign", "readOnly" : true }, "askMarketingConsent" : { "type" : "boolean", "readOnly" : true }, "newTOSAlive" : { "type" : "boolean", "readOnly" : true } } }, "AccountBuilder" : { "type" : "object", "properties" : { "companyId" : { "type" : "integer", "description" : "The ID of the company this account belongs to.", "format" : "int64" }, "bankAccount" : { "type" : "string", "description" : "The bank account number associated with this account." } } }, "ActivityBuilder" : { "type" : "object", "properties" : { "companyId" : { "type" : "integer", "format" : "int64" }, "name" : { "type" : "string" }, "description" : { "type" : "string" }, "number" : { "type" : "integer", "format" : "int32" }, "general" : { "type" : "boolean" }, "projectActivity" : { "type" : "boolean" }, "allowTimetracking" : { "type" : "boolean" }, "task" : { "type" : "boolean" }, "chargeable" : { "type" : "boolean" }, "disabled" : { "type" : "boolean" } } }, "ActivityExtBuilder" : { "type" : "object", "properties" : { "companyId" : { "type" : "integer", "format" : "int64" }, "projectId" : { "type" : "integer", "format" : "int32" }, "activityId" : { "type" : "integer", "format" : "int32" }, "startDate" : { "type" : "string" }, "endDate" : { "type" : "string" }, "closedLogId" : { "type" : "integer", "format" : "int64" } } }, "AutoPayTransactionBuilder" : { "type" : "object", "properties" : { "companyId" : { "type" : "integer", "format" : "int64" }, "amountCurrency" : { "type" : "integer", "format" : "int32" }, "currencyId" : { "type" : "integer", "format" : "int32" }, "isSalary" : { "type" : "boolean" }, "statusId" : { "type" : "integer", "format" : "int32" }, "internalStatus" : { "type" : "integer", "format" : "int32" }, "creditorBic" : { "type" : "string" }, "regulatoryReportingCode" : { "type" : "integer", "format" : "int32" }, "regulatoryReportingInfo" : { "type" : "integer", "format" : "int32" }, "bookingDate" : { "type" : "string" }, "paymentDate" : { "type" : "string" }, "autopayName" : { "type" : "string" } } }, "BankReconciliationMatchResponseBuilder" : { "type" : "object", "properties" : { "bankReconciliationId" : { "type" : "integer", "format" : "int64" }, "postingIds" : { "type" : "array", "items" : { "type" : "integer", "format" : "int64" } }, "transactionIds" : { "type" : "array", "items" : { "type" : "integer", "format" : "int64" } } } }, "ResponseWrapperBankReconciliationMatchResponseBuilder" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/BankReconciliationMatchResponseBuilder" } } }, "BankReconciliationMatchRequestBuilder" : { "type" : "object", "properties" : { "companyId" : { "type" : "integer", "format" : "int64" }, "creditAccountNumber" : { "type" : "integer", "format" : "int32" }, "debitAccountNumber" : { "type" : "integer", "format" : "int32" }, "postings" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/EntryMatchBuilder" } }, "transactions" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/EntryMatchBuilder" } } } }, "EntryMatchBuilder" : { "type" : "object", "properties" : { "amount" : { "type" : "number" }, "date" : { "type" : "string" } } }, "BankStatementBuilder" : { "type" : "object", "properties" : { "companyId" : { "type" : "integer", "format" : "int64" }, "fromDate" : { "type" : "string" }, "toDate" : { "type" : "string" }, "accountId" : { "type" : "integer", "format" : "int64" }, "closingBalanceCurrency" : { "type" : "number", "format" : "double" }, "documentId" : { "type" : "integer", "format" : "int32" } } }, "BankTransactionBuilder" : { "type" : "object", "properties" : { "companyId" : { "type" : "integer", "format" : "int64" }, "bankStatementId" : { "type" : "integer", "format" : "int64" }, "postedDate" : { "type" : "string" }, "description" : { "type" : "string" }, "amountCurrency" : { "type" : "number", "format" : "double" }, "accountId" : { "type" : "integer", "format" : "int64" } } }, "BbsAgreementBuilder" : { "type" : "object", "properties" : { "companyId" : { "type" : "integer", "format" : "int64" }, "accountId" : { "type" : "integer", "format" : "int32" }, "serviceCode" : { "type" : "integer", "format" : "int32" }, "number" : { "type" : "integer", "format" : "int32" } } }, "ResponseWrapperListObject" : { "type" : "object", "properties" : { "value" : { "type" : "array", "items" : { "type" : "object" } } } }, "ResponseWrapperAccessStatus" : { "type" : "object", "properties" : { "value" : { "type" : "string", "enum" : [ "YES", "NO", "UNKNOWN", "NOT_CONFIGURED" ] } } }, "BoligmappaRestPlantBuilder" : { "type" : "object", "properties" : { "plantType" : { "type" : "integer", "description" : "The type of the plant: 1 = Building Plant, 2 = Property Plant", "format" : "int32" }, "buildingType" : { "type" : "string", "description" : "The building type of the plant" }, "shareNumber" : { "type" : "integer", "description" : "The share number of the plant", "format" : "int32" }, "owners" : { "type" : "array", "description" : "The owners of the plant. Only Property Plants have owners", "items" : { "$ref" : "#/components/schemas/PlantOwner" } }, "unitNumber" : { "type" : "string", "description" : "The unit number of the plant. It is copied from the Address of the Plant" }, "city" : { "type" : "string", "description" : "The city of the plant. It is copied from the Address of the Plant" }, "postalCode" : { "type" : "string", "description" : "The postal code of the plant. It is copied from the Address of the Plant" } } }, "PlantOwner" : { "type" : "object", "properties" : { "firstName" : { "type" : "string" }, "lastName" : { "type" : "string" } }, "description" : "The owners of the plant. Only Property Plants have owners" }, "ResponseWrapperListBoligmappaRestPlantBuilder" : { "type" : "object", "properties" : { "value" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/BoligmappaRestPlantBuilder" } } } }, "CompanyBuilder" : { "type" : "object", "properties" : { "number" : { "type" : "integer", "format" : "int64" }, "name" : { "type" : "string" }, "description" : { "type" : "string" }, "companyId" : { "type" : "integer", "format" : "int64" }, "accountManagerId" : { "type" : "integer", "format" : "int64" }, "inactive" : { "type" : "boolean" }, "invoiceDefaultDueIn" : { "type" : "integer", "format" : "int64" }, "projectTypeOfContract" : { "type" : "integer", "format" : "int32" }, "invoiceEmail" : { "type" : "string" }, "invoiceSendSMSNotification" : { "type" : "boolean" }, "invoiceSMSNotificationNumber" : { "type" : "string" }, "salaryStartDate" : { "type" : "string" }, "currencyId" : { "type" : "integer", "format" : "int32" }, "startDate" : { "type" : "string" }, "municipalityId" : { "type" : "integer", "format" : "int32" }, "customerType" : { "type" : "integer", "format" : "int32" }, "merchant" : { "type" : "boolean" } } }, "TripletexCompanyBuilder" : { "type" : "object", "properties" : { "companyId" : { "type" : "integer", "format" : "int64" }, "type" : { "type" : "integer", "format" : "int32" }, "customerId" : { "type" : "integer", "format" : "int64" }, "customerCompanyId" : { "type" : "integer", "format" : "int64" }, "invoiceNumberOfMonths" : { "type" : "integer", "format" : "int32" }, "invoiceNumberOfMonthsInAdvance" : { "type" : "integer", "format" : "int32" }, "priceList" : { "type" : "string", "enum" : [ "UNKNOWN", "TRIPLETEX_STANDARD", "AGRO", "MAMUT", "BASIS", "SMART", "KOMPLETT", "VVS_ELEKTRO", "AUTOPLUS", "MIKRO", "INTEGRATION_PARTNER", "PLUSS", "DIYPACKAGE", "PRO" ] } } }, "ResponseWrapperCompanyBuilder" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/CompanyBuilder" } } }, "ResponseWrapperTripletexCompanyBuilder" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/TripletexCompanyBuilder" } } }, "CompanyModules" : { "type" : "object", "properties" : { "modules" : { "type" : "array", "items" : { "type" : "string", "enum" : [ "MODULE_TRAVEL_EXPENSE", "MODULE_INVOICE", "MODULE_INVOICE_OPTION_AUTOINVOICE_EHF", "MODULE_INVOICE_OPTION_PAPER", "MODULE_INVOICE_OPTION_EFAKTURA", "MODULE_ACCOUNTING_INTERNAL", "MODULE_ACCOUNTING_EXTERNAL", "MODULE_PROJECT", "MODULE_PRODUCT", "MODULE_CUSTOMER", "MODULE_EMPLOYEE", "MODULE_DEPARTMENT", "APPROVE_TRAVEL_REPORTS", "MODULE_BUDGET", "MODULE_NOTE", "MODULE_TASK", "MODULE_YEAR_END_REPORT", "MODULE_PROJECT_ECONOMY", "MODULE_RORKJOP", "MODULE_PROJECT_BUDGET", "MODULE_PENSION_REPORT", "MODULE_QUANTITY_HANDLING", "MODULE_SUBSCRIPTION", "COMPLETE_WEEKLY_HOURLISTS", "COMPLETE_MONTHLY_HOURLISTS", "APPROVE_MONTHLY_HOURLISTS", "MODULE_BUNCHES", "MODULE_ACCOUNTING_REPORTS", "MODULE_CUSTOMER_CATEGORIES", "MODULE_PAYROLL_ACCOUNTING", "IS_CURRENT_MONTH_DEFAULT_PERIOD", "SHOW_TRAVEL_REPORT_LETTERHEAD", "MODULE_TIME_BALANCE", "MODULE_VACATION_BALANCE", "MODULE_WORKING_HOURS", "MODULE_CREDIT_SCORING", "MODULE_CURRENCY", "MODULE_WAGE_EXPORT", "APPROVE_WEEKLY_HOURLISTS", "MODULE_AUTO_CUSTOMER_NUMBER", "MODULE_AUTO_VENDOR_NUMBER", "MODULE_PROVISION_SALARY", "HIDE_SINGLE_ACTIVITY_ON_INVOICE", "MODULE_ORDER_NUMBER", "MODULE_ORDER_DISCOUNT", "MODULE_ORDER_MARKUP", "MODULE_ORDER_LINE_COST", "MODULE_LOGISTICS_LIGHT", "MODULE_STOP_WATCH", "MODULE_CONTACT", "INVOICE_RESERVE_IS_ZERO_FOR_CLOSED_PROJECT", "IS_TRAVEL_REPORT_TAX_FREE_DIET_RATES", "MODULE_OCR", "MODULE_REMIT", "MODULE_TRAVEL_EXPENSE_RATES", "MODULE_VOUCHER_SCANNING", "MODULE_LOGISTICS", "MODULE_HOURLIST", "PROJECT_ORDER_VIEW_DUE_IN_SCALE", "SEND_PAYSLIPS_BY_EMAIL", "MODULE_EMPLOYEE_CATEGORY", "MODULE_CUSTOMER_CATEGORY1", "MODULE_CUSTOMER_CATEGORY2", "MODULE_CUSTOMER_CATEGORY3", "MODULE_PRODUCT_INVOICE", "IS_AUTO_REMIND_ENABLED_TYPE0", "IS_AUTO_REMIND_ENABLED_TYPE1", "INVOICE_FROM_CURRENT_USER", "INVOICE_BCC_CURRENT_USER", "AUTO_REMIND_DAYS_TYPE0", "AUTO_REMIND_DAYS_TYPE1", "AUTO_REMIND_DAYS_TYPE2", "AUTO_REMIND_DAYS_TYPE3", "PAYSLIP_FROM_CURRENT_USER", "PAYSLIP_BCC_CURRENT_USER", "AUTO_INVOICING", "VALIDATE_HOURS_PER_WEEK_WH", "VALIDATE_HOURS_PER_DAY24", "MODULE_INVOICE_FEE_COMMENT", "INVOICE_ROUNDOFF", "MODULE_EMPLOYEE_ACCOUNTING", "MODULE_DEPARTMENT_ACCOUNTING", "SHOW_DEPARTMENT_INDUSTRY", "MODULE_PROJECT_ACCOUNTING", "MODULE_PRODUCT_ACCOUNTING", "SEND_IMPORTED_INVOICES", "MODULE_ELECTRO", "MODULE_NRF", "MODULE_ELPROFFEN", "MODULE_AMORTIZATION", "MODULE_RESULT_BUDGET", "MODULE_CHANGE_DEBT_COLLECTOR", "INVOICE_PERIOD_COUNT", "INVOICING_PERIOD_TYPE", "INVOICING_PERIOD_UNIT", "IS_AUTO_REMIND_ENABLED_TYPE2", "IS_AUTO_REMIND_ENABLED_TYPE3", "SINGLE_CUSTOMER_INVOICE_COMPRESSES", "MODULE_VOUCHER_TYPES", "MODULE_ONNINEN123", "MODULE_ELEKTRO_UNION", "MODULE_ARCHIVE", "VACATION_BALANCE_REDUCED_DAYS", "IS_ACCOUNTANT", "IS_AUDITOR", "IS_RESELLER", "PROJECT_ACTIVITY_BUDGET_IS_MASTER", "TRAVEL_DIET_IGNORE_POSTING", "TRAVEL_NIGHT_IGNORE_POSTING", "TRAVEL_DRIVING_IGNORE_POSTING", "MODULE_WAREHOUSE", "ORDER_SHOW_ORDER_DATE", "OFFER_SHOW_OFFER_DATE", "MODULE_INVOICE_IMPORT", "MODULE_EMAIL", "PRODUCT_SET_COST_FROM_ORDER_LINE", "INVOICE_SHOW_MARKUP_DISCOUNT", "INVOICE_SHOW_PRODUCT_NUMBER", "MODULE_NETS_PRINT_SALARY", "MODULE_NETS_PRINT_INVOICE", "MODULE_BOLIGMAPPA", "MODULE_APPROVE_VOUCHER", "MODULE_APPROVE_DEPARTMENT_VOUCHER", "MODULE_APPROVE_PROJECT_VOUCHER", "DEFAULT_IS_PRIVATE_CUSTOMER", "MODULE_MESAN", "MODULE_MULTIPLE_LEDGERS", "MODULE_DIVISIONS", "OFFER_FROM_CURRENT_USER", "ORDER_CONFIRMATION_CURRENT_USER", "MODULE_ACCOUNTANT_CONNECT_CLIENT", "MODULE_WAGE_PROJECT_ACCOUNTING", "MODULE_WAGE_AMORTIZATION", "TRIPLETEX_SUPPORT_LOGIN_ACCESS", "MODULE_ACTIVITY_HOURLY_WAGE_WAGE_CODE", "MODULE_SUBSCRIPTIONS_PERIODISATION", "MODULE_API_20", "REMIT_VOUCHERS_ONLY", "MODULE_FINANCE_TAX", "MODULE_SMART_SCAN", "MODULE_ORDER_OUT", "IS_TRAVEL_REPORT_TAX_FREE_DRIVING_RATES", "INCLUDE_TRIPLETEX_ACCOUNTANT_INVOICE_SUMMARY_CSV", "INVOICE_INCLUDE_COMMON_ATTACHMENTS", "MODULE_CONTROL_SCHEMA_REQUIRED_HOUR_TRACKING", "MODULE_CONTROL_SCHEMA_REQUIRED_INVOICING", "MODULE_INVOICE_OPTION_VIPPS", "MODULE_DIGITAL_SIGNATURE" ] } } } }, "ResponseWrapperCompanyModules" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/CompanyModules" } } }, "DepartmentBuilder" : { "type" : "object", "properties" : { "companyId" : { "type" : "integer", "format" : "int64" }, "number" : { "type" : "integer", "format" : "int64" }, "name" : { "type" : "string" }, "description" : { "type" : "string" }, "externalAccountNumber" : { "type" : "string" }, "departmentManagerEmployeeId" : { "type" : "integer", "format" : "int64" } } }, "DocumentBuilder" : { "type" : "object", "properties" : { "companyId" : { "type" : "integer", "format" : "int64" }, "xhtml" : { "type" : "boolean" } } }, "EmployeeBuilder" : { "type" : "object", "properties" : { "companyId" : { "type" : "integer", "format" : "int64" }, "userId" : { "type" : "integer", "format" : "int64" }, "departmentId" : { "type" : "integer", "format" : "int32" }, "number" : { "type" : "string" }, "firstName" : { "type" : "string" }, "lastName" : { "type" : "string" }, "description" : { "type" : "string" }, "loginEndDate" : { "type" : "string" }, "employeeCategoryId" : { "type" : "integer", "format" : "int64" }, "external" : { "type" : "boolean" }, "customerId" : { "type" : "integer", "format" : "int64" }, "userCategory" : { "type" : "integer", "format" : "int64" }, "owner" : { "type" : "boolean" }, "auditor" : { "type" : "boolean" }, "accountant" : { "type" : "boolean" }, "enkeltpersonsforetak" : { "type" : "boolean" }, "proxy" : { "type" : "boolean" }, "robot" : { "type" : "boolean" }, "inactive" : { "type" : "boolean" }, "dateOfBirth" : { "type" : "string" }, "allowRegInfo" : { "type" : "boolean" }, "allowLogin" : { "type" : "boolean" }, "wageReceiver" : { "type" : "boolean" }, "createLogId" : { "type" : "integer", "format" : "int64" }, "payslipOnly" : { "type" : "boolean" } } }, "EmployeeDeductionTableBuilder" : { "type" : "object", "properties" : { "companyId" : { "type" : "integer", "format" : "int64" }, "employeeId" : { "type" : "integer", "format" : "int64" }, "date" : { "type" : "string" }, "percentage" : { "type" : "number", "format" : "double" }, "taxFreeAmount" : { "type" : "number", "format" : "double" } } }, "EmployeeLoginInfoBuilder" : { "type" : "object", "properties" : { "companyId" : { "type" : "integer", "format" : "int64" }, "ip" : { "type" : "string" }, "port" : { "type" : "string" }, "loginResult" : { "type" : "integer", "format" : "int32" }, "browserDetails" : { "type" : "string" }, "employeeId" : { "type" : "integer", "format" : "int64" }, "username" : { "type" : "string" }, "timestamp" : { "type" : "string" } } }, "EmploymentBuilder" : { "type" : "object", "properties" : { "companyId" : { "type" : "integer", "format" : "int64" }, "employeeId" : { "type" : "integer", "format" : "int64" }, "startDate" : { "type" : "string" }, "endDate" : { "type" : "string" }, "divisionId" : { "type" : "integer", "format" : "int64" } } }, "ResponseWrapperEmployeeBuilder" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/EmployeeBuilder" } } }, "EmployeeRoleBuilder" : { "type" : "object", "properties" : { "companyId" : { "type" : "integer", "format" : "int64" }, "employeeId" : { "type" : "integer", "format" : "int64" }, "robotEmployeeId" : { "type" : "integer", "format" : "int64" }, "roleIds" : { "type" : "array", "items" : { "type" : "integer", "format" : "int32" } }, "customerId" : { "type" : "integer", "format" : "int64" } } }, "EnhetsRegisteretBuilder" : { "type" : "object", "properties" : { "orgNumber" : { "type" : "integer", "format" : "int64" }, "name" : { "type" : "string" }, "address" : { "type" : "string" }, "postalCode" : { "type" : "string" }, "postCity" : { "type" : "string" } } }, "HourlistSettingsBuilder" : { "type" : "object", "properties" : { "companyId" : { "type" : "integer", "format" : "int64" }, "requireCommentsOnRegisteredHoursAllProjects" : { "type" : "boolean" }, "isCurrentMonthDefaultPeriod" : { "type" : "boolean" } } }, "HourBuilder" : { "type" : "object", "properties" : { "companyId" : { "type" : "integer", "format" : "int64" }, "employeeId" : { "type" : "integer", "format" : "int64" }, "date" : { "type" : "string" }, "projectId" : { "type" : "integer", "format" : "int64" }, "activityId" : { "type" : "integer", "format" : "int64" }, "hours" : { "type" : "number", "format" : "double" }, "comment" : { "type" : "string" }, "invoiceId" : { "type" : "integer", "format" : "int64" }, "approved" : { "type" : "boolean" } } }, "MonthlyHourlistBuilder" : { "type" : "object", "properties" : { "companyId" : { "type" : "integer", "format" : "int64" }, "employeeId" : { "type" : "integer", "format" : "int64" }, "date" : { "type" : "string" }, "approved" : { "type" : "boolean" }, "completed" : { "type" : "boolean" }, "approvedDate" : { "type" : "string" }, "approvedUntil" : { "type" : "string" }, "approvedById" : { "type" : "integer", "format" : "int64" } } }, "WeeklyHourlistBuilder" : { "type" : "object", "properties" : { "companyId" : { "type" : "integer", "format" : "int64" }, "employeeId" : { "type" : "integer", "format" : "int64" }, "week" : { "type" : "integer", "format" : "int64" }, "year" : { "type" : "integer", "format" : "int64" }, "completed" : { "type" : "boolean" }, "approved" : { "type" : "boolean" }, "approvedBy" : { "type" : "integer", "format" : "int64" }, "date" : { "type" : "string" }, "approvedUntil" : { "type" : "string" } } }, "NoteBuilder" : { "type" : "object", "properties" : { "companyId" : { "type" : "integer", "format" : "int64" }, "content" : { "type" : "string" }, "projectId" : { "type" : "integer", "format" : "int64" }, "createdDate" : { "type" : "string" }, "updatedDate" : { "type" : "string" } } }, "InvoiceBuilder" : { "type" : "object", "properties" : { "companyId" : { "type" : "integer", "format" : "int64" }, "number" : { "type" : "integer", "format" : "int64" }, "projectId" : { "type" : "integer", "format" : "int64" }, "date" : { "type" : "string" }, "approved" : { "type" : "boolean" }, "charged" : { "type" : "boolean" }, "history" : { "type" : "string" }, "comment" : { "type" : "string" }, "expense" : { "type" : "boolean" }, "termOfPayment" : { "type" : "string" }, "amount" : { "type" : "number", "format" : "double" }, "amountCurrency" : { "type" : "integer", "format" : "int32" }, "amountExVat" : { "type" : "number", "format" : "double" }, "amountExVatCurrency" : { "type" : "integer", "format" : "int32" }, "vendorId" : { "type" : "integer", "format" : "int32" }, "vendorInvoiceNumber" : { "type" : "integer", "format" : "int32" }, "currencyId" : { "type" : "integer", "format" : "int32" }, "voucherId" : { "type" : "integer", "format" : "int32" }, "kid" : { "type" : "string" }, "externalNumberSeries" : { "type" : "boolean" } } }, "InvoiceOrderBuilder" : { "type" : "object", "properties" : { "companyId" : { "type" : "integer", "description" : "The ID of the company for which the invoice is being built.", "format" : "int64" }, "invoiceId" : { "type" : "integer", "description" : "The ID of the invoice being built.", "format" : "int64" }, "projectId" : { "type" : "integer", "description" : "The ID of the project associated with the invoice.", "format" : "int64" }, "includeHours" : { "type" : "boolean", "description" : "Indicates whether to include hours in the invoice order." } } }, "OrderLineBuilder" : { "type" : "object", "properties" : { "projectId" : { "type" : "integer", "format" : "int32" }, "companyId" : { "type" : "integer", "format" : "int64" }, "invoiceId" : { "type" : "integer", "format" : "int64" }, "orderLineId" : { "type" : "integer", "format" : "int32" } } }, "OrderOutBuilder" : { "type" : "object", "properties" : { "projectId" : { "type" : "integer", "format" : "int64" }, "companyId" : { "type" : "integer", "format" : "int64" }, "number" : { "type" : "string" }, "invoiceComment" : { "type" : "string" }, "type" : { "type" : "integer", "format" : "int32" } } }, "PilotFeature" : { "type" : "object", "properties" : { "companyId" : { "type" : "integer", "format" : "int64" }, "pilotFeatures" : { "type" : "array", "items" : { "type" : "string", "enum" : [ "AO_RECONCILIATIONS", "LOGISTICS", "REPORT_ENGINE", "MULTIPLE_LEDGERS", "FINANCIAL_SERVICES", "YEAR_END", "CREATE_SALARY_REDESIGN_MVP", "CHAT", "IMPORT_EHF_IN_API", "NONE" ] } } } }, "UserPilotFeature" : { "type" : "object", "properties" : { "userPilotFeatures" : { "type" : "array", "items" : { "type" : "string", "enum" : [ "AO_RECONCILIATIONS", "ANOMALY_DETECTION" ] } }, "userId" : { "type" : "integer", "format" : "int64" } } }, "PostingRuleBuilder" : { "type" : "object", "properties" : { "companyId" : { "type" : "integer", "format" : "int64" }, "syncId" : { "type" : "integer", "format" : "int32" }, "description" : { "type" : "string" }, "debitAccountId" : { "type" : "integer", "format" : "int64" }, "customerId" : { "type" : "integer", "format" : "int64" }, "vendorId" : { "type" : "integer", "format" : "int64" }, "paymentIn" : { "type" : "boolean" }, "paymentOut" : { "type" : "boolean" }, "disabled" : { "type" : "boolean" }, "inactive" : { "type" : "boolean" }, "showIncomingInvoice" : { "type" : "boolean" }, "showWagePayment" : { "type" : "boolean" }, "showVatReturns" : { "type" : "boolean" }, "showWagePeriodTransaction" : { "type" : "boolean" }, "showOrderInvoice" : { "type" : "boolean" } } }, "ProductBuilder" : { "type" : "object", "properties" : { "companyId" : { "type" : "integer", "format" : "int64" }, "name" : { "type" : "string" }, "description" : { "type" : "string" }, "elNumber" : { "type" : "integer", "format" : "int32" }, "number" : { "type" : "integer", "format" : "int32" }, "vatType" : { "type" : "integer", "format" : "int32" }, "productUnitId" : { "type" : "integer", "format" : "int64" } } }, "ProductUnitBuilder" : { "type" : "object", "properties" : { "companyId" : { "type" : "integer", "format" : "int64" }, "name" : { "type" : "string" }, "nameShort" : { "type" : "string" }, "commonCode" : { "type" : "string" } } }, "ProjectBuilder" : { "type" : "object", "properties" : { "companyId" : { "type" : "integer", "format" : "int64" }, "number" : { "type" : "string" }, "name" : { "type" : "string" }, "comment" : { "type" : "string" }, "employeeId" : { "type" : "integer", "format" : "int64" }, "closed" : { "type" : "boolean" }, "startDate" : { "type" : "string" }, "endDate" : { "type" : "string" }, "project" : { "type" : "boolean" }, "allowTimeTrackingForParticipantsOnly" : { "type" : "boolean" }, "internal" : { "type" : "boolean" }, "deliveryAddressId" : { "type" : "integer", "format" : "int64" }, "currencyId" : { "type" : "integer", "format" : "int64" }, "parentId" : { "type" : "integer", "format" : "int64" } } }, "ProjectControlSchemaBuilder" : { "type" : "object", "properties" : { "companyId" : { "type" : "integer", "format" : "int64" }, "projectId" : { "type" : "integer", "format" : "int64" } } }, "ProjectParticipantBuilder" : { "type" : "object", "properties" : { "companyId" : { "type" : "integer", "format" : "int64" }, "projectId" : { "type" : "integer", "format" : "int64" }, "employeeId" : { "type" : "integer", "format" : "int64" }, "projectManager" : { "type" : "boolean" }, "mesanPercentageHourPriceReduction" : { "type" : "integer", "format" : "int64" } } }, "ReportBuilder" : { "type" : "object", "properties" : { "companyId" : { "type" : "integer", "format" : "int64" } } }, "ResponseWrapperReportBuilder" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ReportBuilder" } } }, "VatSettingsBuilder" : { "type" : "object", "properties" : { "companyId" : { "type" : "integer", "format" : "int64" }, "hasVatOutMedium" : { "type" : "boolean" }, "hasVatOutLow" : { "type" : "boolean" }, "hasVatOutInside" : { "type" : "boolean" }, "hasVatOutMediumFish" : { "type" : "boolean" }, "hasVatInMedium" : { "type" : "boolean" }, "vatPostingsPerDepartment" : { "type" : "boolean" }, "status" : { "type" : "integer", "format" : "int32" } } }, "ResponseWrapperVatSettingsBuilder" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/VatSettingsBuilder" } } }, "VoucherBuilder" : { "type" : "object", "properties" : { "companyId" : { "type" : "integer", "format" : "int64" }, "type" : { "type" : "integer", "format" : "int32" }, "year" : { "type" : "integer", "format" : "int32" }, "description" : { "type" : "string" }, "date" : { "type" : "string" } } }, "VoucherSettingsBuilder" : { "type" : "object", "properties" : { "companyId" : { "type" : "integer", "format" : "int64" }, "moduleWageInfoPrivacy" : { "type" : "boolean" }, "receptionImportAttachmentless" : { "type" : "boolean" } } }, "VoucherStatusBuilder" : { "type" : "object", "properties" : { "companyId" : { "type" : "integer", "format" : "int64" }, "voucherId" : { "type" : "integer", "format" : "int64" }, "status" : { "type" : "integer", "format" : "int32" }, "type" : { "type" : "integer", "format" : "int32" }, "timestamp" : { "type" : "string" }, "processOwner" : { "type" : "integer", "format" : "int32" } } }, "EmployeeWageCodeBuilder" : { "type" : "object", "properties" : { "companyId" : { "type" : "integer", "format" : "int64" }, "employeeId" : { "type" : "integer", "format" : "int64" }, "wageCodeId" : { "type" : "integer", "format" : "int64" } } }, "WageCodeBuilder" : { "type" : "object", "properties" : { "companyId" : { "type" : "integer", "format" : "int64" }, "number" : { "type" : "string" }, "name" : { "type" : "string" }, "description" : { "type" : "string" }, "inactive" : { "type" : "boolean" }, "hourlistRestrictAccess" : { "type" : "boolean" }, "showInHourlist" : { "type" : "boolean" }, "forceTaxPercentageDeduction" : { "type" : "boolean" } } }, "WagePaymentBuilder" : { "type" : "object", "properties" : { "companyId" : { "type" : "integer", "format" : "int64" }, "employeeId" : { "type" : "integer", "format" : "int64" }, "description" : { "type" : "string" }, "vacationAllowanceExtraAmount" : { "type" : "integer", "format" : "int32" }, "wageTransactionId" : { "type" : "integer", "format" : "int64" } } }, "WageSettingsBuilder" : { "type" : "object", "properties" : { "companyId" : { "type" : "integer", "format" : "int64" }, "maxEmployeesPerVoucher" : { "type" : "integer", "format" : "int32" } } }, "WageSpecificationBuilder" : { "type" : "object", "properties" : { "companyId" : { "type" : "integer", "format" : "int64" }, "wageCodeId" : { "type" : "integer", "format" : "int64" }, "employeeId" : { "type" : "integer", "format" : "int64" }, "wagePaymentId" : { "type" : "integer", "format" : "int64" }, "date" : { "type" : "string" }, "description" : { "type" : "string" }, "count" : { "type" : "integer", "format" : "int32" }, "type" : { "type" : "integer", "format" : "int32" } } }, "WageTransactionBuilder" : { "type" : "object", "properties" : { "companyId" : { "type" : "integer", "format" : "int64" }, "comment" : { "type" : "string" }, "historical" : { "type" : "boolean" }, "payrollTaxCalcMethod" : { "type" : "string" } } }, "ResponseWrapperTimesheetAllocated" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/TimesheetAllocated" } } }, "TimesheetAllocated" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "employee" : { "$ref" : "#/components/schemas/Employee" }, "project" : { "$ref" : "#/components/schemas/Project" }, "activity" : { "$ref" : "#/components/schemas/Activity" }, "date" : { "type" : "string" }, "hours" : { "type" : "number" }, "isApproved" : { "type" : "boolean" }, "managerComment" : { "type" : "string" } }, "readOnly" : true }, "ListResponseTimesheetAllocated" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/TimesheetAllocated" } } } }, "CompanyHolidays" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "date" : { "type" : "string" }, "percentage" : { "type" : "number" } }, "readOnly" : true }, "ResponseWrapperCompanyHolidays" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/CompanyHolidays" } } }, "ListResponseCompanyHolidays" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/CompanyHolidays" } } } }, "TimeClock" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "employee" : { "$ref" : "#/components/schemas/Employee" }, "project" : { "$ref" : "#/components/schemas/Project" }, "activity" : { "$ref" : "#/components/schemas/Activity" }, "timesheetEntry" : { "$ref" : "#/components/schemas/TimesheetEntry" }, "date" : { "type" : "string" }, "timeStart" : { "type" : "string" }, "timeStop" : { "type" : "string" }, "hoursStart" : { "minimum" : 0, "type" : "number" }, "lunchBreakDuration" : { "minimum" : 0, "type" : "number" }, "newTimeSheetEntryComment" : { "type" : "string", "readOnly" : true } }, "description" : "Link to stop watches on this hour.", "readOnly" : true }, "TimesheetEntry" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "project" : { "$ref" : "#/components/schemas/Project" }, "activity" : { "$ref" : "#/components/schemas/Activity" }, "date" : { "type" : "string" }, "hours" : { "type" : "number" }, "chargeableHours" : { "type" : "number", "readOnly" : true }, "employee" : { "$ref" : "#/components/schemas/Employee" }, "timeClocks" : { "type" : "array", "description" : "Link to stop watches on this hour.", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/TimeClock" } }, "comment" : { "type" : "string" }, "locked" : { "type" : "boolean", "description" : "Indicates if the hour can be changed.", "readOnly" : true }, "chargeable" : { "type" : "boolean", "readOnly" : true }, "invoice" : { "$ref" : "#/components/schemas/Invoice" }, "hourlyRate" : { "type" : "number", "readOnly" : true }, "hourlyCost" : { "type" : "number", "readOnly" : true }, "hourlyCostPercentage" : { "type" : "number", "readOnly" : true }, "projectChargeableHours" : { "maximum" : 24, "minimum" : 0, "type" : "number", "description" : "Number of chargeable hours on an activity connected to a project." } }, "readOnly" : true }, "ResponseWrapperTimesheetEntry" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/TimesheetEntry" } } }, "ResponseWrapperBigDecimal" : { "type" : "object", "properties" : { "value" : { "type" : "number" } } }, "ListResponseTimesheetEntry" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/TimesheetEntry" } } } }, "TimesheetEntrySearchResponse" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/TimesheetEntry" } }, "sumAllHours" : { "type" : "number", "readOnly" : true } } }, "FlexSummary" : { "type" : "object", "properties" : { "incomingHourBalance" : { "type" : "number", "readOnly" : true }, "outgoingHourBalance" : { "type" : "number", "readOnly" : true }, "change" : { "type" : "number", "readOnly" : true } }, "readOnly" : true }, "HourSummary" : { "type" : "object", "properties" : { "sumHours" : { "type" : "number", "readOnly" : true }, "hoursWithPay" : { "type" : "number", "readOnly" : true }, "hourlyWageHoursWithPay" : { "type" : "number", "readOnly" : true }, "standardTime" : { "type" : "number", "readOnly" : true }, "nonChargeableHours" : { "type" : "number", "readOnly" : true }, "chargeableHours" : { "type" : "number", "readOnly" : true }, "nonChargeableHoursWithPay" : { "type" : "number", "readOnly" : true }, "budgetChargeableHours" : { "type" : "number", "readOnly" : true } }, "readOnly" : true }, "ListResponseMonthlyStatus" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/MonthlyStatus" } } } }, "MonthlyStatus" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "employee" : { "$ref" : "#/components/schemas/Employee" }, "timesheetEntries" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/TimesheetEntry" } }, "approvedDate" : { "type" : "string", "readOnly" : true }, "completed" : { "type" : "boolean", "readOnly" : true }, "approvedBy" : { "$ref" : "#/components/schemas/Employee" }, "approved" : { "type" : "boolean", "readOnly" : true }, "approvedUntilDate" : { "type" : "string", "readOnly" : true }, "monthYear" : { "type" : "string", "readOnly" : true }, "hoursPayout" : { "type" : "number" }, "vacationPayout" : { "type" : "number" }, "hourSummary" : { "$ref" : "#/components/schemas/HourSummary" }, "flexSummary" : { "$ref" : "#/components/schemas/FlexSummary" }, "vacationSummary" : { "$ref" : "#/components/schemas/VacationSummary" } }, "readOnly" : true }, "VacationSummary" : { "type" : "object", "properties" : { "incomingVacationBalance" : { "type" : "number", "readOnly" : true }, "outgoingVacationBalance" : { "type" : "number", "readOnly" : true }, "vacationTakenInPeriod" : { "type" : "number", "readOnly" : true }, "vacationTakenThisYear" : { "type" : "number", "readOnly" : true } }, "readOnly" : true }, "ResponseWrapperMonthlyStatus" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/MonthlyStatus" } } }, "TimesheetProjectSalaryTypeSpecification" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "employee" : { "$ref" : "#/components/schemas/Employee" }, "project" : { "$ref" : "#/components/schemas/Project" }, "activity" : { "$ref" : "#/components/schemas/Activity" }, "salaryType" : { "$ref" : "#/components/schemas/SalaryType" }, "description" : { "type" : "string" }, "date" : { "type" : "string" }, "count" : { "type" : "number" }, "wagePayment" : { "$ref" : "#/components/schemas/Payslip" } } }, "ResponseWrapperTimesheetProjectSalaryTypeSpecification" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/TimesheetProjectSalaryTypeSpecification" } } }, "ListResponseTimesheetProjectSalaryTypeSpecification" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/TimesheetProjectSalaryTypeSpecification" } } } }, "ResponseWrapperTimesheetSalaryTypeSpecification" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/TimesheetSalaryTypeSpecification" } } }, "TimesheetSalaryTypeSpecification" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "employee" : { "$ref" : "#/components/schemas/Employee" }, "salaryType" : { "$ref" : "#/components/schemas/SalaryType" }, "description" : { "type" : "string" }, "date" : { "type" : "string" }, "count" : { "type" : "number" } }, "readOnly" : true }, "ListResponseTimesheetSalaryTypeSpecification" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/TimesheetSalaryTypeSpecification" } } } }, "ResponseWrapperTimesheetSettings" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/TimesheetSettings" } } }, "TimesheetSettings" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "timeClock" : { "type" : "boolean", "readOnly" : true }, "timesheetCompleted" : { "type" : "boolean", "readOnly" : true }, "flexBalance" : { "type" : "boolean", "readOnly" : true }, "vacationBalance" : { "type" : "boolean", "readOnly" : true }, "showDetailedTimeSheet" : { "type" : "boolean", "readOnly" : true }, "requireCommentsOnRegisteredHoursAllProjects" : { "type" : "boolean", "readOnly" : true }, "defaultProjectActivity" : { "$ref" : "#/components/schemas/Activity" } } }, "ListResponseTimeSheetAutosaveHour" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/TimeSheetAutosaveHour" } } } }, "TimeSheetAutosaveHour" : { "type" : "object", "properties" : { "hourEntry" : { "$ref" : "#/components/schemas/TimesheetEntry" }, "newStopwatchIntervalString" : { "type" : "string", "readOnly" : true }, "stopwatchIntervalString" : { "type" : "string", "readOnly" : true }, "errorMessage" : { "type" : "string", "readOnly" : true } } }, "ListResponseTimeSheetAutosaveWageSpec" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/TimeSheetAutosaveWageSpec" } } } }, "TimeSheetAutosaveWageSpec" : { "type" : "object", "properties" : { "wageSpecEntry" : { "$ref" : "#/components/schemas/TimesheetProjectSalaryTypeSpecification" }, "errorMessage" : { "type" : "string", "readOnly" : true } } }, "ListResponseTimeSheetAutosaveRemaining" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/TimeSheetAutosaveRemaining" } } } }, "TimeSheetAutosaveRemaining" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "employeeId" : { "type" : "integer", "format" : "int64" }, "projectId" : { "type" : "integer", "format" : "int64" }, "activityId" : { "type" : "integer", "format" : "int64" }, "date" : { "type" : "string" }, "hours" : { "type" : "number" }, "comment" : { "type" : "string" }, "isConfirmed" : { "type" : "boolean", "readOnly" : true }, "errorMessage" : { "type" : "string", "readOnly" : true } } }, "ResponseWrapperTimeClock" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/TimeClock" } } }, "ListResponseTimeClock" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/TimeClock" } } } }, "ResponseWrapperWeek" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/Week" } } }, "Week" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "employee" : { "$ref" : "#/components/schemas/Employee" }, "timesheetEntries" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/TimesheetEntry" } }, "year" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "week" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "completed" : { "type" : "boolean", "readOnly" : true }, "approved" : { "type" : "boolean", "readOnly" : true }, "approvedBy" : { "$ref" : "#/components/schemas/Employee" }, "approvedDate" : { "type" : "string", "readOnly" : true } } }, "ListResponseWeek" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Week" } } } }, "ResponseWrapperTimeTravellersAuthDTO" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/TimeTravellersAuthDTO" } } }, "TimeTravellersAuthDTO" : { "type" : "object", "properties" : { "isProxy" : { "type" : "boolean", "readOnly" : true }, "isAuthCreate" : { "type" : "boolean", "readOnly" : true }, "authLevelWage" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "authLevelExpense" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "isAuthExpenseSettings" : { "type" : "boolean", "readOnly" : true }, "isProjectManagerOnAnyProject" : { "type" : "boolean", "readOnly" : true } } }, "ResponseWrapperTimeTravellersContextDTO" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/TimeTravellersContextDTO" } } }, "TimeTravellersContextDTO" : { "type" : "object", "properties" : { "approveExpenses" : { "type" : "boolean", "readOnly" : true }, "onlyIncludeExpenseVouchersOnSalary" : { "type" : "boolean", "readOnly" : true }, "expenseSettingsUrl" : { "type" : "string", "readOnly" : true }, "isTrialAccount" : { "type" : "boolean", "readOnly" : true } } }, "ResponseWrapperAccommodationAllowance" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/AccommodationAllowance" } } }, "ListResponseAccommodationAllowance" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/AccommodationAllowance" } } } }, "ResponseWrapperCost" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/Cost" } } }, "ListResponseCost" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Cost" } } } }, "ResponseWrapperCostParticipant" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/CostParticipant" } } }, "ListResponseCostParticipant" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/CostParticipant" } } } }, "ResponseWrapperDrivingStop" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/DrivingStop" } } }, "ResponseWrapperMileageAllowance" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/MileageAllowance" } } }, "ResponseWrapperMapIntegerTlxNumber" : { "type" : "object", "properties" : { "value" : { "type" : "object", "additionalProperties" : { "type" : "number" } } } }, "ListResponseMileageAllowance" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/MileageAllowance" } } } }, "ResponseWrapperPassenger" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/Passenger" } } }, "ListResponsePassenger" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Passenger" } } } }, "ListResponsePerDiemCompensationTransient" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/PerDiemCompensationTransient" } } } }, "PerDiemCompensationTransient" : { "type" : "object", "properties" : { "travelExpense" : { "$ref" : "#/components/schemas/TravelExpense" }, "rateType" : { "$ref" : "#/components/schemas/TravelExpenseRate" }, "rateCategory" : { "$ref" : "#/components/schemas/TravelExpenseRateCategory" }, "countryCode" : { "type" : "string", "readOnly" : true }, "travelExpenseZoneId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "overnightAccommodation" : { "type" : "string", "readOnly" : true, "enum" : [ "NONE", "HOTEL", "BOARDING_HOUSE_WITHOUT_COOKING", "BOARDING_HOUSE_WITH_COOKING" ] }, "location" : { "type" : "string", "readOnly" : true }, "address" : { "type" : "string", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "rate" : { "type" : "number", "readOnly" : true }, "amount" : { "type" : "number", "readOnly" : true }, "isDeductionForBreakfast" : { "type" : "boolean", "readOnly" : true }, "isDeductionForLunch" : { "type" : "boolean", "readOnly" : true }, "isDeductionForDinner" : { "type" : "boolean", "readOnly" : true } }, "readOnly" : true }, "ResponseWrapperPerDiemCompensation" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/PerDiemCompensation" } } }, "ListResponsePerDiemCompensation" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/PerDiemCompensation" } } } }, "ResponseWrapperTravelExpense" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/TravelExpense" } } }, "ResponseWrapperTravelExpenseRate" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/TravelExpenseRate" } } }, "ListResponseTravelExpenseRate" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/TravelExpenseRate" } } } }, "ResponseWrapperTravelExpenseRateCategory" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/TravelExpenseRateCategory" } } }, "ListResponseTravelExpenseRateCategory" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/TravelExpenseRateCategory" } } } }, "ResponseWrapperTravelExpenseRateCategoryGroup" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/TravelExpenseRateCategoryGroup" } } }, "TravelExpenseRateCategoryGroup" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "name" : { "type" : "string", "readOnly" : true }, "isForeignTravel" : { "type" : "boolean" }, "fromDate" : { "type" : "string" }, "toDate" : { "type" : "string" } }, "readOnly" : true }, "ListResponseTravelExpenseRateCategoryGroup" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/TravelExpenseRateCategoryGroup" } } } }, "ResponseWrapperTravelCostCategory" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/TravelCostCategory" } } }, "ListResponseTravelCostCategory" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/TravelCostCategory" } } } }, "ResponseWrapperTravelPaymentType" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/TravelPaymentType" } } }, "ListResponseTravelPaymentType" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/TravelPaymentType" } } } }, "ResponseWrapperTravelExpenseSettings" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/TravelExpenseSettings" } } }, "TravelExpenseSettings" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "useRates" : { "type" : "boolean" }, "approvalRequired" : { "type" : "boolean" }, "taxFreePerDiemRates" : { "type" : "boolean" }, "taxFreeMileageRates" : { "type" : "integer", "format" : "int32" }, "perDiemNotCompensated" : { "type" : "boolean" }, "accommodationNotCompensated" : { "type" : "boolean" }, "mileageNotCompensated" : { "type" : "boolean" }, "canApproveOwnExpenses" : { "type" : "boolean" } } }, "ResponseWrapperTravelExpenseZone" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/TravelExpenseZone" } } }, "TravelExpenseZone" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "countryCode" : { "type" : "string", "description" : "The ISO 3166-1 Alpha2 code of the country (2 letters). https://en.wikipedia.org/wiki/ISO_3166-1", "readOnly" : true }, "zoneName" : { "type" : "string", "readOnly" : true }, "isDisabled" : { "type" : "boolean", "readOnly" : true }, "governmentName" : { "type" : "string", "description" : "The Government name ", "readOnly" : true }, "continent" : { "type" : "string", "readOnly" : true }, "fromDate" : { "type" : "string", "readOnly" : true }, "toDate" : { "type" : "string", "readOnly" : true }, "currencyId" : { "type" : "integer", "format" : "int32", "readOnly" : true } }, "readOnly" : true }, "ListResponseTravelExpenseZone" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/TravelExpenseZone" } } } }, "ResponseWrapperTripletexAccountReturn" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/TripletexAccountReturn" } } }, "TripletexAccountReturn" : { "type" : "object", "properties" : { "company" : { "$ref" : "#/components/schemas/Company" }, "administrator" : { "$ref" : "#/components/schemas/Employee" }, "administratorApiToken" : { "$ref" : "#/components/schemas/EmployeeToken" }, "companyOwnedApiToken" : { "$ref" : "#/components/schemas/EmployeeToken" }, "companyOwnedApiTokenRobotId" : { "type" : "integer", "format" : "int32" }, "tripletexAccountCreatedMessage" : { "type" : "string" }, "employeeToken" : { "$ref" : "#/components/schemas/EmployeeToken" } } }, "AccountAdminAccess" : { "type" : "object", "properties" : { "accessType" : { "type" : "string", "description" : "Decides who will get admin access.", "enum" : [ "NONE", "CREATOR_ONLY", "ALL_CLIENT_ADMINS_FROM_CREATOR_COMPANY", "SPECIFIC" ] }, "specificAdminIds" : { "type" : "array", "description" : "Specific admin IDs to grant access to.", "items" : { "type" : "integer", "description" : "Specific admin IDs to grant access to.", "format" : "int64" } } }, "description" : "Account admin access for the customer. If not set, the default access will be used which is all admins from the accountant company." }, "CustomerTripletexAccount2" : { "type" : "object", "properties" : { "administrator" : { "$ref" : "#/components/schemas/Employee" }, "customerId" : { "type" : "integer", "description" : "The customer id to an already created customer to create a Tripletex account for.", "format" : "int64" }, "accessRequestType" : { "type" : "string", "description" : "If the accounting office is both an accountant and an auditor", "enum" : [ "DEFAULT", "ACCOUNTANT", "AUDITOR" ] }, "modules" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/SalesModule" } }, "type" : { "type" : "string", "enum" : [ "NONE", "ENK", "AS", "NUF", "ANS", "DA", "PRE", "KS", "ASA", "BBL", "BRL", "GFS", "SPA", "SF", "IKS", "KF_FKF", "FCD", "EOFG", "BA", "STI", "ORG", "ESEK", "SA", "SAM", "BO", "VPFO", "OS", "FLI", "Other" ] }, "sendEmails" : { "type" : "boolean", "description" : "Should the emails normally sent during creation be sent in this case?" }, "autoValidateUserLogin" : { "type" : "boolean", "description" : "Should the user be automatically validated? SendEmails must be false for this to have any effect." }, "createApiToken" : { "type" : "boolean", "description" : "Creates a token for the admin user. The accounting office could also use their tokens so you might not need this." }, "sendInvoiceToCustomer" : { "type" : "boolean", "description" : "Should the invoices for this account be sent to the customer?" }, "customerInvoiceEmail" : { "type" : "string", "description" : "The address to send the invoice to at the customer." }, "invoiceReceiverCustomerId" : { "type" : "integer", "description" : "The id of the customer card for the invoice receiver company.", "format" : "int64" }, "creatorReceivingReceipt" : { "type" : "boolean", "description" : "Should the receipt for this order be sent to the user creating the account?" }, "numberOfEmployees" : { "minimum" : 0, "type" : "integer", "description" : "The number of employees in the customer company. Is used for calculating prices and setting some default settings, i.e. approval settings for timesheet.", "format" : "int32" }, "accountEndDatePeriod" : { "minimum" : 0, "type" : "integer", "description" : "Available for school resellers only. Number of months the account should be valid for. If not set, the account will be valid for 6 months.", "format" : "int32" }, "chartOfAccountsType" : { "type" : "string", "description" : "The chart of accounts to use for the new company", "enum" : [ "DEFAULT", "MAMUT_STD_PAYROLL", "MAMUT_NARF_PAYROLL", "AGRO_FORRETNING_PAYROLL", "AGRO_LANDBRUK_PAYROLL", "AGRO_FISKE_PAYROLL", "AGRO_FORSOKSRING_PAYROLL", "AGRO_IDRETTSLAG_PAYROLL", "AGRO_FORENING_PAYROLL" ] }, "vatStatusType" : { "type" : "string", "description" : "VAT type", "enum" : [ "VAT_REGISTERED", "VAT_NOT_REGISTERED", "VAT_APPLICANT" ] }, "vatTermType" : { "type" : "string", "description" : "VAT period", "enum" : [ "ONE_MONTH", "TWO_MONTHS", "THREE_MONTHS", "FOUR_MONTHS", "SIX_MONTHS", "YEAR", "NOT_REGISTERED" ] }, "customerCategoryId1" : { "type" : "integer", "description" : "Customer category 1 id, used to identify the previous accounting system", "format" : "int32" }, "accountAdminAccess" : { "$ref" : "#/components/schemas/AccountAdminAccess" }, "accountType" : { "type" : "string", "enum" : [ "TEST", "PAYING", "FREE" ] } } }, "AgroToTripletex" : { "type" : "object", "properties" : { "userEmail" : { "type" : "string" } } }, "Dropdown" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "description" : "An unique ID for each element.", "format" : "int32" }, "name" : { "type" : "string", "description" : "A display name for each element." } }, "description" : "List containing the Tripletex sales modules types." }, "ResponseWrapperTripletexAccountCreation" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/TripletexAccountCreation" } } }, "TripletexAccountCreation" : { "type" : "object", "properties" : { "customerAccountNumber" : { "type" : "integer", "description" : "Customer account number.", "format" : "int32", "readOnly" : true }, "hasTripletexAccount" : { "type" : "boolean", "description" : "Flag for checking if the client has a Tripletex account. Used by the accountant or auditor to determine if they need to create a new Tripletex account for the client." }, "isTripletexSuspended" : { "type" : "boolean", "description" : "Flag for checking if Tripletex is currently suspended." }, "companyTypes" : { "type" : "array", "description" : "List containing the company types.", "items" : { "$ref" : "#/components/schemas/Dropdown" } }, "tripletexSalesModuleTypes" : { "type" : "array", "description" : "List containing the Tripletex sales modules types.", "items" : { "$ref" : "#/components/schemas/Dropdown" } }, "accountingSystemsOfOrigin" : { "type" : "array", "description" : "List containing the accounting systems of origins (customerCategoryId1).", "items" : { "$ref" : "#/components/schemas/Dropdown" } }, "customerInvoiceEmail" : { "type" : "string", "description" : "Email address for the customer invoicing." }, "invoiceReceiverCustomerId" : { "type" : "integer", "description" : "Invoice receiver id.", "format" : "int64", "readOnly" : true }, "hasAnotherAccountantInvoiceReceiver" : { "type" : "boolean", "description" : "True if the client currently has an accountant that is set as invoice receiver.", "readOnly" : true }, "customerCompany" : { "$ref" : "#/components/schemas/Company" }, "customerName" : { "type" : "string", "description" : "Customer company name." }, "customerOrganisationNumber" : { "type" : "string", "description" : "Customer company organization number." }, "creatorCompany" : { "$ref" : "#/components/schemas/TripletexAccountCreator" }, "accountantAssociationStatus" : { "type" : "string", "description" : "State of the accountant (or similar) and his customer with respect to the accountant having or getting access to the client.", "enum" : [ "NOT_RELEVANT", "CONNECTED", "CLIENT_ORG_NUM_MISSING", "CLIENT_ORG_NUM_INVALID", "NO_CLIENT_TLX_ACCOUNT", "CLIENT_TLX_ACCOUNT_EXISTS", "SEVERAL_TLX_ACCOUNTS_EXIST_ERROR" ] } } }, "TripletexAccountCreator" : { "type" : "object", "properties" : { "isSchoolReseller" : { "type" : "boolean", "description" : "Flag for checking if the creator company is a school reseller." }, "isAccountantOrSimilar" : { "type" : "boolean", "description" : "Flag for checking if the creator is either an accountant or an auditor." }, "isAccountantAndAuditor" : { "type" : "boolean", "description" : "Flag for checking if the creator is both an accountant and auditor." }, "isTripletex" : { "type" : "boolean", "description" : "Flag for checking if the creator is Tripletex." }, "creatorCustomerId" : { "type" : "integer", "description" : "Id of the creator's company card.", "format" : "int64", "readOnly" : true }, "companyName" : { "type" : "string", "description" : "Name of the creator company name." }, "companyInvoiceEmail" : { "type" : "string", "description" : "Email address for the accountant or auditor invoicing.", "readOnly" : true }, "creatorEmployeeEmail" : { "type" : "string", "description" : "Email of the new account creator." }, "creatorEmployeeId" : { "type" : "integer", "description" : "Id of the new account creator.", "format" : "int64", "readOnly" : true }, "isLoginEmployeeProxy" : { "type" : "boolean", "description" : "Flag for checking if the current logged in employee is a proxy." }, "creatorRelationTypes" : { "type" : "array", "description" : "The creator's tripletex company's type (accountant, auditor, both or others).", "items" : { "type" : "string", "description" : "The creator's tripletex company's type (accountant, auditor, both or others).", "enum" : [ "NONE", "ACCOUNTANT", "AUDITOR", "ACCOUNTANT_AND_AUDITOR", "RESELLER", "SCHOOL_RESELLER" ] } } }, "description" : "Information about the company creator/company that wants to establish access connection." }, "ResponseWrapperTripletexAccountPricingDetails" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/TripletexAccountPricingDetails" } } }, "TripletexAccountPricingDetails" : { "type" : "object", "properties" : { "numberOfEmployees" : { "type" : "integer", "description" : "A value representing the number of employees depending on the main module's type.", "format" : "int32" }, "numberOfVouchers" : { "type" : "integer", "description" : "An unique ID related to a specific Tripletex sales module type.", "format" : "int32" }, "hasNumberOfEmployees" : { "type" : "boolean", "description" : "Flag for checking the rendering of the number of employees dropdown." }, "hasNumberOfVouchers" : { "type" : "boolean", "description" : "Flag for checking the rendering of the number of vouchers per year dropdown." }, "prices" : { "$ref" : "#/components/schemas/TripletexPrices" }, "antallBrukere" : { "type" : "integer", "description" : "A value containing the number of employees for which the prices are computed.", "format" : "int32" }, "kidStartupFee" : { "type" : "number", "description" : "A value containing the KID's startup fee." }, "kidFee" : { "type" : "integer", "description" : "A value containing the KID's fee.", "format" : "int32" }, "scanningStartupFee" : { "type" : "integer", "description" : "A value containing scanning startup fee.", "format" : "int32" }, "scanningFee" : { "type" : "integer", "description" : "A value containing scanning fee.", "format" : "int32" }, "annualFee" : { "type" : "integer", "description" : "Contains annual fee.", "format" : "int32" }, "hasStartupEmployeesRow" : { "type" : "boolean", "description" : "Flag for checking if the startup employee's row should be displayed." }, "hasMonthlyEmployeesRow" : { "type" : "boolean", "description" : "Flag for checking if the monthly employee's row should be displayed." }, "hasMonthlyLogisticsRow" : { "type" : "boolean", "description" : "Flag for checking if the monthly logistics row should be displayed." }, "hasMonthlyFixedAssetsRegisterRow" : { "type" : "boolean", "description" : "Flag for checking if the monthly fixed assets register row should be displayed." }, "hasStartupCompanyRow" : { "type" : "boolean", "description" : "Flag for checking if the startup company's row should be displayed." }, "hasMonthlyCompanyRow" : { "type" : "boolean", "description" : "Flag for checking if the monthly company's row should be displayed." }, "hasKidRow" : { "type" : "boolean", "description" : "Flag for checking if the KID's row should be displayed." }, "hasRemitRow" : { "type" : "boolean", "description" : "Flag for checking if the remit's row should be displayed." }, "hasAnnualRow" : { "type" : "boolean", "description" : "Flag for checking if the Tripletex Fixed Assets Register module is checked." }, "totalStartupFees" : { "type" : "number", "description" : "A value containing the total startup fees." }, "totalMonthlyFees" : { "type" : "number", "description" : "A value containing the total monthly fees." }, "tripletexSalesModuleTypes" : { "type" : "array", "description" : "List containing the Tripletex sales modules types.", "items" : { "$ref" : "#/components/schemas/Dropdown" } } } }, "TripletexPrices" : { "type" : "object", "properties" : { "allPrices" : { "type" : "object", "additionalProperties" : { "type" : "object", "additionalProperties" : { "type" : "number" } } }, "sumStartupCategory1Users" : { "type" : "number" }, "sumServiceCategory1Users" : { "type" : "number" }, "listPriceCategory1UserStartup" : { "type" : "number" }, "listPriceCategory1UserService" : { "type" : "number" }, "sumStartup" : { "type" : "number" }, "sumService" : { "type" : "number" }, "sumMonthlyServiceCompany" : { "type" : "number" }, "sumMonthlyAdditionalServices" : { "type" : "number" }, "sumYearlyService" : { "type" : "number" }, "monthlyServiceUserCat1" : { "type" : "number" }, "listPriceMonthlyServiceUserCat1" : { "type" : "number" }, "monthlyServiceLogisticsUserCat1" : { "type" : "number" }, "listPriceMonthlyServiceLogisticsUserCat1" : { "type" : "number" } }, "description" : "DTO containing Tripletex's prices informations." }, "TripletexAccountModulesDetails" : { "type" : "object", "properties" : { "customerId" : { "type" : "integer", "description" : "An unique customer ID.", "format" : "int64" }, "numberOfVouchers" : { "type" : "integer", "description" : "An unique ID related to a specific Tripletex sales module type.", "format" : "int32" }, "numberOfEmployees" : { "type" : "integer", "description" : "A value representing the number of employees depending on the main module's type.", "format" : "int32" }, "companyType" : { "type" : "string", "description" : "A value representing the company organization type.", "enum" : [ "NONE", "ENK", "AS", "NUF", "ANS", "DA", "PRE", "KS", "ASA", "BBL", "BRL", "GFS", "SPA", "SF", "IKS", "KF_FKF", "FCD", "EOFG", "BA", "STI", "ORG", "ESEK", "SA", "SAM", "BO", "VPFO", "OS", "FLI", "Other" ] }, "hasOnlyPrices" : { "type" : "boolean", "description" : "Flag for checking if the client has only prices." }, "salesModules" : { "type" : "array", "description" : "Sales modules the creator choose during account creation.", "items" : { "type" : "string", "description" : "Sales modules the creator choose during account creation.", "enum" : [ "MAMUT", "MAMUT_WITH_WAGE", "AGRO_LICENCE", "AGRO_CLIENT", "AGRO_DOCUMENT_CENTER", "AGRO_INVOICE", "AGRO_INVOICE_MIGRATED", "AGRO_WAGE", "NO1TS", "NO1TS_TRAVELREPORT", "NO1TS_ACCOUNTING", "DIYPACKAGE", "BASIS", "SMART", "KOMPLETT", "VVS", "ELECTRO", "ACCOUNTING_OFFICE", "WAGE", "SMART_WAGE", "TIME_TRACKING", "SMART_TIME_TRACKING", "SMART_PROJECT", "OCR", "API_V2", "ELECTRONIC_VOUCHERS", "UP_TO_100_VOUCHERS", "UP_TO_500_VOUCHERS", "UP_TO_1000_VOUCHERS", "UP_TO_2000_VOUCHERS", "UP_TO_3500_VOUCHERS", "UP_TO_5000_VOUCHERS", "UP_TO_10000_VOUCHERS", "UNLIMITED_VOUCHERS", "UP_TO_100_VOUCHERS_AUTOMATION", "UP_TO_500_VOUCHERS_AUTOMATION", "UP_TO_1000_VOUCHERS_AUTOMATION", "UP_TO_2000_VOUCHERS_AUTOMATION", "UP_TO_3500_VOUCHERS_AUTOMATION", "UP_TO_5000_VOUCHERS_AUTOMATION", "UP_TO_10000_VOUCHERS_AUTOMATION", "UNLIMITED_VOUCHERS_AUTOMATION", "LOGISTICS", "MIKRO", "AUTOPLUS_MINI", "AUTOPLUS_MEDIUM", "AUTOPLUS_STOR", "INTEGRATION_PARTNER", "PROJECT", "YEAR_END_REPORTING_ENK", "YEAR_END_REPORTING_AS", "YEAR_END_REPORTING_ANS", "YEAR_END_REPORTING_DA", "YEAR_END_REPORTING_STI", "YEAR_END_REPORTING_ORG", "YEAR_END_REPORTING_SA", "YEAR_END_REPORTING_FLI", "YEAR_END_REPORTING_NUF", "PRIMARY_INDUSTRY", "STICOS", "PRO", "FIXED_ASSETS_REGISTER", "ZTL" ] } } } }, "TripletexAccount" : { "type" : "object", "properties" : { "company" : { "$ref" : "#/components/schemas/Company" }, "administrator" : { "$ref" : "#/components/schemas/Employee" }, "modules" : { "type" : "array", "description" : "Sales modules (functionality in the application) to activate for the newly created account. Some modules have extra costs.", "items" : { "$ref" : "#/components/schemas/SalesModule" } }, "sendEmails" : { "type" : "boolean", "description" : "Should the regular creation emails be sent to the company created and its users? If false you probably want to set autoValidateUserLogin to true" }, "autoValidateUserLogin" : { "type" : "boolean", "description" : "If true, the users created will be allowed to log in without validating their email address. ONLY USE THIS IF YOU ALREADY HAVE VALIDATED THE USER EMAILS. SendEmails must be false for this to have any effect." }, "createAdministratorApiToken" : { "type" : "boolean", "description" : "Create an API token for the administrator user for the consumer token used during this call. The token will be returned in the response." }, "createCompanyOwnedApiToken" : { "type" : "boolean", "description" : "Create an API token for the company to use to call their clients, only possible for accounting and auditor accounts. The token will be returned in the response." }, "mayCreateTripletexAccounts" : { "type" : "boolean", "description" : "Should the company we are creating be able to create new Tripletex accounts?" }, "numberOfVouchers" : { "type" : "string", "description" : "Used to calculate prices.", "enum" : [ "INTERVAL_0_100", "INTERVAL_101_500", "INTERVAL_0_500", "INTERVAL_501_1000", "INTERVAL_1001_2000", "INTERVAL_2001_3500", "INTERVAL_3501_5000", "INTERVAL_5001_10000", "INTERVAL_UNLIMITED" ] }, "chartOfAccountsType" : { "type" : "string", "description" : "The chart of accounts to use for the new company", "enum" : [ "DEFAULT", "MAMUT_STD_PAYROLL", "MAMUT_NARF_PAYROLL", "AGRO_FORRETNING_PAYROLL", "AGRO_LANDBRUK_PAYROLL", "AGRO_FISKE_PAYROLL", "AGRO_FORSOKSRING_PAYROLL", "AGRO_IDRETTSLAG_PAYROLL", "AGRO_FORENING_PAYROLL" ] }, "vatStatusType" : { "type" : "string", "description" : "VAT type", "enum" : [ "VAT_REGISTERED", "VAT_NOT_REGISTERED", "VAT_APPLICANT" ] }, "vatTermType" : { "type" : "string", "description" : "VAT period", "enum" : [ "ONE_MONTH", "TWO_MONTHS", "THREE_MONTHS", "FOUR_MONTHS", "SIX_MONTHS", "YEAR", "NOT_REGISTERED" ] }, "bankAccount" : { "type" : "string", "description" : "Main bank account" }, "postAccount" : { "type" : "string", "description" : "Swedish post account number (PlusGirot)" }, "numberOfPrepaidUsers" : { "type" : "integer", "description" : "Number of users Prepaid. Only available for some consumers.", "format" : "int32" }, "customerCategoryId1" : { "type" : "integer", "description" : "CustomerCategoryId1", "format" : "int32" }, "customerCategoryId2" : { "type" : "integer", "description" : "Customer category id used to indicate that the customer is created by Salesforce", "format" : "int32" }, "marketingConsent" : { "type" : "string", "description" : "Marketing consent", "enum" : [ "DEFAULT", "GRANTED", "DENIED" ] }, "invoiceStartDate" : { "type" : "string", "description" : "Start date for invoicing" }, "invoiceEmail" : { "type" : "string", "description" : "Email address used for invoices/reminders" }, "customerCardId" : { "type" : "integer", "description" : "Customer card id is used to indicate what customer account to use when creating the TripletexCompany object. 0 means customer account does not already exist.", "format" : "int32" }, "accountEndDatePeriod" : { "type" : "integer", "description" : "Available for school resellers only. Number of months the account should be valid for. If not set, the account will be valid for 6 months.", "format" : "int32" }, "signedTC" : { "type" : "string", "description" : "Terms and conditions", "enum" : [ "DEFAULT", "GRANTED", "DENIED" ] }, "accountType" : { "type" : "string", "enum" : [ "TEST", "PAYING", "FREE" ] }, "auditor" : { "type" : "boolean" }, "accountingOffice" : { "type" : "boolean" }, "reseller" : { "type" : "boolean" } } }, "OnboardAccount" : { "type" : "object", "properties" : { "companyName" : { "type" : "string" }, "orgNumber" : { "type" : "string" }, "address" : { "type" : "string" }, "city" : { "type" : "string" }, "postalCode" : { "type" : "string" }, "municipality" : { "type" : "string" }, "startDateMunicipality" : { "type" : "string" }, "registrationDate" : { "type" : "string" }, "vatRegistered" : { "type" : "boolean" }, "salaryModule" : { "type" : "boolean" }, "projectModule" : { "type" : "boolean" }, "vvsElectroModule" : { "type" : "boolean" }, "timeSheetModule" : { "type" : "boolean" }, "enterprises" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/Enterprise" } }, "bankAccountNumber" : { "type" : "string" } } }, "ResponseWrapperTripletexAccountPricesReturnDTO" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/TripletexAccountPricesReturnDTO" } } }, "TripletexAccountPricesReturnDTO" : { "type" : "object", "properties" : { "allPrices" : { "type" : "object", "additionalProperties" : { "type" : "object", "additionalProperties" : { "type" : "number", "readOnly" : true }, "readOnly" : true }, "readOnly" : true }, "sumStartupCategory1Users" : { "type" : "number", "readOnly" : true }, "sumServiceCategory1Users" : { "type" : "number", "readOnly" : true }, "listPriceCategory1UserStartup" : { "type" : "number", "readOnly" : true }, "listPriceCategory1UserService" : { "type" : "number", "readOnly" : true }, "sumStartup" : { "type" : "number", "readOnly" : true }, "sumService" : { "type" : "number", "readOnly" : true }, "sumYearlyService" : { "type" : "number", "readOnly" : true } } }, "ResponseWrapperSalesForceAccountInfo" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/SalesForceAccountInfo" } } }, "SalesForceAccountInfo" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "customerId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "customerCompanyId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "creatorCompanyId" : { "type" : "integer", "description" : "Represents the companyId of the creator of the account", "format" : "int32", "readOnly" : true }, "creatorCompanySalesRepresentativeId" : { "type" : "integer", "description" : "The employeeId of the sales representative assigned to the creator company", "format" : "int32", "readOnly" : true }, "isReseller" : { "type" : "boolean", "readOnly" : true }, "isAccountant" : { "type" : "boolean", "readOnly" : true }, "isAuditor" : { "type" : "boolean", "readOnly" : true }, "isSuspended" : { "type" : "boolean", "readOnly" : true }, "isDeleted" : { "type" : "boolean", "readOnly" : true }, "moduleAccountantConnectClient" : { "type" : "boolean", "readOnly" : true }, "registerDate" : { "type" : "string", "description" : "Tripletex account register Date", "readOnly" : true }, "startDate" : { "type" : "string", "description" : "Tripletex account start Date", "readOnly" : true }, "endDate" : { "type" : "string", "description" : "Tripletex account end Date", "readOnly" : true }, "invoiceStartDate" : { "type" : "string", "description" : "Tripletex account invoice start date", "readOnly" : true }, "invoicePostponeDate" : { "type" : "string", "description" : "Tripletex account invoice postpone date", "readOnly" : true }, "activeMainModule" : { "type" : "string", "description" : "Active main module", "readOnly" : true, "enum" : [ "ACCOUNTING", "INVOICE", "CRM", "PROJECT", "WAGE", "NETS_PRINT", "NETS_PRINT_SALARY", "OCR", "REMIT", "SMS_NOTIFICATION", "VOUCHER_SCANNING", "TIME_TRACKING", "VVS_ELECTRO", "UBEGRENSET_BILAG_VVS_ELEKTRO", "INVOICE_OPTION_VIPPS", "INVOICE_OPTION_EFAKTURA", "INVOICE_OPTION_AVTALEGIRO", "INVOICE_OPTION_PAPER", "INVOICE_OPTION_AUTOINVOICE_OUTBOUND_EHF", "API_V2", "SMART_SCAN", "BILAG_0_100_mikro", "BILAG_0_500_vanlig_legacy", "BILAG_501_1000_vanlig_legacy", "BILAG_1001_2000_vanlig_legacy", "BILAG_2001_3500_vanlig_legacy", "BILAG_3501_5000_vanlig_legacy", "BILAG_5001_10001_vanlig_legacy", "UBEGRENSET_BILAG_vanlig_legacy", "BILAG_0_500_prosjekt_legacy", "BILAG_501_1000_prosjekt_legacy", "BILAG_1001_2000_prosjekt_legacy", "BILAG_2001_3500_prosjekt_legacy", "BILAG_3501_5000_prosjekt_legacy", "BILAG_5001_10001_prosjekt_legacy", "UBEGRENSET_BILAG_prosjekt_legacy", "MIKRO", "MINI", "MEDIUM", "TOTAL", "BASIS", "SMART", "AGRO_CLIENT", "MAMUT", "KOMPLETT", "SMART_WAGE", "SMART_TIME_TRACKING", "BILAG_0_500", "BILAG_501_1000", "BILAG_1001_2000", "BILAG_2001_3500", "BILAG_3501_5000", "BILAG_5001_10001", "UBEGRENSET_BILAG", "READ_ONLY_ACCESS", "READ_ONLY_ACCESS_FREE", "AUTOPAY", "VOUCHER_APPROVAL", "SMART_PROJECT", "ACCOUNT_OFFICE", "UNLIMITED_VOUCHER_ACCOUNT_OFFICE", "COMPANY_SERVICE_FOR_PAYING_ACCOUNT_OFFICES", "AGRO_WAGE", "INVOICE_OPTION_AUTOINVOICE_INCOMING_EHF", "MAMUT_PROJECT", "MAMUT_WITH_WAGE", "USER_SERVICE_HISTORIC_CUSTOMERS_NON_STANDARD", "ENCRYPTED_PAYSLIP", "AGRO_LICENCE", "AGRO_DOCUMENT_CENTER", "AGRO_INVOICE", "FIVE_EMPLOYEES", "AUTOPLUS_MINI", "AUTOPLUS_MEDIUM", "AUTOPLUS_STOR", "CASH_CREDIT_APRILA", "NO1TS", "NO1TS_TRAVELREPORT", "NO1TS_ACCOUNTING", "AGRO_INVOICE_MIGRATED", "USER_CATEGORY_1_LICENSE", "USER_CATEGORY_2_LICENSE", "USER_CATEGORY_3_LICENSE", "VOUCHER_FACTORY", "OCR_AUTOPAY", "CLOSED_ACCOUNT", "LOGISTICS", "INTEGRATION_PARTNER", "CREDIT_SCORING", "ZTL", "PLUSS", "YEAR_END_REPORTING_ENK", "YEAR_END_REPORTING_AS", "BILAG_0_100_MIKRO_AUTOMATION", "BILAG_0_500_AUTOMATION", "BILAG_501_1000_AUTOMATION", "BILAG_1001_2000_AUTOMATION", "BILAG_2001_3500_AUTOMATION", "BILAG_3501_5000_AUTOMATION", "BILAG_5001_10001_AUTOMATION", "UBEGRENSET_BILAG_AUTOMATION", "CMA_SHOPIFY", "CMA_MYSTORE", "CMA_WOOCOMMERCE", "RACKBEAT", "DIYPACKAGE", "YEAR_END_REPORTING_ANS", "YEAR_END_REPORTING_DA", "YEAR_END_REPORTING_STI", "YEAR_END_REPORTING_ORG", "YEAR_END_REPORTING_SA", "YEAR_END_REPORTING_FLI", "YEAR_END_REPORTING_NUF", "PRIMARY_INDUSTRY", "FIXED_ASSETS_REGISTER", "STICOS", "PRO", "RECONCILIATION", "DIGITAL_SIGNING" ] }, "salesForceOpportunityDTO" : { "$ref" : "#/components/schemas/SalesForceOpportunity" }, "employeeId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "name" : { "type" : "string", "readOnly" : true }, "organizationNumber" : { "type" : "string", "readOnly" : true }, "customerNumber" : { "minimum" : 0, "type" : "integer", "format" : "int32", "readOnly" : true }, "email" : { "type" : "string", "readOnly" : true }, "invoiceEmail" : { "type" : "string", "readOnly" : true }, "overdueNoticeEmail" : { "type" : "string", "description" : "The email address of the customer where the noticing emails are sent in case of an overdue", "readOnly" : true }, "phoneNumber" : { "type" : "string", "readOnly" : true }, "phoneNumberMobile" : { "type" : "string", "readOnly" : true }, "singleCustomerInvoice" : { "type" : "boolean", "description" : "Enables various orders on one customer invoice.", "readOnly" : true }, "postalAddress" : { "$ref" : "#/components/schemas/Address" }, "physicalAddress" : { "$ref" : "#/components/schemas/Address" }, "category1" : { "$ref" : "#/components/schemas/CustomerCategory" }, "category2" : { "$ref" : "#/components/schemas/CustomerCategory" }, "category3" : { "$ref" : "#/components/schemas/CustomerCategory" }, "invoicesDueIn" : { "maximum" : 10000, "minimum" : 0, "type" : "integer", "description" : "Number of days/months in which invoices created from this customer is due", "format" : "int32", "readOnly" : true }, "userSalesRepresentativeId" : { "type" : "integer", "description" : "Sales representative of the Tripletex account", "format" : "int32", "readOnly" : true }, "accountManagerId" : { "type" : "integer", "description" : "Manager of the Tripletex account", "format" : "int64", "readOnly" : true }, "accountOwnerId" : { "type" : "integer", "description" : "Employee id of the admin added when the account was created", "format" : "int64", "readOnly" : true }, "isBlacklistedForSticos" : { "type" : "boolean", "description" : "Is this user blacklisted for Sticos access", "readOnly" : true }, "loginEmployeeId" : { "type" : "integer", "description" : "Login employee", "format" : "int64", "readOnly" : true }, "isContactSales" : { "type" : "boolean", "description" : "Is the update triggered by the contact sales button", "readOnly" : true }, "contactSalesModule" : { "type" : "string", "description" : "Module which contact sales button references.", "readOnly" : true, "enum" : [ "ACCOUNTING", "INVOICE", "CRM", "PROJECT", "WAGE", "NETS_PRINT", "NETS_PRINT_SALARY", "OCR", "REMIT", "SMS_NOTIFICATION", "VOUCHER_SCANNING", "TIME_TRACKING", "VVS_ELECTRO", "UBEGRENSET_BILAG_VVS_ELEKTRO", "INVOICE_OPTION_VIPPS", "INVOICE_OPTION_EFAKTURA", "INVOICE_OPTION_AVTALEGIRO", "INVOICE_OPTION_PAPER", "INVOICE_OPTION_AUTOINVOICE_OUTBOUND_EHF", "API_V2", "SMART_SCAN", "BILAG_0_100_mikro", "BILAG_0_500_vanlig_legacy", "BILAG_501_1000_vanlig_legacy", "BILAG_1001_2000_vanlig_legacy", "BILAG_2001_3500_vanlig_legacy", "BILAG_3501_5000_vanlig_legacy", "BILAG_5001_10001_vanlig_legacy", "UBEGRENSET_BILAG_vanlig_legacy", "BILAG_0_500_prosjekt_legacy", "BILAG_501_1000_prosjekt_legacy", "BILAG_1001_2000_prosjekt_legacy", "BILAG_2001_3500_prosjekt_legacy", "BILAG_3501_5000_prosjekt_legacy", "BILAG_5001_10001_prosjekt_legacy", "UBEGRENSET_BILAG_prosjekt_legacy", "MIKRO", "MINI", "MEDIUM", "TOTAL", "BASIS", "SMART", "AGRO_CLIENT", "MAMUT", "KOMPLETT", "SMART_WAGE", "SMART_TIME_TRACKING", "BILAG_0_500", "BILAG_501_1000", "BILAG_1001_2000", "BILAG_2001_3500", "BILAG_3501_5000", "BILAG_5001_10001", "UBEGRENSET_BILAG", "READ_ONLY_ACCESS", "READ_ONLY_ACCESS_FREE", "AUTOPAY", "VOUCHER_APPROVAL", "SMART_PROJECT", "ACCOUNT_OFFICE", "UNLIMITED_VOUCHER_ACCOUNT_OFFICE", "COMPANY_SERVICE_FOR_PAYING_ACCOUNT_OFFICES", "AGRO_WAGE", "INVOICE_OPTION_AUTOINVOICE_INCOMING_EHF", "MAMUT_PROJECT", "MAMUT_WITH_WAGE", "USER_SERVICE_HISTORIC_CUSTOMERS_NON_STANDARD", "ENCRYPTED_PAYSLIP", "AGRO_LICENCE", "AGRO_DOCUMENT_CENTER", "AGRO_INVOICE", "FIVE_EMPLOYEES", "AUTOPLUS_MINI", "AUTOPLUS_MEDIUM", "AUTOPLUS_STOR", "CASH_CREDIT_APRILA", "NO1TS", "NO1TS_TRAVELREPORT", "NO1TS_ACCOUNTING", "AGRO_INVOICE_MIGRATED", "USER_CATEGORY_1_LICENSE", "USER_CATEGORY_2_LICENSE", "USER_CATEGORY_3_LICENSE", "VOUCHER_FACTORY", "OCR_AUTOPAY", "CLOSED_ACCOUNT", "LOGISTICS", "INTEGRATION_PARTNER", "CREDIT_SCORING", "ZTL", "PLUSS", "YEAR_END_REPORTING_ENK", "YEAR_END_REPORTING_AS", "BILAG_0_100_MIKRO_AUTOMATION", "BILAG_0_500_AUTOMATION", "BILAG_501_1000_AUTOMATION", "BILAG_1001_2000_AUTOMATION", "BILAG_2001_3500_AUTOMATION", "BILAG_3501_5000_AUTOMATION", "BILAG_5001_10001_AUTOMATION", "UBEGRENSET_BILAG_AUTOMATION", "CMA_SHOPIFY", "CMA_MYSTORE", "CMA_WOOCOMMERCE", "RACKBEAT", "DIYPACKAGE", "YEAR_END_REPORTING_ANS", "YEAR_END_REPORTING_DA", "YEAR_END_REPORTING_STI", "YEAR_END_REPORTING_ORG", "YEAR_END_REPORTING_SA", "YEAR_END_REPORTING_FLI", "YEAR_END_REPORTING_NUF", "PRIMARY_INDUSTRY", "FIXED_ASSETS_REGISTER", "STICOS", "PRO", "RECONCILIATION", "DIGITAL_SIGNING" ] }, "privateIndividual" : { "type" : "boolean" }, "inactive" : { "type" : "boolean" }, "supplier" : { "type" : "boolean" }, "customer" : { "type" : "boolean" } }, "readOnly" : true }, "SalesForceOpportunity" : { "type" : "object", "properties" : { "allPrices" : { "type" : "object", "additionalProperties" : { "type" : "object", "additionalProperties" : { "type" : "number", "description" : "A nested map of all active sales modules. The key in the outer map is the sales module, whilst the inner map contains the different pricing types for the given sales module. A pricing type could be PER_USE(10).", "readOnly" : true }, "description" : "A nested map of all active sales modules. The key in the outer map is the sales module, whilst the inner map contains the different pricing types for the given sales module. A pricing type could be PER_USE(10).", "readOnly" : true }, "description" : "A nested map of all active sales modules. The key in the outer map is the sales module, whilst the inner map contains the different pricing types for the given sales module. A pricing type could be PER_USE(10).", "readOnly" : true }, "sumStartupCategory1Users" : { "type" : "number", "description" : "The total startup price for users of category 1.", "readOnly" : true }, "sumServiceCategory1Users" : { "type" : "number", "description" : "The total price per monthly price for users of category 1.", "readOnly" : true }, "listPriceCategory1UserStartup" : { "type" : "number", "description" : "The startup list price per user.", "readOnly" : true }, "listPriceCategory1UserService" : { "type" : "number", "description" : "The monthly list price per user.", "readOnly" : true }, "sumStartup" : { "type" : "number", "description" : "The startup price for the company.", "readOnly" : true }, "sumService" : { "type" : "number", "description" : "The monthly price for the company.", "readOnly" : true }, "sumYearlyService" : { "type" : "number", "description" : "The monthly price for the company.", "readOnly" : true }, "sumAdditionalServices" : { "type" : "number", "description" : "The total startup price for additional services.", "readOnly" : true }, "accountantStartupProvision" : { "type" : "number", "description" : "The initial provision for the accountant of the startup price (percentage)", "readOnly" : true }, "accountantMonthlyProvision" : { "type" : "number", "description" : "The monthly provision for the accountant of the monthly price (percentage)", "readOnly" : true }, "noOfUsersPrepaid" : { "type" : "integer", "description" : "The number of users prepaid when creating the company.", "format" : "int32", "readOnly" : true }, "noOfUsersIncluded" : { "type" : "integer", "description" : "The number of users included for free in the purchased module.", "format" : "int32", "readOnly" : true } }, "description" : "Company opportunity", "readOnly" : true }, "ListResponseSalesForceAccountInfo" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/SalesForceAccountInfo" } } } }, "ListResponseSalesForceAccountantConnection" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/SalesForceAccountantConnection" } } } }, "SalesForceAccountantConnection" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "aoCustomerId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "clientCustomerId" : { "type" : "integer", "format" : "int32", "readOnly" : true } }, "readOnly" : true }, "ResponseWrapperSalesForceEmployeeRole" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/SalesForceEmployeeRole" } } }, "SalesForceEmployeeRole" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "companyId" : { "type" : "integer", "format" : "int32" }, "employeeId" : { "type" : "integer", "format" : "int32" }, "roleId" : { "type" : "integer", "format" : "int32" }, "userId" : { "type" : "integer", "format" : "int32" }, "tripletexCustomerId" : { "type" : "integer", "format" : "int32" } } }, "ResponseWrapperSalesForceTripletexSalesModulePurchase" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/SalesForceTripletexSalesModulePurchase" } } }, "SalesForceTripletexSalesModulePurchase" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "tripletexCompanyId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "tripletexPriceList" : { "type" : "string", "readOnly" : true, "enum" : [ "UNKNOWN", "TRIPLETEX_STANDARD", "AGRO", "MAMUT", "BASIS", "SMART", "KOMPLETT", "VVS_ELEKTRO", "AUTOPLUS", "MIKRO", "INTEGRATION_PARTNER", "PLUSS", "DIYPACKAGE", "PRO" ] }, "employeeId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "purchaseDate" : { "type" : "string", "description" : "Purchase date", "readOnly" : true }, "endDate" : { "type" : "string", "description" : "Purchase end date", "readOnly" : true }, "customerId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "tripletexSalesModuleName" : { "type" : "string", "readOnly" : true }, "type" : { "type" : "integer", "description" : "Type upSale or newSales", "format" : "int32", "readOnly" : true }, "salesForceOpportunityDTO" : { "$ref" : "#/components/schemas/SalesForceOpportunity" } } }, "ResponseWrapperSalesForceEmployee" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/SalesForceEmployee" } } }, "SalesForceAddress" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "addressLine1" : { "type" : "string", "readOnly" : true }, "addressLine2" : { "type" : "string", "readOnly" : true }, "postalCode" : { "type" : "string", "readOnly" : true }, "city" : { "type" : "string", "readOnly" : true }, "country" : { "$ref" : "#/components/schemas/SalesForceCountry" } }, "readOnly" : true }, "SalesForceCountry" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "name" : { "type" : "string", "readOnly" : true }, "isoAlpha2Code" : { "type" : "string", "readOnly" : true }, "isoAlpha3Code" : { "type" : "string", "readOnly" : true }, "isoNumericCode" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "SalesForceEmployee" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "firstName" : { "type" : "string", "readOnly" : true }, "lastName" : { "type" : "string", "readOnly" : true }, "email" : { "type" : "string", "readOnly" : true }, "phoneNumberMobile" : { "type" : "string", "readOnly" : true }, "phoneNumberHome" : { "type" : "string", "readOnly" : true }, "phoneNumberWork" : { "type" : "string", "readOnly" : true }, "userId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "companyId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "customerId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "phoneNumberSmsCertified" : { "type" : "string", "readOnly" : true }, "isUserAdministrator" : { "type" : "boolean", "readOnly" : true }, "isAccountAdministrator" : { "type" : "boolean", "readOnly" : true }, "allowLogin" : { "type" : "boolean", "readOnly" : true }, "isExternal" : { "type" : "boolean", "readOnly" : true }, "isTripletexCertified" : { "type" : "boolean", "readOnly" : true }, "isDefaultLogin" : { "type" : "boolean", "readOnly" : true }, "loginEndDate" : { "type" : "string", "description" : "Login end date", "readOnly" : true }, "address" : { "$ref" : "#/components/schemas/SalesForceAddress" }, "isMarketingConsent" : { "type" : "boolean", "readOnly" : true }, "isAppUser" : { "type" : "boolean", "readOnly" : true } } }, "ResponseWrapperSalesForceUserOverview" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/SalesForceUserOverview" } } }, "SalesForceUserOverview" : { "type" : "object", "properties" : { "customerId" : { "type" : "integer", "description" : "Customer Id", "format" : "int64", "readOnly" : true }, "numberOfUsers" : { "type" : "integer", "description" : "Number of users", "format" : "int32", "readOnly" : true }, "numberOfPayslipOnlyUsers" : { "type" : "integer", "description" : "Number of payslip only users", "format" : "int32", "readOnly" : true } } }, "ResponseWrapperTripletexDashboardDTO" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/TripletexDashboardDTO" } } }, "TripletexDashboardDTO" : { "type" : "object", "properties" : { "widgets" : { "$ref" : "#/components/schemas/TripletexDashboardWidgets" } } }, "TripletexDashboardWidget" : { "type" : "object", "properties" : { "id" : { "type" : "string", "readOnly" : true, "enum" : [ "BANKING", "VOUCHER_SUMMARY", "INVOICE_SUMMARY", "SALARY_SUMMARY", "UPSALE_SALARY", "UPSALE_AUTOMATION", "INCOME_AND_COST_CHART", "FEEDBACK_DEADLINES_AND_TASKS_SURVEY", "ONBOARDING", "PRODUCT_SPOTLIGHT_ANNUAL_SETTLEMENT", "HELP_CENTER_EACCOUNTING", "STICOS_SPOTLIGHT", "SPOTLIGHT_2FA", "DASHBOARD_REMINDER", "REMINDER", "TASKS" ] }, "hidden" : { "type" : "boolean", "readOnly" : true }, "rowIndex" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "rowSpan" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "colIndex" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "colSpan" : { "type" : "integer", "format" : "int32", "readOnly" : true } }, "readOnly" : true }, "TripletexDashboardWidgets" : { "type" : "object", "properties" : { "content" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/TripletexDashboardWidget" } }, "sidebar" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/TripletexDashboardWidget" } } }, "readOnly" : true }, "DashboardContextDTO" : { "type" : "object", "properties" : { "contextId" : { "type" : "string", "readOnly" : true }, "companyId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "loginEmployeeId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "tripletexEmployeeId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "companyName" : { "type" : "string", "readOnly" : true }, "companyCurrency" : { "type" : "string", "readOnly" : true }, "companyStartDate" : { "type" : "string", "readOnly" : true }, "language" : { "type" : "string", "readOnly" : true }, "trialAccount" : { "type" : "boolean", "readOnly" : true }, "showEaccountingMessage" : { "type" : "boolean", "readOnly" : true }, "segmentationData" : { "$ref" : "#/components/schemas/SegmentationData" }, "isEligibleForOnboardingFeedback" : { "type" : "boolean", "readOnly" : true }, "loginEmployeeFirstName" : { "type" : "string", "readOnly" : true }, "isTripletexSupportProxy" : { "type" : "boolean", "readOnly" : true }, "baseApplicationURL" : { "type" : "string", "readOnly" : true } } }, "SegmentationData" : { "type" : "object", "properties" : { "contextId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "orgNumber" : { "type" : "string", "readOnly" : true }, "isTrialAccount" : { "type" : "boolean", "readOnly" : true }, "isTestOrFreeCompany" : { "type" : "boolean", "readOnly" : true }, "employeeId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "isAccountant" : { "type" : "boolean", "readOnly" : true }, "isReseller" : { "type" : "boolean", "readOnly" : true }, "employeeNumber" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "packageName" : { "type" : "string", "readOnly" : true }, "industry" : { "type" : "string", "readOnly" : true }, "outgoingInvoices" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "incomingInvoices" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "companyStartDateYear" : { "type" : "string", "readOnly" : true }, "companyType" : { "type" : "string", "readOnly" : true }, "companyName" : { "type" : "string", "readOnly" : true }, "mainAccountBank" : { "type" : "string", "readOnly" : true }, "modules" : { "$ref" : "#/components/schemas/SegmentationModules" }, "roles" : { "$ref" : "#/components/schemas/SegmentationRoles" }, "pilotFeatures" : { "type" : "object", "additionalProperties" : { "type" : "boolean", "readOnly" : true }, "readOnly" : true }, "hackedOrSupportAccess" : { "type" : "boolean", "readOnly" : true }, "tripletexCustomerCategoryId1" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "tripletexCustomerCategoryId3" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "tripletexCustomerCategoryId2" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "hasFreeDimensions" : { "type" : "boolean", "readOnly" : true } } }, "SegmentationModules" : { "type" : "object", "properties" : { "moduleaccountinginternal" : { "type" : "boolean", "readOnly" : true }, "moduleaccountingexternal" : { "type" : "boolean", "readOnly" : true }, "moduledepartment" : { "type" : "boolean", "readOnly" : true }, "projectForecast" : { "type" : "boolean", "readOnly" : true }, "resourcePlanning" : { "type" : "boolean", "readOnly" : true }, "moduleprojecteconomy" : { "type" : "boolean", "readOnly" : true }, "moduleinvoice" : { "type" : "boolean", "readOnly" : true }, "modulebudget" : { "type" : "boolean", "readOnly" : true }, "referenceFee" : { "type" : "boolean", "readOnly" : true }, "moduleHourCost" : { "type" : "boolean", "readOnly" : true }, "moduleemployee" : { "type" : "boolean", "readOnly" : true }, "moduleproject" : { "type" : "boolean", "readOnly" : true }, "projectCategories" : { "type" : "boolean", "readOnly" : true }, "moduleProjectBudget" : { "type" : "boolean", "readOnly" : true }, "moduletask" : { "type" : "boolean", "readOnly" : true }, "moduleTravelExpense" : { "type" : "boolean", "readOnly" : true }, "modulecustomer" : { "type" : "boolean", "readOnly" : true }, "modulenote" : { "type" : "boolean", "readOnly" : true }, "modulesubscription" : { "type" : "boolean", "readOnly" : true }, "moduleproduct" : { "type" : "boolean", "readOnly" : true }, "moduleVoucherExport" : { "type" : "boolean", "readOnly" : true }, "moduleaccountingreports" : { "type" : "boolean", "readOnly" : true }, "moduleCustomerCategories" : { "type" : "boolean", "readOnly" : true }, "moduleCustomerCategory1" : { "type" : "boolean", "readOnly" : true }, "moduleCustomerCategory2" : { "type" : "boolean", "readOnly" : true }, "moduleCustomerCategory3" : { "type" : "boolean", "readOnly" : true }, "budgetOnSubcontracts" : { "type" : "boolean", "readOnly" : true }, "approveHourLists" : { "type" : "boolean", "readOnly" : true }, "approveInvoices" : { "type" : "boolean", "readOnly" : true }, "approvetravelreports" : { "type" : "boolean", "readOnly" : true }, "completeweeklyhourlists" : { "type" : "boolean", "readOnly" : true }, "completemonthlyhourlists" : { "type" : "boolean", "readOnly" : true }, "approvemonthlyhourlists" : { "type" : "boolean", "readOnly" : true }, "mustApproveRegisteredHours" : { "type" : "boolean", "readOnly" : true }, "modulePayrollAccounting" : { "type" : "boolean", "readOnly" : true }, "modulePayrollAccountingNO" : { "type" : "boolean", "readOnly" : true }, "modulehourlist" : { "type" : "boolean", "readOnly" : true }, "moduleTimeBalance" : { "type" : "boolean", "readOnly" : true }, "moduleVacationBalance" : { "type" : "boolean", "readOnly" : true }, "moduleWorkingHours" : { "type" : "boolean", "readOnly" : true }, "moduleCurrency" : { "type" : "boolean", "readOnly" : true }, "moduleContact" : { "type" : "boolean", "readOnly" : true }, "autoGenerateProjectNumber" : { "type" : "boolean", "readOnly" : true }, "moduleWageExport" : { "type" : "boolean", "readOnly" : true }, "approveWeeklyHourlists" : { "type" : "boolean", "readOnly" : true }, "moduleProvisionSalary" : { "type" : "boolean", "readOnly" : true }, "moduleOrderNumber" : { "type" : "boolean", "readOnly" : true }, "moduleOrderDiscount" : { "type" : "boolean", "readOnly" : true }, "moduleOrderMarkup" : { "type" : "boolean", "readOnly" : true }, "moduleOrderLineCost" : { "type" : "boolean", "readOnly" : true }, "resourceGroups" : { "type" : "boolean", "readOnly" : true }, "moduleVendor" : { "type" : "boolean", "readOnly" : true }, "moduleAutoCustomerNumber" : { "type" : "boolean", "readOnly" : true }, "moduleAutoVendorNumber" : { "type" : "boolean", "readOnly" : true }, "historicalInformation" : { "type" : "boolean", "readOnly" : true }, "showTravelReportLetterhead" : { "type" : "boolean", "readOnly" : true }, "moduleOcr" : { "type" : "boolean", "readOnly" : true }, "moduleRemit" : { "type" : "boolean", "readOnly" : true }, "moduleRemitZtl" : { "type" : "boolean", "readOnly" : true }, "moduleRemitAutoPay" : { "type" : "boolean", "readOnly" : true }, "moduleTravelExpenseRates" : { "type" : "boolean", "readOnly" : true }, "moduleVoucherScanning" : { "type" : "boolean", "readOnly" : true }, "holidayPlan" : { "type" : "boolean", "readOnly" : true }, "moduleEmployeeCategory" : { "type" : "boolean", "readOnly" : true }, "multipleCustomerCategories" : { "type" : "boolean", "readOnly" : true }, "moduleProductInvoice" : { "type" : "boolean", "readOnly" : true }, "autoInvoicing" : { "type" : "boolean", "readOnly" : true }, "moduleFactoring" : { "type" : "boolean", "readOnly" : true }, "moduleEmployeeAccounting" : { "type" : "boolean", "readOnly" : true }, "moduleDepartmentAccounting" : { "type" : "boolean", "readOnly" : true }, "moduleProjectAccounting" : { "type" : "boolean", "readOnly" : true }, "moduleWageProjectAccounting" : { "type" : "boolean", "readOnly" : true }, "moduleProductAccounting" : { "type" : "boolean", "readOnly" : true }, "moduleElectro" : { "type" : "boolean", "readOnly" : true }, "moduleNrf" : { "type" : "boolean", "readOnly" : true }, "moduleResultBudget" : { "type" : "boolean", "readOnly" : true }, "moduleVoucherTypes" : { "type" : "boolean", "readOnly" : true }, "moduleWarehouse" : { "type" : "boolean", "readOnly" : true }, "moduleNetsPrintSalary" : { "type" : "boolean", "readOnly" : true }, "moduleNetsPrintInvoice" : { "type" : "boolean", "readOnly" : true }, "hourlyRateProjectsWriteUpDown" : { "type" : "boolean", "readOnly" : true }, "showRecentlyClosedProjectsOnSupplierInvoice" : { "type" : "boolean", "readOnly" : true }, "moduleEmail" : { "type" : "boolean", "readOnly" : true }, "sendPayslipsByEmail" : { "type" : "boolean", "readOnly" : true }, "moduleApproveVoucher" : { "type" : "boolean", "readOnly" : true }, "moduleApproveProjectVoucher" : { "type" : "boolean", "readOnly" : true }, "moduleApproveDepartmentVoucher" : { "type" : "boolean", "readOnly" : true }, "moduleArchive" : { "type" : "boolean", "readOnly" : true }, "moduleOrderOut" : { "type" : "boolean", "readOnly" : true }, "moduleMesan" : { "type" : "boolean", "readOnly" : true }, "moduleAccountantConnectClient" : { "type" : "boolean", "readOnly" : true }, "moduleDivisions" : { "type" : "boolean", "readOnly" : true }, "moduleBoligmappa" : { "type" : "boolean", "readOnly" : true }, "markReadyForInvoicing" : { "type" : "boolean", "readOnly" : true }, "tripletexSupportLoginAccessCompanyLevel" : { "type" : "boolean", "readOnly" : true }, "modulePensionreport" : { "type" : "boolean", "readOnly" : true }, "moduleControlSchemaRequiredInvoicing" : { "type" : "boolean", "readOnly" : true }, "moduleControlSchemaRequiredHourTracking" : { "type" : "boolean", "readOnly" : true }, "moduleInvoiceOptionVipps" : { "type" : "boolean", "readOnly" : true }, "moduleInvoiceOptionEfaktura" : { "type" : "boolean", "readOnly" : true }, "moduleInvoiceOptionPaper" : { "type" : "boolean", "readOnly" : true }, "moduleInvoiceOptionAvtaleGiro" : { "type" : "boolean", "readOnly" : true }, "moduleInvoiceOptionEhfIncoming" : { "type" : "boolean", "readOnly" : true }, "moduleInvoiceOptionEhfOutbound" : { "type" : "boolean", "readOnly" : true }, "moduleAPI20" : { "type" : "boolean", "readOnly" : true }, "moduleAgro" : { "type" : "boolean", "readOnly" : true }, "moduleMamut" : { "type" : "boolean", "readOnly" : true }, "moduleFactoringAprila" : { "type" : "boolean", "readOnly" : true }, "moduleCashCreditAprila" : { "type" : "boolean", "readOnly" : true }, "moduleInvoiceOptionAutoinvoiceEhf" : { "type" : "boolean", "readOnly" : true }, "moduleSmartScan" : { "type" : "boolean", "readOnly" : true }, "moduleAutoBankReconciliation" : { "type" : "boolean", "readOnly" : true }, "moduleOffer" : { "type" : "boolean", "readOnly" : true }, "moduleVoucherAutomation" : { "type" : "boolean", "readOnly" : true }, "moduleAmortization" : { "type" : "boolean", "readOnly" : true }, "moduleEncryptedPaySlip" : { "type" : "boolean", "readOnly" : true }, "hourCostPercentage" : { "type" : "boolean", "readOnly" : true }, "yearEndReport" : { "type" : "boolean", "readOnly" : true }, "digitalSignature" : { "type" : "boolean", "readOnly" : true }, "moduleLogistics" : { "type" : "boolean", "readOnly" : true }, "moduleIndustry" : { "type" : "boolean", "readOnly" : true }, "moduleQuantityHandling" : { "type" : "boolean", "readOnly" : true } }, "readOnly" : true }, "SegmentationRoles" : { "type" : "object", "properties" : { "roleAdministrator" : { "type" : "boolean", "readOnly" : true }, "roleAccountAdministrator" : { "type" : "boolean", "readOnly" : true }, "roleSystemAdministrator" : { "type" : "boolean", "readOnly" : true }, "isAuthInvoicing" : { "type" : "boolean", "readOnly" : true }, "isAuthCompanyAdmin" : { "type" : "boolean", "readOnly" : true }, "isAuthReadOnly" : { "type" : "boolean", "readOnly" : true }, "isAuthCreateOrder" : { "type" : "boolean", "readOnly" : true }, "isAuthAccountingSettings" : { "type" : "boolean", "readOnly" : true }, "isAuthCompanyWageAdmin" : { "type" : "boolean", "readOnly" : true }, "isAuthTravelsAndExpensesAdminSettings" : { "type" : "boolean", "readOnly" : true }, "isAuthInvoiceAdminSettings" : { "type" : "boolean", "readOnly" : true }, "isAuthInboxVoucher" : { "type" : "boolean", "readOnly" : true }, "isAutWageAdminSetting" : { "type" : "boolean", "readOnly" : true }, "isAuthWageSettings" : { "type" : "boolean", "readOnly" : true }, "isAuthBankReconciliation" : { "type" : "boolean", "readOnly" : true }, "isAuthAllVouchers" : { "type" : "boolean", "readOnly" : true }, "isAuthDirectRemitZtl" : { "type" : "boolean", "readOnly" : true } }, "readOnly" : true }, "ResponseWrapperDashboardContextDTO" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/DashboardContextDTO" } } }, "GetStartedSummary" : { "type" : "object", "properties" : { "numberOfCompletedTasks" : { "type" : "integer", "format" : "int32" }, "userName" : { "type" : "string" }, "completedTasksPercentage" : { "type" : "string" }, "uncompletedTasksPercentage" : { "type" : "string" }, "isTourMeEligible" : { "type" : "boolean" }, "hasSignedLicense" : { "type" : "boolean" }, "tasks" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/GetStartedTaskWidget" } } } }, "GetStartedTaskWidget" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int32" }, "icon" : { "type" : "string" }, "title" : { "type" : "string" }, "status" : { "type" : "string", "enum" : [ "INITIAL", "UNAVAILABLE", "PENDING", "DONE" ] }, "actionUrl" : { "type" : "string" }, "dataTestId" : { "type" : "string" } } }, "ResponseWrapperGetStartedSummary" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/GetStartedSummary" } } }, "IncomeAndCostSummaryDTO" : { "type" : "object", "properties" : { "incomeValues" : { "type" : "array", "readOnly" : true, "items" : { "type" : "number", "readOnly" : true } }, "costValues" : { "type" : "array", "readOnly" : true, "items" : { "type" : "number", "readOnly" : true } }, "accumulatedSurplusValues" : { "type" : "array", "readOnly" : true, "items" : { "type" : "number", "readOnly" : true } }, "widgetDisabled" : { "type" : "boolean", "readOnly" : true } } }, "ResponseWrapperIncomeAndCostSummaryDTO" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/IncomeAndCostSummaryDTO" } } }, "InvoiceSummaryDTO" : { "type" : "object", "properties" : { "moreThan30DaysOverdueSum" : { "type" : "number", "readOnly" : true }, "lessThan30DaysOverdueSum" : { "type" : "number", "readOnly" : true }, "notOverdueSum" : { "type" : "number", "readOnly" : true }, "outstandingOrdersSum" : { "type" : "number", "readOnly" : true }, "showInvoiceAction" : { "type" : "boolean", "readOnly" : true }, "lastUpdated" : { "type" : "string", "readOnly" : true }, "widgetDisabled" : { "type" : "boolean", "readOnly" : true }, "invoicingOnboardingCompleted" : { "type" : "boolean", "readOnly" : true } } }, "ResponseWrapperInvoiceSummaryDTO" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/InvoiceSummaryDTO" } } }, "CompanyReminder" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "submissionDate" : { "type" : "string" }, "status" : { "type" : "string" }, "globalReminderId" : { "type" : "integer", "format" : "int64" } } }, "GlobalReminder" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "name" : { "type" : "string", "enum" : [ "A_MELDING", "TAX_NOTICE", "TAX_PAYMENT", "VAT_RETURN", "SHAREHOLDER_REGISTER", "WAGE_COMPILATION", "ANNUAL_ACCOUNTS" ] }, "displayName" : { "type" : "string" }, "deadline" : { "type" : "string" }, "reminderUrl" : { "type" : "string" }, "term" : { "type" : "string", "enum" : [ "JAN", "FEB", "MAR", "APR", "MAY", "JUN", "JUL", "AUG", "SEP", "OCT", "NOV", "DEC", "JAN_FEB", "MAR_APR", "MAY_JUN", "JUL_AUG", "SEP_OCT", "NOV_DEC", "JAN_MAR", "APR_JUN", "JUL_SEP", "OCT_DEC", "JAN_APR", "MAY_AUG", "SEP_DEC", "H1", "H2", "YEARLY" ] }, "remainingDays" : { "type" : "integer", "format" : "int32" } } }, "ResponseWrapperListTripletexDashboardReminder" : { "type" : "object", "properties" : { "value" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/TripletexDashboardReminder" } } } }, "TripletexDashboardReminder" : { "type" : "object", "properties" : { "globalReminder" : { "$ref" : "#/components/schemas/GlobalReminder" }, "companyReminder" : { "$ref" : "#/components/schemas/CompanyReminder" }, "reminderBorderColor" : { "type" : "string", "enum" : [ "NONE", "RED", "GREEN", "YELLOW" ] } } }, "ResponseWrapperCompanyReminder" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/CompanyReminder" } } }, "ResponseWrapperGlobalReminder" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/GlobalReminder" } } }, "ReminderDTO" : { "type" : "object", "properties" : { "reminders" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ReminderWidgetDTO" } } } }, "ReminderWidgetDTO" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "name" : { "type" : "string", "readOnly" : true }, "deadline" : { "type" : "string", "readOnly" : true }, "url" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "ResponseWrapperReminderDTO" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ReminderDTO" } } }, "ResponseWrapperSalarySummaryDTO" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/SalarySummaryDTO" } } }, "SalarySummaryDTO" : { "type" : "object", "properties" : { "numberOfActiveEmployees" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "salaryPaymentSum" : { "type" : "number", "readOnly" : true }, "currency" : { "type" : "string", "readOnly" : true }, "salaryPercentage" : { "type" : "number", "readOnly" : true }, "employersPaymentPercentage" : { "type" : "number", "readOnly" : true }, "taxesPercentage" : { "type" : "number", "readOnly" : true }, "salaryPeriodMonthFirstDay" : { "type" : "string", "readOnly" : true }, "salaryPeriodMonthLastDay" : { "type" : "string", "readOnly" : true }, "validAltInnConfig" : { "type" : "boolean", "readOnly" : true }, "salaryVoucherPresent" : { "type" : "boolean", "readOnly" : true } } }, "ResponseWrapperTaskDTO" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/TaskDTO" } } }, "TaskDTO" : { "type" : "object", "properties" : { "tasks" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/TaskWidgetDTO" } } } }, "TaskWidgetDTO" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "title" : { "type" : "string", "readOnly" : true }, "message" : { "type" : "string", "readOnly" : true }, "url" : { "type" : "string", "readOnly" : true }, "icon" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "ResponseWrapperTrialDTO" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/TrialDTO" } } }, "TrialDTO" : { "type" : "object", "properties" : { "packageName" : { "type" : "string", "readOnly" : true }, "packageNameTranslated" : { "type" : "string", "readOnly" : true }, "companyEndDate" : { "type" : "string", "readOnly" : true } } }, "ResponseWrapperVoucherSummaryDTO" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/VoucherSummaryDTO" } } }, "VoucherDetailsDTO" : { "type" : "object", "properties" : { "count" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "baseLink" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "VoucherSummaryDTO" : { "type" : "object", "properties" : { "voucherReceptionData" : { "$ref" : "#/components/schemas/VoucherDetailsDTO" }, "attestationVouchersData" : { "$ref" : "#/components/schemas/VoucherDetailsDTO" }, "nonPostedVouchersData" : { "$ref" : "#/components/schemas/VoucherDetailsDTO" }, "automatedVouchersData" : { "$ref" : "#/components/schemas/VoucherDetailsDTO" } } }, "UserLicense" : { "type" : "object", "properties" : { "startupPaid" : { "type" : "boolean" }, "id" : { "type" : "integer", "description" : "User license id.", "format" : "int64", "readOnly" : true }, "companyId" : { "type" : "integer", "description" : "Company id.", "format" : "int64", "readOnly" : true }, "employee" : { "$ref" : "#/components/schemas/Employee" }, "userCategory" : { "type" : "integer", "description" : "User category of the license.", "format" : "int32", "readOnly" : true }, "startDate" : { "type" : "string", "description" : "User license start date." }, "endDate" : { "type" : "string", "description" : "User license end date." }, "isStartupPaid" : { "type" : "boolean", "description" : "True if startup fee has been paid, false otherwise.", "readOnly" : true }, "userLicenseStatus" : { "type" : "string", "description" : "User license status (terminated or active)", "readOnly" : true, "enum" : [ "TERMINATED", "ACTIVE" ] }, "monthlyPrice" : { "type" : "number", "description" : "Monthly fee paid for the user license", "readOnly" : true }, "employeeDeleted" : { "type" : "boolean", "description" : "True if the employee was deleted but the user license still exists", "readOnly" : true }, "deletedEmployeeDisplayName" : { "type" : "string", "description" : "Display name of the deleted employee", "readOnly" : true }, "lastEditedByEmployee" : { "$ref" : "#/components/schemas/Employee" }, "lastEditedByEmployeeTimestamp" : { "type" : "string", "description" : "Timestamp when the user license was last edited. Only relevant for Tripletex.", "readOnly" : true }, "discountPriority" : { "type" : "integer", "description" : "Ordinal representing the position in line this discount has when receiving discounts.", "format" : "int32", "readOnly" : true }, "discountPercentage" : { "type" : "number", "description" : "Discount percentage", "readOnly" : true } } }, "UserLicenseExport" : { "type" : "object", "properties" : { "zeroDaysExcluded" : { "type" : "boolean" }, "exportType" : { "type" : "string", "description" : "The type of the exported file, either PDF or CSV." }, "customerId" : { "type" : "integer", "description" : "Customer id.", "format" : "int64", "readOnly" : true }, "priceDate" : { "type" : "string", "description" : "Price date." }, "hasSingleDate" : { "type" : "boolean", "description" : "True if the single date option is checked.", "readOnly" : true }, "status" : { "type" : "string", "description" : "The type of the user license status (ACTIVE, TERMINATED, ALL)." }, "userType" : { "type" : "string", "description" : "The type of the user (EMPLOYEE, CONTACT, ALL)." }, "endDate" : { "type" : "string", "description" : "End date." }, "startDate" : { "type" : "string", "description" : "Start date." }, "hasMonthlyFee" : { "type" : "boolean", "description" : "True if the monthly fee option is checked.", "readOnly" : true }, "userLicenseType" : { "type" : "array", "description" : "The type of the user license.", "items" : { "type" : "string", "description" : "The type of the user license." } }, "isZeroDaysExcluded" : { "type" : "boolean", "description" : "True if the option to exclude the users licenses which lasts less than one day is checked.", "readOnly" : true }, "sorting" : { "type" : "string", "description" : "The field which we sort by." } } }, "ListResponseUserLicense" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/UserLicense" } } } }, "ResponseWrapperUserLicenseSettingsDTO" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/UserLicenseSettingsDTO" } } }, "UserLicenseSettingsDTO" : { "type" : "object", "properties" : { "isPriceDifferentiation" : { "type" : "boolean" }, "isAdvanceInvoicing" : { "type" : "boolean" }, "isAuthTripletexSupportInvoiceManager" : { "type" : "boolean" }, "isAuthTripletexSupport" : { "type" : "boolean" }, "customerDisplayName" : { "type" : "string" }, "hasActiveCategory2Licenses" : { "type" : "boolean" } } }, "ResponseWrapperUserLicense" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/UserLicense" } } }, "ResponseWrapperUserBanner" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/UserBanner" } } }, "UserBanner" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "userBannerType" : { "type" : "string", "readOnly" : true }, "closed" : { "type" : "boolean", "readOnly" : true }, "lastUpdated" : { "type" : "string", "readOnly" : true } } }, "ListResponseVatReturnsOverviewItem" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/VatReturnsOverviewItem" } } } }, "VatReturnsOverviewItem" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "startDate" : { "type" : "string", "readOnly" : true }, "endDate" : { "type" : "string", "readOnly" : true }, "dueDate" : { "type" : "string", "readOnly" : true }, "status" : { "type" : "string", "readOnly" : true, "enum" : [ "NOT_STARTED", "INSTANCE_CREATED", "VAT_ENVELOPE_DELIVERED", "VAT_RETURNS_DELIVERED", "ATTACHMENTS_DELIVERED", "FILLING_COMPLETE", "SENDING_COMPLETE", "FEEDBACK_RECEIVED", "MANUAL_DELIVERY", "USER_FORBIDDEN", "SENDING_FAILED" ] }, "voucherId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "voucherNumber" : { "type" : "string", "readOnly" : true }, "amount" : { "type" : "number", "readOnly" : true }, "isPaid" : { "type" : "boolean", "readOnly" : true }, "term" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "termDisplayName" : { "type" : "string", "readOnly" : true }, "year" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "reportType" : { "type" : "string", "readOnly" : true, "enum" : [ "PRIMARY_INDUSTRY", "GENERAL_INDUSTRY" ] }, "reportTypeName" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "ListResponseYear" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Year" } } } }, "Year" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "displayName" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "ResponseWrapperVatDeliveryStatusUpdate" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/VatDeliveryStatusUpdate" } } }, "VatDeliveryStatusUpdate" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "company" : { "$ref" : "#/components/schemas/Company" }, "year" : { "type" : "integer", "description" : "The year of the VAT term", "format" : "int32", "readOnly" : true }, "term" : { "type" : "integer", "description" : "The VAT term", "format" : "int32", "readOnly" : true } } }, "ResponseWrapperVatPaymentStatusUpdate" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/VatPaymentStatusUpdate" } } }, "VatPaymentStatusUpdate" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "company" : { "$ref" : "#/components/schemas/Company" }, "year" : { "type" : "integer", "description" : "The year of the VAT term", "format" : "int32", "readOnly" : true }, "term" : { "type" : "integer", "description" : "The VAT term", "format" : "int32", "readOnly" : true } } }, "ListResponseVatStatus" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/VatStatus" } } } }, "ResponseWrapperVatReturns2022" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/VatReturns2022" } } }, "VatReturns2022" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "start" : { "type" : "string", "readOnly" : true }, "end" : { "type" : "string", "readOnly" : true }, "year" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "vatTermNumber" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "displayName" : { "type" : "string", "readOnly" : true }, "closedDate" : { "type" : "string", "readOnly" : true }, "status" : { "type" : "string", "description" : "The current instance status of the vatReturns.", "readOnly" : true, "enum" : [ "NOT_STARTED", "INSTANCE_CREATED", "VAT_ENVELOPE_DELIVERED", "VAT_RETURNS_DELIVERED", "ATTACHMENTS_DELIVERED", "FILLING_COMPLETE", "SENDING_COMPLETE", "FEEDBACK_RECEIVED", "MANUAL_DELIVERY", "USER_FORBIDDEN", "SENDING_FAILED" ] }, "userComment" : { "type" : "string", "readOnly" : true }, "structuredComment" : { "type" : "string", "readOnly" : true }, "vatGroups" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/VatSpecificationGroup" } }, "voucher" : { "$ref" : "#/components/schemas/Voucher" }, "altinnMetadata" : { "$ref" : "#/components/schemas/AltinnInstance" }, "receiptId" : { "type" : "integer", "description" : "Attachment for vat return", "format" : "int32", "readOnly" : true }, "totalAmountVatToPay" : { "type" : "number", "readOnly" : true }, "remainingAmountVatToPay" : { "type" : "number", "readOnly" : true }, "isPaid" : { "type" : "boolean", "readOnly" : true }, "reportType" : { "type" : "string", "readOnly" : true, "enum" : [ "PRIMARY_INDUSTRY", "GENERAL_INDUSTRY" ] } }, "readOnly" : true }, "VatSpecificationGroup" : { "type" : "object", "properties" : { "name" : { "type" : "string", "description" : "The name of the group", "readOnly" : true }, "lines" : { "type" : "array", "description" : "The vat lines", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/VatSpecificationLine" } }, "totalAmountVat" : { "type" : "number", "description" : "Total vat amount on the group", "readOnly" : true }, "totalAmountVatBasis" : { "type" : "number", "description" : "Total vat basis amount on the group", "readOnly" : true } }, "readOnly" : true }, "VatSpecificationLine" : { "type" : "object", "properties" : { "vatReturns2022DTO" : { "$ref" : "#/components/schemas/VatReturns2022" }, "id" : { "type" : "integer", "format" : "int32" }, "standardCode" : { "type" : "integer", "description" : "The SAF-T code", "format" : "int32" }, "userComment" : { "type" : "string", "description" : "User comment" }, "structuredComment" : { "type" : "string", "description" : "Pre-generated structured comment" }, "rate" : { "type" : "number", "description" : "Rate" }, "basis" : { "type" : "number", "description" : "Basis" }, "vatAmount" : { "type" : "number", "description" : "Vat amount" }, "isReversable" : { "type" : "boolean", "description" : "Is Reversable" }, "expectedSign" : { "type" : "string", "description" : "Expected delivery sign", "enum" : [ "ZERO", "POSITIVE", "NEGATIVE" ] }, "specificationType" : { "type" : "string", "description" : "Vat specificationType", "enum" : [ "DEFAULT", "LOSS_OF_CLAIM", "WITHDRAWAL", "ADJUSTMENT", "REVERSAL", "COMPENSATION" ] }, "vatType" : { "$ref" : "#/components/schemas/VatType" } }, "description" : "The vat lines", "readOnly" : true }, "ListResponseDocument" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Document" } } } }, "ResponseWrapperVatSpecificationLine" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/VatSpecificationLine" } } }, "CommentInput" : { "type" : "object", "properties" : { "comment" : { "type" : "string", "description" : "The comment" }, "isStructured" : { "type" : "boolean", "description" : "Is this comment a structured comment? It must be in a predefined list from Skatteetaten" }, "vatReturnsId" : { "type" : "integer", "description" : "The id of the vatReturns", "format" : "int32" } } }, "VatReturns2022Creation" : { "type" : "object", "properties" : { "year" : { "minimum" : 0, "type" : "integer", "description" : "The year of creating the vatReturns", "format" : "int32" }, "term" : { "minimum" : 0, "type" : "integer", "description" : "The term of the vatReturns. Must be according to the terms the company have.", "format" : "int32" }, "reportType" : { "type" : "string", "description" : "Vat report type", "enum" : [ "PRIMARY_INDUSTRY", "GENERAL_INDUSTRY" ] } } }, "ResponseWrapperVatReturnsValidationResult" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/VatReturnsValidationResult" } } }, "ValidationError" : { "type" : "object", "properties" : { "vatCode" : { "type" : "string", "description" : "The vatCode connected to this error", "readOnly" : true }, "vatSpecificationLineId" : { "type" : "integer", "description" : "The vatSpecificationLine id the error is connected to", "format" : "int64", "readOnly" : true }, "reasons" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ValidationReason" } } }, "description" : "The general error messages the validation has", "readOnly" : true }, "ValidationReason" : { "type" : "object", "properties" : { "statusType" : { "type" : "string", "description" : "The status of the reason", "readOnly" : true, "enum" : [ "SUCCESS", "INVALID", "WARNING", "MISSING_INFORMATION" ] }, "errorCode" : { "type" : "string", "description" : "Skatteetatens errorCode", "readOnly" : true }, "reason" : { "type" : "string", "description" : "The actual reason for the validation error", "readOnly" : true }, "developerReason" : { "type" : "string", "description" : "Developer message for the error. In some cases it could be a xml error, then more info will be here.", "readOnly" : true } }, "description" : "The list of reasons of this error", "readOnly" : true }, "VatReturnsValidationResult" : { "type" : "object", "properties" : { "validationStatus" : { "type" : "string", "description" : "The status of general validation", "readOnly" : true, "enum" : [ "SUCCESS", "INVALID", "WARNING", "MISSING_INFORMATION" ] }, "generalMessage" : { "type" : "array", "readOnly" : true, "items" : { "type" : "string" } }, "errors" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ValidationError" } } } }, "ResponseWrapperVatReturns2022ValidateCreate" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/VatReturns2022ValidateCreate" } } }, "VatReturns2022ValidateCreate" : { "type" : "object", "properties" : { "incompleteVouchers" : { "minimum" : 0, "type" : "integer", "format" : "int32", "readOnly" : true }, "accountingPeriodClosed" : { "type" : "boolean", "readOnly" : true }, "beforeStartBalance" : { "type" : "boolean", "readOnly" : true }, "invalidDate" : { "type" : "boolean", "readOnly" : true }, "accountsRequiringHarmonization" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Account" } }, "helpAccountPostedOn" : { "$ref" : "#/components/schemas/Account" }, "alreadyExists" : { "type" : "boolean", "readOnly" : true }, "success" : { "type" : "boolean", "readOnly" : true } } }, "ResponseWrapperVatReturnsPaymentInfo" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/VatReturnsPaymentInfo" } } }, "VatReturnsPaymentInfo" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "vatReturns" : { "$ref" : "#/components/schemas/VatReturns2022" }, "kid" : { "type" : "string", "description" : "The KID number from Skatteetaten" }, "account" : { "type" : "string", "description" : "The bank account number of Skatteetaten" }, "amount" : { "type" : "number", "description" : "Amount to pay or receive" }, "dueDate" : { "type" : "string" } } }, "ListResponseVatReturnsComment" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/VatReturnsComment" } } } }, "VatReturnsComment" : { "type" : "object", "properties" : { "title" : { "type" : "string", "description" : "Title of the comment", "readOnly" : true }, "technicalName" : { "type" : "string", "description" : "Technical name of the comment", "readOnly" : true }, "description" : { "type" : "string", "description" : "Detailed description of the comment", "readOnly" : true }, "vatSpecificationType" : { "type" : "string", "description" : "Detailed description of the comment", "readOnly" : true, "enum" : [ "DEFAULT", "LOSS_OF_CLAIM", "WITHDRAWAL", "ADJUSTMENT", "REVERSAL", "COMPENSATION" ] }, "expectedSign" : { "type" : "string", "description" : "The sign expected on the structured comment", "readOnly" : true, "enum" : [ "ZERO", "POSITIVE", "NEGATIVE" ] }, "deliveredSign" : { "type" : "string", "description" : "The sign delivered on the structured comment", "readOnly" : true, "enum" : [ "ZERO", "POSITIVE", "NEGATIVE" ] } }, "description" : "List of comments for the given vatCode", "readOnly" : true }, "ListResponseVatReturnsVatCodeComment" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/VatReturnsVatCodeComment" } } } }, "VatReturnsVatCodeComment" : { "type" : "object", "properties" : { "vatCode" : { "type" : "string", "description" : "The vatCode" }, "comments" : { "type" : "array", "description" : "List of comments for the given vatCode", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/VatReturnsComment" } } }, "readOnly" : true }, "ResponseWrapperVatTermSizeSettings" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/VatTermSizeSettings" } } }, "VatTermSizeSettings" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "reportType" : { "type" : "string", "description" : "VAT report type, used to separate the different var report types.", "enum" : [ "PRIMARY_INDUSTRY", "GENERAL_INDUSTRY" ] }, "fromDate" : { "type" : "string", "description" : "Date from which this VAT term size setting is active." }, "termSize" : { "type" : "string", "description" : "VAT term type, used to calculate the start and end date for a vatreturns", "enum" : [ "ONE_MONTH", "TWO_MONTHS", "THREE_MONTHS", "FOUR_MONTHS", "SIX_MONTHS", "YEAR", "NOT_REGISTERED" ] } }, "readOnly" : true }, "ListResponseVatTermSizeSettings" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/VatTermSizeSettings" } } } }, "ResponseWrapperComment" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/Comment" } } }, "CommentCreation" : { "type" : "object", "properties" : { "commentText" : { "type" : "string", "description" : "The text of the comment to be created" } } }, "ListResponseComment" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Comment" } } } }, "ArchiveModelTypes" : { "type" : "object", "properties" : { "supplier" : { "type" : "boolean", "readOnly" : true }, "customer" : { "type" : "boolean", "readOnly" : true }, "project" : { "type" : "boolean", "readOnly" : true }, "order" : { "type" : "boolean", "readOnly" : true }, "offer" : { "type" : "boolean", "readOnly" : true }, "product" : { "type" : "boolean", "readOnly" : true }, "employee" : { "type" : "boolean", "readOnly" : true }, "account" : { "type" : "boolean", "readOnly" : true }, "asset" : { "type" : "boolean", "readOnly" : true } } }, "ResponseWrapperArchiveModelTypes" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ArchiveModelTypes" } } }, "ArchiveTargetPath" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "displayName" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "ListResponseArchiveTargetPath" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ArchiveTargetPath" } } } }, "VoucherInboxArchive" : { "type" : "object", "properties" : { "ids" : { "type" : "string", "description" : "List of voucherInboxIds to move to archive" }, "pathId" : { "type" : "integer", "description" : "Target path in archive", "format" : "int32" }, "archiveDate" : { "type" : "string" }, "filename" : { "type" : "string", "description" : "Override filename" }, "modelType" : { "type" : "string", "description" : "Add to specific archive", "enum" : [ "NONE", "CUSTOMER", "SUPPLIER", "PROJECT", "ORDER", "OFFER", "PRODUCT", "EMPLOYEE", "ACCOUNT", "ASSET" ] }, "modelId" : { "type" : "integer", "format" : "int32" }, "addToInvoice" : { "type" : "string", "description" : "Add to document to invoice", "enum" : [ "ADD_TO_INVOICE_NONE", "ADD_TO_INVOICE_NEXT", "ADD_TO_INVOICE_ALL" ] } } }, "PredictionKey" : { "type" : "object", "properties" : { "account" : { "type" : "string" }, "vatNumber" : { "type" : "string" }, "project" : { "type" : "string" }, "department" : { "type" : "string" } } }, "PredictionLine" : { "type" : "object", "properties" : { "account" : { "type" : "string", "readOnly" : true }, "amount" : { "type" : "number", "readOnly" : true }, "vatNumber" : { "type" : "string", "readOnly" : true }, "vatPercentage" : { "type" : "number", "readOnly" : true }, "project" : { "type" : "string", "readOnly" : true }, "department" : { "type" : "string", "readOnly" : true }, "key" : { "$ref" : "#/components/schemas/PredictionKey" } }, "readOnly" : true }, "ResponseWrapperVoucherInboxItem" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/VoucherInboxItem" } } }, "VoucherInboxItem" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "companyId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "companyName" : { "type" : "string", "readOnly" : true }, "description" : { "type" : "string", "readOnly" : true }, "filterType" : { "type" : "string", "readOnly" : true, "enum" : [ "UNKNOWN", "EHF", "EHF_WITH_PREDICTIONS", "EFO_NELFO", "EFO_NELFO_WITH_PREDICTIONS", "INVOICE", "PDF_INVOICE", "PDF_INVOICE_WITH_PREDICTIONS", "PDF_RECEIPT", "PDF_CREDIT_NOTE", "ERROR_EHF_IMPORT", "REPLAYABLE_VOUCHER", "REMINDER_SPECIFICATION" ] }, "receivedDate" : { "type" : "string", "readOnly" : true }, "voucherId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "invoiceId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "bankAccount" : { "type" : "string", "readOnly" : true }, "kid" : { "type" : "string", "readOnly" : true }, "merchantName" : { "type" : "string", "readOnly" : true }, "orderNumberCustomer" : { "type" : "string", "readOnly" : true }, "orderNumberBuyer" : { "type" : "string", "readOnly" : true }, "projectRef" : { "type" : "string", "readOnly" : true }, "vendorRef" : { "type" : "string", "readOnly" : true }, "buyersRef" : { "type" : "string", "readOnly" : true }, "buyersContact" : { "type" : "string", "readOnly" : true }, "lastComment" : { "type" : "string", "readOnly" : true }, "invoiceNumber" : { "type" : "string", "readOnly" : true }, "invoiceDate" : { "type" : "string", "readOnly" : true }, "dueDate" : { "type" : "string", "readOnly" : true }, "isDue" : { "type" : "boolean", "readOnly" : true }, "supplierName" : { "type" : "string", "readOnly" : true }, "invoiceAmount" : { "type" : "number", "readOnly" : true }, "invoiceCurrency" : { "type" : "string", "readOnly" : true }, "documents" : { "type" : "array", "readOnly" : true, "items" : { "type" : "string", "readOnly" : true } }, "documentIds" : { "type" : "array", "readOnly" : true, "items" : { "type" : "integer", "format" : "int32", "readOnly" : true } }, "account" : { "type" : "string", "readOnly" : true }, "vatNumber" : { "type" : "string", "readOnly" : true }, "vatAmount" : { "type" : "number", "readOnly" : true }, "vatPercentage" : { "type" : "number", "readOnly" : true }, "project" : { "type" : "string", "readOnly" : true }, "department" : { "type" : "string", "readOnly" : true }, "paymentTypeId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "paymentType" : { "type" : "string", "readOnly" : true }, "importFailureReason" : { "type" : "string", "readOnly" : true }, "predictionLines" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/PredictionLine" } }, "filename" : { "type" : "string", "readOnly" : true }, "isTemporary" : { "type" : "boolean", "readOnly" : true }, "isInvoiceSimple" : { "type" : "boolean", "readOnly" : true }, "isInvoiceDetailed" : { "type" : "boolean", "readOnly" : true }, "hasPredictions" : { "type" : "boolean", "description" : "Has one or more predictions from FabricAi", "readOnly" : true }, "hasSmartScanSuggestions" : { "type" : "boolean", "description" : "Has one or more suggestions from SmartScan", "readOnly" : true }, "isLocked" : { "type" : "boolean", "description" : "Is voucher locked for change by external integration", "readOnly" : true }, "commentCount" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "nonAutomationReason" : { "type" : "string", "readOnly" : true }, "pdfScanningStatus" : { "type" : "string", "readOnly" : true, "enum" : [ "NOT_STARTED", "SENT", "PROCESSING", "COMPLETED", "FAILED", "PROCESSING_ERROR", "VALIDATION_ERROR", "WONT_SEND", "STOPPED" ] }, "isPDFInvoiceWhichCanBeSentToLedger" : { "type" : "boolean", "readOnly" : true }, "canBeSentToLedger" : { "type" : "boolean", "description" : "Possible to do one click 'Send to ledger'", "readOnly" : true }, "canBeRegisteredAsChanged" : { "type" : "boolean", "description" : "Possible to do one click 'Send to ledger'", "readOnly" : true }, "canBeRegisteredAsSimpleInvoice" : { "type" : "boolean", "readOnly" : true }, "canBeRegisteredAsDetailedInvoice" : { "type" : "boolean", "readOnly" : true }, "canBeRegisteredAsIncomingInvoice" : { "type" : "boolean", "readOnly" : true }, "canBeRegisteredAsBankReconciliation" : { "type" : "boolean", "readOnly" : true }, "canBeRegisteredAsPaymentIn" : { "type" : "boolean", "readOnly" : true }, "canBeRegisteredAsIncome" : { "type" : "boolean", "readOnly" : true }, "canBeRegisteredAsCustomsDeclaration" : { "type" : "boolean", "readOnly" : true }, "canBeRegisteredAsAdvanced" : { "type" : "boolean", "readOnly" : true }, "canBeSentToAccountant" : { "type" : "boolean", "readOnly" : true }, "canBeSentToArchive" : { "type" : "boolean", "readOnly" : true }, "canBeDeleted" : { "type" : "boolean", "readOnly" : true }, "canBeRegisteredInQueue" : { "type" : "boolean", "readOnly" : true }, "canBeMerged" : { "type" : "boolean", "readOnly" : true }, "canBeReclaimed" : { "type" : "boolean", "readOnly" : true }, "canChangeDescription" : { "type" : "boolean", "readOnly" : true }, "preferDetailedInvoice" : { "type" : "boolean", "readOnly" : true }, "approvalHasBeenRejected" : { "type" : "boolean", "readOnly" : true }, "allowPostingBeforeVoucherApproved" : { "type" : "boolean", "readOnly" : true }, "senderEmailAddress" : { "type" : "string", "readOnly" : true }, "isSpam" : { "type" : "boolean", "readOnly" : true }, "emailArrivalTime" : { "type" : "string", "readOnly" : true }, "spamReportForDisplay" : { "type" : "string", "readOnly" : true }, "hasAttachment" : { "type" : "boolean", "readOnly" : true }, "voucherDocuments" : { "type" : "array", "description" : "All documents linked to this voucher for PDF display", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/VoucherDocument" } }, "documentUploaderName" : { "type" : "string", "readOnly" : true }, "documentUploaderEmail" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "VoucherChangeDescription" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "description" : "voucherInboxId to rename", "format" : "int32" }, "description" : { "type" : "string", "description" : "New description" }, "companyId" : { "type" : "integer", "description" : "Company id", "format" : "int32" } } }, "ListResponseVoucherInboxItem" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/VoucherInboxItem" } } } }, "VoucherDelete" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "description" : "voucherInboxId to delete", "format" : "int32" }, "companyId" : { "type" : "integer", "description" : "CompanyId", "format" : "int32" } } }, "ResponseWrapperVoucherInboxContext" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/VoucherInboxContext" } } }, "VoucherInboxContext" : { "type" : "object", "properties" : { "contextId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "companyName" : { "type" : "string", "readOnly" : true }, "showInbox" : { "type" : "boolean", "readOnly" : true }, "showAttestation" : { "type" : "boolean", "readOnly" : true }, "showFollowUp" : { "type" : "boolean", "readOnly" : true }, "showLastUpdated" : { "type" : "boolean", "readOnly" : true }, "showGoToPayment" : { "type" : "boolean", "readOnly" : true }, "showApprovePayment" : { "type" : "boolean", "readOnly" : true }, "showClientInbox" : { "type" : "boolean", "readOnly" : true }, "hasAutomation" : { "type" : "boolean", "readOnly" : true }, "hasEfoNelfoInvoices" : { "type" : "boolean", "readOnly" : true }, "hasBankAgreement" : { "type" : "boolean", "readOnly" : true }, "authAddBankAccountNumbers" : { "type" : "boolean", "readOnly" : true }, "allowPostingBeforeApproval" : { "type" : "boolean", "readOnly" : true }, "authSendToLedger" : { "type" : "boolean", "readOnly" : true }, "isUserReadOnly" : { "type" : "boolean", "writeOnly" : true }, "canUserUpload" : { "type" : "boolean", "readOnly" : true }, "canUserRegisterAdvancedVoucher" : { "type" : "boolean", "readOnly" : true }, "canUserCreateIncomeVoucher" : { "type" : "boolean", "readOnly" : true }, "canUserUseCustomsDeclaration" : { "type" : "boolean", "readOnly" : true }, "canUserUseIncomingInvoiceBeta" : { "type" : "boolean", "readOnly" : true }, "canUserUseInvoiceDetailed" : { "type" : "boolean", "readOnly" : true }, "canUserUseInvoiceSimple" : { "type" : "boolean", "readOnly" : true }, "establishedCompany" : { "type" : "boolean", "readOnly" : true }, "canUserAccessAutomationPage" : { "type" : "boolean", "readOnly" : true }, "inDeveloperMode" : { "type" : "boolean", "readOnly" : true }, "inTaskFoxDeveloperMode" : { "type" : "boolean", "readOnly" : true }, "inNewVoucherMenuPilot" : { "type" : "boolean", "readOnly" : true }, "voucherScanningEmail" : { "type" : "string", "readOnly" : true }, "mainBankAccountId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "employeeId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "automatedVouchersLast30Days" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "tripletexStartDate" : { "type" : "string", "readOnly" : true }, "companyAttestorCanOverride" : { "type" : "boolean", "readOnly" : true }, "showUserSurveyBanner" : { "type" : "boolean", "readOnly" : true }, "isActiveAccountantProxy" : { "type" : "boolean", "readOnly" : true }, "isActiveAuditorProxy" : { "type" : "boolean", "readOnly" : true }, "canUserActivateModules" : { "type" : "boolean", "readOnly" : true }, "companyCurrency" : { "type" : "string", "readOnly" : true }, "companyCurrencyId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "hasModuleDepartmentAccounting" : { "type" : "boolean", "readOnly" : true }, "hasModuleProductAccounting" : { "type" : "boolean", "readOnly" : true }, "hasModuleProduct" : { "type" : "boolean", "readOnly" : true }, "hasModuleEmployee" : { "type" : "boolean", "readOnly" : true }, "hasModuleProject" : { "type" : "boolean", "readOnly" : true }, "hasModuleProjectAccounting" : { "type" : "boolean", "readOnly" : true }, "defaultChargeOnProject" : { "type" : "boolean", "readOnly" : true }, "showRecentlyClosedProjectsOnSupplierInvoice" : { "type" : "boolean", "readOnly" : true }, "allowMultipleProjectInvoiceVat" : { "type" : "boolean", "readOnly" : true }, "hasModuleQuantityHandling" : { "type" : "boolean", "readOnly" : true }, "hasModuleMultipleLedgers" : { "type" : "boolean", "readOnly" : true }, "hasModuleFixedAssetRegister" : { "type" : "boolean", "readOnly" : true }, "incomingInvoicePilot" : { "type" : "boolean", "readOnly" : true }, "isQualifiedForIncomingInvoicePilotOptIn" : { "type" : "boolean", "readOnly" : true }, "inIncomingInvoiceOptInPilot" : { "type" : "boolean", "readOnly" : true }, "hasModuleVoucherTypes" : { "type" : "boolean", "readOnly" : true }, "hasModuleVoucherApproval" : { "type" : "boolean", "readOnly" : true }, "hasModuleYearEndReport" : { "type" : "boolean", "writeOnly" : true }, "mainModule" : { "type" : "string", "readOnly" : true, "enum" : [ "ACCOUNTING", "INVOICE", "CRM", "PROJECT", "WAGE", "NETS_PRINT", "NETS_PRINT_SALARY", "OCR", "REMIT", "SMS_NOTIFICATION", "VOUCHER_SCANNING", "TIME_TRACKING", "VVS_ELECTRO", "UBEGRENSET_BILAG_VVS_ELEKTRO", "INVOICE_OPTION_VIPPS", "INVOICE_OPTION_EFAKTURA", "INVOICE_OPTION_AVTALEGIRO", "INVOICE_OPTION_PAPER", "INVOICE_OPTION_AUTOINVOICE_OUTBOUND_EHF", "API_V2", "SMART_SCAN", "BILAG_0_100_mikro", "BILAG_0_500_vanlig_legacy", "BILAG_501_1000_vanlig_legacy", "BILAG_1001_2000_vanlig_legacy", "BILAG_2001_3500_vanlig_legacy", "BILAG_3501_5000_vanlig_legacy", "BILAG_5001_10001_vanlig_legacy", "UBEGRENSET_BILAG_vanlig_legacy", "BILAG_0_500_prosjekt_legacy", "BILAG_501_1000_prosjekt_legacy", "BILAG_1001_2000_prosjekt_legacy", "BILAG_2001_3500_prosjekt_legacy", "BILAG_3501_5000_prosjekt_legacy", "BILAG_5001_10001_prosjekt_legacy", "UBEGRENSET_BILAG_prosjekt_legacy", "MIKRO", "MINI", "MEDIUM", "TOTAL", "BASIS", "SMART", "AGRO_CLIENT", "MAMUT", "KOMPLETT", "SMART_WAGE", "SMART_TIME_TRACKING", "BILAG_0_500", "BILAG_501_1000", "BILAG_1001_2000", "BILAG_2001_3500", "BILAG_3501_5000", "BILAG_5001_10001", "UBEGRENSET_BILAG", "READ_ONLY_ACCESS", "READ_ONLY_ACCESS_FREE", "AUTOPAY", "VOUCHER_APPROVAL", "SMART_PROJECT", "ACCOUNT_OFFICE", "UNLIMITED_VOUCHER_ACCOUNT_OFFICE", "COMPANY_SERVICE_FOR_PAYING_ACCOUNT_OFFICES", "AGRO_WAGE", "INVOICE_OPTION_AUTOINVOICE_INCOMING_EHF", "MAMUT_PROJECT", "MAMUT_WITH_WAGE", "USER_SERVICE_HISTORIC_CUSTOMERS_NON_STANDARD", "ENCRYPTED_PAYSLIP", "AGRO_LICENCE", "AGRO_DOCUMENT_CENTER", "AGRO_INVOICE", "FIVE_EMPLOYEES", "AUTOPLUS_MINI", "AUTOPLUS_MEDIUM", "AUTOPLUS_STOR", "CASH_CREDIT_APRILA", "NO1TS", "NO1TS_TRAVELREPORT", "NO1TS_ACCOUNTING", "AGRO_INVOICE_MIGRATED", "USER_CATEGORY_1_LICENSE", "USER_CATEGORY_2_LICENSE", "USER_CATEGORY_3_LICENSE", "VOUCHER_FACTORY", "OCR_AUTOPAY", "CLOSED_ACCOUNT", "LOGISTICS", "INTEGRATION_PARTNER", "CREDIT_SCORING", "ZTL", "PLUSS", "YEAR_END_REPORTING_ENK", "YEAR_END_REPORTING_AS", "BILAG_0_100_MIKRO_AUTOMATION", "BILAG_0_500_AUTOMATION", "BILAG_501_1000_AUTOMATION", "BILAG_1001_2000_AUTOMATION", "BILAG_2001_3500_AUTOMATION", "BILAG_3501_5000_AUTOMATION", "BILAG_5001_10001_AUTOMATION", "UBEGRENSET_BILAG_AUTOMATION", "CMA_SHOPIFY", "CMA_MYSTORE", "CMA_WOOCOMMERCE", "RACKBEAT", "DIYPACKAGE", "YEAR_END_REPORTING_ANS", "YEAR_END_REPORTING_DA", "YEAR_END_REPORTING_STI", "YEAR_END_REPORTING_ORG", "YEAR_END_REPORTING_SA", "YEAR_END_REPORTING_FLI", "YEAR_END_REPORTING_NUF", "PRIMARY_INDUSTRY", "FIXED_ASSETS_REGISTER", "STICOS", "PRO", "RECONCILIATION", "DIGITAL_SIGNING" ] }, "dimension1Name" : { "type" : "string", "readOnly" : true }, "dimension1InUse" : { "type" : "boolean", "readOnly" : true }, "dimension2Name" : { "type" : "string", "readOnly" : true }, "dimension2InUse" : { "type" : "boolean", "readOnly" : true }, "dimension3Name" : { "type" : "string", "readOnly" : true }, "dimension3InUse" : { "type" : "boolean", "readOnly" : true }, "userReadOnly" : { "type" : "boolean" } } }, "ResponseWrapperWootricDTO" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/WootricDTO" } } }, "WootricDTO" : { "type" : "object", "properties" : { "email" : { "type" : "string", "readOnly" : true }, "external_id" : { "type" : "string", "readOnly" : true }, "created_at" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "product_name" : { "type" : "string", "readOnly" : true }, "cesToken" : { "type" : "string", "readOnly" : true }, "npsToken" : { "type" : "string", "readOnly" : true }, "language" : { "type" : "string", "readOnly" : true }, "properties" : { "$ref" : "#/components/schemas/WootricPropertiesDTO" }, "thankYouMessageMain" : { "type" : "string", "readOnly" : true }, "thankYouMessageSetup" : { "type" : "string", "readOnly" : true } } }, "WootricPropertiesDTO" : { "type" : "object", "properties" : { "email" : { "type" : "string", "readOnly" : true }, "company_type" : { "type" : "string", "readOnly" : true }, "mainModule" : { "type" : "string", "readOnly" : true }, "employees" : { "type" : "string", "readOnly" : true }, "isAccountant" : { "type" : "boolean", "readOnly" : true }, "gotAccountantRelationship" : { "type" : "string", "readOnly" : true }, "category1" : { "type" : "string", "readOnly" : true }, "category2" : { "type" : "string", "readOnly" : true }, "category3" : { "type" : "string", "readOnly" : true }, "age" : { "type" : "string", "readOnly" : true }, "ageMonths" : { "type" : "string", "readOnly" : true }, "language" : { "type" : "string", "readOnly" : true }, "moduleElectro" : { "type" : "boolean", "readOnly" : true }, "moduleNrf" : { "type" : "boolean", "readOnly" : true }, "moduleInvoice" : { "type" : "boolean", "readOnly" : true }, "modulehourlist" : { "type" : "boolean", "readOnly" : true }, "moduleproject" : { "type" : "boolean", "readOnly" : true }, "modulePayrollAccounting" : { "type" : "boolean", "readOnly" : true }, "moduleTravelExpense" : { "type" : "boolean", "readOnly" : true }, "moduleAccountingExternal" : { "type" : "boolean", "readOnly" : true }, "moduleLogistics" : { "type" : "boolean", "readOnly" : true }, "moduleRemit" : { "type" : "boolean", "readOnly" : true }, "moduleFabricAI" : { "type" : "boolean", "readOnly" : true }, "device" : { "type" : "boolean", "readOnly" : true }, "isadmin" : { "type" : "boolean", "readOnly" : true } }, "readOnly" : true }, "ResponseWrapperVoucherMessage" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/VoucherMessage" } } }, "VoucherMessage" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "voucherId" : { "type" : "integer", "description" : "The voucher to connect the message to, only set on create", "format" : "int64" }, "content" : { "type" : "string", "description" : "The message" }, "sender" : { "$ref" : "#/components/schemas/Employee" }, "sendTime" : { "type" : "string", "description" : "The timestamp of the message" } }, "readOnly" : true }, "ListResponseVoucherMessage" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/VoucherMessage" } } } }, "ResponseWrapperVoucherStatus" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/VoucherStatus" } } }, "VoucherStatus" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "voucher" : { "$ref" : "#/components/schemas/Voucher" }, "type" : { "type" : "string", "description" : "The type of process", "readOnly" : true, "enum" : [ "TRIPLETEX", "SUPPLIERINVOICE_EXTERNAL", "DEBT_COLLECTION" ] }, "status" : { "type" : "string", "description" : "Process status", "enum" : [ "WAITING", "DONE", "SKIPPED", "ERROR", "NONE", "PROCESSING", "RECLAIMED" ] }, "timestamp" : { "type" : "string", "description" : "Time of last update", "readOnly" : true }, "message" : { "type" : "string", "description" : "1 or 0 predefined status message", "enum" : [ "NONE", "ONGOING", "NEEDS_APPROVAL", "WITHDRAWN", "SETTLED" ] }, "externalObjectUrl" : { "type" : "string", "description" : "Link to external object" }, "comment" : { "type" : "string" }, "referenceNumber" : { "type" : "string", "description" : "reference number to external object" } }, "readOnly" : true }, "ListResponseVoucherStatus" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/VoucherStatus" } } } }, "Banner" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "bannerType" : { "type" : "string", "readOnly" : true }, "title" : { "type" : "string", "readOnly" : true }, "message" : { "type" : "string", "readOnly" : true }, "button" : { "type" : "string", "readOnly" : true }, "link" : { "type" : "string", "readOnly" : true }, "tag" : { "type" : "string", "readOnly" : true }, "done" : { "type" : "boolean", "readOnly" : true }, "cancellable" : { "type" : "boolean", "readOnly" : true } }, "readOnly" : true }, "ResponseWrapperBanner" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/Banner" } } }, "GeneralBannerDTO" : { "type" : "object", "properties" : { "bannerType" : { "type" : "string", "enum" : [ "info", "warning", "error", "success" ] }, "message" : { "type" : "string" }, "tag" : { "type" : "string" }, "link" : { "type" : "string" }, "title" : { "type" : "string" } }, "readOnly" : true }, "ListResponseGeneralBannerDTO" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/GeneralBannerDTO" } } } }, "ListResponseBanner" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Banner" } } } }, "Callout" : { "type" : "object", "properties" : { "severity" : { "type" : "string", "readOnly" : true, "enum" : [ "INFO", "WARNING", "ERROR", "CONFIRMATION" ] }, "message" : { "type" : "string", "readOnly" : true }, "id" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "pageSpecific" : { "type" : "boolean", "readOnly" : true } }, "readOnly" : true }, "ListResponseCallout" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Callout" } } } }, "GetStartedBannerData" : { "type" : "object", "properties" : { "banner" : { "type" : "string", "enum" : [ "ListNotesBanner", "TestBannerPleaseIgnore", "SalaryTaxCardBanner", "SalaryAmeldingBanner", "UpdateHourListBanner", "TravelsAndExpensesBanner", "ReportViewerBanner", "ClientTasksViewBanner", "YearEndPageBanner", "InboxArchiveBanner", "BankReconciliationAutoBanner", "VoucherReceptionBanner", "CreateSalaryBanner", "NewOrderInvoiceBanner", "SimpleInvoiceToEffortlessBanner", "UserTestEffortlessBanner", "UserInsightInterestNoteBanner", "UserTestEffortlessBannerLogistics", "ActivateEHFBanner", "ActivateEFakturaBanner", "TripletexDashboardBanner", "VoucherAutomationBanner", "PurchaseOrdersBanner", "CompanyInformationBanner", "StartBalanceBanner", "PaymentsBanner", "YearEndReportTripletexDashboardBanner", "YearEndSubmissionOpenEnkBanner", "YearEndSubmissionOpenAsBanner", "YearEndSubmissionReminderEnkBanner", "YearEndSubmissionReminderBanner", "FeedbackDeadlinesAndTasksSurveyBanner", "MySubscriptionSurveyBanner", "AIAssistantInstructionsBanner", "SticosSurveyBanner", "SticosInfoBanner", "SalaryOverviewBanner", "AccountingSettingsBanner", "UpsellFromBasisToSmartTripletexDashboardBanner", "CopilotInfoBanner", "ProductOverviewBanner", "MySubscriptionInTripletexBanner", "NewDashboardReminderBanner", "AttestationBanner" ] }, "state" : { "type" : "string", "enum" : [ "VISIBLE", "MINIMIZED", "DISMISSED" ] } }, "readOnly" : true }, "ResponseWrapperListGetStartedBannerData" : { "type" : "object", "properties" : { "value" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/GetStartedBannerData" } } } }, "ResponseWrapperGetStartedBannerData" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/GetStartedBannerData" } } }, "ListResponseGetStartedBannerData" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/GetStartedBannerData" } } } }, "Favorite" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "rank" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "name" : { "type" : "string", "readOnly" : true }, "pageUrl" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "FavoriteMenu" : { "type" : "object", "properties" : { "shouldShow" : { "type" : "boolean", "readOnly" : true }, "favoriteList" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Favorite" } } } }, "ResponseWrapperFavoriteMenu" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/FavoriteMenu" } } }, "Menu" : { "type" : "object", "properties" : { "menuStyle" : { "type" : "string", "readOnly" : true, "enum" : [ "NORMAL", "AGRO", "AGRO_ON_PREMISE" ] }, "menuItems" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/MenuItem" } }, "defaultContentUrl" : { "type" : "string", "readOnly" : true }, "showTrialWidget" : { "type" : "boolean", "readOnly" : true }, "packageName" : { "type" : "string", "readOnly" : true }, "purchaseUrl" : { "type" : "string", "readOnly" : true }, "trialExpiresDate" : { "type" : "string", "readOnly" : true }, "currentServerTime" : { "type" : "string", "readOnly" : true } } }, "MenuItem" : { "type" : "object", "properties" : { "title" : { "type" : "string", "readOnly" : true }, "theme" : { "type" : "string", "readOnly" : true }, "testId" : { "type" : "string", "readOnly" : true }, "icon" : { "type" : "string", "readOnly" : true }, "url" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "ResponseWrapperMenu" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/Menu" } } }, "ListResponseMenuItemV2" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/MenuItemV2" } } } }, "MenuItemV2" : { "type" : "object", "properties" : { "title" : { "type" : "string" }, "id" : { "type" : "string" }, "url" : { "type" : "string" }, "category" : { "type" : "string" }, "isChild" : { "type" : "boolean", "writeOnly" : true }, "child" : { "type" : "boolean" } }, "readOnly" : true }, "ListResponseNews" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/News" } } } }, "News" : { "type" : "object", "properties" : { "title" : { "type" : "string" }, "publish_date" : { "type" : "string" }, "excerpt" : { "type" : "string" }, "permalink" : { "type" : "string" } }, "readOnly" : true }, "PageOptions" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "key" : { "type" : "string", "description" : "The lookup key for this PageOptions entry" }, "type" : { "type" : "string", "description" : "The type that `data` is", "enum" : [ "IncomingInvoiceViewOptions", "PurchaseOrderOverviewOptions", "BankBalanceEstimationViewOptions", "OrderFormViewOptions", "InvoiceOverviewOptions", "VoucherFlowViewOptions", "SalaryOnboardingOptions", "IncomePageViewOptions", "ReconciliationViewOptions", "IncomingInvoiceUnifiedViewOptions" ] }, "level" : { "type" : "string", "description" : "The level that `data` is stored at", "enum" : [ "Employee", "Company" ] }, "data" : { "type" : "object", "additionalProperties" : { "type" : "object", "description" : "The actual options as a JSON blob" }, "description" : "The actual options as a JSON blob" } } }, "ResponseWrapperPageOptions" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/PageOptions" } } }, "CompanyChooserCompany" : { "type" : "object", "properties" : { "url" : { "type" : "string", "readOnly" : true }, "displayName" : { "type" : "string", "readOnly" : true }, "parent" : { "$ref" : "#/components/schemas/CompanyChooserCompany" }, "id" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "isSuspended" : { "type" : "boolean", "readOnly" : true } } }, "CompanyChooserDTO" : { "type" : "object", "properties" : { "currentCompany" : { "$ref" : "#/components/schemas/CompanyChooserCompany" }, "hasAccessToMultipleCompanies" : { "type" : "boolean", "readOnly" : true } } }, "ResponseWrapperCompanyChooserDTO" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/CompanyChooserDTO" } } }, "ResponseWrapperListCompanyChooserCompany" : { "type" : "object", "properties" : { "value" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/CompanyChooserCompany" } } } }, "ProfileDTO" : { "type" : "object", "properties" : { "displayName" : { "type" : "string", "readOnly" : true }, "profileImageUrl" : { "type" : "string", "readOnly" : true }, "menuItems" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/MenuItem" } }, "site" : { "type" : "string", "readOnly" : true }, "userLocale" : { "type" : "string", "readOnly" : true } } }, "ResponseWrapperProfileDTO" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ProfileDTO" } } }, "ListResponseZendeskSearchResult" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ZendeskSearchResult" } } } }, "ZendeskSearchResult" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "title" : { "type" : "string", "readOnly" : true }, "url" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "ResponseWrapperSegmentationData" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/SegmentationData" } } }, "ResponseWrapperSpacesuitMetaDTO" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/SpacesuitMetaDTO" } } }, "SpacesuitMetaDTO" : { "type" : "object", "properties" : { "helpCenterBaseUrl" : { "type" : "string" }, "chatBaseUrl" : { "type" : "string" } } }, "ResponseWrapperZendeskChatMetaDTO" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ZendeskChatMetaDTO" } } }, "ZendeskChatMetaDTO" : { "type" : "object", "properties" : { "apiKey" : { "type" : "string", "readOnly" : true }, "name" : { "type" : "string", "readOnly" : true }, "email" : { "type" : "string", "readOnly" : true }, "locale" : { "type" : "string", "readOnly" : true }, "departments" : { "type" : "array", "readOnly" : true, "items" : { "type" : "string", "readOnly" : true } }, "tags" : { "type" : "array", "readOnly" : true, "items" : { "type" : "string", "readOnly" : true } } } }, "ConnectionTestRequest" : { "type" : "object", "properties" : { "type" : { "type" : "string", "description" : "Type of connection to test: PRODUCT or CUSTOMER", "enum" : [ "PRODUCT", "CUSTOMER" ] }, "companyId" : { "type" : "integer", "description" : "Company ID (required for CUSTOMER type, null for PRODUCT)", "format" : "int32" }, "wholesalerCompanyId" : { "type" : "integer", "description" : "Wholesaler company ID", "format" : "int32" }, "credentialType" : { "type" : "string", "description" : "Credential type to test: IMPORT or EXPORT (used for CUSTOMER type)", "enum" : [ "IMPORT", "EXPORT" ] } }, "description" : "Connection test request" }, "Altinn2ReceptionReceipt" : { "type" : "object", "properties" : { "subReceipts" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/Altinn2ReceptionReceipt" } }, "messages" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/Altinn2ReceptionReceiptMessage" } }, "status" : { "type" : "string", "enum" : [ "0", "1", "2", "3", "4", "5" ] } }, "readOnly" : true }, "Altinn2ReceptionReceiptMessage" : { "type" : "object", "properties" : { "severity" : { "type" : "string", "readOnly" : true, "enum" : [ "0", "1" ] }, "subject" : { "type" : "string", "readOnly" : true }, "description" : { "type" : "string", "readOnly" : true }, "fieldName" : { "type" : "string", "readOnly" : true }, "deviationInfo" : { "$ref" : "#/components/schemas/Altinn2ReceptionReceiptMessageDeviationInfo" }, "positionInfo" : { "$ref" : "#/components/schemas/Altinn2ReceptionReceiptMessagePositionInfo" }, "raw" : { "type" : "string", "readOnly" : true }, "xpath" : { "type" : "string", "readOnly" : true } } }, "Altinn2ReceptionReceiptMessageDeviationInfo" : { "type" : "object", "properties" : { "submittedValue" : { "type" : "string", "readOnly" : true }, "expectedValue" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "Altinn2ReceptionReceiptMessagePositionInfo" : { "type" : "object", "properties" : { "line" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "position" : { "type" : "integer", "format" : "int32", "readOnly" : true } }, "readOnly" : true }, "AnnualAccountsSubTotalLine" : { "type" : "object", "properties" : { "orid" : { "type" : "string", "readOnly" : true }, "grouping" : { "type" : "string", "readOnly" : true }, "name" : { "type" : "string", "readOnly" : true }, "technicalName" : { "type" : "string", "readOnly" : true }, "info" : { "type" : "string", "readOnly" : true }, "closingBalance" : { "type" : "number", "readOnly" : true }, "openingBalance" : { "type" : "number", "readOnly" : true }, "notes" : { "type" : "string", "readOnly" : true }, "freeNotes" : { "type" : "string", "readOnly" : true } } }, "AnnualAccountsSubTotalSection" : { "type" : "object", "properties" : { "name" : { "type" : "string" }, "sumOpeningBalance" : { "type" : "number", "readOnly" : true }, "sumClosingBalance" : { "type" : "number", "readOnly" : true }, "subTotalLines" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/AnnualAccountsSubTotalLine" } } } }, "AnnualAccountsSubmissionResult" : { "type" : "object", "properties" : { "failureStep" : { "type" : "string", "enum" : [ "0", "1", "2", "3", "255" ] }, "failureCategory" : { "type" : "string", "enum" : [ "0", "1", "2", "3", "4" ] }, "failureMainMessage" : { "type" : "string" }, "receptionReceipt" : { "$ref" : "#/components/schemas/Altinn2ReceptionReceipt" } } }, "ResponseWrapperYearEndAnnualAccounts" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/YearEndAnnualAccounts" } } }, "YearEndAnnualAccounts" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "year" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "sentDate" : { "type" : "string" }, "status" : { "type" : "string", "enum" : [ "STARTED", "UPDATED", "RESTARTED", "SUBMITTED_UNSIGNED", "SUBMITTED_SIGNED", "USER_MARKED_AS_SIGNEDBYALL", "SYSTEM_MARKED_AS_SIGNEDBYALL" ] }, "submissionInProgress" : { "type" : "boolean" }, "submissionAttemptDate" : { "type" : "string" }, "submissionResult" : { "$ref" : "#/components/schemas/AnnualAccountsSubmissionResult" }, "operatingProfitRevenues" : { "$ref" : "#/components/schemas/AnnualAccountsSubTotalSection" }, "operatingProfitExpenses" : { "$ref" : "#/components/schemas/AnnualAccountsSubTotalSection" }, "operatingProfit" : { "$ref" : "#/components/schemas/AnnualAccountsSubTotalSection" }, "netFinancialItemsIncome" : { "$ref" : "#/components/schemas/AnnualAccountsSubTotalSection" }, "netFinancialItemsExpenses" : { "$ref" : "#/components/schemas/AnnualAccountsSubTotalSection" }, "netFinancialItems" : { "$ref" : "#/components/schemas/AnnualAccountsSubTotalSection" }, "ordinaryResultBeforeTaxes" : { "$ref" : "#/components/schemas/AnnualAccountsSubTotalSection" }, "ordinaryResultAfterTaxes" : { "$ref" : "#/components/schemas/AnnualAccountsSubTotalSection" }, "netProfitOrLossForTheYear" : { "$ref" : "#/components/schemas/AnnualAccountsSubTotalSection" }, "netProfitOrLossForTheYearAfterMinoritiesShareOfProfit" : { "$ref" : "#/components/schemas/AnnualAccountsSubTotalSection" }, "transfers" : { "$ref" : "#/components/schemas/AnnualAccountsSubTotalSection" }, "fixedAssetsIntangible" : { "$ref" : "#/components/schemas/AnnualAccountsSubTotalSection" }, "fixedAssetsTangible" : { "$ref" : "#/components/schemas/AnnualAccountsSubTotalSection" }, "fixedAssetsFinancial" : { "$ref" : "#/components/schemas/AnnualAccountsSubTotalSection" }, "fixedAssets" : { "$ref" : "#/components/schemas/AnnualAccountsSubTotalSection" }, "currentAssetsStocks" : { "$ref" : "#/components/schemas/AnnualAccountsSubTotalSection" }, "currentAssetsReceivables" : { "$ref" : "#/components/schemas/AnnualAccountsSubTotalSection" }, "currentAssetsInvestments" : { "$ref" : "#/components/schemas/AnnualAccountsSubTotalSection" }, "currentAssetsBankDepositsCash" : { "$ref" : "#/components/schemas/AnnualAccountsSubTotalSection" }, "currentAssets" : { "$ref" : "#/components/schemas/AnnualAccountsSubTotalSection" }, "assets" : { "$ref" : "#/components/schemas/AnnualAccountsSubTotalSection" }, "equityPaidInCapital" : { "$ref" : "#/components/schemas/AnnualAccountsSubTotalSection" }, "equityRetainedEarnings" : { "$ref" : "#/components/schemas/AnnualAccountsSubTotalSection" }, "equity" : { "$ref" : "#/components/schemas/AnnualAccountsSubTotalSection" }, "longTermLiabilitiesProvisions" : { "$ref" : "#/components/schemas/AnnualAccountsSubTotalSection" }, "longTermLiabilitiesOther" : { "$ref" : "#/components/schemas/AnnualAccountsSubTotalSection" }, "longTermLiabilities" : { "$ref" : "#/components/schemas/AnnualAccountsSubTotalSection" }, "currentLiabilities" : { "$ref" : "#/components/schemas/AnnualAccountsSubTotalSection" }, "liabilities" : { "$ref" : "#/components/schemas/AnnualAccountsSubTotalSection" }, "equityAndLiabilities" : { "$ref" : "#/components/schemas/AnnualAccountsSubTotalSection" }, "sumOpeningBalance" : { "type" : "number" }, "sumClosingBalance" : { "type" : "number" } } }, "ListResponseYearEndAnnualAccountsCode" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/YearEndAnnualAccountsCode" } } } }, "YearEndAnnualAccountsCode" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "guid" : { "type" : "string", "readOnly" : true }, "languageTextNO" : { "type" : "string", "readOnly" : true }, "languageTextEN" : { "type" : "string", "readOnly" : true }, "displayName" : { "type" : "string", "readOnly" : true } } }, "BasicData" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "nationalIdentityNumber" : { "type" : "string" }, "businessActivityType" : { "type" : "string", "enum" : [ "OTHER_COMMERCIAL_ACTIVITIES", "OTHER_COMMERCIAL_ACTIVITIES_2", "OTHER_COMMERCIAL_ACTIVITIES_3", "OTHER_COMMERCIAL_ACTIVITIES_4", "AGRICULTURE_HORTICULTURE_FUR_FARMING", "FISHING_AND_HUNTING_AT_SEA", "REINDEER_HUSBANDRY", "FAMILY_DAY_CARE_CENTRE_IN_OWN_HOME", "SLATE_QUARRYING", "FORESTRY", "NOT_INDUSTRY" ] }, "businessActivityDescription" : { "type" : "string" }, "isCompanyLiquidated" : { "type" : "boolean" }, "companyLiquidatedYear" : { "type" : "integer", "format" : "int32" } } }, "GenericData" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "groupId" : { "type" : "integer", "format" : "int32" }, "genericDataType" : { "type" : "string", "enum" : [ "MISC", "TRANSPORT", "ACCOMMODATION_AND_RESTAURANT", "PROFIT_AND_LOSS", "CUSTOMER_RECEIVABLE", "INVENTORIES", "TANGIBLE_FIXED_ASSETS", "RECONCILIATION_OF_EQUITY", "PERMANENT_DIFFERENCES", "TEMPORARY_DIFFERENCES", "DOCUMENT_DOWNLOADED", "GROUP_CONTRIBUTIONS", "TAX_RETURN", "TAX_CALCULATIONS", "DOCUMENTATION", "SHARES_AND_SECURITIES", "REAL_ESTATE", "PARTICIPANT", "SALARY_AND_PENSION_EXPENSES", "COOPERATIVE_ENTERPRISE", "OTHER_CIRCUMSTANCES", "RESEARCH_AND_DEVELOPMENT", "TIMBER_ACCOUNT", "CONTROLLED_TRANSACTIONS", "PARTICIPANT_ASSESSMENT_REPORT", "CONTROLLED_TRANSACTIONS_COMPANY_SPECIFICATION", "INTEREST_LIMITATION", "DOCUMENT_WITH_ALTINN_ID", "FOREST_FUND", "TAX_ASSESSMENT", "DISTRIBUTION_OF_CAPITAL_DEBT", "REINDEER_HUSBANDRY", "LANDBRUKETS_DATAFLYT", "AGRICULTURAL_ACCOUNT" ] }, "genericDataSubType" : { "type" : "string", "enum" : [ "NONE", "NOT_LICENSED", "FREIGHT_TRANSPORT", "TAXI", "ACQUISITION_AND_REALIZATION", "PRODUCT_TYPE_INVENTORY", "CASH_REGISTER_SYSTEM", "PRIVATE_WITHDRAWAL_OF_GOODS", "ENTERTAINMENT", "MULTI_UNIT_BUILDING_UNIT", "RENTAL_WITHDRAWAL_SALE_COMPANY", "RENTAL_WITHDRAWAL_SALE_SHAREHOLDER", "RESOLUTION", "WORK_PACKAGE", "COLLABORATIVE_BUSINESS", "OTHER_PUBLIC_SUPPORT", "BUSINESS_ACTIVITY", "RELATED_COMPANY", "FUNCTION_AND_RISK", "TRANSACTION", "OUTSTANDING", "INTEREST_EXPENSES_TO_COMPANY_IN_SAME_GROUP", "INTEREST_EXPENSES_TO_OTHER_GROUP_GUARANTOR", "INTEREST_EXPENSES_TO_OTHER_WITH_OUTSTANDING_CLAIM", "COMPANIES_INCLUDED_IN_NORWEGIAN_PART_OF_GROUP", "INTEREST_INCOME_FROM_COMPANY_IN_SAME_GROUP", "INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP", "INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_GROUP_GUARANTOR", "INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_WITH_OUTSTANDING_CLAIM", "INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP", "FORWARDING_DISALLOWED_INTEREST_DEDUCTION" ] }, "genericDataSubTypeGroupId" : { "type" : "integer", "format" : "int32" }, "postType" : { "type" : "string", "enum" : [ "REGISTRATION_NUMBER", "DESCRIPTION", "VEHICLE_TYPE", "YEAR_OF_INITIAL_REGISTRATION", "LIST_PRICE", "DATE_FROM", "DATE_TO", "LICENCE", "LICENCE_NUMBER", "IS_ELECTRONIC_VEHICLE_LOGBOOK_LOGGED", "NO_OF_KILOMETRES_TOTAL", "OPERATING_EXPENSES", "LEASING_RENT", "IS_COMPANY_VEHICLE_USED_PRIVATE", "NO_OF_KILOMETRES_PRIVATE", "DEPRECIATION_PRIVATE_USE", "REVERSED_VEHICLE_EXPENSES", "FUEL_COST", "MAINTENANCE_COST", "COST_OF_INSURANCE_AND_TAX", "CAR_DEPARTMENT", "NO_OF_LITER_FUEL", "TAXIMETER_TYPE", "INCOME_PERSONAL_TRANSPORT", "INCOME_GOODS_TRANSPORT", "DRIVING_INCOME_PAYED_IN_CASH", "DRIVING_INCOME_INVOICED_PUBLIC_AGENCIES", "TIP_PAYED_WITH_CARD_OR_INVOICE", "TIP_PAYED_IN_CASH", "NO_OF_KILOMETRES_SCHOOL_CHILDREN", "NO_OF_KILOMETRES_WITH_PASSENGER", "FLOP_TRIP_AMOUNT", "IS_CONNECTED_TO_CENTRAL", "ID_FOR_PROFIT_AND_LOSS_ACCOUNT", "DESCRIPTION_PROFIT_AND_LOSS_ACCOUNT", "MUNICIPALITY_NUMBER", "OPENING_BALANCE", "PROFIT_SALES_WITHDRAWAL_OTHER_REALIZATIONS", "LOSS_SALES_WITHDRAWAL_OTHER_REALIZATIONS", "PROFIT_REALIZATIONS_LIVESTOCK", "VALUE_ACQUIRED_PROFIT_AND_LOSS_ACCOUNT", "VALUE_REALIZED_PROFIT_AND_LOSS_ACCOUNT", "ANNUAL_INCOME_RECOGNITION_OR_DEDUCTION_BASIS", "PERCENTAGE_PROFIT_AND_LOSS_ACCOUNT", "ANNUAL_INCOME_RECOGNITION", "ANNUAL_DEDUCTION", "CLOSING_BALANCE", "IS_REGARDING_REALIZATION_SEPARATED_PLOT_AGRICULTURE_OR_FORESTRY", "IS_REGARDING_REALIZATION_WHOLE_AGRICULTURE_OR_FORESTRY_BUSINESS", "PROFIT_AND_LOSS_DEPARTMENT", "ID_FOR_ACCOMMODATION_AND_RESTAURANT", "COVER_CHARGE_SUBJECT_TO_VAT", "COVER_CHARGE_NOT_SUBJECT_TO_VAT", "COVER_CHARGE", "DESCRIPTION_ACCOMMODATION_AND_RESTAURANT", "MUST_BE_CONFIRMED_BY_AUDITOR", "PRODUCT_TYPE", "OPENING_STOCK", "CLOSING_STOCK", "PURCHASE_OF_GOODS", "COST_OF_GOODS_SOLD", "SALES_REVENUE_AND_WITHDRAWALS", "SALES_REVENUE_IN_CASH", "CASH_REGISTER_SYSTEM_YEAR_OF_INITIAL_REGISTRATION", "CASH_REGISTER_SYSTEM_TYPE", "WITHDRAWAL_OF_PRODUCTS_VALUED_AT_TURNOVER", "PRIVATE_WITHDRAWAL_ENTERED_ON_PRIVATE_ACCOUNT", "TOTAL_WITHDRAWAL_PRODUCTS_ENTERED_AS_SALES_REVENUE", "WITHDRAWAL_COST_FOR_ENTERTAINMENT", "WITHDRAWAL_VALUE_VALUED_AT_MARKET_VALUE", "MARKUP_WITHDRAWAL_COST_FOR_ENTERTAINMENT", "TOTAL_WITHDRAWAL_COST_FOR_ENTERTAINMENT", "OPENING_BALANCE_CREDIT_SALES", "CLOSING_BALANCE_CREDIT_SALES", "OPENING_BALANCE_WRITE_DOWN_NEW_COMPANY", "CLOSING_BALANCE_WRITE_DOWN_NEW_COMPANY", "SALARY_AND_PENSION_EXPENSES_ACCOUNT_ID", "SALARY_AND_PENSION_EXPENSES_ACCOUNT_ADDITION", "SALARY_AND_PENSION_EXPENSES_ACCOUNT_DEDUCTION", "SALARY_AND_PENSION_EXPENSES_ACCOUNT_REPORTED_BENEFIT", "SALARY_AND_PENSION_EXPENSES_MANUAL_FILLING", "EMPLOYERS_PAYMENT_OF_SUBSIDY", "TOTAL_AMOUNT_CREDITED_TO_NATURAL_BENEFITS", "BASIS_FOR_INCREASED_EMPLOYERS_TAX", "SALARY_AND_PENSION_EXPENSES_MANUAL_ACCOUNT_DESCRIPTION", "SALARY_AND_PENSION_EXPENSES_MANUAL_ACCOUNT_EXPENSED_BENEFIT", "OPENING_BALANCE_RAW_MATERIAL_AND_SEMI_FINISHED_PRODUCTS", "CLOSING_BALANCE_RAW_MATERIAL_AND_SEMI_FINISHED_PRODUCTS", "OPENING_BALANCE_PRODUCT_UNDER_MANUFACTURING", "CLOSING_BALANCE_PRODUCT_UNDER_MANUFACTURING", "OPENING_BALANCE_INVENTORIES_FINISHED_ITEM", "CLOSING_BALANCE_INVENTORIES_FINISHED_ITEM", "OPENING_BALANCE_PURCHASED_ITEM_FOR_RESALE", "CLOSING_BALANCE_PURCHASED_ITEM_FOR_RESALE", "OPENING_BALANCE_SELF_PRODUCED_PRODUCT_OWN_PRODUCTUION", "CLOSING_BALANCE_SELF_PRODUCED_PRODUCT_OWN_PRODUCTUION", "OPENING_BALANCE_LIVESTOCK", "CLOSING_BALANCE_LIVESTOCK", "ACCOUNT_INVENTORY_BALANCE_ACCOUNT_ID", "ACCOUNT_INVENTORY_BALANCE_DEPARTMENT_ID", "ACCOUNT_INVENTORY_BALANCE_UNIT_RATE", "ACCOUNT_INVENTORY_BALANCE_BALANCE_OUT_QUANTITY", "ACCOUNT_INVENTORY_BALANCE_BALANCE_OUT", "TANGIBLE_FIXED_ASSETS_TYPE", "OPENING_BALANCE_TANGIBLE_FIXED_ASSETS", "TAX_DEPRECIATION_PERCENTAGE", "STRAIGHT_LINE_DEPRECIATION", "PROFIT_TRANSFERRED_TO_PROFIT_AND_LOSS_ACCOUNT", "LOSS_TRANSFERRED_TO_PROFIT_AND_LOSS_ACCOUNT", "ACQUISITION_COST", "LIFETIME", "ACQUISITION_DATE", "REALISATION_DATE", "IS_COMMERCIAL_BUILDING_ACQUIRED_BEFORE_1984", "HISTORICAL_COST_PRICE", "WRITTEN_DOWN_VALUE_PR_01011984", "LOWER_LIMIT_DEPRECIATION", "IS_PHYSICAL_OPERATING_ASSETS_IN_BALANCE_SHEET", "FACILITY_TYPE", "DEPRECIATION_PERCENTAGE", "CASH_DEPOSITS", "CONTRIBUTIONS_IN_KIND", "CAPITAL_REDUCTION_DISTRIBUTED_SHARED_CAPITAL_CASH", "CAPITAL_REDUCTION_DISTRIBUTED_SHARED_CAPITAL_OTHER_ASSETS", "DEBT_WAVING", "BUYING_OWN_SHARES", "SELLING_OWN_SHARES", "DEBT_CONVERSION_TO_EQUITY", "POSITIVE_DIFF_BETWEEN_ALLOCATED_AND_DISTRIBUTED_DIVIDEND", "NEGATIVE_DIFF_BETWEEN_ALLOCATED_AND_DISTRIBUTED_DIVIDEND", "OTHER_NEGATIVE_CHANGE_IN_EQUITY", "LATE_PAYMENT", "OTHER_INTEREST_INCOME", "OTHER_INTEREST_EXPENSE", "INCOME_FROM_OTHER_INVESTMENTS_AND_DIVIDENDS", "PROFIT_ON_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "LOSS_ON_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "PRIVATE_ACCOUNT", "DEDUCTIBLE_COST_OF_USING_A_PRIVATE_CAR", "OTHER_TAX_FREE_INCOME", "OTHERNON_DEDUCTIBLECOST", "TAX_FREE_PROFIT_FROM_THE_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "NON_DEDUCTIBLE_LOSS_ON_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "TAX_FREE_PART_OF_DIVIDENDS_AND_DISTRIBUTIONS", "RETURN_OF_PROFITS_TO_ISDF", "RETURN_OF_DEFICIT_TO_ISDF", "CASH_PAYMENT", "WITHDRAWAL_OF_ASSETS_AND_SERVICES", "OTHER_WITHDRAWALS_AND_DISTRIBUTIONS", "OTHER_POSTIVE_CHANGE_IN_EQUITY", "OTHER_POSITIVE_CHANGE_IN_EQUITY", "NONE_DEDUCTIBLE_COST", "POSITIVE_TAX_COST", "INTEREST_EXPENSE_FIXED_TAX", "SHARE_OF_LOSS_FROM_INVESTMENT", "REVERSAL_OF_IMPAIRMENT", "ACCOUNTING_IMPAIRMENT", "ACCOUNTING_LOSS", "ACCOUNTING_DEFICIT_NORWEGIAN_SDF", "ACCOUNTING_DEFICIT_FOREIGN_SDF", "ACCOUNTING_LOSS_NORWEGIAN_SDF", "ACCOUNTING_LOSS_FOREIGN_SDF", "RETURNED_DEBT_INTEREST", "TAXABLE_PROFIT_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "TAXABLE_DIVIDEND_ON_SHARES", "TAXABLE_PART_OF_DIVIDEND_AND_DISTRIBUTION", "SHARE_OF_TAXABLE_PROFIT_NORWEGIAN_SDF", "SHARE_OF_TAXABLE_PROFIT_FOREIGN_SDF", "TAXABLE_PROFIT_REALIZATION_OF_NORWEGIAN_SDF", "TAXABLE_PROFIT_REALIZATION_OF_FOREIGN_SDF", "ADDITION_INTEREST_COST", "CORRECTION_PURPOSED_DIVIDEND", "TAXABLE_PROFIT_WITHDRAWAL_NORWEGIAN_TAX_AREA", "INCOME_SUPPLEMENT_FOR_CONVERSION_DIFFERENCE", "OTHER_INCOME_SUPPLEMENT", "RETURN_OF_INCOME_RELATED_DIVIDENDS", "PROFIT_AND_LOSS_GROUP_CONTRIBUTION", "ACCOUNTING_PROFIT_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "ACCOUNTING_PROFIT_SHARE_NORWEGIAN_SDF", "ACCOUNTING_PROFIT_SHARE_FOREIGN_SDF", "ACCOUNTING_GAIN_NORWEGIAN_SDF", "ACCOUNTING_GAIN_FOREIGN_SDF", "DEDUCTIBLE_LOSS_ON_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "SHARE_OF_DEDUCTIBLE_DEFICIT_NORWEGIAN_SDF", "SHARE_OF_DEDUCTIBLE_DEFICIT_FOREIGN_SDF", "DEDUCTIBLE_LOSS_ON_REALIZATION_NORWEGIAN_SDF", "DEDUCTIBLE_LOSS_ON_REALIZATION_FOREIGN_SDF", "DEDUCTIBLE_LOSS_ON_WITHDRAWAL_NORWEGIAN_TAX_AREA", "ISSUE_AND_ESTABLISHMENT_COST", "INCOME_DEDUCTION_FROM_ACCOUNTING_CURRENCY_TO_NOK", "OTHER_INCOME_DEDUCTION", "INCOME_ACCOUNT_DEFERRED_INCOME", "RETURN_VALUE_REDUCTION_COMPANY_PORTFOLIO", "INCOME_RECOGNITION_PARAGRAPH_10_TRANSACTIONS", "STANDARD_PRICE_ADDITION", "INTEREST_EXPENSE_IN_INCOME_STATEMENT", "INCOME_SUPPLEMENT_PRIVATE_USE_COMMERCIAL_VEHICLE", "INTEREST_INCOME_IN_INCOME_STATEMENT", "RETURN_VALUE_ADDITIONS_COMPANY_PORTFOLIO", "NOT_DEDUCTIBLE_COSTS_AND_LOSS_PETROLEUM_ABROAD", "TEMPLATE_DEDUCTION_TAXABLE_INCOME", "COST_ACCOUNTING_PARAGRAPH_10_TRANSACTIONS", "STANDARD_PRICE_DEDUCTION", "TAX_RETURN_DEDUCTIONS_FOU", "EXEMPT_INCOME_ACCORDINT_TO_PETROLEUM_TAX_LAW", "TAX_FREE_INCOME_RELATED_TO_EXTRACTION_PETROLEUM_ABROAD", "OWN_SICKNESS_BENEFITS_AS_INCOME_IN_ANNUAL_ACCOUNTS", "RETURN_ON_LIFE_INSURANCE_IN_ANNUAL_ACCOUNTS", "REVERSAL_OF_DEDUCTIONS_SCIENTIFIC_RESEARCH_AND_VOCATIONAL_TRAINING", "REVERSAL_INCREASE_VALUE_LINKED_TO_COMPANY_PORTFOLIO", "TEMPORARY_DIFFERENCES_TYPE", "OPENING_BALANCE_ACCOUNTABLE_VALUE", "CLOSING_BALANCE_ACCOUNTABLE_VALUE", "OPENING_BALANCE_TAX_VALUE", "CLOSING_BALANCE_TAX_VALUE", "OPENING_BALANCE_DIFFERENCES", "CLOSING_BALANCE_DIFFERENCES", "SHOW_PROFIT_AND_LOSS", "SHOW_ACCOMMODATION_AND_RESTAURANT", "IS_ACCOUNTABLE", "USE_ACCOUNTING_VALUES_IN_INVENTORIES", "USE_ACCOUNTING_VALUES_IN_CUSTOMER_RECEIVABLES", "SHOW_TANGIBLE_FIXED_ASSET", "SHOW_CAR", "SHOW_INVENTORIES", "SHOW_CUSTOMER_RECEIVABLES", "SHOW_CONCERN_RELATION", "OWN_BUSINESS_PROPERTIES", "OWN_ASSET_PAPER", "SHOW_SALARY_AND_PENSION_EXPENSES", "TRANSFERRED_BY", "TRANSFERRED_DATE", "IS_TAXABLE", "AUDITING_OBLIGATION", "VALIDATION_ONLY_ON_SUBMIT", "DATE_OF_DETERMINATION", "CONFIRMING_COMPANY_REPRESENTATIVE", "CONTACT_PERSON", "PARENT_COMPANY", "SMALL_ENTERPRISES", "PREPARED_BY_AUTHORIZED_ACCOUNTANT", "SERVICE_ASSISTANCE_USED", "ELECTRONIC_CASE_PROCESSING", "SUBMIT_WITHOUT_BUSINESS_SPECIFICATION", "SHOW_RESULT_AND_BALANCE_PREVIOUS_YEAR", "DATE_START", "DATE_END", "INCLUDE_PREVIOUS_YEAR_IN_RESULT", "DISTRIBUTE_INCOME_MODULE_INDUSTRY", "HIDE_TRANSFERRED_FROM_LAST_YEAR_NOTIFICATION", "RESEARCH_AND_DEVELOPMENT", "COMPANY_PARTICIPANT_ANS_DA", "CONTROLLED_TRANSACTION_AND_INBETWEEN", "LIMITATION_OF_DEDUCTION", "EXCEPTION_FOR_INTEREST_LIMITATION", "NUF_COMPANY_ID", "NUF_COMPANY_NAME", "NUF_COUNTRY_CODE", "TIMBER_ACCOUNT", "KLAGE_PAA_SKJOENNSFASTSETTING", "DEV_PILOT_TEST_ORG_NO", "HIDE_MOVE_AGRO_ACCOUNT_NUMBER_NOTIFICATION", "FOREST_FUND", "SUBMISSION_TO_LANDBRUKETS_DATAFLYT_DATE", "SUBMISSION_TO_LANDBRUKETS_DATAFLYT_BY", "SUBMISSION_TO_NIBIO_DATE", "SUBMISSION_TO_NIBIO_BY", "SHOW_ALL_POSTS_RESULT_AND_BALANCE", "REPORT_SIGNATURE_DATE", "REPORT_SIGNATURE_LOCATION", "REPORT_TOGGLE_DATE_LOCATION", "AGRICULTURAL_ACCOUNT", "AGRICULTURAL_ACCOUNT_USE_MULTIPLE_ACCOUNTS", "REPORT_SELECTED_STEP_FRONT_PAGE", "REPORT_SELECTED_STEP_CONTENT_TABLE", "REPORT_SELECTED_STEP_RESULT_AND_BALANCE", "REPORT_SELECTED_STEP_NOTES_FOR_SUBMISSION", "REPORT_SELECTED_STEP_NOTES_FOR_INTERNAL_USE", "REPORT_SELECTED_STEP_SIGNING", "YEAR_END_BRREG_DOC_ID", "YEAR_END_BRREG_DOC_FETCHER_NAME", "YEAR_END_DOCUMENTATION_ACCOMMODATION_AND_RESTAURANT", "YEAR_END_DOCUMENTATION_PROFIT_AND_LOSS_ACCOUNT", "YEAR_END_DOCUMENTATION_COMMERCIAL_VEHICLE", "YEAR_END_DOCUMENTATION_TANGIBLE_FIXED_ASSETS", "YEAR_END_DOCUMENTATION_INVENTORIES", "YEAR_END_DOCUMENTATION_ACCOUNTS_RECEIVABLE_FROM_CUSTOMERS", "YEAR_END_DOCUMENTATION_PROFIT_LOSS", "YEAR_END_DOCUMENTATION_BALANCE", "YEAR_END_DOCUMENTATION_PERSONAL_INCOME", "YEAR_END_DOCUMENTATION_PERMANENT_DIFFERENCES", "YEAR_END_DOCUMENTATION_TEMPORARY_DIFFERENCES", "YEAR_END_DOCUMENTATION_TAX_RELATED_RESULT", "YEAR_END_DOCUMENTATION_GROUP_CONTRIBUTIONS", "YEAR_END_DOCUMENTATION_EQUITY_RECONCILIATION", "YEAR_END_DOCUMENTATION_TAX_RETURN", "YEAR_END_DOCUMENTATION_DIVIDEND", "YEAR_END_DOCUMENTATION_DISPOSITIONS", "YEAR_END_DOCUMENTATION_PROPERTIES", "YEAR_END_DOCUMENTATION_SECURITIES", "YEAR_END_DOCUMENTATION_TAX_CALCULATION", "YEAR_END_DOCUMENTATION_AUDIT_REPORT", "YEAR_END_DOCUMENTATION_ANNUAL_REPORT", "YEAR_END_DOCUMENTATION_CASH_FLOW_STATEMENT", "YEAR_END_DOCUMENTATION_ANNEXES_TO_THE_ANNUAL_ACCOUNTS", "YEAR_END_DOCUMENTATION_SALARY_AND_PENSION_EXPENSES", "YEAR_END_DOCUMENTATION_COOPERATIVE_ENTERPRISE", "YEAR_END_DOCUMENTATION_OTHER_CIRCUMSTANCES", "YEAR_END_DOCUMENTATION_TIMBER_ACCOUNT", "YEAR_END_DOCUMENTATION_PARTICIPANT_ASSESSMENT", "YEAR_END_DOCUMENTATION_RESEARCH_AND_DEVELOPMENT", "YEAR_END_DOCUMENTATION_COMPANY_TAX_RETURN", "YEAR_END_DOCUMENTATION_PARTICIPANTS_TASK", "YEAR_END_DOCUMENTATION_CONTROLLED_TRANSACTIONS", "YEAR_END_DOCUMENTATION_LIMITATION_OF_DEDUCTION", "YEAR_END_DOCUMENTATION_SKJOENNSFASTSETTING", "YEAR_END_DOCUMENTATION_SKJOENNSFASTSETTING_ALTINN_ID", "YEAR_END_DOCUMENTATION_FOREST_FUND", "YEAR_END_DOCUMENTATION_ATTACHMENT_CATEGORY", "YEAR_END_DOCUMENTATION_DISTRIBUTE_CAPITAL_DEBT_WITH_SPOUSE", "YEAR_END_DOCUMENTATION_REINDEER_HUSBANDRY", "YEAR_END_DOCUMENT_SELECTED", "YEAR_END_DOCUMENTATION_ANNUALACCOUNTS_REPORT_GENERATED", "YEAR_END_DOCUMENTATION_AGRICULTURAL_ACCOUNT", "RECEIVER_ORG_NR", "RECEIVER_NAME", "CONCERN_CONNECTION", "VOTING_LIMIT", "DATE_OF_ACQUISITION", "RECEIVED_GROUP_CONTRIBUTIONS_WITH_TAX_AFFECTION", "RECEIVED_GROUP_CONTRIBUTIONS_WITHOUT_TAX_AFFECTION", "SUBMITTED_GROUP_CONTRIBUTIONS_WITH_TAX_AFFECTION", "SUBMITTED_GROUP_CONTRIBUTIONS_WITHOUT_TAX_AFFECTION", "RECEIVED_GROUP_CONTRIBUTIONS_FOREIGN_COMPANY_WITH_TAX_AFFECTION", "SUBMITTED_GROUP_CONTRIBUTIONS_FOREIGN_COMPANY_WITH_TAX_AFFECTION", "APPLICATION_OF_LOSS_CARRY_FORWARDS", "ACCUMULATED_LOSS_FROM_PREVIOUS_YEARS", "CORRECTIONS_AND_OTHER_CAPITAL", "CORRECTIONS_AND_OTHER_DEBT", "NUMBER_OF_SHARES", "TOTAL_SHARE_CAPITAL", "IS_PART_OF_GROUP_COMPANY", "IS_LISTED_ON_THE_STOCK_EXCHANGE", "IS_REORGANIZED_ACROSS_BORDERS", "HAS_RECEIVED_OR_TRANSFERRED_ASSETS", "HEAD_OF_GROUP_NAME", "HEAD_OF_GROUP_COUNTRY_CODE", "HEAD_OF_GROUP_LAST_YEAR_NAME", "HEAD_OF_GROUP_LAST_YEAR_COUNTRY_CODE", "FOREIGN_OWNERSHIP_COMPANY_NAME", "FOREIGN_OWNERSHIP_COMPANY_COUNTRY_CODE", "OWNS_MIN_50_PERCENT_OF_FOREIGN_COMPANY", "HAS_PERMANENT_ESTABLISHMENT_ABROAD", "COUNTRY_FOR_COUNTRY_REPORTABLE_ENTERPRISE_NAME", "COUNTRY_FOR_COUNTRY_REPORTABLE_ENTERPRISE_COUNTRY_CODE", "HAS_PERFORMANCE_BETWEEN_SHAREHOLDERS_AND_OTHER", "HAS_OUTSTANDING_PAYMENT_CLAIMS_RELATED_TO_ILLEGAL_STATE_AID", "IS_SMALL_OR_MEDIUM_SIZED_BUSINESS", "HAD_FINANCIAL_DIFFICULTIES_LAST_YEAR", "IS_GROUP_COMPANY", "HAS_RECEIVED_OTHER_PUBLIC_SUPPORT", "TAXABLE_VALUE_ON_OTHER_ASSETS", "ADDITIONS_NON_DEDUCTIBLE_LATE_PAYMENT", "SALES_WITH_MEMBERS_IN_OWN_COOPERATIVE", "RETROACTIVE_PAYMENT_MEMBERS_IN_OWN_COOPERATIVE", "CARRIED_FORWARD_DEDUCTION_LIMIT_LATE_PAYMENT_PREV_YEAR", "CARRY_FORWARD_DEDUCTION_LIMIT_LATE_PAYMENT", "TAXABLE_VALUE_ON_FORESTRY", "REINSTATED_LOSS_FROM_PRELIMINARY_ASSESSMENT_IN_LATER_YEARS", "HEAD_OF_GROUP_IDENTIFIER", "HEAD_OF_GROUP_LAST_YEAR_IDENTIFIER", "COUNTRY_FOR_COUNTRY_REPORTABLE_ENTERPRISE_IDENTIFIER", "NORWEGIAN_HEAD_OF_GROUP_NAME", "NORWEGIAN_HEAD_OF_GROUP_IDENTIFIER", "NORWEGIAN_HEAD_OF_GROUP_COUNTRY_CODE", "SHARE_OF_LOSS_OFFSET_AGAINST_PROFIT_TWO_PRECEDING_YEARS", "AID_SCHEME_TONNAGE_TAX_REGIME", "AID_SCHEME_RULES_FOR_ELECTRIC_DELIVERY_TRUCKS", "AID_SCHEME_FOR_LONG_TERM_INVESTMENTS", "AID_SCHEME_EMPLOYMENT_RELATED_OPTIONS_START_UP", "AID_SCHEME_TAX_FUN", "AID_SCHEME_FAVOURABLE_DEPRECIATION_RULES", "AID_SCHEME_REGIONALLY_DIFFERENTIATED_INSURANCE_CONTRIBUTIONS", "AID_SCHEME_FAVOURABLE_DETERMINED_LIST_PRICES_ELECTRIC_VEHICLES", "AID_SCHEME_VAT_EXEMPTION_TURNOVER_ELECTRIC_CARS", "AID_SCHEME_VAT_EXEMPTION_LEASING_ELECTRIC_CARS", "AID_SCHEME_VAT_EXEMPTION_TURNOVER_BATTERIES", "AID_SCHEME_VAT_EXEMPTION_TURNOVER_ELECTRIC_NEWS", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_INDUSTRIAL_SECTOR", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_DISTRICT_HEATING", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_TARGET_ZONE", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_DATA_CENTRES", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_COMMERCIAL_VESSELS", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_ENERGY_PRODUCTS", "AID_SCHEME_REDUCED_BASIC_TAX_MINERAL_OIL_WOOD_INDUSTRY", "AID_SCHEME_REDUCED_BASIC_TAX_MINERAL_OIL_PIGMENT_INDUSTRY", "AID_SCHEME_EXEMPTION_CO2_TAX_MINERAL_OIL", "AID_SCHEME_EXEMPTION_CO2_TAX_GAS", "AID_SCHEME_EXEMPTION_NOX_DUTY", "AID_SCHEME_EXEMPTION_TRANSFER_FEE", "AID_SCHEME_REDUCED_ROAD_TRAFFIC_INSURANCE_TAX", "OTHER_CORRECTIONS", "DEFERRED_TAX_ASSETS_IN_BALANCE", "SHARES_AND_SECURITIES_NAME", "SHARES_AND_SECURITIES_STOCK_TYPE", "SHARES_AND_SECURITIES_VAT_NUMBER", "SHARES_AND_SECURITIES_ISIN", "SHARES_AND_SECURITIES_COUNTRY_CODE", "SHARES_AND_SECURITIES_SHARE_CLASS", "SHARES_AND_SECURITIES_SHARES_BY_THE_START_OF_THE_YEAR", "SHARES_AND_SECURITIES_SHARES_BY_THE_END_OF_THE_YEAR", "SHARES_AND_SECURITIES_VALUE", "SHARES_AND_SECURITIES_TOTAL_VALUE", "SHARES_AND_SECURITIES_DIVIDEND", "SHARES_AND_SECURITIES_INTEREST_INCOME", "SHARES_AND_SECURITIES_PROFIT_REALISATION", "SHARES_AND_SECURITIES_LOSS_REALISATION", "SHARES_AND_SECURITIES_PROFIT_INTEREST", "SHARES_AND_SECURITIES_LOSS_INTEREST", "SHARES_AND_SECURITIES_EXEMPTION_METHOD", "SHARES_AND_SECURITIES_FINANCIAL_PRODUCT", "REAL_ESTATE_TYPE", "REAL_ESTATE_DESCRIPTION", "COMMERCIAL_PROPERTY_TYPE", "SHARE_OF_ASSET_VALUE", "INTERNAL_PROPERTY_IDENTIFIER", "ASSET_VALUE_FOR_ASSET_SHARE", "VALUE_BEFORE_VALUATION_DISCOUNT_ASSET_SHARE", "TOTAL_AREA", "CALCULATED_RENTAL_VALUE", "CALCULATED_VALUE_IS_OUTDATED", "REAL_ESTATE_SERG_NO", "REAL_ESTATE_ADDRESS", "REAL_ESTATE_ZIP_CODE", "REAL_ESTATE_POSTAL_PLACE_NAME", "REAL_ESTATE_COUNTRY_CODE", "REAL_ESTATE_MUNICIPALITY_NO", "REAL_ESTATE_MUNICIPALITY_NAME", "REAL_ESTATE_CADASTRAL_UNIT_NO", "REAL_ESTATE_PROPERTY_UNIT_NO", "REAL_ESTATE_LEASEHOLD_NO", "REAL_ESTATE_SECTION_NO", "REAL_ESTATE_OWNERSHIP_SHARE_PERCENTAGE", "REAL_ESTATE_PREV_YEAR_ASSET_VALUE", "REAL_ESTATE_EXPENSES_YEARLY", "REAL_ESTATE_EXPENSES_FARM_HOUSE_YEARLY", "REAL_ESTATE_EXPENSES_OTHER_PROPERTY_YEARLY", "REAL_ESTATE_DATE_DOCUMENTED", "REAL_ESTATE_MARKET_VALUE_MANUAL", "REAL_ESTATE_MARKET_VALUE_CALCULATED", "REAL_ESTATE_USE_VALUE_MARKET", "REAL_ESTATE_DWELLING_TYPE", "REAL_ESTATE_ASSOCIATION_OR_COOPERATIVE_DWELLING_OWNERSHIP_TYPE", "REAL_ESTATE_ASSOCIATION_OR_COOPERATIVE_DWELLING_OWNERSHIP_NAME", "REAL_ESTATE_ASSOCIATION_OR_COOPERATIVE_DWELLING_OWNERSHIP_ORG_NO", "REAL_ESTATE_ASSOCIATION_OR_COOPERATIVE_DWELLING_OWNERSHIP_SHARE_NO", "REAL_ESTATE_PRIMARY_SECONDARY_DWELLING_TYPE", "REAL_ESTATE_CONSTRUCTION_YEAR", "REAL_ESTATE_SELF_OWNED_OR_COOPERATIVE_DWELLING_CALCULATED_MARKET_VALUE", "REAL_ESTATE_RENTAL_AREA_TOTAL", "REAL_ESTATE_RENTAL_PERIOD_MONTHS", "REAL_ESTATE_RENTAL_INCOME_TOTAL_CALCULATED", "REAL_ESTATE_RENTAL_GROSS_ANNUAL_PREV_YEAR", "REAL_ESTATE_RENTAL_GROSS_ANNUAL_PRIOR_YEAR_TWO", "REAL_ESTATE_RENTAL_ASSET_VALUE_BASE", "REAL_ESTATE_RENTAL_GROSS_INCOME", "REAL_ESTATE_PREV_YEAR_ASSET_VALUE_MANUAL", "REAL_ESTATE_EXPENSES_YEARLY_MANUAL", "REAL_ESTATE_EXPENSES_FARM_HOUSE_YEARLY_MANUAL", "REAL_ESTATE_EXPENSES_OTHER_PROPERTY_YEARLY_MANUAL", "REAL_ESTATE_MULTI_UNIT_BUILDING_UNIT_ROW_ID", "REAL_ESTATE_MULTI_UNIT_BUILDING_UNIT_NO", "REAL_ESTATE_MULTI_UNIT_BUILDING_UNIT_AREA", "REAL_ESTATE_MULTI_UNIT_BUILDING_UNIT_CONSTRUCTION_YEAR", "REAL_ESTATE_MULTI_UNIT_BUILDING_UNIT_VALUE", "REAL_ESTATE_USE_INCREASED_CALCULATION_FACTOR", "YEARLY_DIVIDEND", "DIVIDEND_CREDIT", "DIVIDEND_SECURITY_OFFERED", "DIVIDEND_DISPOSITIONS", "PARTICIPANT_NAME", "PARTICIPANT_NUMBER", "PARTICIPANT_OWNERSHIP", "PARTICIPANT_REPORT_DISTRIBUTION_CASH_DISBURSEMENT_FROM_COMPANY", "PARTICIPANT_REPORT_DISTRIBUTION_VALUE_OF_ASSETS_OR_SERVICE_WITHDRAWN", "PARTICIPANT_REPORT_DISTRIBUTION_CAPITAL_REIMBURSEMENT", "PARTICIPANT_REPORT_SHIELDING_BASIS_OTHER_INITIAL_VALUE_CORRECTION", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_UNUSED_SHIELDING_FROM_PREVIOUS_YEAR", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_CORRECTION_FOR_INHERITANCE_OR_GIFT_IN_INCOME_YEAR", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_TRANSFERRED_SHIELDING_DEDUCTION_FROM_PREVIOUS_YEARS", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_TRANSFERRED_SHIELDING_DEDUCTION", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_OTHER_CORRECTION", "PARTICIPANT_REPORT_ADDITIONS_TO_ORDINARY_INCOME_OTHER_CORRECTION", "PARTICIPANT_REPORT_TAX_BASIS_SPECIFICATION_SHARE_OF_TAXABLE_EQUITY_AT_BEGINNING_OF_YEAR", "PARTICIPANT_REPORT_TAX_BASIS_SPECIFICATION_DEPOSIT", "PARTICIPANT_REPORT_TAX_BASIS_SPECIFICATION_OTHER_CORRECTION", "PARTICIPANT_REPORT_SHARES_REALIZED_OR_ACQUIRED", "PARTICIPANT_REPORT_PAID_IN_SHARE_OF_TAXABLE_EQUITY_AS_OF_BEGINNING_OF_YEAR", "PARTICIPANT_REPORT_PAID_IN_ACQUISITION_OF_SHARE", "PARTICIPANT_REPORT_PAID_IN_DISPOSAL_OF_SHARE", "PARTICIPANT_REPORT_PAID_IN_OTHER_CORRECTION", "PARTICIPANT_REPORT_RETAINED_EARNINGS_SHARE_OF_TAXABLE_EQUITY_AS_OF_BEGINNING_OF_YEAR", "PARTICIPANT_REPORT_RETAINED_EARNINGS_ACQUISITION_OF_SHARE", "PARTICIPANT_REPORT_RETAINED_EARNINGS_DISPOSAL_OF_SHARE", "PARTICIPANT_REPORT_RETAINED_EARNINGS_TAX_RESULT", "PARTICIPANT_REPORT_RETAINED_EARNINGS_TAX_FREE_INCOME", "PARTICIPANT_REPORT_RETAINED_EARNINGS_OTHER_CORRECTION", "PARTICIPANT_REPORT_RETAINED_EARNINGS_NON_DEDUCTIBLE_EXPENSES", "PARTICIPANT_REPORT_COMPENSATION_FOR_WORK_IN_OTHER_INDUSTRIES_INCLUDING_AGRICULTURE", "PARTICIPANT_REPORT_COMPENSATION_FOR_WORK_IN_FISHING_AND_HUNTING", "PARTICIPANT_REPORT_COMPENSATION_FOR_WORK_IN_FAMILY_KINDERGARTEN_AT_PARTICIPANTS_HOME", "PARTICIPANT_REPORT_AGRICULTURAL_DEDUCTION", "PARTICIPANT_REPORT_RENTAL_INCOME_FROM_AGRICULTURAL_OPERATIONS", "PARTICIPANT_REPORT_RESIDES_IN_NORDTROMS_OR_FINNMARK", "PARTICIPANT_DISPROPORTIONATE_DISTRIBUTION", "PARTICIPANT_DISPROPORTIONATE_DISTRIBUTION_SHARE_OF_RESULT", "PARTICIPANT_DISPROPORTIONATE_DISTRIBUTION_SHARE_OF_WEALTH", "PARTICIPANT_PRICE_MANAGEMENT_PRICING", "PARTICIPANT_PRICE_MANAGEMENT_REALIZED_SHARE_TAX_EQUITY", "PARTICIPANT_PRICE_MANAGEMENT_REALIZED_COST_PRICE", "PARTICIPANT_PRICE_MANAGEMENT_REALIZED_SHARE_OF_PRICE_ADJUSTMENT", "PARTICIPANT_PRICE_MANAGEMENT_ACCUMULATED_ADJUSTMENTS", "PARTICIPANT_ASSESSMENT_REPORT_COMPANY_NAME", "PARTICIPANT_ASSESSMENT_REPORT_ORG_NUMBER", "PARTICIPANT_ASSESSMENT_REPORT_MUNICIPALITY_ID", "PARTICIPANT_ASSESSMENT_REPORT_COUNTRY_CODE", "PARTICIPANT_ASSESSMENT_REPORT_VALUE_BEFORE_APPRECIATION_FOR_NET_ASSETS", "PARTICIPANT_ASSESSMENT_REPORT_DEBT", "PARTICIPANT_ASSESSMENT_REPORT_ORDINARY_INCOME", "PARTICIPANT_ASSESSMENT_REPORT_LOSS", "PARTICIPANT_ASSESSMENT_REPORT_PAYMENT_TO_PARTICIPANT", "PARTICIPANT_ASSESSMENT_REPORT_GAIN_ON_REALIZATION_OF_SHARE", "PARTICIPANT_ASSESSMENT_REPORT_LOSS_ON_REALIZATION_OF_SHARE", "PARTICIPANT_REPORT_ROE_TRANSFER_TYPE", "PARTICIPANT_REPORT_ROE_NAME", "PARTICIPANT_REPORT_ROE_IDENTIFICATION", "PARTICIPANT_REPORT_ROE_TRANSACTION_TYPE", "PARTICIPANT_REPORT_ROE_TIME", "PARTICIPANT_REPORT_ROE_AMOUNT", "PARTICIPANT_REPORT_ROE_REMUNERATION", "PARTICIPANT_REPORT_ROE_COSTS", "PARTICIPANT_REPORT_ROE_ADDITION_NON_DEDUCTIBLE_LOSS", "PARTICIPANT_REPORT_ROE_UNUSED_SHIELDING_PREVIOUS_YEARS", "PARTICIPANT_REPORT_ROE_OTHER_CORRECTIONS", "PARTICIPANT_REPORT_ROE_GAIN_LOSS_REALIZATION", "PARTICIPANT_REPORT_ROE_IS_COVERED_EXEMPTION_METHOD", "PARTICIPANT_REPORT_ROE_ACQUIRED_INITIAL_VALUE", "PARTICIPANT_REPORT_ROE_PRICE", "PARTICIPANT_REPORT_TAX_BASIS_SPECIFICATION_REALIZATION_OF_SHARE_VALUE", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_OFFSET_AGAINST_REALIZATION_GAIN", "PARTICIPANT_REPORT_SHIELDING_BASIS_REDUCTION_OF_USED_SHIELDING_DUE_TO_REALIZATION", "PARTICIPANT_REPORT_TAX_BASIS_SPECIFICATION_ACQUISITION_OF_SHARE_VALUE", "YEAR_END_ATTACHMENT_TOGGLE_ENABLED", "COOPERATIVE_ENTERPRISE_TAXABLE_BUSINESS_INCOME", "COOPERATIVE_ENTERPRISE_FROM_SALES_INVOLVING_MEMBER", "COOPERATIVE_ENTERPRISE_SALES_INVOLVING_MEMBER_SEPARATE", "COOPERATIVE_ENTERPRISE_SALES_INVOLVING_MEMBER_ANOTHER", "COOPERATIVE_ENTERPRISE_OTHER_SALES", "COOPERATIVE_ENTERPRISE_RETROACTIVE_PAYMENT_ETC_SEPARATE", "COOPERATIVE_ENTERPRISE_RETROACTIVE_PAYMENT_ETC_OTHER", "COOPERATIVE_ENTERPRISE_CONDITIONS_FOR_DEDUCTION_RETROACTIVE_PAYMENT_ARE_MET", "COOPERATIVE_ENTERPRISE_PURCHASE_INVOLVING_MEMBER_SEPARATE", "COOPERATIVE_ENTERPRISE_PURCHASE_INVOLVING_MEMBER_ANOTHER", "COOPERATIVE_ENTERPRISE_OTHER_PURCHASES", "COOPERATIVE_ENTERPRISE_DECIDED_PAID_BACK_PAYMENT", "COOPERATIVE_ENTERPRISE_CARRY_FORWARD_DEDUCTION_THIS_YEAR", "COOPERATIVE_ENTERPRISE_DECIDED_ALLOCATED_PROFIT", "COOPERATIVE_ENTERPRISE_COOPERATIVE_TYPE", "COOPERATIVE_ENTERPRISE_DEDUCTION_LIMIT_INCOME_YEAR", "COOPERATIVE_ENTERPRISE_DEDUCTION_LIMIT_PREVIOUS_YEAR", "OTHER_CIRCUMSTANCES_TOTAL_DISTRIBUTED_DIVIDEND", "OTHER_CIRCUMSTANCES_INTEREST_ON_EQUITY_CERTIFICATE", "OTHER_CIRCUMSTANCES_COMPANY_HAS_GRANTED_LOAN", "OTHER_CIRCUMSTANCES_SHAREHOLDER_HAS_GRANTED_LOAN", "OTHER_CIRCUMSTANCES_LOAN_AMOUNT_TO_SHAREHOLDER", "OTHER_CIRCUMSTANCES_LOAN_AMOUNT_TO_COMPANY", "OTHER_CIRCUMSTANCES_INTEREST_RECOGNISED_AS_INCOME", "OTHER_CIRCUMSTANCES_INTEREST_RECOGNISED_AS_EXPENSES", "OTHER_CIRCUMSTANCES_LOAN_BALANCE", "OTHER_CIRCUMSTANCES_COLLATERAL_AMOUNT", "OTHER_CIRCUMSTANCES_COLLATERAL_AMOUNT_INCOME_YEAR_TO_COMPANY", "OTHER_CIRCUMSTANCES_COLLATERAL_AMOUNT_INCOME_YEAR_TO_SHAREHOLDER", "OTHER_CIRCUMSTANCES_RENTAL_WITHDRAWAL_SALE_GRANTED", "OTHER_CIRCUMSTANCES_RENTAL_SALE_GRANTED", "OTHER_CIRCUMSTANCES_ASSET_TYPE", "OTHER_CIRCUMSTANCES_PRICING_METHOD", "OTHER_CIRCUMSTANCES_RENTAL_VALUE", "OTHER_CIRCUMSTANCES_VALUE_OF_SALE_OR_WITHDRAWAL", "RESEARCH_AND_DEVELOPMENT_PROJECT_NUMBER", "RESEARCH_AND_DEVELOPMENT_PROJECT_TITLE", "RESEARCH_AND_DEVELOPMENT_PROJECT_CATEGORY", "RESEARCH_AND_DEVELOPMENT_APPLICATION_APPROVED_DATE", "RESEARCH_AND_DEVELOPMENT_PROJECT_START_DATE", "RESEARCH_AND_DEVELOPMENT_PROJECT_END_DATE", "RESEARCH_AND_DEVELOPMENT_APPROVED_RND_INCENTIVE_START_YEAR", "RESEARCH_AND_DEVELOPMENT_APPROVED_RND_INCENTIVE_END_YEAR", "RESEARCH_AND_DEVELOPMENT_PROJECT_STATUS", "RESEARCH_AND_DEVELOPMENT_PROJECT_STATUS_DATE", "RESEARCH_AND_DEVELOPMENT_BUSINESS_CATEGORY", "RESEARCH_AND_DEVELOPMENT_IS_COLLABORATIVE_PROJECT_WITH_OTHER_ENTERPRISES", "RESEARCH_AND_DEVELOPMENT_HAS_EXTENSIVE_DISSEMINATION_THROUGH_CONFERENCES_PUBLICATIONS_ETC", "RESEARCH_AND_DEVELOPMENT_TOTAL_COSTS_PREVIOUS_YEARS", "RESEARCH_AND_DEVELOPMENT_TOTAL_GROSS_TAX_DEDUCTION_FROM_PREVIOUS_YEARS", "RESEARCH_AND_DEVELOPMENT_TOTAL_GROSS_TAX_DEDUCTION_FROM_INCOME_YEAR", "RESEARCH_AND_DEVELOPMENT_INCLUDED_PERSONNEL_COSTS_IN_INCOME_YEAR", "RESEARCH_AND_DEVELOPMENT_NUMBER_OF_OWN_HOURS_IN_INCOME_YEAR", "RESEARCH_AND_DEVELOPMENT_PUBLIC_SUPPORT_AS_REDUCED_WORKER_FEE", "RESEARCH_AND_DEVELOPMENT_WAS_IN_ECONOMIC_DIFFICULTIES_AT_APPLICATION_TIME", "RESEARCH_AND_DEVELOPMENT_UNDERLYING_DOCUMENTS_USED_FOR_ASSESSMENT", "RESEARCH_AND_DEVELOPMENT_UNDERLYING_DOCUMENTATION_DATE", "RESEARCH_AND_DEVELOPMENT_RESOLUTION_DATE", "RESEARCH_AND_DEVELOPMENT_RESOLUTION_TYPE", "RESEARCH_AND_DEVELOPMENT_RESOLUTION_DELIMITATION", "RESEARCH_AND_DEVELOPMENT_OTHER_PUBLIC_SUPPORT_PAYER_NAME", "RESEARCH_AND_DEVELOPMENT_OTHER_PUBLIC_SUPPORT_AMOUNT", "RESEARCH_AND_DEVELOPMENT_TOTAL_COSTS_EXCLUDED_FROM_TAX_DEDUCTION", "RESEARCH_AND_DEVELOPMENT_PROJECT_TO_BE_SIGNED_BY_AUDITOR", "RESEARCH_AND_DEVELOPMENT_STAKE_IN_COLLABORATIVE_PROJECT", "RESEARCH_AND_DEVELOPMENT_APPLIED_FOR_OTHER_PUBLIC_SUPPORT_IN_NORWAY", "RESEARCH_AND_DEVELOPMENT_WORK_PACKAGE_ID", "RESEARCH_AND_DEVELOPMENT_WORK_PACKAGE_TITLE", "RESEARCH_AND_DEVELOPMENT_WORK_PACKAGE_TOTAL_COST_FROM_PREVIOUS_YEAR", "RESEARCH_AND_DEVELOPMENT_WORK_PACKAGE_RECEIVED_PUBLIC_SUPPORT", "RESEARCH_AND_DEVELOPMENT_COLLABORATIVE_BUSINESS_ORG_NO", "RESEARCH_AND_DEVELOPMENT_COLLABORATIVE_BUSINESS_DESCRIPTION", "TIMBER_ACCOUNT_SHARE_OF_OPERATING_REVENUES_HUNTING_FISHING_ETC_MANUAL", "TIMBER_ACCOUNT_STANDARD_INCOME_FROM_BIOMASS_OR_WOOD_PRODUCTION_TRANSFERRED_AGRIGULTURE", "TIMBER_ACCOUNT_SHARE_OF_PROFIT_TO_REGISTER", "TIMBER_ACCOUNT_INCOMING_VALUE_FROM_AQUIRED_TIMBER_ACCOUNT", "TIMBER_ACCOUNT_VALUE_OF_SHARE_OF_REALIZED_TIMBER_ACCOUNT", "TIMBER_ACCOUNT_SHARE_OF_BASIS_NEXT_YEAR", "TIMBER_ACCOUNT_REMAINDER_NOT_TAXED_FELLING", "TIMBER_ACCOUNT_REMAINDER_INCLUDED_THIS_YEAR", "TIMBER_ACCOUNT_MUNICIPALITY_NO", "TIMBER_ACCOUNT_PAID_PUBLIC_CONTRIBUTION_FOREST_FUND", "TIMBER_ACCOUNT_SHARE_OF_OPERATING_REVENUES_HUNTING_FISHING_ETC", "CONTROLLED_TRANSACTIONS_EXEMPT_TRANSACTION_SHARING", "CONTROLLED_TRANSACTIONS_EXEMPT_PRICE_SHARING", "CONTROLLED_TRANSACTIONS_CONSOLIDATED_MARGIN_YEAR", "CONTROLLED_TRANSACTIONS_CONSOLIDATED_MARGIN_PERCENTAGE", "CONTROLLED_TRANSACTIONS_REPORTS_ONLY_PROVISION_INCOME", "CONTROLLED_TRANSACTIONS_COST_OF_IMMATERIAL_ASSETS", "CONTROLLED_TRANSACTIONS_NUMBER_OF_REGISTERED_PATENTS", "CONTROLLED_TRANSACTIONS_GROUP_HAS_BEEN_RESTRUCTURED", "CONTROLLED_TRANSACTIONS_COMPANY_HAS_SERVICED_OTHER_COMPANY_IN_GROUP_FOR_FREE", "CONTROLLED_TRANSACTIONS_COMPANY_IS_GUARANTOR_FOR_AGREEMENTS_BY_OTHER_COMPANIES_IN_SAME_GROUP", "CONTROLLED_TRANSACTIONS_RELATED_COMPANY_IDENTIFIER", "CONTROLLED_TRANSACTIONS_RELATED_COMPANY_NAME", "CONTROLLED_TRANSACTIONS_RELATED_COMPANY_COUNTRY", "CONTROLLED_TRANSACTIONS_FUNCTION_AND_RISK_FUNCTION_TYPE", "CONTROLLED_TRANSACTIONS_FUNCTION_AND_RISK_RISK_TYPE", "CONTROLLED_TRANSACTIONS_FUNCTION_AND_RISK_DESCRIPTION", "CONTROLLED_TRANSACTIONS_COMPANY_SPECIFICATION_COMPANY_IDENTIFIER", "CONTROLLED_TRANSACTIONS_COMPANY_SPECIFICATION_COMPANY_NAME", "CONTROLLED_TRANSACTIONS_COMPANY_SPECIFICATION_COMPANY_COUNTRY", "CONTROLLED_TRANSACTIONS_TRANSACTION_TYPE", "CONTROLLED_TRANSACTIONS_TRANSACTION_DESCRIPTION", "CONTROLLED_TRANSACTIONS_TRANSACTION_AMOUNT", "CONTROLLED_TRANSACTIONS_OUTSTANDING_ACCOUNT", "CONTROLLED_TRANSACTIONS_OUTSTANDING_AMOUNT", "CONTROLLED_TRANSACTIONS_OUTSTANDING_COUNTRY_CODE", "CONTROLLED_TRANSACTIONS_TRANSACTION_COUNTRY_CODE", "CONTROLLED_TRANSACTIONS_RESULT_AS_PERCENTAGE_OF_GROSS_REVENUE", "CONTROLLED_TRANSACTIONS_MAIN_BUSINESS_ACTIVITY", "CONTROLLED_TRANSACTIONS_NUMBER_OF_ENTITIES_WITH_CONTROLLED_TRANSACTIONS_IN_NORWAY", "CONTROLLED_TRANSACTIONS_NUMBER_OF_ENTITIES_WITH_CONTROLLED_TRANSACTIONS_OUTSIDE_NORWAY", "CONTROLLED_TRANSACTIONS_COMPANY_HAS_BEEN_SERVICED_BY_OTHER_COMPANY_IN_GROUP_FOR_FREE", "CONTROLLED_TRANSACTIONS_HAS_CONTROLLED_TRANSACTIONS_EXCEEDING_LIMIT", "CONTROLLED_TRANSACTIONS_IS_OBLIGED_TO_DOCUMENT", "INTEREST_LIMITATION_COMPANY_COMPLIANCE_WITH_INTEREST_LIMITATION", "INTEREST_LIMITATION_NET_INTEREST_COSTS_NORWEGIAN_GROUP_EXCEEDS_25MNOK", "INTEREST_LIMITATION_COMPANY_USES_EXCEPTION_RULE", "INTEREST_LIMITATION_GROUP_APEX_COMPANY_NAME", "INTEREST_LIMITATION_GROUP_APEX_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_GROUP_APEX_COUNTRY_CODE", "INTEREST_LIMITATION_NORWEGIAN_PART_OF_GROUP_REPORTED_ANOTHER_COMPANY", "INTEREST_LIMITATION_NORWEGIAN_PART_OF_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_NORWEGIAN_PART_OF_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_NORWEGIAN_PART_OF_GROUP_COUNTRY_CODE", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_CORRECTION_OF_INTEREST_EXPENSES", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_CORRECTION_OF_INTEREST_INCOME", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_GUARANTEE_COMMISSIONS_ON_DEBT", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_LOSS_ON_REALIZATION_OF_PREMIUM_DISCOUNT_BONDS", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_GAIN_ON_REALIZATION_OF_PREMIUM_DISCOUNT_BONDS", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_LOSS_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_COMPANIES_IN_SAME_GROUP_COSTS_FOR_GUARANTEE_COMMISSION", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_COMPANY_IN_SAME_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_COMPANY_IN_SAME_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_COMPANY_IN_SAME_GROUP_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_COMPANY_IN_SAME_GROUP_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_GROUP_GUARANTOR_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_GROUP_GUARANTOR_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_GROUP_GUARANTOR_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_GROUP_GUARANTOR_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_WITH_OUTSTANDING_CLAIM_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_WITH_OUTSTANDING_CLAIM_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_WITH_OUTSTANDING_CLAIM_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_WITH_OUTSTANDING_CLAIM_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANY_IN_SAME_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANY_IN_SAME_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANY_IN_SAME_GROUP_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANY_IN_SAME_GROUP_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANIES_IN_SAME_GROUP_LOSS_FOR_HOLDER_ON_REALIZATION_OF_PREMIUM_DISCOUNT_BOND", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANIES_IN_SAME_GROUP_GAIN_FOR_HOLDER_UPON_REALIZATION_OF_PREMIUM_DISCOUNT_BOND", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANIES_IN_SAME_GROUP_LOSS_FOR_HOLDER_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANIES_IN_SAME_GROUP_GAIN_FOR_HOLDER_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_GROUP_GUARANTOR_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_GROUP_GUARANTOR_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_GROUP_GUARANTOR_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_GROUP_GUARANTOR_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_WITH_OUTSTANDING_CLAIM_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_WITH_OUTSTANDING_CLAIM_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_WITH_OUTSTANDING_CLAIM_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_WITH_OUTSTANDING_CLAIM_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_COSTS_FOR_GUARANTEE_COMMISSION", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_LOSS_FOR_HOLDER_ON_REALIZATION_OF_PREMIUM_DISCOUNT_BOND", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_GAIN_FOR_HOLDER_UPON_REALIZATION_OF_PREMIUM_DISCOUNT_BOND", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_LOSS_FOR_HOLDER_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_GAIN_FOR_HOLDER_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_COMPANIES_INCLUDED_IN_NORWEGIAN_PART_OF_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_COMPANIES_INCLUDED_IN_NORWEGIAN_PART_OF_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_COMPANIES_INCLUDED_IN_NORWEGIAN_PART_OF_GROUP_NET_INTEREST_COST", "INTEREST_LIMITATION_COMPANIES_INCLUDED_IN_NORWEGIAN_PART_OF_GROUP_NET_DEDUCTIBLE_INTEREST_COST", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_GAIN_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_CALCULATION_OF_INTEREST_DEDUCTION_LIMIT_AMORTIZED_LEASE_COST", "INTEREST_LIMITATION_CALCULATION_OF_INTEREST_DEDUCTION_LIMIT_DEDUCTION_FOR_GROUP_CONTRIBUTIONS_NOT_INCLUDED_IN_CALCULATION_BASIS", "FORWARDING_DISALLOWED_INTEREST_DEDUCTION_INCOME_YEAR", "FORWARDING_DISALLOWED_INTEREST_DEDUCTION_CARRIED_FORWARD_FROM_PREVIOUS_YEAR", "INTEREST_LIMITATION_COMPANY_CARRIED_FORWARD_INTEREST_DEDUCTIONS_FROM_PREVIOUS_YEARS", "TAX_ASSESSMENT_NEGATIVE_PERSONAL_INCOME_PREVIOUS_YEAR_OWNER", "TAX_ASSESSMENT_NEGATIVE_PERSONAL_INCOME_PREVIOUS_YEAR_SPOUSE", "TAX_ASSESSMENT_COORDINATION_OTHER_PERSONAL_INCOME_OWNER", "TAX_ASSESSMENT_COORDINATION_OTHER_PERSONAL_INCOME_SPOUSE", "TAX_ASSESSMENT_COORDINATION_COORDINATION_GENERAL_PARTNERSHIP_OWNER", "TAX_ASSESSMENT_COORDINATION_COORDINATION_GENERAL_PARTNERSHIP_SPOUSE", "TAX_ASSESSMENT_SALARY_INCOME_OWNER", "TAX_ASSESSMENT_SALARY_INCOME_SPOUSE", "TAX_ASSESSMENT_SICK_PAYABLE_FISHING_ETC_OWNER", "TAX_ASSESSMENT_SICK_PAYABLE_FISHING_ETC_SPOUSE", "TAX_ASSESSMENT_SICK_PAYABLE_AGRICULTURE_OWNER", "TAX_ASSESSMENT_SICK_PAYABLE_AGRICULTURE_SPOUSE", "TAX_ASSESSMENT_SICK_PAYABLE_OTHER_OWNER", "TAX_ASSESSMENT_SICK_PAYABLE_OTHER_SPOUSE", "TAX_ASSESSMENT_OTHER_PENSIONABLE_INCOME_OWNER", "TAX_ASSESSMENT_OTHER_PENSIONABLE_INCOME_SPOUSE", "TAX_ASSESSMENT_CONDITIONS_ARE_SPECIAL_ALLOWANCE_AGRICULTURE_MET", "TAX_ASSESSMENT_SHARE_FROM_SDF", "REINDEER_HUSBANDRY", "REINDEER_HUSBANDRY_CAPITAL_COSTS_MINUS_CAPITAL_REVENUES", "REINDEER_HUSBANDRY_CORRECTED_BUSINESS_INCOME_TWO_YEARS_AGO", "REINDEER_HUSBANDRY_CORRECTED_BUSINESS_INCOME_ONE_YEAR_AGO", "REINDEER_HUSBANDRY_WITHDRAWAL", "REINDEER_HUSBANDRY_DEPOSIT", "AGRICULTURAL_ACCOUNT_DEPARTMENTS", "AGRICULTURAL_ACCOUNT_SHARE_OF_OPERATING_COSTS", "AGRICULTURAL_ACCOUNT_INCOME_FROM_BIOMASS_OR_WOOD_PRODUCTION", "AGRICULTURAL_ACCOUNT_OPERATIONAL_ENTITY", "AGRICULTURAL_ACCOUNT_MUNICIPALITY", "AGRICULTURAL_ACCOUNT_TRANSFER_TO_AGRICULTURAL_ACCOUNT", "AGRICULTURAL_ACCOUNT_INHERITED_UPON_INHERITANCE_GENERATIONAL_CHANGE", "AGRICULTURAL_ACCOUNT_REALIZED_UPON_INHERITANCE_GENERATIONAL_CHANGE", "AGRICULTURAL_ACCOUNT_SHARE_OF_BASIS_NEXT_YEAR", "AGRICULTURAL_ACCOUNT_SHARE_OF_OPERATING_COSTS_MANUAL", "AGRICULTURAL_ACCOUNT_OWN_CORRECTIONS_INCOME", "AGRICULTURAL_ACCOUNT_OWN_CORRECTIONS_INCOME_MANUAL" ] }, "postValue" : { "type" : "string" } } }, "TangibleFixedAsset" : { "type" : "object", "properties" : { "name" : { "type" : "string", "readOnly" : true }, "businessActivityTitle" : { "type" : "string", "readOnly" : true }, "objectIdentifier" : { "type" : "string", "readOnly" : true }, "objectGroup" : { "type" : "string", "readOnly" : true }, "accountNumber" : { "type" : "string", "readOnly" : true }, "accountId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "accountName" : { "type" : "string", "readOnly" : true }, "type" : { "type" : "string", "readOnly" : true }, "openingBalance" : { "type" : "number", "readOnly" : true }, "openingBalanceTaxValue" : { "type" : "number", "readOnly" : true }, "closingBalance" : { "type" : "number", "readOnly" : true }, "closingBalanceTaxValue" : { "type" : "number", "readOnly" : true }, "newAcquisitions" : { "type" : "number", "readOnly" : true }, "acquisitionCost" : { "type" : "number", "readOnly" : true }, "improvements" : { "type" : "number", "readOnly" : true }, "publicSubsidies" : { "type" : "number", "readOnly" : true }, "salesAndOtherRealisation" : { "type" : "number", "readOnly" : true }, "salesAndOtherRealisationRecognition" : { "type" : "number", "readOnly" : true }, "subsidiesForRegionalInvestments" : { "type" : "number", "readOnly" : true }, "reversalOfSubsidiesForRegionalInvestments" : { "type" : "number", "readOnly" : true }, "adjustmentOfInputVat" : { "type" : "number", "readOnly" : true }, "obviousChangeOfValue" : { "type" : "number", "readOnly" : true }, "unknownTransactionType" : { "type" : "number", "readOnly" : true }, "depreciation" : { "type" : "number", "readOnly" : true }, "writeupsOrWritedowns" : { "type" : "number", "readOnly" : true }, "depreciationTaxValue" : { "type" : "number", "readOnly" : true }, "calculatedDepreciation" : { "type" : "number", "readOnly" : true }, "accountedDepreciationPercentage" : { "type" : "number", "readOnly" : true }, "depreciationPercentage" : { "type" : "number", "readOnly" : true }, "depreciationPercentageTaxValue" : { "type" : "number", "readOnly" : true }, "depreciationDifference" : { "type" : "number", "readOnly" : true }, "incomeRecognitionOfNegativeBalance" : { "type" : "number", "readOnly" : true }, "straightLineDepreciation" : { "type" : "number", "readOnly" : true }, "straightLineDepreciationTaxValue" : { "type" : "number", "readOnly" : true }, "basisForDepreciationOrIncomeRecognition" : { "type" : "number", "readOnly" : true }, "basisForDepreciationOrIncomeRecognitionTaxValue" : { "type" : "number", "readOnly" : true }, "profitTransferredToProfitAndLossAccount" : { "type" : "number", "readOnly" : true }, "lossTransferredToProfitAndLossAccount" : { "type" : "number", "readOnly" : true }, "accountingValueProfitAndLoss" : { "type" : "number", "readOnly" : true }, "accountingRelatedProfitOrLoss" : { "type" : "number", "readOnly" : true }, "warningTooHighPercentage" : { "type" : "string", "readOnly" : true }, "warningTooLowPercentage" : { "type" : "string", "readOnly" : true }, "infoResidualWriteOff" : { "type" : "string", "readOnly" : true }, "infoMessageDepreciation" : { "type" : "string", "readOnly" : true }, "infoMessageIncomeRecognition" : { "type" : "string", "readOnly" : true }, "infoTransferBalance" : { "type" : "string", "readOnly" : true }, "negate" : { "type" : "boolean", "readOnly" : true }, "lifetime" : { "type" : "number", "description" : "Additional tax for the project" }, "acquisitionDate" : { "type" : "string" }, "realisationDate" : { "type" : "string" }, "historicalCostPrice" : { "type" : "number", "description" : "Additional tax for the project" }, "writtenDownValuePr01011984" : { "type" : "number", "description" : "Additional tax for the project" }, "lowerLimitDepreciation" : { "type" : "number", "description" : "Additional tax for the project" }, "commercialBuildingAcquiredBefore1984" : { "type" : "boolean", "readOnly" : true }, "isPhysicalOperatingAssetsInBalanceSheet" : { "type" : "boolean", "readOnly" : true }, "facilityType" : { "type" : "string", "description" : "Underlying Documents Used For Assessment", "enum" : [ "LIFETIME_OVER_20_YEARS", "LIFETIME_UNDER_20_YEARS", "LIVESTOCK_BUILDINGS", "FRUIT_FIELD", "BERRY_FIELD" ] }, "maxDepreciationPercentage" : { "type" : "number", "readOnly" : true }, "physicalOperatingAssetsInBalanceSheet" : { "type" : "boolean" } } }, "TaxReturnSubmissionResult" : { "type" : "object", "properties" : { "failureStep" : { "type" : "string", "enum" : [ "0", "1", "64", "2", "4", "5", "6", "7", "255" ] }, "failureCategory" : { "type" : "string", "enum" : [ "0", "1", "2", "3", "4" ] }, "failureMessage" : { "type" : "string" }, "validationResult" : { "$ref" : "#/components/schemas/TaxReturnValidationResult" } } }, "TaxReturnValidationDeviation" : { "type" : "object", "properties" : { "deviationType" : { "type" : "string", "readOnly" : true }, "occurrenceIdentifier" : { "type" : "string", "readOnly" : true }, "receivedValue" : { "type" : "number", "readOnly" : true }, "calculatedValue" : { "type" : "number", "readOnly" : true }, "deviationInValue" : { "type" : "number", "readOnly" : true }, "receivedText" : { "type" : "string", "readOnly" : true }, "calculatedText" : { "type" : "string", "readOnly" : true }, "path" : { "type" : "string", "readOnly" : true }, "otherInformation" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "TaxReturnValidationGuidance" : { "type" : "object", "properties" : { "guidanceType" : { "type" : "string", "readOnly" : true }, "occurrenceIdentifier" : { "type" : "string", "readOnly" : true }, "helpText" : { "type" : "string", "readOnly" : true }, "strategyOfService" : { "type" : "string", "readOnly" : true }, "path" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "TaxReturnValidationResult" : { "type" : "object", "properties" : { "resultFromValidation" : { "type" : "string", "readOnly" : true, "enum" : [ "validatedOK", "validatedWithErrors" ] }, "causesOfValidatedWithError" : { "type" : "array", "readOnly" : true, "items" : { "type" : "string", "readOnly" : true } }, "deviationsAtValidation" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/TaxReturnValidationDeviation" } }, "deviationsAfterCalculation" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/TaxReturnValidationDeviation" } }, "guidancesAfterControl" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/TaxReturnValidationGuidance" } } }, "readOnly" : true }, "YearEndReport" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "year" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "sentDate" : { "type" : "string" }, "yearEndReportBasicData" : { "$ref" : "#/components/schemas/BasicData" }, "status" : { "type" : "string", "enum" : [ "STARTED", "UPDATED", "RESTARTED", "COMPLEMENTARY_DATA_DOWNLOADED", "COMPLEMENTARY_DATA_MODIFIED", "PREVALIDATED_ACCEPTED", "PREVALIDATED_DECLINED", "ALTINN_INSTANCE_CREATED_AND_INITIATED", "ALTINN_INSTANCE_MAIN_CONTENT_UPLOADED", "ALTINN_INSTANCE_ATTACHMENT_UPLOADED", "ALTINN_INSTANCE_CLOSED", "ALTINN_INSTANCE_APPROVED_FOR_TRANSFER", "CONTENT_PROCESSING_AT_RECIPIENT", "ALTINN_INSTANCE_HAS_FEEDBACK", "FEEDBACK_ACCEPTED", "FEEDBACK_DECLINED", "USER_MARKED_AS_DELIVERED" ] }, "altinnMetadata" : { "$ref" : "#/components/schemas/AltinnInstance" }, "submissionResult" : { "$ref" : "#/components/schemas/TaxReturnSubmissionResult" }, "submissionInProgress" : { "type" : "boolean" }, "submissionAttemptDate" : { "type" : "string" }, "annualResult" : { "type" : "number" }, "annualResultPreviousYear" : { "type" : "number" }, "asset" : { "type" : "number" }, "assetPreviousYear" : { "type" : "number" }, "equityAndDebt" : { "type" : "number" }, "equityAndDebtPreviousYear" : { "type" : "number" }, "operatingRevenue" : { "$ref" : "#/components/schemas/YearEndReportType" }, "operatingExpense" : { "$ref" : "#/components/schemas/YearEndReportType" }, "capitalIncome" : { "$ref" : "#/components/schemas/YearEndReportType" }, "capitalCost" : { "$ref" : "#/components/schemas/YearEndReportType" }, "extraordinaryCost" : { "$ref" : "#/components/schemas/YearEndReportType" }, "taxCost" : { "$ref" : "#/components/schemas/YearEndReportType" }, "fixedAsset" : { "$ref" : "#/components/schemas/YearEndReportType" }, "currentAsset" : { "$ref" : "#/components/schemas/YearEndReportType" }, "equity" : { "$ref" : "#/components/schemas/YearEndReportType" }, "debt" : { "$ref" : "#/components/schemas/YearEndReportType" }, "currentDebt" : { "$ref" : "#/components/schemas/YearEndReportType" }, "inventories" : { "$ref" : "#/components/schemas/YearEndReportType" }, "yearEndReportPosting" : { "$ref" : "#/components/schemas/YearEndReportType" }, "tangibleFixedAssets" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/TangibleFixedAsset" } }, "wealthFromBusinessActivity" : { "$ref" : "#/components/schemas/YearEndReportType" }, "showInfoSumDepreciation" : { "type" : "boolean" }, "showInfoSumRevenueRecognitionNegBalance" : { "type" : "boolean" } } }, "YearEndReportPost" : { "type" : "object", "properties" : { "groupNumber" : { "type" : "string", "readOnly" : true }, "grouping" : { "type" : "string", "readOnly" : true }, "groupingPreviousYear" : { "type" : "string", "readOnly" : true }, "post" : { "type" : "string", "readOnly" : true }, "subPost" : { "type" : "string", "readOnly" : true }, "name" : { "type" : "string", "readOnly" : true }, "technicalName" : { "type" : "string", "readOnly" : true }, "info" : { "type" : "string", "readOnly" : true }, "sumAmount" : { "type" : "number", "readOnly" : true }, "sumAmountPreviousYear" : { "type" : "number", "readOnly" : true }, "balanceIn" : { "type" : "number", "readOnly" : true }, "isExcludeFromTaxReturn" : { "type" : "boolean" }, "capitalDebtShareSpouse" : { "type" : "number", "readOnly" : true }, "capitalDebtShareSpouseId" : { "type" : "integer", "format" : "int64" }, "capitalDebtShareSpouseGroupId" : { "type" : "integer", "format" : "int32" } } }, "YearEndReportType" : { "type" : "object", "properties" : { "sumAmount" : { "type" : "number", "readOnly" : true }, "sumAmountPreviousYear" : { "type" : "number", "readOnly" : true }, "posts" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/YearEndReportPost" } } } }, "ResponseWrapperYearEndAnnualAccountsFreeNote" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/YearEndAnnualAccountsFreeNote" } } }, "YearEndAnnualAccountsFreeNote" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "checked" : { "type" : "boolean" }, "displayName" : { "type" : "string" }, "numerated" : { "minimum" : 0, "type" : "integer", "format" : "int32" }, "sortOrder" : { "minimum" : 0, "type" : "integer", "format" : "int32" }, "content" : { "type" : "string" }, "grouping" : { "type" : "string" }, "lastModifiedInfo" : { "$ref" : "#/components/schemas/YearEndAnnualAccountsFreeNoteLastModifiedInfo" } }, "readOnly" : true }, "YearEndAnnualAccountsFreeNoteLastModifiedInfo" : { "type" : "object", "properties" : { "employee" : { "$ref" : "#/components/schemas/Employee" }, "date" : { "type" : "string", "description" : "The date of when the note has been modified", "readOnly" : true }, "time" : { "type" : "string", "description" : "The time of when the note has been modified", "readOnly" : true } }, "readOnly" : true }, "ListResponseYearEndAnnualAccountsFreeNote" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/YearEndAnnualAccountsFreeNote" } } } }, "ResponseWrapperYearEndSigner" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/YearEndSigner" } } }, "YearEndSigner" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "name" : { "maxLength" : 255, "minLength" : 0, "type" : "string", "description" : "Signer name" }, "role" : { "maxLength" : 255, "minLength" : 0, "type" : "string", "description" : "Signer role" }, "email" : { "maxLength" : 255, "minLength" : 0, "type" : "string", "description" : "Signer email" }, "year" : { "type" : "integer", "description" : "Year", "format" : "int32" }, "sortOrder" : { "minimum" : 0, "type" : "integer", "description" : "Sort order for display", "format" : "int32" } } }, "ListResponseYearEndSigner" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/YearEndSigner" } } } }, "ResponseWrapperTaxCalculation" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/TaxCalculation" } } }, "TaxCalculation" : { "type" : "object", "properties" : { "objectIdentifier" : { "type" : "number", "readOnly" : true }, "taxableProfit" : { "type" : "number", "readOnly" : true }, "accumulatedLoss" : { "type" : "number", "readOnly" : true }, "taxRateThisYear" : { "type" : "number", "readOnly" : true }, "taxRateNextYear" : { "type" : "number", "readOnly" : true }, "taxCalculated" : { "type" : "number", "readOnly" : true }, "taxPosted" : { "type" : "number", "readOnly" : true }, "taxDiff" : { "type" : "number", "readOnly" : true }, "tooLittleTaxSetAside" : { "type" : "number", "readOnly" : true }, "tooMuchTaxSetAside" : { "type" : "number", "readOnly" : true }, "totalTaxSetAside" : { "type" : "number", "readOnly" : true }, "basisDefferedTax" : { "type" : "number", "readOnly" : true }, "basisDefferedTaxAssets" : { "type" : "number", "readOnly" : true }, "deferredTaxOpeningBalance" : { "type" : "number", "readOnly" : true }, "deferredTaxAssetsOpeningBalance" : { "type" : "number", "readOnly" : true }, "deferredTaxClosingBalance" : { "type" : "number", "readOnly" : true }, "deferredTaxAssetsClosingBalance" : { "type" : "number", "readOnly" : true }, "calculatedDeferredTax" : { "type" : "number", "readOnly" : true }, "calculatedDeferredTaxAssets" : { "type" : "number", "readOnly" : true }, "increasedDeferredTax" : { "type" : "number", "readOnly" : true }, "decreasedDeferredTax" : { "type" : "number", "readOnly" : true }, "increasedDeferredTaxAssets" : { "type" : "number", "readOnly" : true }, "decreasedDeferredTaxAssets" : { "type" : "number", "readOnly" : true }, "deferredTaxToBePosted" : { "type" : "number", "readOnly" : true }, "deferredTaxAssetsToBePosted" : { "type" : "number", "readOnly" : true }, "totalTaxToSetAsside" : { "type" : "number", "readOnly" : true }, "totalAdditions" : { "type" : "number", "readOnly" : true }, "totalDeductions" : { "type" : "number", "readOnly" : true }, "totalBasis" : { "type" : "number", "readOnly" : true }, "deferredTaxAssetsInBalance" : { "type" : "number", "readOnly" : true }, "totalWealthDistribution" : { "type" : "number", "readOnly" : true }, "taxCalculatedOnWealth" : { "type" : "number", "readOnly" : true }, "totalTaxCalculated" : { "type" : "number", "readOnly" : true }, "showTaxEffectInfo" : { "type" : "boolean", "readOnly" : true } } }, "ResponseWrapperYearEndReport" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/YearEndReport" } } }, "ResponseWrapperListYearEndReportComment" : { "type" : "object", "properties" : { "value" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/YearEndReportComment" } } } }, "YearEndReportComment" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "employee" : { "$ref" : "#/components/schemas/Employee" }, "stepType" : { "type" : "integer", "format" : "int32" }, "comment" : { "type" : "string" }, "date" : { "type" : "string" }, "uploaderName" : { "type" : "string" }, "disabled" : { "type" : "boolean" } } }, "ResponseWrapperYearEndReportComment" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/YearEndReportComment" } } }, "AccountInfo" : { "type" : "object", "properties" : { "account" : { "$ref" : "#/components/schemas/Account" }, "accountName" : { "type" : "string" }, "accountNumber" : { "minimum" : 0, "type" : "integer", "format" : "int32" }, "balanceIn" : { "type" : "number", "readOnly" : true }, "balanceOut" : { "type" : "number", "readOnly" : true }, "sumAmount" : { "type" : "number", "readOnly" : true }, "optionsCollectionId" : { "type" : "number", "readOnly" : true }, "postings" : { "type" : "array", "description" : "Link to postings on this account.", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Posting" } } } }, "AccountSpecification" : { "type" : "object", "properties" : { "startDate" : { "type" : "string" }, "endDate" : { "type" : "string" }, "type" : { "minimum" : 0, "type" : "integer", "format" : "int32", "readOnly" : true }, "totalAmountVat" : { "type" : "number" }, "accounts" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/AccountInfo" } } } }, "ResponseWrapperAccountSpecification" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/AccountSpecification" } } }, "AnnualAccountStatement" : { "type" : "object", "properties" : { "account" : { "$ref" : "#/components/schemas/Account" }, "year" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "postings" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Posting" } }, "balanceIn" : { "type" : "number", "description" : "Balance in", "readOnly" : true }, "balanceChange" : { "type" : "number", "description" : "Balance change", "readOnly" : true }, "balanceOut" : { "type" : "number", "description" : "Balance out", "readOnly" : true } }, "readOnly" : true }, "ListResponseAnnualAccountStatement" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/AnnualAccountStatement" } } } }, "AttachmentCategoryCode" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "technicalName" : { "type" : "string", "readOnly" : true }, "displayName" : { "type" : "string", "readOnly" : true }, "description" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "ListResponseAttachmentCategoryCode" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/AttachmentCategoryCode" } } } }, "ResponseWrapperBasicData" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/BasicData" } } }, "Checklist" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "checklistProperty" : { "$ref" : "#/components/schemas/ChecklistProperty" }, "customizedChecklistProperty" : { "$ref" : "#/components/schemas/CustomizedChecklistProperty" }, "checked" : { "type" : "boolean" }, "employee" : { "$ref" : "#/components/schemas/Employee" }, "changedBy" : { "type" : "string" }, "changedDate" : { "type" : "string" }, "comment" : { "type" : "string" } } }, "ChecklistProperty" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "year" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "checklistType" : { "type" : "string", "enum" : [ "TANGIBLE_FIXED_ASSETS", "PROFIT_AND_LOSS", "INVENTORIES", "CUSTOMER_RECEIVABLES", "SALARY_AND_PENSION", "COMMERCIAL_VEHICLE", "ACCOMMODATION_AND_RESTAURANT", "RESEARCH_AND_DEVELOPMENT", "RESULT_BALANCE", "PERSONAL_INCOME", "PERMANENT_DIFFERENCES", "TEMPORARY_DIFFERENCES", "TAXABLE_RESULT", "GROUP_CONTRIBUTION", "DIVIDEND", "DISPOSITIONS", "RECONCILIATION_OF_EQUITY", "PROPERTY", "ASSET_PAPIR", "PARTICIPANTS_IN_COMPANY_WITH_PARICIPANT_SETTING", "CONTROLLED_TRANSACTIONS_AND_INBETWEEN", "LIMITATION_OF_DEDUCTION", "EXCEPTION_FOR_INTEREST_REDUCTION", "COMPANY_TAX_RETURN", "PARTICIPANTS_TASK", "COOPERATIVE_ENTERPRISE", "OTHER_CIRCUMSTANCES", "TIMBER_ACCOUNT", "FOREST_FUND", "TAX_ASSESSMENT", "REINDEER_HUSBANDRY", "AGRICULTURAL_ACCOUNT", "TAX_RETURN", "TAX_RETURN_TAX_CALCULATION", "CONTROL_TAX_RETURN", "SUBMIT", "GENERAL_INFO", "RESULT_BALANCE_ANNUAL_ACCOUNT", "NOTES", "CONTROL_ANNUAL_ACCOUNT", "ANNUAL_ACCOUNT_SUBMITTED", "NOTES_INTERNAL", "SIGNING", "ABOUT_BUSINESS", "PREPARATION", "SETTLEMENTS_ITEMS", "WHAT_TO_REPORT", "PARTICIPANT" ] }, "typeId" : { "type" : "integer", "format" : "int32" }, "name" : { "type" : "string" }, "info" : { "type" : "string" }, "section" : { "type" : "string" } }, "readOnly" : true }, "CustomizedChecklistProperty" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "year" : { "type" : "integer", "format" : "int32" }, "checklistType" : { "type" : "string", "enum" : [ "TANGIBLE_FIXED_ASSETS", "PROFIT_AND_LOSS", "INVENTORIES", "CUSTOMER_RECEIVABLES", "SALARY_AND_PENSION", "COMMERCIAL_VEHICLE", "ACCOMMODATION_AND_RESTAURANT", "RESEARCH_AND_DEVELOPMENT", "RESULT_BALANCE", "PERSONAL_INCOME", "PERMANENT_DIFFERENCES", "TEMPORARY_DIFFERENCES", "TAXABLE_RESULT", "GROUP_CONTRIBUTION", "DIVIDEND", "DISPOSITIONS", "RECONCILIATION_OF_EQUITY", "PROPERTY", "ASSET_PAPIR", "PARTICIPANTS_IN_COMPANY_WITH_PARICIPANT_SETTING", "CONTROLLED_TRANSACTIONS_AND_INBETWEEN", "LIMITATION_OF_DEDUCTION", "EXCEPTION_FOR_INTEREST_REDUCTION", "COMPANY_TAX_RETURN", "PARTICIPANTS_TASK", "COOPERATIVE_ENTERPRISE", "OTHER_CIRCUMSTANCES", "TIMBER_ACCOUNT", "FOREST_FUND", "TAX_ASSESSMENT", "REINDEER_HUSBANDRY", "AGRICULTURAL_ACCOUNT", "TAX_RETURN", "TAX_RETURN_TAX_CALCULATION", "CONTROL_TAX_RETURN", "SUBMIT", "GENERAL_INFO", "RESULT_BALANCE_ANNUAL_ACCOUNT", "NOTES", "CONTROL_ANNUAL_ACCOUNT", "ANNUAL_ACCOUNT_SUBMITTED", "NOTES_INTERNAL", "SIGNING", "ABOUT_BUSINESS", "PREPARATION", "SETTLEMENTS_ITEMS", "WHAT_TO_REPORT", "PARTICIPANT" ] }, "name" : { "type" : "string" } } }, "ListResponseChecklist" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Checklist" } } } }, "ResponseWrapperChecklist" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/Checklist" } } }, "ListResponseChecklistProperty" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ChecklistProperty" } } } }, "ListResponseCustomizedChecklistProperty" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/CustomizedChecklistProperty" } } } }, "ResponseWrapperCustomizedChecklistProperty" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/CustomizedChecklistProperty" } } }, "CountryCode" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "technicalName" : { "type" : "string", "readOnly" : true }, "displayName" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "ListResponseCountryCode" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/CountryCode" } } } }, "DepreciationRate" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "year" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "balanceGroup" : { "type" : "string", "readOnly" : true }, "maxPercentage" : { "type" : "number", "readOnly" : true }, "oppositePostingAccount" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "maxPercentagePreviousYear" : { "type" : "number" }, "oppositePostingAccountPreviousYear" : { "type" : "integer", "format" : "int32" } }, "readOnly" : true }, "ListResponseDepreciationRate" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/DepreciationRate" } } } }, "Disposition" : { "type" : "object", "properties" : { "annualResult" : { "type" : "number", "readOnly" : true }, "groupContributionGiven" : { "type" : "number", "readOnly" : true }, "groupContributionReceived" : { "type" : "number", "readOnly" : true }, "dividend" : { "type" : "number", "readOnly" : true }, "sumAnnualResult" : { "type" : "number", "readOnly" : true }, "freeEquityOpeningBalance" : { "type" : "number", "readOnly" : true }, "freeEquityClosingBalance" : { "type" : "number", "readOnly" : true }, "calculatedFreeEquityClosingBalance" : { "type" : "number", "readOnly" : true }, "freeEquityDiff" : { "type" : "number", "readOnly" : true }, "uncoveredLossOpeningBalance" : { "type" : "number", "readOnly" : true }, "uncoveredLossClosingBalance" : { "type" : "number", "readOnly" : true }, "calculatedUncoveredLossClosingBalance" : { "type" : "number", "readOnly" : true }, "helpAccountOpeningBalance" : { "type" : "number", "readOnly" : true }, "helpAccountClosingBalance" : { "type" : "number", "readOnly" : true }, "otherChangesInEquity" : { "type" : "number", "readOnly" : true }, "uncoveredLossDiff" : { "type" : "number", "readOnly" : true }, "remainingUncoveredLoss" : { "type" : "number", "readOnly" : true }, "freeEquity" : { "type" : "number", "readOnly" : true }, "showFixIt" : { "type" : "boolean", "readOnly" : true }, "showEquityWarning" : { "type" : "boolean", "readOnly" : true }, "showHelpAccountWarning" : { "type" : "boolean", "readOnly" : true } } }, "ResponseWrapperDisposition" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/Disposition" } } }, "Dividend" : { "type" : "object", "properties" : { "accountedDividend" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/DividendDetails" } }, "accountedGroupContribution" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/DividendDetails" } }, "annualResultAfterTax" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/DividendDetails" } }, "equityInAccount" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/DividendDetails" } }, "name" : { "type" : "string", "readOnly" : true }, "difference" : { "type" : "number", "readOnly" : true }, "equity" : { "type" : "number", "readOnly" : true }, "maxCalculatedDividend" : { "type" : "number", "readOnly" : true } } }, "DividendDetails" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "name" : { "type" : "string", "readOnly" : true }, "grouping" : { "type" : "string", "readOnly" : true }, "value" : { "type" : "number", "readOnly" : true } } }, "ResponseWrapperDividend" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/Dividend" } } }, "EnumType" : { "type" : "object", "properties" : { "enumType" : { "type" : "string", "readOnly" : true, "enum" : [ "VEHICLE_TYPE", "VEHICLE_CATEGORY", "TAXIMETER", "BUSINESS_ACTIVITY_TYPE", "TAX_TRANSACTION_TYPE", "TYPE_OF_GOODS", "CASH_REGISTER_SYSTEM", "COUNTRY_CODE", "STEP_TYPE", "STOCK_TYPE", "SHARE_CLASS", "REAL_ESTATE_TYPE", "COMMERCIAL_PROPERTY_TYPE", "REAL_ESTATE_DWELLING_TYPE", "REAL_ESTATE_PRIMARY_SECONDARY_DWELLING_TYPE", "REAL_ESTATE_ASSOCIATION_OR_COOPERATIVE_DWELLING_OWNERSHIP_TYPE", "FINANCIAL_PRODUCT", "TRANSACTION_TYPE", "ASSET_TYPE", "PRICING_METHOD" ] }, "type" : { "type" : "string", "readOnly" : true }, "value" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "name" : { "type" : "string", "readOnly" : true }, "technicalName" : { "type" : "string", "readOnly" : true }, "stepNumber" : { "type" : "integer", "format" : "int32", "readOnly" : true } }, "readOnly" : true }, "ListResponseEnumType" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/EnumType" } } } }, "ResponseWrapperMapStringString" : { "type" : "object", "properties" : { "value" : { "type" : "object", "additionalProperties" : { "type" : "string" } } } }, "BusinessActivityType" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "displayName" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "ListResponseBusinessActivityType" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/BusinessActivityType" } } } }, "CashRegisterCode" : { "type" : "object", "properties" : { "enumName" : { "type" : "string", "readOnly" : true }, "number" : { "type" : "string", "readOnly" : true }, "displayName" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "ListResponseCashRegisterCode" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/CashRegisterCode" } } } }, "AgriculturalAccount" : { "type" : "object", "properties" : { "groupId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "departments" : { "type" : "string", "readOnly" : true }, "departmentNames" : { "type" : "string", "readOnly" : true }, "operationalEntity" : { "type" : "string", "readOnly" : true }, "municipalityNumber" : { "type" : "number", "readOnly" : true }, "relatedSalesIncomeAndWithdrawals" : { "type" : "number", "description" : "Related sales income and withdrawals", "readOnly" : true }, "notRelatedSalesIncomeAndWithdrawals" : { "type" : "number", "description" : "Not related sales income and withdrawals", "readOnly" : true }, "ownCorrectionsIncome" : { "type" : "number", "description" : "Own corrections income", "readOnly" : true }, "incomeFromProfitAndLossAccount" : { "type" : "number", "description" : "Income from profit and loss account", "readOnly" : true }, "incomeDeductionsFromProfitAndLossAccount" : { "type" : "number", "description" : "Income deductions from profit and loss account", "readOnly" : true }, "incomeRecognitionOfNegativeBalance" : { "type" : "number", "description" : "Income recognition of negative balance", "readOnly" : true }, "totalOperatingCosts" : { "type" : "number", "description" : "Total operating costs", "readOnly" : true }, "shareOfOperatingCosts" : { "type" : "number", "description" : "Share of operating costs", "readOnly" : true }, "transferredFromPreviousYear" : { "$ref" : "#/components/schemas/YearEndGroupDetails" }, "correctionBiomassWoodProduction" : { "type" : "number", "description" : "Correction from biomass or wood production", "readOnly" : true }, "operatingProfitLossFromActivitiesNotIncluded" : { "type" : "number", "description" : "Operating profit and loss from activities not included", "readOnly" : true }, "transferredData" : { "$ref" : "#/components/schemas/TransferredData" }, "balanceData" : { "$ref" : "#/components/schemas/BalanceDataAgriculture" }, "profitAndLossData" : { "$ref" : "#/components/schemas/ProfitAndLossAgriculture" } } }, "AgriculturalAccountOverview" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "agriculturalAccounts" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/AgriculturalAccount" } }, "showMissingDepartmentWarning" : { "type" : "boolean", "readOnly" : true }, "showDuplicateDepartmentWarning" : { "type" : "boolean", "readOnly" : true }, "showNotLinkedDepartmentWarning" : { "type" : "boolean", "readOnly" : true }, "useMultipleAccounts" : { "type" : "boolean", "readOnly" : true }, "transferredFromAgriculturalAccountAccounting" : { "type" : "number", "readOnly" : true }, "transferredFromAgriculturalAccountInAgriculturalAccount" : { "type" : "number", "readOnly" : true }, "registeredAccounting" : { "type" : "number", "readOnly" : true }, "registeredInAgriculturalAccount" : { "type" : "number", "readOnly" : true }, "deductedAccounting" : { "type" : "number", "readOnly" : true }, "deductedInAgriculturalAccount" : { "type" : "number", "readOnly" : true } } }, "BalanceDataAgriculture" : { "type" : "object", "properties" : { "inheritedUponInheritanceGenerationalChange" : { "type" : "number", "readOnly" : true }, "realizedUponInheritanceGenerationalChange" : { "type" : "number", "readOnly" : true }, "transferredIncomeOrExpenseToAgriculturalAccount" : { "type" : "number", "readOnly" : true }, "basisBalanceAdjustment" : { "type" : "number", "readOnly" : true }, "shareOfBasisNextYearRate" : { "type" : "number", "readOnly" : true }, "shareOfBasisNextYear" : { "type" : "number", "readOnly" : true }, "incomeOrExpenseFromAgriculturalAccount" : { "type" : "number", "readOnly" : true }, "sumTransferred" : { "type" : "number", "readOnly" : true } }, "description" : "Balansc data", "readOnly" : true }, "ProfitAndLossAgriculture" : { "type" : "object", "properties" : { "incomeOrDeductionFromAgriculturalAccount" : { "type" : "number", "readOnly" : true }, "incomeOrDeficitNotOnAgriculturalAccount" : { "type" : "number", "readOnly" : true }, "sumProfitAndLoss" : { "type" : "number", "readOnly" : true } }, "description" : "Profit and loss data", "readOnly" : true }, "TransferredData" : { "type" : "object", "properties" : { "shareOfOperatingRevenuesHuntingFishingEtc" : { "$ref" : "#/components/schemas/YearEndGroupDetails" }, "profitLossHuntingFishingEtc" : { "type" : "number", "readOnly" : true }, "operatingProfitLoss" : { "type" : "number", "readOnly" : true }, "shareFromExtraordinaryDistribution" : { "type" : "number", "readOnly" : true }, "correctionBiomassWoodProduction" : { "type" : "number", "readOnly" : true }, "standardIncomeBiomassWoodproduction" : { "type" : "number", "readOnly" : true }, "profitLossToTimberAccount" : { "type" : "number", "readOnly" : true }, "shareOfProfitToRegister" : { "type" : "number", "readOnly" : true }, "sumTransferred" : { "type" : "number", "readOnly" : true } }, "description" : "Transferred data", "readOnly" : true }, "YearEndGroupDetails" : { "type" : "object", "properties" : { "name" : { "type" : "string", "readOnly" : true }, "grouping" : { "type" : "string", "readOnly" : true }, "value" : { "type" : "number", "readOnly" : true } }, "readOnly" : true }, "BalanceData" : { "type" : "object", "properties" : { "incomingValueFromAquiredTimberAccount" : { "type" : "number", "readOnly" : true }, "valueOfShareOfRealizedTimberAccount" : { "type" : "number", "readOnly" : true }, "transferredIncomeOrExpenseToTimberAccount" : { "type" : "number", "readOnly" : true }, "basisBalanceAdjustment" : { "type" : "number", "readOnly" : true }, "shareOfBasisNextYearRate" : { "type" : "number", "readOnly" : true }, "shareOfBasisNextYear" : { "type" : "number", "readOnly" : true }, "incomeOrExpenseFromTimberAccount" : { "type" : "number", "readOnly" : true }, "sumTransferred" : { "type" : "number", "readOnly" : true } }, "description" : "Balansc data", "readOnly" : true }, "ExtraordinaryDistributionData" : { "type" : "object", "properties" : { "remainderNotTaxedFelling" : { "type" : "number", "readOnly" : true }, "remainderIncludedThisYear" : { "type" : "number", "readOnly" : true }, "sumLaterIncomeRecognition" : { "type" : "number", "readOnly" : true }, "municipalityNumber" : { "type" : "string", "readOnly" : true }, "paidPublicContributionForestFund" : { "type" : "number", "readOnly" : true } }, "description" : "Forest fund and extraordinary distribution data", "readOnly" : true }, "ForestFundData" : { "type" : "object", "properties" : { "municipalityNumber" : { "type" : "number", "readOnly" : true }, "paidPublicContributionForestFund" : { "type" : "number", "readOnly" : true }, "calculatedReversalOfPrevCalculations" : { "type" : "number", "readOnly" : true }, "basisForCalculationTaxAssets" : { "type" : "number", "readOnly" : true } }, "description" : "Forest fund and extraordinary distribution data", "readOnly" : true }, "ProfitAndLossData" : { "type" : "object", "properties" : { "incomeOrDeductionFromTimberAccount" : { "type" : "number", "readOnly" : true }, "incomeOrDeficitNotOnTimberAccount" : { "type" : "number", "readOnly" : true }, "correctionBiomassWoodProduction" : { "type" : "number", "readOnly" : true }, "sumProfitAndLoss" : { "type" : "number", "readOnly" : true } }, "description" : "Profit and loss data", "readOnly" : true }, "TimberAccount" : { "type" : "object", "properties" : { "department" : { "$ref" : "#/components/schemas/Department" }, "groupId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "salesIncomeAndWithdrawalsTimberPulpwoodEtc" : { "$ref" : "#/components/schemas/YearEndGroupDetails" }, "salesIncomeAndWithdrawalsFirewoodBiomass" : { "$ref" : "#/components/schemas/YearEndGroupDetails" }, "incomeHuntingFishingEtc" : { "$ref" : "#/components/schemas/YearEndGroupDetails" }, "revenueRecognitionNegativeBalance" : { "$ref" : "#/components/schemas/YearEndGroupDetails" }, "incomeDeductionProfitAndLoss" : { "$ref" : "#/components/schemas/YearEndGroupDetails" }, "operatingRevenuesIncTaxablePartOfForestFund" : { "$ref" : "#/components/schemas/YearEndGroupDetails" }, "operatingCostIncDepreciationAndAllocationForestFund" : { "$ref" : "#/components/schemas/YearEndGroupDetails" }, "transferredFromPreviousYear" : { "$ref" : "#/components/schemas/YearEndGroupDetails" }, "forestFundPaymentToPurposeWithTaxAssets" : { "$ref" : "#/components/schemas/YearEndGroupDetails" }, "paidUpGovernmentContributionsToForestFund" : { "$ref" : "#/components/schemas/YearEndGroupDetails" }, "taxAssetsForestFund" : { "$ref" : "#/components/schemas/YearEndGroupDetails" }, "reversalOfPrevCalculatedTaxAssetsForestFund" : { "$ref" : "#/components/schemas/YearEndGroupDetails" }, "forestFundPaymentToPurposeWithoutTaxAssets" : { "$ref" : "#/components/schemas/YearEndGroupDetails" }, "taxableIncomeForestFund" : { "$ref" : "#/components/schemas/YearEndGroupDetails" }, "transferredData" : { "$ref" : "#/components/schemas/TransferredData" }, "balanceData" : { "$ref" : "#/components/schemas/BalanceData" }, "profitAndLossData" : { "$ref" : "#/components/schemas/ProfitAndLossData" }, "extraordinaryDistributionData" : { "$ref" : "#/components/schemas/ExtraordinaryDistributionData" }, "forestFundData" : { "$ref" : "#/components/schemas/ForestFundData" } } }, "TimberAccountOverview" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "timberAccounts" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/TimberAccount" } }, "transferredFromTimberAccountAccounting" : { "type" : "number", "readOnly" : true }, "transferredFromTimberAccountInTimberAccount" : { "type" : "number", "readOnly" : true }, "registeredAccounting" : { "type" : "number", "readOnly" : true }, "registeredInTimberAccount" : { "type" : "number", "readOnly" : true }, "deductedAccounting" : { "type" : "number", "readOnly" : true }, "deductedInTimberAccount" : { "type" : "number", "readOnly" : true } } }, "ControlledTransactionsCompanySpecification" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "groupId" : { "type" : "integer", "description" : "Group ID", "format" : "int32" }, "subGroupId" : { "type" : "integer", "description" : "Sub group ID", "format" : "int32" }, "posts" : { "type" : "array", "description" : "Associated posts", "items" : { "$ref" : "#/components/schemas/GenericData" } }, "identifier" : { "type" : "string", "description" : "The official identifier of the company" }, "companyName" : { "type" : "string", "description" : "The official name of the company" }, "country" : { "type" : "string", "description" : "The country where the company is registered" }, "transactions" : { "type" : "array", "description" : "A list of transactions made between this company and users company", "items" : { "$ref" : "#/components/schemas/ControlledTransactionsTransaction" } }, "outstandingBalances" : { "type" : "array", "description" : "A list of outstanding accounts between this company and users company", "items" : { "$ref" : "#/components/schemas/ControlledTransactionsOutstanding" } } } }, "ControlledTransactionsOutstanding" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "groupId" : { "type" : "integer", "description" : "Group ID", "format" : "int32" }, "subGroupId" : { "type" : "integer", "description" : "Sub group ID", "format" : "int32" }, "posts" : { "type" : "array", "description" : "Associated posts", "items" : { "$ref" : "#/components/schemas/GenericData" } }, "account" : { "type" : "string", "description" : "The type of account which is outstanding" }, "amount" : { "type" : "number", "description" : "The amount of money transferred" }, "countryCode" : { "type" : "string", "description" : "What country is the outstanding balance in" } }, "description" : "List of outstanding balances" }, "ControlledTransactionsTransaction" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "groupId" : { "type" : "integer", "description" : "Group ID", "format" : "int32" }, "subGroupId" : { "type" : "integer", "description" : "Sub group ID", "format" : "int32" }, "posts" : { "type" : "array", "description" : "Associated posts", "items" : { "$ref" : "#/components/schemas/GenericData" } }, "transactionType" : { "type" : "string", "description" : "The type of the transaction" }, "description" : { "type" : "string", "description" : "A description of the transaction" }, "amount" : { "type" : "number", "description" : "The amount of money transferred" }, "countryCode" : { "type" : "string", "description" : "What country did the transaction take place in" } }, "description" : "List of transactions" }, "ControlledTransactions" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "groupId" : { "type" : "integer", "description" : "Group ID", "format" : "int32" }, "subGroupId" : { "type" : "integer", "description" : "Sub group ID", "format" : "int32" }, "posts" : { "type" : "array", "description" : "Associated posts", "items" : { "$ref" : "#/components/schemas/GenericData" } }, "exemptFromTransactionSharing" : { "type" : "boolean", "description" : "Is exempt from sharing transactions" }, "exemptFromPriceSharing" : { "type" : "boolean", "description" : "Is exempt from sharing prices" }, "consolidatedMarginYear" : { "minimum" : 0, "type" : "integer", "description" : "Year of consolidated margin", "format" : "int32" }, "consolidatedMarginPercentage" : { "type" : "number", "description" : "Percentage of consolidated margin" }, "reportsOnlyProvisionIncome" : { "type" : "string", "description" : "Whether or not the company only reports provision income" }, "costOfImmaterialAssets" : { "type" : "number", "description" : "The total cost related to development of the company's immaterial assets" }, "numberOfRegisteredPatents" : { "minimum" : 0, "type" : "integer", "description" : "The number of patents registered by the company", "format" : "int32" }, "groupBeenRestructured" : { "type" : "boolean", "description" : "Whether or not the group related to the company has undergone restructuring" }, "companyServicedOtherCompanyInGroupForFree" : { "type" : "boolean", "description" : "Whether or not the company has serviced another company in the same group for free" }, "companyGuarantorForAgreementsByOtherCompaniesInSameGroup" : { "type" : "boolean", "description" : "Whether or not the company acts as a guarantor for an agreement by another company in the same group" }, "relatedCompaniesUsingImmaterialAssets" : { "type" : "array", "description" : "Related companies that's using the company's immaterial assets", "items" : { "$ref" : "#/components/schemas/ControlledTransactionsRelatedCompanies" } }, "functionAndRisk" : { "type" : "array", "description" : "List of functions and risks", "items" : { "$ref" : "#/components/schemas/ControlledTransactionsFunctionAndRisk" } }, "summary" : { "$ref" : "#/components/schemas/ControlledTransactionsSummary" } } }, "ControlledTransactionsFunctionAndRisk" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "groupId" : { "type" : "integer", "description" : "Group ID", "format" : "int32" }, "subGroupId" : { "type" : "integer", "description" : "Sub group ID", "format" : "int32" }, "posts" : { "type" : "array", "description" : "Associated posts", "items" : { "$ref" : "#/components/schemas/GenericData" } }, "functionType" : { "type" : "string", "description" : "The type of the function" }, "riskType" : { "type" : "string", "description" : "The type of risk" }, "description" : { "type" : "string", "description" : "Description of the function and risk combination" } }, "description" : "List of functions and risks" }, "ControlledTransactionsRelatedCompanies" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "groupId" : { "type" : "integer", "description" : "Group ID", "format" : "int32" }, "subGroupId" : { "type" : "integer", "description" : "Sub group ID", "format" : "int32" }, "posts" : { "type" : "array", "description" : "Associated posts", "items" : { "$ref" : "#/components/schemas/GenericData" } }, "identifier" : { "type" : "string", "description" : "The public identifier of the company" }, "companyName" : { "type" : "string", "description" : "The name of the company" }, "country" : { "type" : "string", "description" : "Country wherein the company is registered" } }, "description" : "Related companies that's using the company's immaterial assets" }, "ControlledTransactionsSummary" : { "type" : "object", "properties" : { "sumOperationalIncome" : { "type" : "number", "description" : "The sum of all transactions with the category operational income" }, "sumFinancialIncome" : { "type" : "number", "description" : "The sum of all transactions with the category financial income" }, "totalOperationalCost" : { "type" : "number", "description" : "The sum of all transactions with the category operational cost" }, "totalFinancialCost" : { "type" : "number", "description" : "The sum of all transactions with the category financial cost" }, "totalExtraordinaryPurchases" : { "type" : "number", "description" : "The sum of all transactions with the category extraordinary purchase" }, "totalExtraordinarySales" : { "type" : "number", "description" : "The sum of all transactions with the category extraordinary sale" }, "totalClaims" : { "type" : "number", "description" : "The sum of all outstanding with the category claim" }, "totalDebt" : { "type" : "number", "description" : "The sum of all outstanding with the category debt" }, "totalGuarantorResponsibility" : { "type" : "number", "description" : "The sum of all outstanding with the category guarantor responsibility" }, "totalGuaranteeBasis" : { "type" : "number", "description" : "The sum of all outstanding with the category guarantee basis" } }, "description" : "Summary of something" }, "ResponseWrapperControlledTransactions" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ControlledTransactions" } } }, "ListResponseControlledTransactionsCompanySpecification" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ControlledTransactionsCompanySpecification" } } } }, "ResponseWrapperControlledTransactionsCompanySpecification" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ControlledTransactionsCompanySpecification" } } }, "ResponseWrapperGenericData" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/GenericData" } } }, "AccommodationAndRestaurant" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "genericDataOverviews" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/GenericDataOverview" } } } }, "CashRegisterSystem" : { "type" : "object", "properties" : { "groupId" : { "type" : "number", "readOnly" : true }, "genericDataType" : { "type" : "string", "readOnly" : true, "enum" : [ "MISC", "TRANSPORT", "ACCOMMODATION_AND_RESTAURANT", "PROFIT_AND_LOSS", "CUSTOMER_RECEIVABLE", "INVENTORIES", "TANGIBLE_FIXED_ASSETS", "RECONCILIATION_OF_EQUITY", "PERMANENT_DIFFERENCES", "TEMPORARY_DIFFERENCES", "DOCUMENT_DOWNLOADED", "GROUP_CONTRIBUTIONS", "TAX_RETURN", "TAX_CALCULATIONS", "DOCUMENTATION", "SHARES_AND_SECURITIES", "REAL_ESTATE", "PARTICIPANT", "SALARY_AND_PENSION_EXPENSES", "COOPERATIVE_ENTERPRISE", "OTHER_CIRCUMSTANCES", "RESEARCH_AND_DEVELOPMENT", "TIMBER_ACCOUNT", "CONTROLLED_TRANSACTIONS", "PARTICIPANT_ASSESSMENT_REPORT", "CONTROLLED_TRANSACTIONS_COMPANY_SPECIFICATION", "INTEREST_LIMITATION", "DOCUMENT_WITH_ALTINN_ID", "FOREST_FUND", "TAX_ASSESSMENT", "DISTRIBUTION_OF_CAPITAL_DEBT", "REINDEER_HUSBANDRY", "LANDBRUKETS_DATAFLYT", "AGRICULTURAL_ACCOUNT" ] }, "genericDataSubTypeGroupId" : { "type" : "number", "readOnly" : true }, "yearOfInitialRegistration" : { "type" : "number", "readOnly" : true }, "cashRegisterSystem" : { "type" : "string", "readOnly" : true } } }, "GenericDataOverview" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "groupId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "genericDataType" : { "type" : "string", "readOnly" : true, "enum" : [ "MISC", "TRANSPORT", "ACCOMMODATION_AND_RESTAURANT", "PROFIT_AND_LOSS", "CUSTOMER_RECEIVABLE", "INVENTORIES", "TANGIBLE_FIXED_ASSETS", "RECONCILIATION_OF_EQUITY", "PERMANENT_DIFFERENCES", "TEMPORARY_DIFFERENCES", "DOCUMENT_DOWNLOADED", "GROUP_CONTRIBUTIONS", "TAX_RETURN", "TAX_CALCULATIONS", "DOCUMENTATION", "SHARES_AND_SECURITIES", "REAL_ESTATE", "PARTICIPANT", "SALARY_AND_PENSION_EXPENSES", "COOPERATIVE_ENTERPRISE", "OTHER_CIRCUMSTANCES", "RESEARCH_AND_DEVELOPMENT", "TIMBER_ACCOUNT", "CONTROLLED_TRANSACTIONS", "PARTICIPANT_ASSESSMENT_REPORT", "CONTROLLED_TRANSACTIONS_COMPANY_SPECIFICATION", "INTEREST_LIMITATION", "DOCUMENT_WITH_ALTINN_ID", "FOREST_FUND", "TAX_ASSESSMENT", "DISTRIBUTION_OF_CAPITAL_DEBT", "REINDEER_HUSBANDRY", "LANDBRUKETS_DATAFLYT", "AGRICULTURAL_ACCOUNT" ] }, "genericDataTypeGroupId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "industryObjectIdentifier" : { "type" : "string", "readOnly" : true }, "posts" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/GenericData" } }, "typeOfGoodsPosts" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/TypeOfGoods" } }, "multiUnitBuildingUnitPosts" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/MultiUnitBuildingUnit" } }, "cashRegisterSystemPosts" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/CashRegisterSystem" } }, "calculatedDeduction" : { "type" : "number", "readOnly" : true }, "expenses" : { "type" : "number", "readOnly" : true }, "reversedExpenses" : { "type" : "number", "readOnly" : true }, "showProfitAndLossDetails" : { "type" : "boolean", "readOnly" : true }, "annualIncomeRecognitionOrDeductionBasis" : { "type" : "number", "readOnly" : true }, "annualIncomeRecognition" : { "type" : "number", "readOnly" : true }, "annualDeduction" : { "type" : "number", "readOnly" : true }, "sumProfitAndLoss" : { "type" : "number", "readOnly" : true }, "openingBalanceProfitAndLoss" : { "type" : "number", "readOnly" : true }, "closingBalanceProfitAndLoss" : { "type" : "number", "readOnly" : true }, "objectIdentifier" : { "type" : "string", "readOnly" : true }, "calculatedAssetValue" : { "type" : "number", "readOnly" : true }, "calculatedTotalAssetValue" : { "type" : "number", "readOnly" : true }, "calculatedMarketValue" : { "type" : "number", "readOnly" : true }, "calculatedIncomeValueRental" : { "type" : "number", "readOnly" : true }, "calculatedAssetValueRental" : { "type" : "number", "readOnly" : true }, "estimatedIncreasedTaxValue" : { "type" : "number", "readOnly" : true }, "estimatedDiffTaxValue" : { "type" : "number", "readOnly" : true }, "valuationDiscount" : { "type" : "number", "readOnly" : true }, "valuationDiscountAmount" : { "type" : "number", "readOnly" : true }, "totalAssetValueAfterValuationDiscount" : { "type" : "number", "readOnly" : true }, "showMunicipalityValidationMessage" : { "type" : "number", "readOnly" : true }, "calculatedTotalAssetRate" : { "type" : "number", "readOnly" : true }, "estimatedIncreasedTaxRate" : { "type" : "number", "readOnly" : true } } }, "MultiUnitBuildingUnit" : { "type" : "object", "properties" : { "groupId" : { "type" : "number", "readOnly" : true }, "genericDataType" : { "type" : "string", "readOnly" : true, "enum" : [ "MISC", "TRANSPORT", "ACCOMMODATION_AND_RESTAURANT", "PROFIT_AND_LOSS", "CUSTOMER_RECEIVABLE", "INVENTORIES", "TANGIBLE_FIXED_ASSETS", "RECONCILIATION_OF_EQUITY", "PERMANENT_DIFFERENCES", "TEMPORARY_DIFFERENCES", "DOCUMENT_DOWNLOADED", "GROUP_CONTRIBUTIONS", "TAX_RETURN", "TAX_CALCULATIONS", "DOCUMENTATION", "SHARES_AND_SECURITIES", "REAL_ESTATE", "PARTICIPANT", "SALARY_AND_PENSION_EXPENSES", "COOPERATIVE_ENTERPRISE", "OTHER_CIRCUMSTANCES", "RESEARCH_AND_DEVELOPMENT", "TIMBER_ACCOUNT", "CONTROLLED_TRANSACTIONS", "PARTICIPANT_ASSESSMENT_REPORT", "CONTROLLED_TRANSACTIONS_COMPANY_SPECIFICATION", "INTEREST_LIMITATION", "DOCUMENT_WITH_ALTINN_ID", "FOREST_FUND", "TAX_ASSESSMENT", "DISTRIBUTION_OF_CAPITAL_DEBT", "REINDEER_HUSBANDRY", "LANDBRUKETS_DATAFLYT", "AGRICULTURAL_ACCOUNT" ] }, "genericDataSubTypeGroupId" : { "type" : "number", "readOnly" : true }, "unitNo" : { "type" : "string", "readOnly" : true }, "area" : { "type" : "number", "readOnly" : true }, "constructionYear" : { "type" : "number", "readOnly" : true }, "value" : { "type" : "number", "readOnly" : true } } }, "ResponseWrapperAccommodationAndRestaurant" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/AccommodationAndRestaurant" } } }, "TypeOfGoods" : { "type" : "object", "properties" : { "groupId" : { "type" : "number", "readOnly" : true }, "genericDataType" : { "type" : "string", "readOnly" : true, "enum" : [ "MISC", "TRANSPORT", "ACCOMMODATION_AND_RESTAURANT", "PROFIT_AND_LOSS", "CUSTOMER_RECEIVABLE", "INVENTORIES", "TANGIBLE_FIXED_ASSETS", "RECONCILIATION_OF_EQUITY", "PERMANENT_DIFFERENCES", "TEMPORARY_DIFFERENCES", "DOCUMENT_DOWNLOADED", "GROUP_CONTRIBUTIONS", "TAX_RETURN", "TAX_CALCULATIONS", "DOCUMENTATION", "SHARES_AND_SECURITIES", "REAL_ESTATE", "PARTICIPANT", "SALARY_AND_PENSION_EXPENSES", "COOPERATIVE_ENTERPRISE", "OTHER_CIRCUMSTANCES", "RESEARCH_AND_DEVELOPMENT", "TIMBER_ACCOUNT", "CONTROLLED_TRANSACTIONS", "PARTICIPANT_ASSESSMENT_REPORT", "CONTROLLED_TRANSACTIONS_COMPANY_SPECIFICATION", "INTEREST_LIMITATION", "DOCUMENT_WITH_ALTINN_ID", "FOREST_FUND", "TAX_ASSESSMENT", "DISTRIBUTION_OF_CAPITAL_DEBT", "REINDEER_HUSBANDRY", "LANDBRUKETS_DATAFLYT", "AGRICULTURAL_ACCOUNT" ] }, "genericDataSubTypeGroupId" : { "type" : "number", "readOnly" : true }, "typeOfGoods" : { "type" : "string", "readOnly" : true, "enum" : [ "FOOD_STUFFS", "TOBACCO_ETC", "COFFEE_AND_TEA", "SOFT_DRINKS", "ALCOPOP_AND_CIDER", "BEER", "WINE", "SPIRITS", "OTHER_PRODUCTS" ] }, "productName" : { "type" : "string", "readOnly" : true }, "openingStock" : { "type" : "number", "readOnly" : true }, "closingStock" : { "type" : "number", "readOnly" : true }, "purchaseOfGoods" : { "type" : "number", "readOnly" : true }, "costOfGoodsSold" : { "type" : "number", "readOnly" : true }, "salesRevenueAndWithdrawals" : { "type" : "number", "readOnly" : true }, "salesRevenueInCash" : { "type" : "number", "readOnly" : true } } }, "CommercialVehicle" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "sumExpenses" : { "type" : "number", "readOnly" : true }, "accountedValue" : { "type" : "number", "readOnly" : true }, "groupedAccountedValue" : { "type" : "number", "readOnly" : true }, "amountToBePostedOnAccount" : { "type" : "number", "readOnly" : true }, "genericDataOverviews" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/GenericDataOverview" } } } }, "ResponseWrapperCommercialVehicle" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/CommercialVehicle" } } }, "CustomerReceivable" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "openingBalanceReceivableAndNonInvoicedRevenue" : { "type" : "number", "readOnly" : true }, "closingBalanceReceivableAndNonInvoicedRevenue" : { "type" : "number", "readOnly" : true }, "openingBalanceAscertainedLoss" : { "type" : "number", "readOnly" : true }, "closingBalanceAscertainedLoss" : { "type" : "number", "readOnly" : true }, "openingBalanceWriteDown" : { "type" : "number", "readOnly" : true }, "closingBalanceWriteDown" : { "type" : "number", "readOnly" : true }, "sumTaxValue" : { "type" : "number", "readOnly" : true }, "amountToBePostedOnAccount" : { "type" : "number", "readOnly" : true }, "accountedValue" : { "type" : "number", "readOnly" : true }, "openingBalanceDifferences" : { "type" : "number", "readOnly" : true }, "closingBalanceDifferences" : { "type" : "number", "readOnly" : true }, "changes" : { "type" : "number", "readOnly" : true }, "openingBalanceAccountingValues" : { "type" : "number", "readOnly" : true }, "closingBalanceAccountingValues" : { "type" : "number", "readOnly" : true }, "genericDataOverviews" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/GenericDataOverview" } } } }, "ResponseWrapperCustomerReceivable" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/CustomerReceivable" } } }, "DocumentationGenericData" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "groupId" : { "type" : "integer", "format" : "int32" }, "genericDataType" : { "type" : "string", "enum" : [ "MISC", "TRANSPORT", "ACCOMMODATION_AND_RESTAURANT", "PROFIT_AND_LOSS", "CUSTOMER_RECEIVABLE", "INVENTORIES", "TANGIBLE_FIXED_ASSETS", "RECONCILIATION_OF_EQUITY", "PERMANENT_DIFFERENCES", "TEMPORARY_DIFFERENCES", "DOCUMENT_DOWNLOADED", "GROUP_CONTRIBUTIONS", "TAX_RETURN", "TAX_CALCULATIONS", "DOCUMENTATION", "SHARES_AND_SECURITIES", "REAL_ESTATE", "PARTICIPANT", "SALARY_AND_PENSION_EXPENSES", "COOPERATIVE_ENTERPRISE", "OTHER_CIRCUMSTANCES", "RESEARCH_AND_DEVELOPMENT", "TIMBER_ACCOUNT", "CONTROLLED_TRANSACTIONS", "PARTICIPANT_ASSESSMENT_REPORT", "CONTROLLED_TRANSACTIONS_COMPANY_SPECIFICATION", "INTEREST_LIMITATION", "DOCUMENT_WITH_ALTINN_ID", "FOREST_FUND", "TAX_ASSESSMENT", "DISTRIBUTION_OF_CAPITAL_DEBT", "REINDEER_HUSBANDRY", "LANDBRUKETS_DATAFLYT", "AGRICULTURAL_ACCOUNT" ] }, "genericDataSubType" : { "type" : "string", "enum" : [ "NONE", "NOT_LICENSED", "FREIGHT_TRANSPORT", "TAXI", "ACQUISITION_AND_REALIZATION", "PRODUCT_TYPE_INVENTORY", "CASH_REGISTER_SYSTEM", "PRIVATE_WITHDRAWAL_OF_GOODS", "ENTERTAINMENT", "MULTI_UNIT_BUILDING_UNIT", "RENTAL_WITHDRAWAL_SALE_COMPANY", "RENTAL_WITHDRAWAL_SALE_SHAREHOLDER", "RESOLUTION", "WORK_PACKAGE", "COLLABORATIVE_BUSINESS", "OTHER_PUBLIC_SUPPORT", "BUSINESS_ACTIVITY", "RELATED_COMPANY", "FUNCTION_AND_RISK", "TRANSACTION", "OUTSTANDING", "INTEREST_EXPENSES_TO_COMPANY_IN_SAME_GROUP", "INTEREST_EXPENSES_TO_OTHER_GROUP_GUARANTOR", "INTEREST_EXPENSES_TO_OTHER_WITH_OUTSTANDING_CLAIM", "COMPANIES_INCLUDED_IN_NORWEGIAN_PART_OF_GROUP", "INTEREST_INCOME_FROM_COMPANY_IN_SAME_GROUP", "INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP", "INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_GROUP_GUARANTOR", "INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_WITH_OUTSTANDING_CLAIM", "INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP", "FORWARDING_DISALLOWED_INTEREST_DEDUCTION" ] }, "genericDataSubTypeGroupId" : { "type" : "integer", "format" : "int32" }, "postType" : { "type" : "string", "enum" : [ "REGISTRATION_NUMBER", "DESCRIPTION", "VEHICLE_TYPE", "YEAR_OF_INITIAL_REGISTRATION", "LIST_PRICE", "DATE_FROM", "DATE_TO", "LICENCE", "LICENCE_NUMBER", "IS_ELECTRONIC_VEHICLE_LOGBOOK_LOGGED", "NO_OF_KILOMETRES_TOTAL", "OPERATING_EXPENSES", "LEASING_RENT", "IS_COMPANY_VEHICLE_USED_PRIVATE", "NO_OF_KILOMETRES_PRIVATE", "DEPRECIATION_PRIVATE_USE", "REVERSED_VEHICLE_EXPENSES", "FUEL_COST", "MAINTENANCE_COST", "COST_OF_INSURANCE_AND_TAX", "CAR_DEPARTMENT", "NO_OF_LITER_FUEL", "TAXIMETER_TYPE", "INCOME_PERSONAL_TRANSPORT", "INCOME_GOODS_TRANSPORT", "DRIVING_INCOME_PAYED_IN_CASH", "DRIVING_INCOME_INVOICED_PUBLIC_AGENCIES", "TIP_PAYED_WITH_CARD_OR_INVOICE", "TIP_PAYED_IN_CASH", "NO_OF_KILOMETRES_SCHOOL_CHILDREN", "NO_OF_KILOMETRES_WITH_PASSENGER", "FLOP_TRIP_AMOUNT", "IS_CONNECTED_TO_CENTRAL", "ID_FOR_PROFIT_AND_LOSS_ACCOUNT", "DESCRIPTION_PROFIT_AND_LOSS_ACCOUNT", "MUNICIPALITY_NUMBER", "OPENING_BALANCE", "PROFIT_SALES_WITHDRAWAL_OTHER_REALIZATIONS", "LOSS_SALES_WITHDRAWAL_OTHER_REALIZATIONS", "PROFIT_REALIZATIONS_LIVESTOCK", "VALUE_ACQUIRED_PROFIT_AND_LOSS_ACCOUNT", "VALUE_REALIZED_PROFIT_AND_LOSS_ACCOUNT", "ANNUAL_INCOME_RECOGNITION_OR_DEDUCTION_BASIS", "PERCENTAGE_PROFIT_AND_LOSS_ACCOUNT", "ANNUAL_INCOME_RECOGNITION", "ANNUAL_DEDUCTION", "CLOSING_BALANCE", "IS_REGARDING_REALIZATION_SEPARATED_PLOT_AGRICULTURE_OR_FORESTRY", "IS_REGARDING_REALIZATION_WHOLE_AGRICULTURE_OR_FORESTRY_BUSINESS", "PROFIT_AND_LOSS_DEPARTMENT", "ID_FOR_ACCOMMODATION_AND_RESTAURANT", "COVER_CHARGE_SUBJECT_TO_VAT", "COVER_CHARGE_NOT_SUBJECT_TO_VAT", "COVER_CHARGE", "DESCRIPTION_ACCOMMODATION_AND_RESTAURANT", "MUST_BE_CONFIRMED_BY_AUDITOR", "PRODUCT_TYPE", "OPENING_STOCK", "CLOSING_STOCK", "PURCHASE_OF_GOODS", "COST_OF_GOODS_SOLD", "SALES_REVENUE_AND_WITHDRAWALS", "SALES_REVENUE_IN_CASH", "CASH_REGISTER_SYSTEM_YEAR_OF_INITIAL_REGISTRATION", "CASH_REGISTER_SYSTEM_TYPE", "WITHDRAWAL_OF_PRODUCTS_VALUED_AT_TURNOVER", "PRIVATE_WITHDRAWAL_ENTERED_ON_PRIVATE_ACCOUNT", "TOTAL_WITHDRAWAL_PRODUCTS_ENTERED_AS_SALES_REVENUE", "WITHDRAWAL_COST_FOR_ENTERTAINMENT", "WITHDRAWAL_VALUE_VALUED_AT_MARKET_VALUE", "MARKUP_WITHDRAWAL_COST_FOR_ENTERTAINMENT", "TOTAL_WITHDRAWAL_COST_FOR_ENTERTAINMENT", "OPENING_BALANCE_CREDIT_SALES", "CLOSING_BALANCE_CREDIT_SALES", "OPENING_BALANCE_WRITE_DOWN_NEW_COMPANY", "CLOSING_BALANCE_WRITE_DOWN_NEW_COMPANY", "SALARY_AND_PENSION_EXPENSES_ACCOUNT_ID", "SALARY_AND_PENSION_EXPENSES_ACCOUNT_ADDITION", "SALARY_AND_PENSION_EXPENSES_ACCOUNT_DEDUCTION", "SALARY_AND_PENSION_EXPENSES_ACCOUNT_REPORTED_BENEFIT", "SALARY_AND_PENSION_EXPENSES_MANUAL_FILLING", "EMPLOYERS_PAYMENT_OF_SUBSIDY", "TOTAL_AMOUNT_CREDITED_TO_NATURAL_BENEFITS", "BASIS_FOR_INCREASED_EMPLOYERS_TAX", "SALARY_AND_PENSION_EXPENSES_MANUAL_ACCOUNT_DESCRIPTION", "SALARY_AND_PENSION_EXPENSES_MANUAL_ACCOUNT_EXPENSED_BENEFIT", "OPENING_BALANCE_RAW_MATERIAL_AND_SEMI_FINISHED_PRODUCTS", "CLOSING_BALANCE_RAW_MATERIAL_AND_SEMI_FINISHED_PRODUCTS", "OPENING_BALANCE_PRODUCT_UNDER_MANUFACTURING", "CLOSING_BALANCE_PRODUCT_UNDER_MANUFACTURING", "OPENING_BALANCE_INVENTORIES_FINISHED_ITEM", "CLOSING_BALANCE_INVENTORIES_FINISHED_ITEM", "OPENING_BALANCE_PURCHASED_ITEM_FOR_RESALE", "CLOSING_BALANCE_PURCHASED_ITEM_FOR_RESALE", "OPENING_BALANCE_SELF_PRODUCED_PRODUCT_OWN_PRODUCTUION", "CLOSING_BALANCE_SELF_PRODUCED_PRODUCT_OWN_PRODUCTUION", "OPENING_BALANCE_LIVESTOCK", "CLOSING_BALANCE_LIVESTOCK", "ACCOUNT_INVENTORY_BALANCE_ACCOUNT_ID", "ACCOUNT_INVENTORY_BALANCE_DEPARTMENT_ID", "ACCOUNT_INVENTORY_BALANCE_UNIT_RATE", "ACCOUNT_INVENTORY_BALANCE_BALANCE_OUT_QUANTITY", "ACCOUNT_INVENTORY_BALANCE_BALANCE_OUT", "TANGIBLE_FIXED_ASSETS_TYPE", "OPENING_BALANCE_TANGIBLE_FIXED_ASSETS", "TAX_DEPRECIATION_PERCENTAGE", "STRAIGHT_LINE_DEPRECIATION", "PROFIT_TRANSFERRED_TO_PROFIT_AND_LOSS_ACCOUNT", "LOSS_TRANSFERRED_TO_PROFIT_AND_LOSS_ACCOUNT", "ACQUISITION_COST", "LIFETIME", "ACQUISITION_DATE", "REALISATION_DATE", "IS_COMMERCIAL_BUILDING_ACQUIRED_BEFORE_1984", "HISTORICAL_COST_PRICE", "WRITTEN_DOWN_VALUE_PR_01011984", "LOWER_LIMIT_DEPRECIATION", "IS_PHYSICAL_OPERATING_ASSETS_IN_BALANCE_SHEET", "FACILITY_TYPE", "DEPRECIATION_PERCENTAGE", "CASH_DEPOSITS", "CONTRIBUTIONS_IN_KIND", "CAPITAL_REDUCTION_DISTRIBUTED_SHARED_CAPITAL_CASH", "CAPITAL_REDUCTION_DISTRIBUTED_SHARED_CAPITAL_OTHER_ASSETS", "DEBT_WAVING", "BUYING_OWN_SHARES", "SELLING_OWN_SHARES", "DEBT_CONVERSION_TO_EQUITY", "POSITIVE_DIFF_BETWEEN_ALLOCATED_AND_DISTRIBUTED_DIVIDEND", "NEGATIVE_DIFF_BETWEEN_ALLOCATED_AND_DISTRIBUTED_DIVIDEND", "OTHER_NEGATIVE_CHANGE_IN_EQUITY", "LATE_PAYMENT", "OTHER_INTEREST_INCOME", "OTHER_INTEREST_EXPENSE", "INCOME_FROM_OTHER_INVESTMENTS_AND_DIVIDENDS", "PROFIT_ON_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "LOSS_ON_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "PRIVATE_ACCOUNT", "DEDUCTIBLE_COST_OF_USING_A_PRIVATE_CAR", "OTHER_TAX_FREE_INCOME", "OTHERNON_DEDUCTIBLECOST", "TAX_FREE_PROFIT_FROM_THE_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "NON_DEDUCTIBLE_LOSS_ON_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "TAX_FREE_PART_OF_DIVIDENDS_AND_DISTRIBUTIONS", "RETURN_OF_PROFITS_TO_ISDF", "RETURN_OF_DEFICIT_TO_ISDF", "CASH_PAYMENT", "WITHDRAWAL_OF_ASSETS_AND_SERVICES", "OTHER_WITHDRAWALS_AND_DISTRIBUTIONS", "OTHER_POSTIVE_CHANGE_IN_EQUITY", "OTHER_POSITIVE_CHANGE_IN_EQUITY", "NONE_DEDUCTIBLE_COST", "POSITIVE_TAX_COST", "INTEREST_EXPENSE_FIXED_TAX", "SHARE_OF_LOSS_FROM_INVESTMENT", "REVERSAL_OF_IMPAIRMENT", "ACCOUNTING_IMPAIRMENT", "ACCOUNTING_LOSS", "ACCOUNTING_DEFICIT_NORWEGIAN_SDF", "ACCOUNTING_DEFICIT_FOREIGN_SDF", "ACCOUNTING_LOSS_NORWEGIAN_SDF", "ACCOUNTING_LOSS_FOREIGN_SDF", "RETURNED_DEBT_INTEREST", "TAXABLE_PROFIT_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "TAXABLE_DIVIDEND_ON_SHARES", "TAXABLE_PART_OF_DIVIDEND_AND_DISTRIBUTION", "SHARE_OF_TAXABLE_PROFIT_NORWEGIAN_SDF", "SHARE_OF_TAXABLE_PROFIT_FOREIGN_SDF", "TAXABLE_PROFIT_REALIZATION_OF_NORWEGIAN_SDF", "TAXABLE_PROFIT_REALIZATION_OF_FOREIGN_SDF", "ADDITION_INTEREST_COST", "CORRECTION_PURPOSED_DIVIDEND", "TAXABLE_PROFIT_WITHDRAWAL_NORWEGIAN_TAX_AREA", "INCOME_SUPPLEMENT_FOR_CONVERSION_DIFFERENCE", "OTHER_INCOME_SUPPLEMENT", "RETURN_OF_INCOME_RELATED_DIVIDENDS", "PROFIT_AND_LOSS_GROUP_CONTRIBUTION", "ACCOUNTING_PROFIT_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "ACCOUNTING_PROFIT_SHARE_NORWEGIAN_SDF", "ACCOUNTING_PROFIT_SHARE_FOREIGN_SDF", "ACCOUNTING_GAIN_NORWEGIAN_SDF", "ACCOUNTING_GAIN_FOREIGN_SDF", "DEDUCTIBLE_LOSS_ON_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "SHARE_OF_DEDUCTIBLE_DEFICIT_NORWEGIAN_SDF", "SHARE_OF_DEDUCTIBLE_DEFICIT_FOREIGN_SDF", "DEDUCTIBLE_LOSS_ON_REALIZATION_NORWEGIAN_SDF", "DEDUCTIBLE_LOSS_ON_REALIZATION_FOREIGN_SDF", "DEDUCTIBLE_LOSS_ON_WITHDRAWAL_NORWEGIAN_TAX_AREA", "ISSUE_AND_ESTABLISHMENT_COST", "INCOME_DEDUCTION_FROM_ACCOUNTING_CURRENCY_TO_NOK", "OTHER_INCOME_DEDUCTION", "INCOME_ACCOUNT_DEFERRED_INCOME", "RETURN_VALUE_REDUCTION_COMPANY_PORTFOLIO", "INCOME_RECOGNITION_PARAGRAPH_10_TRANSACTIONS", "STANDARD_PRICE_ADDITION", "INTEREST_EXPENSE_IN_INCOME_STATEMENT", "INCOME_SUPPLEMENT_PRIVATE_USE_COMMERCIAL_VEHICLE", "INTEREST_INCOME_IN_INCOME_STATEMENT", "RETURN_VALUE_ADDITIONS_COMPANY_PORTFOLIO", "NOT_DEDUCTIBLE_COSTS_AND_LOSS_PETROLEUM_ABROAD", "TEMPLATE_DEDUCTION_TAXABLE_INCOME", "COST_ACCOUNTING_PARAGRAPH_10_TRANSACTIONS", "STANDARD_PRICE_DEDUCTION", "TAX_RETURN_DEDUCTIONS_FOU", "EXEMPT_INCOME_ACCORDINT_TO_PETROLEUM_TAX_LAW", "TAX_FREE_INCOME_RELATED_TO_EXTRACTION_PETROLEUM_ABROAD", "OWN_SICKNESS_BENEFITS_AS_INCOME_IN_ANNUAL_ACCOUNTS", "RETURN_ON_LIFE_INSURANCE_IN_ANNUAL_ACCOUNTS", "REVERSAL_OF_DEDUCTIONS_SCIENTIFIC_RESEARCH_AND_VOCATIONAL_TRAINING", "REVERSAL_INCREASE_VALUE_LINKED_TO_COMPANY_PORTFOLIO", "TEMPORARY_DIFFERENCES_TYPE", "OPENING_BALANCE_ACCOUNTABLE_VALUE", "CLOSING_BALANCE_ACCOUNTABLE_VALUE", "OPENING_BALANCE_TAX_VALUE", "CLOSING_BALANCE_TAX_VALUE", "OPENING_BALANCE_DIFFERENCES", "CLOSING_BALANCE_DIFFERENCES", "SHOW_PROFIT_AND_LOSS", "SHOW_ACCOMMODATION_AND_RESTAURANT", "IS_ACCOUNTABLE", "USE_ACCOUNTING_VALUES_IN_INVENTORIES", "USE_ACCOUNTING_VALUES_IN_CUSTOMER_RECEIVABLES", "SHOW_TANGIBLE_FIXED_ASSET", "SHOW_CAR", "SHOW_INVENTORIES", "SHOW_CUSTOMER_RECEIVABLES", "SHOW_CONCERN_RELATION", "OWN_BUSINESS_PROPERTIES", "OWN_ASSET_PAPER", "SHOW_SALARY_AND_PENSION_EXPENSES", "TRANSFERRED_BY", "TRANSFERRED_DATE", "IS_TAXABLE", "AUDITING_OBLIGATION", "VALIDATION_ONLY_ON_SUBMIT", "DATE_OF_DETERMINATION", "CONFIRMING_COMPANY_REPRESENTATIVE", "CONTACT_PERSON", "PARENT_COMPANY", "SMALL_ENTERPRISES", "PREPARED_BY_AUTHORIZED_ACCOUNTANT", "SERVICE_ASSISTANCE_USED", "ELECTRONIC_CASE_PROCESSING", "SUBMIT_WITHOUT_BUSINESS_SPECIFICATION", "SHOW_RESULT_AND_BALANCE_PREVIOUS_YEAR", "DATE_START", "DATE_END", "INCLUDE_PREVIOUS_YEAR_IN_RESULT", "DISTRIBUTE_INCOME_MODULE_INDUSTRY", "HIDE_TRANSFERRED_FROM_LAST_YEAR_NOTIFICATION", "RESEARCH_AND_DEVELOPMENT", "COMPANY_PARTICIPANT_ANS_DA", "CONTROLLED_TRANSACTION_AND_INBETWEEN", "LIMITATION_OF_DEDUCTION", "EXCEPTION_FOR_INTEREST_LIMITATION", "NUF_COMPANY_ID", "NUF_COMPANY_NAME", "NUF_COUNTRY_CODE", "TIMBER_ACCOUNT", "KLAGE_PAA_SKJOENNSFASTSETTING", "DEV_PILOT_TEST_ORG_NO", "HIDE_MOVE_AGRO_ACCOUNT_NUMBER_NOTIFICATION", "FOREST_FUND", "SUBMISSION_TO_LANDBRUKETS_DATAFLYT_DATE", "SUBMISSION_TO_LANDBRUKETS_DATAFLYT_BY", "SUBMISSION_TO_NIBIO_DATE", "SUBMISSION_TO_NIBIO_BY", "SHOW_ALL_POSTS_RESULT_AND_BALANCE", "REPORT_SIGNATURE_DATE", "REPORT_SIGNATURE_LOCATION", "REPORT_TOGGLE_DATE_LOCATION", "AGRICULTURAL_ACCOUNT", "AGRICULTURAL_ACCOUNT_USE_MULTIPLE_ACCOUNTS", "REPORT_SELECTED_STEP_FRONT_PAGE", "REPORT_SELECTED_STEP_CONTENT_TABLE", "REPORT_SELECTED_STEP_RESULT_AND_BALANCE", "REPORT_SELECTED_STEP_NOTES_FOR_SUBMISSION", "REPORT_SELECTED_STEP_NOTES_FOR_INTERNAL_USE", "REPORT_SELECTED_STEP_SIGNING", "YEAR_END_BRREG_DOC_ID", "YEAR_END_BRREG_DOC_FETCHER_NAME", "YEAR_END_DOCUMENTATION_ACCOMMODATION_AND_RESTAURANT", "YEAR_END_DOCUMENTATION_PROFIT_AND_LOSS_ACCOUNT", "YEAR_END_DOCUMENTATION_COMMERCIAL_VEHICLE", "YEAR_END_DOCUMENTATION_TANGIBLE_FIXED_ASSETS", "YEAR_END_DOCUMENTATION_INVENTORIES", "YEAR_END_DOCUMENTATION_ACCOUNTS_RECEIVABLE_FROM_CUSTOMERS", "YEAR_END_DOCUMENTATION_PROFIT_LOSS", "YEAR_END_DOCUMENTATION_BALANCE", "YEAR_END_DOCUMENTATION_PERSONAL_INCOME", "YEAR_END_DOCUMENTATION_PERMANENT_DIFFERENCES", "YEAR_END_DOCUMENTATION_TEMPORARY_DIFFERENCES", "YEAR_END_DOCUMENTATION_TAX_RELATED_RESULT", "YEAR_END_DOCUMENTATION_GROUP_CONTRIBUTIONS", "YEAR_END_DOCUMENTATION_EQUITY_RECONCILIATION", "YEAR_END_DOCUMENTATION_TAX_RETURN", "YEAR_END_DOCUMENTATION_DIVIDEND", "YEAR_END_DOCUMENTATION_DISPOSITIONS", "YEAR_END_DOCUMENTATION_PROPERTIES", "YEAR_END_DOCUMENTATION_SECURITIES", "YEAR_END_DOCUMENTATION_TAX_CALCULATION", "YEAR_END_DOCUMENTATION_AUDIT_REPORT", "YEAR_END_DOCUMENTATION_ANNUAL_REPORT", "YEAR_END_DOCUMENTATION_CASH_FLOW_STATEMENT", "YEAR_END_DOCUMENTATION_ANNEXES_TO_THE_ANNUAL_ACCOUNTS", "YEAR_END_DOCUMENTATION_SALARY_AND_PENSION_EXPENSES", "YEAR_END_DOCUMENTATION_COOPERATIVE_ENTERPRISE", "YEAR_END_DOCUMENTATION_OTHER_CIRCUMSTANCES", "YEAR_END_DOCUMENTATION_TIMBER_ACCOUNT", "YEAR_END_DOCUMENTATION_PARTICIPANT_ASSESSMENT", "YEAR_END_DOCUMENTATION_RESEARCH_AND_DEVELOPMENT", "YEAR_END_DOCUMENTATION_COMPANY_TAX_RETURN", "YEAR_END_DOCUMENTATION_PARTICIPANTS_TASK", "YEAR_END_DOCUMENTATION_CONTROLLED_TRANSACTIONS", "YEAR_END_DOCUMENTATION_LIMITATION_OF_DEDUCTION", "YEAR_END_DOCUMENTATION_SKJOENNSFASTSETTING", "YEAR_END_DOCUMENTATION_SKJOENNSFASTSETTING_ALTINN_ID", "YEAR_END_DOCUMENTATION_FOREST_FUND", "YEAR_END_DOCUMENTATION_ATTACHMENT_CATEGORY", "YEAR_END_DOCUMENTATION_DISTRIBUTE_CAPITAL_DEBT_WITH_SPOUSE", "YEAR_END_DOCUMENTATION_REINDEER_HUSBANDRY", "YEAR_END_DOCUMENT_SELECTED", "YEAR_END_DOCUMENTATION_ANNUALACCOUNTS_REPORT_GENERATED", "YEAR_END_DOCUMENTATION_AGRICULTURAL_ACCOUNT", "RECEIVER_ORG_NR", "RECEIVER_NAME", "CONCERN_CONNECTION", "VOTING_LIMIT", "DATE_OF_ACQUISITION", "RECEIVED_GROUP_CONTRIBUTIONS_WITH_TAX_AFFECTION", "RECEIVED_GROUP_CONTRIBUTIONS_WITHOUT_TAX_AFFECTION", "SUBMITTED_GROUP_CONTRIBUTIONS_WITH_TAX_AFFECTION", "SUBMITTED_GROUP_CONTRIBUTIONS_WITHOUT_TAX_AFFECTION", "RECEIVED_GROUP_CONTRIBUTIONS_FOREIGN_COMPANY_WITH_TAX_AFFECTION", "SUBMITTED_GROUP_CONTRIBUTIONS_FOREIGN_COMPANY_WITH_TAX_AFFECTION", "APPLICATION_OF_LOSS_CARRY_FORWARDS", "ACCUMULATED_LOSS_FROM_PREVIOUS_YEARS", "CORRECTIONS_AND_OTHER_CAPITAL", "CORRECTIONS_AND_OTHER_DEBT", "NUMBER_OF_SHARES", "TOTAL_SHARE_CAPITAL", "IS_PART_OF_GROUP_COMPANY", "IS_LISTED_ON_THE_STOCK_EXCHANGE", "IS_REORGANIZED_ACROSS_BORDERS", "HAS_RECEIVED_OR_TRANSFERRED_ASSETS", "HEAD_OF_GROUP_NAME", "HEAD_OF_GROUP_COUNTRY_CODE", "HEAD_OF_GROUP_LAST_YEAR_NAME", "HEAD_OF_GROUP_LAST_YEAR_COUNTRY_CODE", "FOREIGN_OWNERSHIP_COMPANY_NAME", "FOREIGN_OWNERSHIP_COMPANY_COUNTRY_CODE", "OWNS_MIN_50_PERCENT_OF_FOREIGN_COMPANY", "HAS_PERMANENT_ESTABLISHMENT_ABROAD", "COUNTRY_FOR_COUNTRY_REPORTABLE_ENTERPRISE_NAME", "COUNTRY_FOR_COUNTRY_REPORTABLE_ENTERPRISE_COUNTRY_CODE", "HAS_PERFORMANCE_BETWEEN_SHAREHOLDERS_AND_OTHER", "HAS_OUTSTANDING_PAYMENT_CLAIMS_RELATED_TO_ILLEGAL_STATE_AID", "IS_SMALL_OR_MEDIUM_SIZED_BUSINESS", "HAD_FINANCIAL_DIFFICULTIES_LAST_YEAR", "IS_GROUP_COMPANY", "HAS_RECEIVED_OTHER_PUBLIC_SUPPORT", "TAXABLE_VALUE_ON_OTHER_ASSETS", "ADDITIONS_NON_DEDUCTIBLE_LATE_PAYMENT", "SALES_WITH_MEMBERS_IN_OWN_COOPERATIVE", "RETROACTIVE_PAYMENT_MEMBERS_IN_OWN_COOPERATIVE", "CARRIED_FORWARD_DEDUCTION_LIMIT_LATE_PAYMENT_PREV_YEAR", "CARRY_FORWARD_DEDUCTION_LIMIT_LATE_PAYMENT", "TAXABLE_VALUE_ON_FORESTRY", "REINSTATED_LOSS_FROM_PRELIMINARY_ASSESSMENT_IN_LATER_YEARS", "HEAD_OF_GROUP_IDENTIFIER", "HEAD_OF_GROUP_LAST_YEAR_IDENTIFIER", "COUNTRY_FOR_COUNTRY_REPORTABLE_ENTERPRISE_IDENTIFIER", "NORWEGIAN_HEAD_OF_GROUP_NAME", "NORWEGIAN_HEAD_OF_GROUP_IDENTIFIER", "NORWEGIAN_HEAD_OF_GROUP_COUNTRY_CODE", "SHARE_OF_LOSS_OFFSET_AGAINST_PROFIT_TWO_PRECEDING_YEARS", "AID_SCHEME_TONNAGE_TAX_REGIME", "AID_SCHEME_RULES_FOR_ELECTRIC_DELIVERY_TRUCKS", "AID_SCHEME_FOR_LONG_TERM_INVESTMENTS", "AID_SCHEME_EMPLOYMENT_RELATED_OPTIONS_START_UP", "AID_SCHEME_TAX_FUN", "AID_SCHEME_FAVOURABLE_DEPRECIATION_RULES", "AID_SCHEME_REGIONALLY_DIFFERENTIATED_INSURANCE_CONTRIBUTIONS", "AID_SCHEME_FAVOURABLE_DETERMINED_LIST_PRICES_ELECTRIC_VEHICLES", "AID_SCHEME_VAT_EXEMPTION_TURNOVER_ELECTRIC_CARS", "AID_SCHEME_VAT_EXEMPTION_LEASING_ELECTRIC_CARS", "AID_SCHEME_VAT_EXEMPTION_TURNOVER_BATTERIES", "AID_SCHEME_VAT_EXEMPTION_TURNOVER_ELECTRIC_NEWS", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_INDUSTRIAL_SECTOR", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_DISTRICT_HEATING", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_TARGET_ZONE", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_DATA_CENTRES", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_COMMERCIAL_VESSELS", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_ENERGY_PRODUCTS", "AID_SCHEME_REDUCED_BASIC_TAX_MINERAL_OIL_WOOD_INDUSTRY", "AID_SCHEME_REDUCED_BASIC_TAX_MINERAL_OIL_PIGMENT_INDUSTRY", "AID_SCHEME_EXEMPTION_CO2_TAX_MINERAL_OIL", "AID_SCHEME_EXEMPTION_CO2_TAX_GAS", "AID_SCHEME_EXEMPTION_NOX_DUTY", "AID_SCHEME_EXEMPTION_TRANSFER_FEE", "AID_SCHEME_REDUCED_ROAD_TRAFFIC_INSURANCE_TAX", "OTHER_CORRECTIONS", "DEFERRED_TAX_ASSETS_IN_BALANCE", "SHARES_AND_SECURITIES_NAME", "SHARES_AND_SECURITIES_STOCK_TYPE", "SHARES_AND_SECURITIES_VAT_NUMBER", "SHARES_AND_SECURITIES_ISIN", "SHARES_AND_SECURITIES_COUNTRY_CODE", "SHARES_AND_SECURITIES_SHARE_CLASS", "SHARES_AND_SECURITIES_SHARES_BY_THE_START_OF_THE_YEAR", "SHARES_AND_SECURITIES_SHARES_BY_THE_END_OF_THE_YEAR", "SHARES_AND_SECURITIES_VALUE", "SHARES_AND_SECURITIES_TOTAL_VALUE", "SHARES_AND_SECURITIES_DIVIDEND", "SHARES_AND_SECURITIES_INTEREST_INCOME", "SHARES_AND_SECURITIES_PROFIT_REALISATION", "SHARES_AND_SECURITIES_LOSS_REALISATION", "SHARES_AND_SECURITIES_PROFIT_INTEREST", "SHARES_AND_SECURITIES_LOSS_INTEREST", "SHARES_AND_SECURITIES_EXEMPTION_METHOD", "SHARES_AND_SECURITIES_FINANCIAL_PRODUCT", "REAL_ESTATE_TYPE", "REAL_ESTATE_DESCRIPTION", "COMMERCIAL_PROPERTY_TYPE", "SHARE_OF_ASSET_VALUE", "INTERNAL_PROPERTY_IDENTIFIER", "ASSET_VALUE_FOR_ASSET_SHARE", "VALUE_BEFORE_VALUATION_DISCOUNT_ASSET_SHARE", "TOTAL_AREA", "CALCULATED_RENTAL_VALUE", "CALCULATED_VALUE_IS_OUTDATED", "REAL_ESTATE_SERG_NO", "REAL_ESTATE_ADDRESS", "REAL_ESTATE_ZIP_CODE", "REAL_ESTATE_POSTAL_PLACE_NAME", "REAL_ESTATE_COUNTRY_CODE", "REAL_ESTATE_MUNICIPALITY_NO", "REAL_ESTATE_MUNICIPALITY_NAME", "REAL_ESTATE_CADASTRAL_UNIT_NO", "REAL_ESTATE_PROPERTY_UNIT_NO", "REAL_ESTATE_LEASEHOLD_NO", "REAL_ESTATE_SECTION_NO", "REAL_ESTATE_OWNERSHIP_SHARE_PERCENTAGE", "REAL_ESTATE_PREV_YEAR_ASSET_VALUE", "REAL_ESTATE_EXPENSES_YEARLY", "REAL_ESTATE_EXPENSES_FARM_HOUSE_YEARLY", "REAL_ESTATE_EXPENSES_OTHER_PROPERTY_YEARLY", "REAL_ESTATE_DATE_DOCUMENTED", "REAL_ESTATE_MARKET_VALUE_MANUAL", "REAL_ESTATE_MARKET_VALUE_CALCULATED", "REAL_ESTATE_USE_VALUE_MARKET", "REAL_ESTATE_DWELLING_TYPE", "REAL_ESTATE_ASSOCIATION_OR_COOPERATIVE_DWELLING_OWNERSHIP_TYPE", "REAL_ESTATE_ASSOCIATION_OR_COOPERATIVE_DWELLING_OWNERSHIP_NAME", "REAL_ESTATE_ASSOCIATION_OR_COOPERATIVE_DWELLING_OWNERSHIP_ORG_NO", "REAL_ESTATE_ASSOCIATION_OR_COOPERATIVE_DWELLING_OWNERSHIP_SHARE_NO", "REAL_ESTATE_PRIMARY_SECONDARY_DWELLING_TYPE", "REAL_ESTATE_CONSTRUCTION_YEAR", "REAL_ESTATE_SELF_OWNED_OR_COOPERATIVE_DWELLING_CALCULATED_MARKET_VALUE", "REAL_ESTATE_RENTAL_AREA_TOTAL", "REAL_ESTATE_RENTAL_PERIOD_MONTHS", "REAL_ESTATE_RENTAL_INCOME_TOTAL_CALCULATED", "REAL_ESTATE_RENTAL_GROSS_ANNUAL_PREV_YEAR", "REAL_ESTATE_RENTAL_GROSS_ANNUAL_PRIOR_YEAR_TWO", "REAL_ESTATE_RENTAL_ASSET_VALUE_BASE", "REAL_ESTATE_RENTAL_GROSS_INCOME", "REAL_ESTATE_PREV_YEAR_ASSET_VALUE_MANUAL", "REAL_ESTATE_EXPENSES_YEARLY_MANUAL", "REAL_ESTATE_EXPENSES_FARM_HOUSE_YEARLY_MANUAL", "REAL_ESTATE_EXPENSES_OTHER_PROPERTY_YEARLY_MANUAL", "REAL_ESTATE_MULTI_UNIT_BUILDING_UNIT_ROW_ID", "REAL_ESTATE_MULTI_UNIT_BUILDING_UNIT_NO", "REAL_ESTATE_MULTI_UNIT_BUILDING_UNIT_AREA", "REAL_ESTATE_MULTI_UNIT_BUILDING_UNIT_CONSTRUCTION_YEAR", "REAL_ESTATE_MULTI_UNIT_BUILDING_UNIT_VALUE", "REAL_ESTATE_USE_INCREASED_CALCULATION_FACTOR", "YEARLY_DIVIDEND", "DIVIDEND_CREDIT", "DIVIDEND_SECURITY_OFFERED", "DIVIDEND_DISPOSITIONS", "PARTICIPANT_NAME", "PARTICIPANT_NUMBER", "PARTICIPANT_OWNERSHIP", "PARTICIPANT_REPORT_DISTRIBUTION_CASH_DISBURSEMENT_FROM_COMPANY", "PARTICIPANT_REPORT_DISTRIBUTION_VALUE_OF_ASSETS_OR_SERVICE_WITHDRAWN", "PARTICIPANT_REPORT_DISTRIBUTION_CAPITAL_REIMBURSEMENT", "PARTICIPANT_REPORT_SHIELDING_BASIS_OTHER_INITIAL_VALUE_CORRECTION", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_UNUSED_SHIELDING_FROM_PREVIOUS_YEAR", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_CORRECTION_FOR_INHERITANCE_OR_GIFT_IN_INCOME_YEAR", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_TRANSFERRED_SHIELDING_DEDUCTION_FROM_PREVIOUS_YEARS", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_TRANSFERRED_SHIELDING_DEDUCTION", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_OTHER_CORRECTION", "PARTICIPANT_REPORT_ADDITIONS_TO_ORDINARY_INCOME_OTHER_CORRECTION", "PARTICIPANT_REPORT_TAX_BASIS_SPECIFICATION_SHARE_OF_TAXABLE_EQUITY_AT_BEGINNING_OF_YEAR", "PARTICIPANT_REPORT_TAX_BASIS_SPECIFICATION_DEPOSIT", "PARTICIPANT_REPORT_TAX_BASIS_SPECIFICATION_OTHER_CORRECTION", "PARTICIPANT_REPORT_SHARES_REALIZED_OR_ACQUIRED", "PARTICIPANT_REPORT_PAID_IN_SHARE_OF_TAXABLE_EQUITY_AS_OF_BEGINNING_OF_YEAR", "PARTICIPANT_REPORT_PAID_IN_ACQUISITION_OF_SHARE", "PARTICIPANT_REPORT_PAID_IN_DISPOSAL_OF_SHARE", "PARTICIPANT_REPORT_PAID_IN_OTHER_CORRECTION", "PARTICIPANT_REPORT_RETAINED_EARNINGS_SHARE_OF_TAXABLE_EQUITY_AS_OF_BEGINNING_OF_YEAR", "PARTICIPANT_REPORT_RETAINED_EARNINGS_ACQUISITION_OF_SHARE", "PARTICIPANT_REPORT_RETAINED_EARNINGS_DISPOSAL_OF_SHARE", "PARTICIPANT_REPORT_RETAINED_EARNINGS_TAX_RESULT", "PARTICIPANT_REPORT_RETAINED_EARNINGS_TAX_FREE_INCOME", "PARTICIPANT_REPORT_RETAINED_EARNINGS_OTHER_CORRECTION", "PARTICIPANT_REPORT_RETAINED_EARNINGS_NON_DEDUCTIBLE_EXPENSES", "PARTICIPANT_REPORT_COMPENSATION_FOR_WORK_IN_OTHER_INDUSTRIES_INCLUDING_AGRICULTURE", "PARTICIPANT_REPORT_COMPENSATION_FOR_WORK_IN_FISHING_AND_HUNTING", "PARTICIPANT_REPORT_COMPENSATION_FOR_WORK_IN_FAMILY_KINDERGARTEN_AT_PARTICIPANTS_HOME", "PARTICIPANT_REPORT_AGRICULTURAL_DEDUCTION", "PARTICIPANT_REPORT_RENTAL_INCOME_FROM_AGRICULTURAL_OPERATIONS", "PARTICIPANT_REPORT_RESIDES_IN_NORDTROMS_OR_FINNMARK", "PARTICIPANT_DISPROPORTIONATE_DISTRIBUTION", "PARTICIPANT_DISPROPORTIONATE_DISTRIBUTION_SHARE_OF_RESULT", "PARTICIPANT_DISPROPORTIONATE_DISTRIBUTION_SHARE_OF_WEALTH", "PARTICIPANT_PRICE_MANAGEMENT_PRICING", "PARTICIPANT_PRICE_MANAGEMENT_REALIZED_SHARE_TAX_EQUITY", "PARTICIPANT_PRICE_MANAGEMENT_REALIZED_COST_PRICE", "PARTICIPANT_PRICE_MANAGEMENT_REALIZED_SHARE_OF_PRICE_ADJUSTMENT", "PARTICIPANT_PRICE_MANAGEMENT_ACCUMULATED_ADJUSTMENTS", "PARTICIPANT_ASSESSMENT_REPORT_COMPANY_NAME", "PARTICIPANT_ASSESSMENT_REPORT_ORG_NUMBER", "PARTICIPANT_ASSESSMENT_REPORT_MUNICIPALITY_ID", "PARTICIPANT_ASSESSMENT_REPORT_COUNTRY_CODE", "PARTICIPANT_ASSESSMENT_REPORT_VALUE_BEFORE_APPRECIATION_FOR_NET_ASSETS", "PARTICIPANT_ASSESSMENT_REPORT_DEBT", "PARTICIPANT_ASSESSMENT_REPORT_ORDINARY_INCOME", "PARTICIPANT_ASSESSMENT_REPORT_LOSS", "PARTICIPANT_ASSESSMENT_REPORT_PAYMENT_TO_PARTICIPANT", "PARTICIPANT_ASSESSMENT_REPORT_GAIN_ON_REALIZATION_OF_SHARE", "PARTICIPANT_ASSESSMENT_REPORT_LOSS_ON_REALIZATION_OF_SHARE", "PARTICIPANT_REPORT_ROE_TRANSFER_TYPE", "PARTICIPANT_REPORT_ROE_NAME", "PARTICIPANT_REPORT_ROE_IDENTIFICATION", "PARTICIPANT_REPORT_ROE_TRANSACTION_TYPE", "PARTICIPANT_REPORT_ROE_TIME", "PARTICIPANT_REPORT_ROE_AMOUNT", "PARTICIPANT_REPORT_ROE_REMUNERATION", "PARTICIPANT_REPORT_ROE_COSTS", "PARTICIPANT_REPORT_ROE_ADDITION_NON_DEDUCTIBLE_LOSS", "PARTICIPANT_REPORT_ROE_UNUSED_SHIELDING_PREVIOUS_YEARS", "PARTICIPANT_REPORT_ROE_OTHER_CORRECTIONS", "PARTICIPANT_REPORT_ROE_GAIN_LOSS_REALIZATION", "PARTICIPANT_REPORT_ROE_IS_COVERED_EXEMPTION_METHOD", "PARTICIPANT_REPORT_ROE_ACQUIRED_INITIAL_VALUE", "PARTICIPANT_REPORT_ROE_PRICE", "PARTICIPANT_REPORT_TAX_BASIS_SPECIFICATION_REALIZATION_OF_SHARE_VALUE", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_OFFSET_AGAINST_REALIZATION_GAIN", "PARTICIPANT_REPORT_SHIELDING_BASIS_REDUCTION_OF_USED_SHIELDING_DUE_TO_REALIZATION", "PARTICIPANT_REPORT_TAX_BASIS_SPECIFICATION_ACQUISITION_OF_SHARE_VALUE", "YEAR_END_ATTACHMENT_TOGGLE_ENABLED", "COOPERATIVE_ENTERPRISE_TAXABLE_BUSINESS_INCOME", "COOPERATIVE_ENTERPRISE_FROM_SALES_INVOLVING_MEMBER", "COOPERATIVE_ENTERPRISE_SALES_INVOLVING_MEMBER_SEPARATE", "COOPERATIVE_ENTERPRISE_SALES_INVOLVING_MEMBER_ANOTHER", "COOPERATIVE_ENTERPRISE_OTHER_SALES", "COOPERATIVE_ENTERPRISE_RETROACTIVE_PAYMENT_ETC_SEPARATE", "COOPERATIVE_ENTERPRISE_RETROACTIVE_PAYMENT_ETC_OTHER", "COOPERATIVE_ENTERPRISE_CONDITIONS_FOR_DEDUCTION_RETROACTIVE_PAYMENT_ARE_MET", "COOPERATIVE_ENTERPRISE_PURCHASE_INVOLVING_MEMBER_SEPARATE", "COOPERATIVE_ENTERPRISE_PURCHASE_INVOLVING_MEMBER_ANOTHER", "COOPERATIVE_ENTERPRISE_OTHER_PURCHASES", "COOPERATIVE_ENTERPRISE_DECIDED_PAID_BACK_PAYMENT", "COOPERATIVE_ENTERPRISE_CARRY_FORWARD_DEDUCTION_THIS_YEAR", "COOPERATIVE_ENTERPRISE_DECIDED_ALLOCATED_PROFIT", "COOPERATIVE_ENTERPRISE_COOPERATIVE_TYPE", "COOPERATIVE_ENTERPRISE_DEDUCTION_LIMIT_INCOME_YEAR", "COOPERATIVE_ENTERPRISE_DEDUCTION_LIMIT_PREVIOUS_YEAR", "OTHER_CIRCUMSTANCES_TOTAL_DISTRIBUTED_DIVIDEND", "OTHER_CIRCUMSTANCES_INTEREST_ON_EQUITY_CERTIFICATE", "OTHER_CIRCUMSTANCES_COMPANY_HAS_GRANTED_LOAN", "OTHER_CIRCUMSTANCES_SHAREHOLDER_HAS_GRANTED_LOAN", "OTHER_CIRCUMSTANCES_LOAN_AMOUNT_TO_SHAREHOLDER", "OTHER_CIRCUMSTANCES_LOAN_AMOUNT_TO_COMPANY", "OTHER_CIRCUMSTANCES_INTEREST_RECOGNISED_AS_INCOME", "OTHER_CIRCUMSTANCES_INTEREST_RECOGNISED_AS_EXPENSES", "OTHER_CIRCUMSTANCES_LOAN_BALANCE", "OTHER_CIRCUMSTANCES_COLLATERAL_AMOUNT", "OTHER_CIRCUMSTANCES_COLLATERAL_AMOUNT_INCOME_YEAR_TO_COMPANY", "OTHER_CIRCUMSTANCES_COLLATERAL_AMOUNT_INCOME_YEAR_TO_SHAREHOLDER", "OTHER_CIRCUMSTANCES_RENTAL_WITHDRAWAL_SALE_GRANTED", "OTHER_CIRCUMSTANCES_RENTAL_SALE_GRANTED", "OTHER_CIRCUMSTANCES_ASSET_TYPE", "OTHER_CIRCUMSTANCES_PRICING_METHOD", "OTHER_CIRCUMSTANCES_RENTAL_VALUE", "OTHER_CIRCUMSTANCES_VALUE_OF_SALE_OR_WITHDRAWAL", "RESEARCH_AND_DEVELOPMENT_PROJECT_NUMBER", "RESEARCH_AND_DEVELOPMENT_PROJECT_TITLE", "RESEARCH_AND_DEVELOPMENT_PROJECT_CATEGORY", "RESEARCH_AND_DEVELOPMENT_APPLICATION_APPROVED_DATE", "RESEARCH_AND_DEVELOPMENT_PROJECT_START_DATE", "RESEARCH_AND_DEVELOPMENT_PROJECT_END_DATE", "RESEARCH_AND_DEVELOPMENT_APPROVED_RND_INCENTIVE_START_YEAR", "RESEARCH_AND_DEVELOPMENT_APPROVED_RND_INCENTIVE_END_YEAR", "RESEARCH_AND_DEVELOPMENT_PROJECT_STATUS", "RESEARCH_AND_DEVELOPMENT_PROJECT_STATUS_DATE", "RESEARCH_AND_DEVELOPMENT_BUSINESS_CATEGORY", "RESEARCH_AND_DEVELOPMENT_IS_COLLABORATIVE_PROJECT_WITH_OTHER_ENTERPRISES", "RESEARCH_AND_DEVELOPMENT_HAS_EXTENSIVE_DISSEMINATION_THROUGH_CONFERENCES_PUBLICATIONS_ETC", "RESEARCH_AND_DEVELOPMENT_TOTAL_COSTS_PREVIOUS_YEARS", "RESEARCH_AND_DEVELOPMENT_TOTAL_GROSS_TAX_DEDUCTION_FROM_PREVIOUS_YEARS", "RESEARCH_AND_DEVELOPMENT_TOTAL_GROSS_TAX_DEDUCTION_FROM_INCOME_YEAR", "RESEARCH_AND_DEVELOPMENT_INCLUDED_PERSONNEL_COSTS_IN_INCOME_YEAR", "RESEARCH_AND_DEVELOPMENT_NUMBER_OF_OWN_HOURS_IN_INCOME_YEAR", "RESEARCH_AND_DEVELOPMENT_PUBLIC_SUPPORT_AS_REDUCED_WORKER_FEE", "RESEARCH_AND_DEVELOPMENT_WAS_IN_ECONOMIC_DIFFICULTIES_AT_APPLICATION_TIME", "RESEARCH_AND_DEVELOPMENT_UNDERLYING_DOCUMENTS_USED_FOR_ASSESSMENT", "RESEARCH_AND_DEVELOPMENT_UNDERLYING_DOCUMENTATION_DATE", "RESEARCH_AND_DEVELOPMENT_RESOLUTION_DATE", "RESEARCH_AND_DEVELOPMENT_RESOLUTION_TYPE", "RESEARCH_AND_DEVELOPMENT_RESOLUTION_DELIMITATION", "RESEARCH_AND_DEVELOPMENT_OTHER_PUBLIC_SUPPORT_PAYER_NAME", "RESEARCH_AND_DEVELOPMENT_OTHER_PUBLIC_SUPPORT_AMOUNT", "RESEARCH_AND_DEVELOPMENT_TOTAL_COSTS_EXCLUDED_FROM_TAX_DEDUCTION", "RESEARCH_AND_DEVELOPMENT_PROJECT_TO_BE_SIGNED_BY_AUDITOR", "RESEARCH_AND_DEVELOPMENT_STAKE_IN_COLLABORATIVE_PROJECT", "RESEARCH_AND_DEVELOPMENT_APPLIED_FOR_OTHER_PUBLIC_SUPPORT_IN_NORWAY", "RESEARCH_AND_DEVELOPMENT_WORK_PACKAGE_ID", "RESEARCH_AND_DEVELOPMENT_WORK_PACKAGE_TITLE", "RESEARCH_AND_DEVELOPMENT_WORK_PACKAGE_TOTAL_COST_FROM_PREVIOUS_YEAR", "RESEARCH_AND_DEVELOPMENT_WORK_PACKAGE_RECEIVED_PUBLIC_SUPPORT", "RESEARCH_AND_DEVELOPMENT_COLLABORATIVE_BUSINESS_ORG_NO", "RESEARCH_AND_DEVELOPMENT_COLLABORATIVE_BUSINESS_DESCRIPTION", "TIMBER_ACCOUNT_SHARE_OF_OPERATING_REVENUES_HUNTING_FISHING_ETC_MANUAL", "TIMBER_ACCOUNT_STANDARD_INCOME_FROM_BIOMASS_OR_WOOD_PRODUCTION_TRANSFERRED_AGRIGULTURE", "TIMBER_ACCOUNT_SHARE_OF_PROFIT_TO_REGISTER", "TIMBER_ACCOUNT_INCOMING_VALUE_FROM_AQUIRED_TIMBER_ACCOUNT", "TIMBER_ACCOUNT_VALUE_OF_SHARE_OF_REALIZED_TIMBER_ACCOUNT", "TIMBER_ACCOUNT_SHARE_OF_BASIS_NEXT_YEAR", "TIMBER_ACCOUNT_REMAINDER_NOT_TAXED_FELLING", "TIMBER_ACCOUNT_REMAINDER_INCLUDED_THIS_YEAR", "TIMBER_ACCOUNT_MUNICIPALITY_NO", "TIMBER_ACCOUNT_PAID_PUBLIC_CONTRIBUTION_FOREST_FUND", "TIMBER_ACCOUNT_SHARE_OF_OPERATING_REVENUES_HUNTING_FISHING_ETC", "CONTROLLED_TRANSACTIONS_EXEMPT_TRANSACTION_SHARING", "CONTROLLED_TRANSACTIONS_EXEMPT_PRICE_SHARING", "CONTROLLED_TRANSACTIONS_CONSOLIDATED_MARGIN_YEAR", "CONTROLLED_TRANSACTIONS_CONSOLIDATED_MARGIN_PERCENTAGE", "CONTROLLED_TRANSACTIONS_REPORTS_ONLY_PROVISION_INCOME", "CONTROLLED_TRANSACTIONS_COST_OF_IMMATERIAL_ASSETS", "CONTROLLED_TRANSACTIONS_NUMBER_OF_REGISTERED_PATENTS", "CONTROLLED_TRANSACTIONS_GROUP_HAS_BEEN_RESTRUCTURED", "CONTROLLED_TRANSACTIONS_COMPANY_HAS_SERVICED_OTHER_COMPANY_IN_GROUP_FOR_FREE", "CONTROLLED_TRANSACTIONS_COMPANY_IS_GUARANTOR_FOR_AGREEMENTS_BY_OTHER_COMPANIES_IN_SAME_GROUP", "CONTROLLED_TRANSACTIONS_RELATED_COMPANY_IDENTIFIER", "CONTROLLED_TRANSACTIONS_RELATED_COMPANY_NAME", "CONTROLLED_TRANSACTIONS_RELATED_COMPANY_COUNTRY", "CONTROLLED_TRANSACTIONS_FUNCTION_AND_RISK_FUNCTION_TYPE", "CONTROLLED_TRANSACTIONS_FUNCTION_AND_RISK_RISK_TYPE", "CONTROLLED_TRANSACTIONS_FUNCTION_AND_RISK_DESCRIPTION", "CONTROLLED_TRANSACTIONS_COMPANY_SPECIFICATION_COMPANY_IDENTIFIER", "CONTROLLED_TRANSACTIONS_COMPANY_SPECIFICATION_COMPANY_NAME", "CONTROLLED_TRANSACTIONS_COMPANY_SPECIFICATION_COMPANY_COUNTRY", "CONTROLLED_TRANSACTIONS_TRANSACTION_TYPE", "CONTROLLED_TRANSACTIONS_TRANSACTION_DESCRIPTION", "CONTROLLED_TRANSACTIONS_TRANSACTION_AMOUNT", "CONTROLLED_TRANSACTIONS_OUTSTANDING_ACCOUNT", "CONTROLLED_TRANSACTIONS_OUTSTANDING_AMOUNT", "CONTROLLED_TRANSACTIONS_OUTSTANDING_COUNTRY_CODE", "CONTROLLED_TRANSACTIONS_TRANSACTION_COUNTRY_CODE", "CONTROLLED_TRANSACTIONS_RESULT_AS_PERCENTAGE_OF_GROSS_REVENUE", "CONTROLLED_TRANSACTIONS_MAIN_BUSINESS_ACTIVITY", "CONTROLLED_TRANSACTIONS_NUMBER_OF_ENTITIES_WITH_CONTROLLED_TRANSACTIONS_IN_NORWAY", "CONTROLLED_TRANSACTIONS_NUMBER_OF_ENTITIES_WITH_CONTROLLED_TRANSACTIONS_OUTSIDE_NORWAY", "CONTROLLED_TRANSACTIONS_COMPANY_HAS_BEEN_SERVICED_BY_OTHER_COMPANY_IN_GROUP_FOR_FREE", "CONTROLLED_TRANSACTIONS_HAS_CONTROLLED_TRANSACTIONS_EXCEEDING_LIMIT", "CONTROLLED_TRANSACTIONS_IS_OBLIGED_TO_DOCUMENT", "INTEREST_LIMITATION_COMPANY_COMPLIANCE_WITH_INTEREST_LIMITATION", "INTEREST_LIMITATION_NET_INTEREST_COSTS_NORWEGIAN_GROUP_EXCEEDS_25MNOK", "INTEREST_LIMITATION_COMPANY_USES_EXCEPTION_RULE", "INTEREST_LIMITATION_GROUP_APEX_COMPANY_NAME", "INTEREST_LIMITATION_GROUP_APEX_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_GROUP_APEX_COUNTRY_CODE", "INTEREST_LIMITATION_NORWEGIAN_PART_OF_GROUP_REPORTED_ANOTHER_COMPANY", "INTEREST_LIMITATION_NORWEGIAN_PART_OF_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_NORWEGIAN_PART_OF_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_NORWEGIAN_PART_OF_GROUP_COUNTRY_CODE", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_CORRECTION_OF_INTEREST_EXPENSES", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_CORRECTION_OF_INTEREST_INCOME", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_GUARANTEE_COMMISSIONS_ON_DEBT", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_LOSS_ON_REALIZATION_OF_PREMIUM_DISCOUNT_BONDS", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_GAIN_ON_REALIZATION_OF_PREMIUM_DISCOUNT_BONDS", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_LOSS_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_COMPANIES_IN_SAME_GROUP_COSTS_FOR_GUARANTEE_COMMISSION", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_COMPANY_IN_SAME_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_COMPANY_IN_SAME_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_COMPANY_IN_SAME_GROUP_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_COMPANY_IN_SAME_GROUP_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_GROUP_GUARANTOR_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_GROUP_GUARANTOR_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_GROUP_GUARANTOR_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_GROUP_GUARANTOR_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_WITH_OUTSTANDING_CLAIM_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_WITH_OUTSTANDING_CLAIM_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_WITH_OUTSTANDING_CLAIM_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_WITH_OUTSTANDING_CLAIM_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANY_IN_SAME_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANY_IN_SAME_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANY_IN_SAME_GROUP_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANY_IN_SAME_GROUP_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANIES_IN_SAME_GROUP_LOSS_FOR_HOLDER_ON_REALIZATION_OF_PREMIUM_DISCOUNT_BOND", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANIES_IN_SAME_GROUP_GAIN_FOR_HOLDER_UPON_REALIZATION_OF_PREMIUM_DISCOUNT_BOND", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANIES_IN_SAME_GROUP_LOSS_FOR_HOLDER_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANIES_IN_SAME_GROUP_GAIN_FOR_HOLDER_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_GROUP_GUARANTOR_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_GROUP_GUARANTOR_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_GROUP_GUARANTOR_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_GROUP_GUARANTOR_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_WITH_OUTSTANDING_CLAIM_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_WITH_OUTSTANDING_CLAIM_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_WITH_OUTSTANDING_CLAIM_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_WITH_OUTSTANDING_CLAIM_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_COSTS_FOR_GUARANTEE_COMMISSION", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_LOSS_FOR_HOLDER_ON_REALIZATION_OF_PREMIUM_DISCOUNT_BOND", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_GAIN_FOR_HOLDER_UPON_REALIZATION_OF_PREMIUM_DISCOUNT_BOND", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_LOSS_FOR_HOLDER_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_GAIN_FOR_HOLDER_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_COMPANIES_INCLUDED_IN_NORWEGIAN_PART_OF_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_COMPANIES_INCLUDED_IN_NORWEGIAN_PART_OF_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_COMPANIES_INCLUDED_IN_NORWEGIAN_PART_OF_GROUP_NET_INTEREST_COST", "INTEREST_LIMITATION_COMPANIES_INCLUDED_IN_NORWEGIAN_PART_OF_GROUP_NET_DEDUCTIBLE_INTEREST_COST", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_GAIN_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_CALCULATION_OF_INTEREST_DEDUCTION_LIMIT_AMORTIZED_LEASE_COST", "INTEREST_LIMITATION_CALCULATION_OF_INTEREST_DEDUCTION_LIMIT_DEDUCTION_FOR_GROUP_CONTRIBUTIONS_NOT_INCLUDED_IN_CALCULATION_BASIS", "FORWARDING_DISALLOWED_INTEREST_DEDUCTION_INCOME_YEAR", "FORWARDING_DISALLOWED_INTEREST_DEDUCTION_CARRIED_FORWARD_FROM_PREVIOUS_YEAR", "INTEREST_LIMITATION_COMPANY_CARRIED_FORWARD_INTEREST_DEDUCTIONS_FROM_PREVIOUS_YEARS", "TAX_ASSESSMENT_NEGATIVE_PERSONAL_INCOME_PREVIOUS_YEAR_OWNER", "TAX_ASSESSMENT_NEGATIVE_PERSONAL_INCOME_PREVIOUS_YEAR_SPOUSE", "TAX_ASSESSMENT_COORDINATION_OTHER_PERSONAL_INCOME_OWNER", "TAX_ASSESSMENT_COORDINATION_OTHER_PERSONAL_INCOME_SPOUSE", "TAX_ASSESSMENT_COORDINATION_COORDINATION_GENERAL_PARTNERSHIP_OWNER", "TAX_ASSESSMENT_COORDINATION_COORDINATION_GENERAL_PARTNERSHIP_SPOUSE", "TAX_ASSESSMENT_SALARY_INCOME_OWNER", "TAX_ASSESSMENT_SALARY_INCOME_SPOUSE", "TAX_ASSESSMENT_SICK_PAYABLE_FISHING_ETC_OWNER", "TAX_ASSESSMENT_SICK_PAYABLE_FISHING_ETC_SPOUSE", "TAX_ASSESSMENT_SICK_PAYABLE_AGRICULTURE_OWNER", "TAX_ASSESSMENT_SICK_PAYABLE_AGRICULTURE_SPOUSE", "TAX_ASSESSMENT_SICK_PAYABLE_OTHER_OWNER", "TAX_ASSESSMENT_SICK_PAYABLE_OTHER_SPOUSE", "TAX_ASSESSMENT_OTHER_PENSIONABLE_INCOME_OWNER", "TAX_ASSESSMENT_OTHER_PENSIONABLE_INCOME_SPOUSE", "TAX_ASSESSMENT_CONDITIONS_ARE_SPECIAL_ALLOWANCE_AGRICULTURE_MET", "TAX_ASSESSMENT_SHARE_FROM_SDF", "REINDEER_HUSBANDRY", "REINDEER_HUSBANDRY_CAPITAL_COSTS_MINUS_CAPITAL_REVENUES", "REINDEER_HUSBANDRY_CORRECTED_BUSINESS_INCOME_TWO_YEARS_AGO", "REINDEER_HUSBANDRY_CORRECTED_BUSINESS_INCOME_ONE_YEAR_AGO", "REINDEER_HUSBANDRY_WITHDRAWAL", "REINDEER_HUSBANDRY_DEPOSIT", "AGRICULTURAL_ACCOUNT_DEPARTMENTS", "AGRICULTURAL_ACCOUNT_SHARE_OF_OPERATING_COSTS", "AGRICULTURAL_ACCOUNT_INCOME_FROM_BIOMASS_OR_WOOD_PRODUCTION", "AGRICULTURAL_ACCOUNT_OPERATIONAL_ENTITY", "AGRICULTURAL_ACCOUNT_MUNICIPALITY", "AGRICULTURAL_ACCOUNT_TRANSFER_TO_AGRICULTURAL_ACCOUNT", "AGRICULTURAL_ACCOUNT_INHERITED_UPON_INHERITANCE_GENERATIONAL_CHANGE", "AGRICULTURAL_ACCOUNT_REALIZED_UPON_INHERITANCE_GENERATIONAL_CHANGE", "AGRICULTURAL_ACCOUNT_SHARE_OF_BASIS_NEXT_YEAR", "AGRICULTURAL_ACCOUNT_SHARE_OF_OPERATING_COSTS_MANUAL", "AGRICULTURAL_ACCOUNT_OWN_CORRECTIONS_INCOME", "AGRICULTURAL_ACCOUNT_OWN_CORRECTIONS_INCOME_MANUAL" ] }, "postValue" : { "type" : "string" }, "documentName" : { "type" : "string" }, "uploaderName" : { "type" : "string" }, "attachmentCategory" : { "type" : "string" }, "selected" : { "type" : "boolean" }, "size" : { "type" : "integer", "format" : "int32" }, "date" : { "type" : "string" } } }, "ResponseWrapperListDocumentationGenericData" : { "type" : "object", "properties" : { "value" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/DocumentationGenericData" } } } }, "DownloadedBrreg" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "name" : { "type" : "string", "readOnly" : true }, "date" : { "type" : "string", "readOnly" : true }, "docId" : { "type" : "string", "readOnly" : true } } }, "ResponseWrapperDownloadedBrreg" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/DownloadedBrreg" } } }, "GroupContributions" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "sumExpenses" : { "type" : "number", "readOnly" : true }, "sumPaid" : { "type" : "number", "readOnly" : true }, "sumPaidWithTaxRelatedEffect" : { "type" : "number", "readOnly" : true }, "sumPaidWithoutTaxRelatedEffect" : { "type" : "number", "readOnly" : true }, "sumReceived" : { "type" : "number", "readOnly" : true }, "sumReceivedWithTaxRelatedEffect" : { "type" : "number", "readOnly" : true }, "sumReceivedWithoutTaxRelatedEffect" : { "type" : "number", "readOnly" : true }, "receivedGroupContribution" : { "type" : "number", "readOnly" : true }, "paidGroupContribution" : { "type" : "number", "readOnly" : true }, "accountedValue" : { "type" : "number", "readOnly" : true }, "groupedAccountedValue" : { "type" : "number", "readOnly" : true }, "amountToBePostedOnAccount" : { "type" : "number", "readOnly" : true }, "genericDataOverviews" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/GenericDataOverview" } } } }, "ResponseWrapperGroupContributions" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/GroupContributions" } } }, "InventoriesDetails" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "name" : { "type" : "string", "readOnly" : true }, "grouping" : { "type" : "string", "readOnly" : true }, "openingBalance" : { "type" : "number", "readOnly" : true }, "closingBalance" : { "type" : "number", "readOnly" : true }, "openingBalanceTaxValue" : { "type" : "number", "readOnly" : true }, "closingBalanceTaxValue" : { "type" : "number", "readOnly" : true }, "openingBalancePostType" : { "type" : "string", "readOnly" : true, "enum" : [ "REGISTRATION_NUMBER", "DESCRIPTION", "VEHICLE_TYPE", "YEAR_OF_INITIAL_REGISTRATION", "LIST_PRICE", "DATE_FROM", "DATE_TO", "LICENCE", "LICENCE_NUMBER", "IS_ELECTRONIC_VEHICLE_LOGBOOK_LOGGED", "NO_OF_KILOMETRES_TOTAL", "OPERATING_EXPENSES", "LEASING_RENT", "IS_COMPANY_VEHICLE_USED_PRIVATE", "NO_OF_KILOMETRES_PRIVATE", "DEPRECIATION_PRIVATE_USE", "REVERSED_VEHICLE_EXPENSES", "FUEL_COST", "MAINTENANCE_COST", "COST_OF_INSURANCE_AND_TAX", "CAR_DEPARTMENT", "NO_OF_LITER_FUEL", "TAXIMETER_TYPE", "INCOME_PERSONAL_TRANSPORT", "INCOME_GOODS_TRANSPORT", "DRIVING_INCOME_PAYED_IN_CASH", "DRIVING_INCOME_INVOICED_PUBLIC_AGENCIES", "TIP_PAYED_WITH_CARD_OR_INVOICE", "TIP_PAYED_IN_CASH", "NO_OF_KILOMETRES_SCHOOL_CHILDREN", "NO_OF_KILOMETRES_WITH_PASSENGER", "FLOP_TRIP_AMOUNT", "IS_CONNECTED_TO_CENTRAL", "ID_FOR_PROFIT_AND_LOSS_ACCOUNT", "DESCRIPTION_PROFIT_AND_LOSS_ACCOUNT", "MUNICIPALITY_NUMBER", "OPENING_BALANCE", "PROFIT_SALES_WITHDRAWAL_OTHER_REALIZATIONS", "LOSS_SALES_WITHDRAWAL_OTHER_REALIZATIONS", "PROFIT_REALIZATIONS_LIVESTOCK", "VALUE_ACQUIRED_PROFIT_AND_LOSS_ACCOUNT", "VALUE_REALIZED_PROFIT_AND_LOSS_ACCOUNT", "ANNUAL_INCOME_RECOGNITION_OR_DEDUCTION_BASIS", "PERCENTAGE_PROFIT_AND_LOSS_ACCOUNT", "ANNUAL_INCOME_RECOGNITION", "ANNUAL_DEDUCTION", "CLOSING_BALANCE", "IS_REGARDING_REALIZATION_SEPARATED_PLOT_AGRICULTURE_OR_FORESTRY", "IS_REGARDING_REALIZATION_WHOLE_AGRICULTURE_OR_FORESTRY_BUSINESS", "PROFIT_AND_LOSS_DEPARTMENT", "ID_FOR_ACCOMMODATION_AND_RESTAURANT", "COVER_CHARGE_SUBJECT_TO_VAT", "COVER_CHARGE_NOT_SUBJECT_TO_VAT", "COVER_CHARGE", "DESCRIPTION_ACCOMMODATION_AND_RESTAURANT", "MUST_BE_CONFIRMED_BY_AUDITOR", "PRODUCT_TYPE", "OPENING_STOCK", "CLOSING_STOCK", "PURCHASE_OF_GOODS", "COST_OF_GOODS_SOLD", "SALES_REVENUE_AND_WITHDRAWALS", "SALES_REVENUE_IN_CASH", "CASH_REGISTER_SYSTEM_YEAR_OF_INITIAL_REGISTRATION", "CASH_REGISTER_SYSTEM_TYPE", "WITHDRAWAL_OF_PRODUCTS_VALUED_AT_TURNOVER", "PRIVATE_WITHDRAWAL_ENTERED_ON_PRIVATE_ACCOUNT", "TOTAL_WITHDRAWAL_PRODUCTS_ENTERED_AS_SALES_REVENUE", "WITHDRAWAL_COST_FOR_ENTERTAINMENT", "WITHDRAWAL_VALUE_VALUED_AT_MARKET_VALUE", "MARKUP_WITHDRAWAL_COST_FOR_ENTERTAINMENT", "TOTAL_WITHDRAWAL_COST_FOR_ENTERTAINMENT", "OPENING_BALANCE_CREDIT_SALES", "CLOSING_BALANCE_CREDIT_SALES", "OPENING_BALANCE_WRITE_DOWN_NEW_COMPANY", "CLOSING_BALANCE_WRITE_DOWN_NEW_COMPANY", "SALARY_AND_PENSION_EXPENSES_ACCOUNT_ID", "SALARY_AND_PENSION_EXPENSES_ACCOUNT_ADDITION", "SALARY_AND_PENSION_EXPENSES_ACCOUNT_DEDUCTION", "SALARY_AND_PENSION_EXPENSES_ACCOUNT_REPORTED_BENEFIT", "SALARY_AND_PENSION_EXPENSES_MANUAL_FILLING", "EMPLOYERS_PAYMENT_OF_SUBSIDY", "TOTAL_AMOUNT_CREDITED_TO_NATURAL_BENEFITS", "BASIS_FOR_INCREASED_EMPLOYERS_TAX", "SALARY_AND_PENSION_EXPENSES_MANUAL_ACCOUNT_DESCRIPTION", "SALARY_AND_PENSION_EXPENSES_MANUAL_ACCOUNT_EXPENSED_BENEFIT", "OPENING_BALANCE_RAW_MATERIAL_AND_SEMI_FINISHED_PRODUCTS", "CLOSING_BALANCE_RAW_MATERIAL_AND_SEMI_FINISHED_PRODUCTS", "OPENING_BALANCE_PRODUCT_UNDER_MANUFACTURING", "CLOSING_BALANCE_PRODUCT_UNDER_MANUFACTURING", "OPENING_BALANCE_INVENTORIES_FINISHED_ITEM", "CLOSING_BALANCE_INVENTORIES_FINISHED_ITEM", "OPENING_BALANCE_PURCHASED_ITEM_FOR_RESALE", "CLOSING_BALANCE_PURCHASED_ITEM_FOR_RESALE", "OPENING_BALANCE_SELF_PRODUCED_PRODUCT_OWN_PRODUCTUION", "CLOSING_BALANCE_SELF_PRODUCED_PRODUCT_OWN_PRODUCTUION", "OPENING_BALANCE_LIVESTOCK", "CLOSING_BALANCE_LIVESTOCK", "ACCOUNT_INVENTORY_BALANCE_ACCOUNT_ID", "ACCOUNT_INVENTORY_BALANCE_DEPARTMENT_ID", "ACCOUNT_INVENTORY_BALANCE_UNIT_RATE", "ACCOUNT_INVENTORY_BALANCE_BALANCE_OUT_QUANTITY", "ACCOUNT_INVENTORY_BALANCE_BALANCE_OUT", "TANGIBLE_FIXED_ASSETS_TYPE", "OPENING_BALANCE_TANGIBLE_FIXED_ASSETS", "TAX_DEPRECIATION_PERCENTAGE", "STRAIGHT_LINE_DEPRECIATION", "PROFIT_TRANSFERRED_TO_PROFIT_AND_LOSS_ACCOUNT", "LOSS_TRANSFERRED_TO_PROFIT_AND_LOSS_ACCOUNT", "ACQUISITION_COST", "LIFETIME", "ACQUISITION_DATE", "REALISATION_DATE", "IS_COMMERCIAL_BUILDING_ACQUIRED_BEFORE_1984", "HISTORICAL_COST_PRICE", "WRITTEN_DOWN_VALUE_PR_01011984", "LOWER_LIMIT_DEPRECIATION", "IS_PHYSICAL_OPERATING_ASSETS_IN_BALANCE_SHEET", "FACILITY_TYPE", "DEPRECIATION_PERCENTAGE", "CASH_DEPOSITS", "CONTRIBUTIONS_IN_KIND", "CAPITAL_REDUCTION_DISTRIBUTED_SHARED_CAPITAL_CASH", "CAPITAL_REDUCTION_DISTRIBUTED_SHARED_CAPITAL_OTHER_ASSETS", "DEBT_WAVING", "BUYING_OWN_SHARES", "SELLING_OWN_SHARES", "DEBT_CONVERSION_TO_EQUITY", "POSITIVE_DIFF_BETWEEN_ALLOCATED_AND_DISTRIBUTED_DIVIDEND", "NEGATIVE_DIFF_BETWEEN_ALLOCATED_AND_DISTRIBUTED_DIVIDEND", "OTHER_NEGATIVE_CHANGE_IN_EQUITY", "LATE_PAYMENT", "OTHER_INTEREST_INCOME", "OTHER_INTEREST_EXPENSE", "INCOME_FROM_OTHER_INVESTMENTS_AND_DIVIDENDS", "PROFIT_ON_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "LOSS_ON_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "PRIVATE_ACCOUNT", "DEDUCTIBLE_COST_OF_USING_A_PRIVATE_CAR", "OTHER_TAX_FREE_INCOME", "OTHERNON_DEDUCTIBLECOST", "TAX_FREE_PROFIT_FROM_THE_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "NON_DEDUCTIBLE_LOSS_ON_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "TAX_FREE_PART_OF_DIVIDENDS_AND_DISTRIBUTIONS", "RETURN_OF_PROFITS_TO_ISDF", "RETURN_OF_DEFICIT_TO_ISDF", "CASH_PAYMENT", "WITHDRAWAL_OF_ASSETS_AND_SERVICES", "OTHER_WITHDRAWALS_AND_DISTRIBUTIONS", "OTHER_POSTIVE_CHANGE_IN_EQUITY", "OTHER_POSITIVE_CHANGE_IN_EQUITY", "NONE_DEDUCTIBLE_COST", "POSITIVE_TAX_COST", "INTEREST_EXPENSE_FIXED_TAX", "SHARE_OF_LOSS_FROM_INVESTMENT", "REVERSAL_OF_IMPAIRMENT", "ACCOUNTING_IMPAIRMENT", "ACCOUNTING_LOSS", "ACCOUNTING_DEFICIT_NORWEGIAN_SDF", "ACCOUNTING_DEFICIT_FOREIGN_SDF", "ACCOUNTING_LOSS_NORWEGIAN_SDF", "ACCOUNTING_LOSS_FOREIGN_SDF", "RETURNED_DEBT_INTEREST", "TAXABLE_PROFIT_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "TAXABLE_DIVIDEND_ON_SHARES", "TAXABLE_PART_OF_DIVIDEND_AND_DISTRIBUTION", "SHARE_OF_TAXABLE_PROFIT_NORWEGIAN_SDF", "SHARE_OF_TAXABLE_PROFIT_FOREIGN_SDF", "TAXABLE_PROFIT_REALIZATION_OF_NORWEGIAN_SDF", "TAXABLE_PROFIT_REALIZATION_OF_FOREIGN_SDF", "ADDITION_INTEREST_COST", "CORRECTION_PURPOSED_DIVIDEND", "TAXABLE_PROFIT_WITHDRAWAL_NORWEGIAN_TAX_AREA", "INCOME_SUPPLEMENT_FOR_CONVERSION_DIFFERENCE", "OTHER_INCOME_SUPPLEMENT", "RETURN_OF_INCOME_RELATED_DIVIDENDS", "PROFIT_AND_LOSS_GROUP_CONTRIBUTION", "ACCOUNTING_PROFIT_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "ACCOUNTING_PROFIT_SHARE_NORWEGIAN_SDF", "ACCOUNTING_PROFIT_SHARE_FOREIGN_SDF", "ACCOUNTING_GAIN_NORWEGIAN_SDF", "ACCOUNTING_GAIN_FOREIGN_SDF", "DEDUCTIBLE_LOSS_ON_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "SHARE_OF_DEDUCTIBLE_DEFICIT_NORWEGIAN_SDF", "SHARE_OF_DEDUCTIBLE_DEFICIT_FOREIGN_SDF", "DEDUCTIBLE_LOSS_ON_REALIZATION_NORWEGIAN_SDF", "DEDUCTIBLE_LOSS_ON_REALIZATION_FOREIGN_SDF", "DEDUCTIBLE_LOSS_ON_WITHDRAWAL_NORWEGIAN_TAX_AREA", "ISSUE_AND_ESTABLISHMENT_COST", "INCOME_DEDUCTION_FROM_ACCOUNTING_CURRENCY_TO_NOK", "OTHER_INCOME_DEDUCTION", "INCOME_ACCOUNT_DEFERRED_INCOME", "RETURN_VALUE_REDUCTION_COMPANY_PORTFOLIO", "INCOME_RECOGNITION_PARAGRAPH_10_TRANSACTIONS", "STANDARD_PRICE_ADDITION", "INTEREST_EXPENSE_IN_INCOME_STATEMENT", "INCOME_SUPPLEMENT_PRIVATE_USE_COMMERCIAL_VEHICLE", "INTEREST_INCOME_IN_INCOME_STATEMENT", "RETURN_VALUE_ADDITIONS_COMPANY_PORTFOLIO", "NOT_DEDUCTIBLE_COSTS_AND_LOSS_PETROLEUM_ABROAD", "TEMPLATE_DEDUCTION_TAXABLE_INCOME", "COST_ACCOUNTING_PARAGRAPH_10_TRANSACTIONS", "STANDARD_PRICE_DEDUCTION", "TAX_RETURN_DEDUCTIONS_FOU", "EXEMPT_INCOME_ACCORDINT_TO_PETROLEUM_TAX_LAW", "TAX_FREE_INCOME_RELATED_TO_EXTRACTION_PETROLEUM_ABROAD", "OWN_SICKNESS_BENEFITS_AS_INCOME_IN_ANNUAL_ACCOUNTS", "RETURN_ON_LIFE_INSURANCE_IN_ANNUAL_ACCOUNTS", "REVERSAL_OF_DEDUCTIONS_SCIENTIFIC_RESEARCH_AND_VOCATIONAL_TRAINING", "REVERSAL_INCREASE_VALUE_LINKED_TO_COMPANY_PORTFOLIO", "TEMPORARY_DIFFERENCES_TYPE", "OPENING_BALANCE_ACCOUNTABLE_VALUE", "CLOSING_BALANCE_ACCOUNTABLE_VALUE", "OPENING_BALANCE_TAX_VALUE", "CLOSING_BALANCE_TAX_VALUE", "OPENING_BALANCE_DIFFERENCES", "CLOSING_BALANCE_DIFFERENCES", "SHOW_PROFIT_AND_LOSS", "SHOW_ACCOMMODATION_AND_RESTAURANT", "IS_ACCOUNTABLE", "USE_ACCOUNTING_VALUES_IN_INVENTORIES", "USE_ACCOUNTING_VALUES_IN_CUSTOMER_RECEIVABLES", "SHOW_TANGIBLE_FIXED_ASSET", "SHOW_CAR", "SHOW_INVENTORIES", "SHOW_CUSTOMER_RECEIVABLES", "SHOW_CONCERN_RELATION", "OWN_BUSINESS_PROPERTIES", "OWN_ASSET_PAPER", "SHOW_SALARY_AND_PENSION_EXPENSES", "TRANSFERRED_BY", "TRANSFERRED_DATE", "IS_TAXABLE", "AUDITING_OBLIGATION", "VALIDATION_ONLY_ON_SUBMIT", "DATE_OF_DETERMINATION", "CONFIRMING_COMPANY_REPRESENTATIVE", "CONTACT_PERSON", "PARENT_COMPANY", "SMALL_ENTERPRISES", "PREPARED_BY_AUTHORIZED_ACCOUNTANT", "SERVICE_ASSISTANCE_USED", "ELECTRONIC_CASE_PROCESSING", "SUBMIT_WITHOUT_BUSINESS_SPECIFICATION", "SHOW_RESULT_AND_BALANCE_PREVIOUS_YEAR", "DATE_START", "DATE_END", "INCLUDE_PREVIOUS_YEAR_IN_RESULT", "DISTRIBUTE_INCOME_MODULE_INDUSTRY", "HIDE_TRANSFERRED_FROM_LAST_YEAR_NOTIFICATION", "RESEARCH_AND_DEVELOPMENT", "COMPANY_PARTICIPANT_ANS_DA", "CONTROLLED_TRANSACTION_AND_INBETWEEN", "LIMITATION_OF_DEDUCTION", "EXCEPTION_FOR_INTEREST_LIMITATION", "NUF_COMPANY_ID", "NUF_COMPANY_NAME", "NUF_COUNTRY_CODE", "TIMBER_ACCOUNT", "KLAGE_PAA_SKJOENNSFASTSETTING", "DEV_PILOT_TEST_ORG_NO", "HIDE_MOVE_AGRO_ACCOUNT_NUMBER_NOTIFICATION", "FOREST_FUND", "SUBMISSION_TO_LANDBRUKETS_DATAFLYT_DATE", "SUBMISSION_TO_LANDBRUKETS_DATAFLYT_BY", "SUBMISSION_TO_NIBIO_DATE", "SUBMISSION_TO_NIBIO_BY", "SHOW_ALL_POSTS_RESULT_AND_BALANCE", "REPORT_SIGNATURE_DATE", "REPORT_SIGNATURE_LOCATION", "REPORT_TOGGLE_DATE_LOCATION", "AGRICULTURAL_ACCOUNT", "AGRICULTURAL_ACCOUNT_USE_MULTIPLE_ACCOUNTS", "REPORT_SELECTED_STEP_FRONT_PAGE", "REPORT_SELECTED_STEP_CONTENT_TABLE", "REPORT_SELECTED_STEP_RESULT_AND_BALANCE", "REPORT_SELECTED_STEP_NOTES_FOR_SUBMISSION", "REPORT_SELECTED_STEP_NOTES_FOR_INTERNAL_USE", "REPORT_SELECTED_STEP_SIGNING", "YEAR_END_BRREG_DOC_ID", "YEAR_END_BRREG_DOC_FETCHER_NAME", "YEAR_END_DOCUMENTATION_ACCOMMODATION_AND_RESTAURANT", "YEAR_END_DOCUMENTATION_PROFIT_AND_LOSS_ACCOUNT", "YEAR_END_DOCUMENTATION_COMMERCIAL_VEHICLE", "YEAR_END_DOCUMENTATION_TANGIBLE_FIXED_ASSETS", "YEAR_END_DOCUMENTATION_INVENTORIES", "YEAR_END_DOCUMENTATION_ACCOUNTS_RECEIVABLE_FROM_CUSTOMERS", "YEAR_END_DOCUMENTATION_PROFIT_LOSS", "YEAR_END_DOCUMENTATION_BALANCE", "YEAR_END_DOCUMENTATION_PERSONAL_INCOME", "YEAR_END_DOCUMENTATION_PERMANENT_DIFFERENCES", "YEAR_END_DOCUMENTATION_TEMPORARY_DIFFERENCES", "YEAR_END_DOCUMENTATION_TAX_RELATED_RESULT", "YEAR_END_DOCUMENTATION_GROUP_CONTRIBUTIONS", "YEAR_END_DOCUMENTATION_EQUITY_RECONCILIATION", "YEAR_END_DOCUMENTATION_TAX_RETURN", "YEAR_END_DOCUMENTATION_DIVIDEND", "YEAR_END_DOCUMENTATION_DISPOSITIONS", "YEAR_END_DOCUMENTATION_PROPERTIES", "YEAR_END_DOCUMENTATION_SECURITIES", "YEAR_END_DOCUMENTATION_TAX_CALCULATION", "YEAR_END_DOCUMENTATION_AUDIT_REPORT", "YEAR_END_DOCUMENTATION_ANNUAL_REPORT", "YEAR_END_DOCUMENTATION_CASH_FLOW_STATEMENT", "YEAR_END_DOCUMENTATION_ANNEXES_TO_THE_ANNUAL_ACCOUNTS", "YEAR_END_DOCUMENTATION_SALARY_AND_PENSION_EXPENSES", "YEAR_END_DOCUMENTATION_COOPERATIVE_ENTERPRISE", "YEAR_END_DOCUMENTATION_OTHER_CIRCUMSTANCES", "YEAR_END_DOCUMENTATION_TIMBER_ACCOUNT", "YEAR_END_DOCUMENTATION_PARTICIPANT_ASSESSMENT", "YEAR_END_DOCUMENTATION_RESEARCH_AND_DEVELOPMENT", "YEAR_END_DOCUMENTATION_COMPANY_TAX_RETURN", "YEAR_END_DOCUMENTATION_PARTICIPANTS_TASK", "YEAR_END_DOCUMENTATION_CONTROLLED_TRANSACTIONS", "YEAR_END_DOCUMENTATION_LIMITATION_OF_DEDUCTION", "YEAR_END_DOCUMENTATION_SKJOENNSFASTSETTING", "YEAR_END_DOCUMENTATION_SKJOENNSFASTSETTING_ALTINN_ID", "YEAR_END_DOCUMENTATION_FOREST_FUND", "YEAR_END_DOCUMENTATION_ATTACHMENT_CATEGORY", "YEAR_END_DOCUMENTATION_DISTRIBUTE_CAPITAL_DEBT_WITH_SPOUSE", "YEAR_END_DOCUMENTATION_REINDEER_HUSBANDRY", "YEAR_END_DOCUMENT_SELECTED", "YEAR_END_DOCUMENTATION_ANNUALACCOUNTS_REPORT_GENERATED", "YEAR_END_DOCUMENTATION_AGRICULTURAL_ACCOUNT", "RECEIVER_ORG_NR", "RECEIVER_NAME", "CONCERN_CONNECTION", "VOTING_LIMIT", "DATE_OF_ACQUISITION", "RECEIVED_GROUP_CONTRIBUTIONS_WITH_TAX_AFFECTION", "RECEIVED_GROUP_CONTRIBUTIONS_WITHOUT_TAX_AFFECTION", "SUBMITTED_GROUP_CONTRIBUTIONS_WITH_TAX_AFFECTION", "SUBMITTED_GROUP_CONTRIBUTIONS_WITHOUT_TAX_AFFECTION", "RECEIVED_GROUP_CONTRIBUTIONS_FOREIGN_COMPANY_WITH_TAX_AFFECTION", "SUBMITTED_GROUP_CONTRIBUTIONS_FOREIGN_COMPANY_WITH_TAX_AFFECTION", "APPLICATION_OF_LOSS_CARRY_FORWARDS", "ACCUMULATED_LOSS_FROM_PREVIOUS_YEARS", "CORRECTIONS_AND_OTHER_CAPITAL", "CORRECTIONS_AND_OTHER_DEBT", "NUMBER_OF_SHARES", "TOTAL_SHARE_CAPITAL", "IS_PART_OF_GROUP_COMPANY", "IS_LISTED_ON_THE_STOCK_EXCHANGE", "IS_REORGANIZED_ACROSS_BORDERS", "HAS_RECEIVED_OR_TRANSFERRED_ASSETS", "HEAD_OF_GROUP_NAME", "HEAD_OF_GROUP_COUNTRY_CODE", "HEAD_OF_GROUP_LAST_YEAR_NAME", "HEAD_OF_GROUP_LAST_YEAR_COUNTRY_CODE", "FOREIGN_OWNERSHIP_COMPANY_NAME", "FOREIGN_OWNERSHIP_COMPANY_COUNTRY_CODE", "OWNS_MIN_50_PERCENT_OF_FOREIGN_COMPANY", "HAS_PERMANENT_ESTABLISHMENT_ABROAD", "COUNTRY_FOR_COUNTRY_REPORTABLE_ENTERPRISE_NAME", "COUNTRY_FOR_COUNTRY_REPORTABLE_ENTERPRISE_COUNTRY_CODE", "HAS_PERFORMANCE_BETWEEN_SHAREHOLDERS_AND_OTHER", "HAS_OUTSTANDING_PAYMENT_CLAIMS_RELATED_TO_ILLEGAL_STATE_AID", "IS_SMALL_OR_MEDIUM_SIZED_BUSINESS", "HAD_FINANCIAL_DIFFICULTIES_LAST_YEAR", "IS_GROUP_COMPANY", "HAS_RECEIVED_OTHER_PUBLIC_SUPPORT", "TAXABLE_VALUE_ON_OTHER_ASSETS", "ADDITIONS_NON_DEDUCTIBLE_LATE_PAYMENT", "SALES_WITH_MEMBERS_IN_OWN_COOPERATIVE", "RETROACTIVE_PAYMENT_MEMBERS_IN_OWN_COOPERATIVE", "CARRIED_FORWARD_DEDUCTION_LIMIT_LATE_PAYMENT_PREV_YEAR", "CARRY_FORWARD_DEDUCTION_LIMIT_LATE_PAYMENT", "TAXABLE_VALUE_ON_FORESTRY", "REINSTATED_LOSS_FROM_PRELIMINARY_ASSESSMENT_IN_LATER_YEARS", "HEAD_OF_GROUP_IDENTIFIER", "HEAD_OF_GROUP_LAST_YEAR_IDENTIFIER", "COUNTRY_FOR_COUNTRY_REPORTABLE_ENTERPRISE_IDENTIFIER", "NORWEGIAN_HEAD_OF_GROUP_NAME", "NORWEGIAN_HEAD_OF_GROUP_IDENTIFIER", "NORWEGIAN_HEAD_OF_GROUP_COUNTRY_CODE", "SHARE_OF_LOSS_OFFSET_AGAINST_PROFIT_TWO_PRECEDING_YEARS", "AID_SCHEME_TONNAGE_TAX_REGIME", "AID_SCHEME_RULES_FOR_ELECTRIC_DELIVERY_TRUCKS", "AID_SCHEME_FOR_LONG_TERM_INVESTMENTS", "AID_SCHEME_EMPLOYMENT_RELATED_OPTIONS_START_UP", "AID_SCHEME_TAX_FUN", "AID_SCHEME_FAVOURABLE_DEPRECIATION_RULES", "AID_SCHEME_REGIONALLY_DIFFERENTIATED_INSURANCE_CONTRIBUTIONS", "AID_SCHEME_FAVOURABLE_DETERMINED_LIST_PRICES_ELECTRIC_VEHICLES", "AID_SCHEME_VAT_EXEMPTION_TURNOVER_ELECTRIC_CARS", "AID_SCHEME_VAT_EXEMPTION_LEASING_ELECTRIC_CARS", "AID_SCHEME_VAT_EXEMPTION_TURNOVER_BATTERIES", "AID_SCHEME_VAT_EXEMPTION_TURNOVER_ELECTRIC_NEWS", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_INDUSTRIAL_SECTOR", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_DISTRICT_HEATING", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_TARGET_ZONE", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_DATA_CENTRES", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_COMMERCIAL_VESSELS", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_ENERGY_PRODUCTS", "AID_SCHEME_REDUCED_BASIC_TAX_MINERAL_OIL_WOOD_INDUSTRY", "AID_SCHEME_REDUCED_BASIC_TAX_MINERAL_OIL_PIGMENT_INDUSTRY", "AID_SCHEME_EXEMPTION_CO2_TAX_MINERAL_OIL", "AID_SCHEME_EXEMPTION_CO2_TAX_GAS", "AID_SCHEME_EXEMPTION_NOX_DUTY", "AID_SCHEME_EXEMPTION_TRANSFER_FEE", "AID_SCHEME_REDUCED_ROAD_TRAFFIC_INSURANCE_TAX", "OTHER_CORRECTIONS", "DEFERRED_TAX_ASSETS_IN_BALANCE", "SHARES_AND_SECURITIES_NAME", "SHARES_AND_SECURITIES_STOCK_TYPE", "SHARES_AND_SECURITIES_VAT_NUMBER", "SHARES_AND_SECURITIES_ISIN", "SHARES_AND_SECURITIES_COUNTRY_CODE", "SHARES_AND_SECURITIES_SHARE_CLASS", "SHARES_AND_SECURITIES_SHARES_BY_THE_START_OF_THE_YEAR", "SHARES_AND_SECURITIES_SHARES_BY_THE_END_OF_THE_YEAR", "SHARES_AND_SECURITIES_VALUE", "SHARES_AND_SECURITIES_TOTAL_VALUE", "SHARES_AND_SECURITIES_DIVIDEND", "SHARES_AND_SECURITIES_INTEREST_INCOME", "SHARES_AND_SECURITIES_PROFIT_REALISATION", "SHARES_AND_SECURITIES_LOSS_REALISATION", "SHARES_AND_SECURITIES_PROFIT_INTEREST", "SHARES_AND_SECURITIES_LOSS_INTEREST", "SHARES_AND_SECURITIES_EXEMPTION_METHOD", "SHARES_AND_SECURITIES_FINANCIAL_PRODUCT", "REAL_ESTATE_TYPE", "REAL_ESTATE_DESCRIPTION", "COMMERCIAL_PROPERTY_TYPE", "SHARE_OF_ASSET_VALUE", "INTERNAL_PROPERTY_IDENTIFIER", "ASSET_VALUE_FOR_ASSET_SHARE", "VALUE_BEFORE_VALUATION_DISCOUNT_ASSET_SHARE", "TOTAL_AREA", "CALCULATED_RENTAL_VALUE", "CALCULATED_VALUE_IS_OUTDATED", "REAL_ESTATE_SERG_NO", "REAL_ESTATE_ADDRESS", "REAL_ESTATE_ZIP_CODE", "REAL_ESTATE_POSTAL_PLACE_NAME", "REAL_ESTATE_COUNTRY_CODE", "REAL_ESTATE_MUNICIPALITY_NO", "REAL_ESTATE_MUNICIPALITY_NAME", "REAL_ESTATE_CADASTRAL_UNIT_NO", "REAL_ESTATE_PROPERTY_UNIT_NO", "REAL_ESTATE_LEASEHOLD_NO", "REAL_ESTATE_SECTION_NO", "REAL_ESTATE_OWNERSHIP_SHARE_PERCENTAGE", "REAL_ESTATE_PREV_YEAR_ASSET_VALUE", "REAL_ESTATE_EXPENSES_YEARLY", "REAL_ESTATE_EXPENSES_FARM_HOUSE_YEARLY", "REAL_ESTATE_EXPENSES_OTHER_PROPERTY_YEARLY", "REAL_ESTATE_DATE_DOCUMENTED", "REAL_ESTATE_MARKET_VALUE_MANUAL", "REAL_ESTATE_MARKET_VALUE_CALCULATED", "REAL_ESTATE_USE_VALUE_MARKET", "REAL_ESTATE_DWELLING_TYPE", "REAL_ESTATE_ASSOCIATION_OR_COOPERATIVE_DWELLING_OWNERSHIP_TYPE", "REAL_ESTATE_ASSOCIATION_OR_COOPERATIVE_DWELLING_OWNERSHIP_NAME", "REAL_ESTATE_ASSOCIATION_OR_COOPERATIVE_DWELLING_OWNERSHIP_ORG_NO", "REAL_ESTATE_ASSOCIATION_OR_COOPERATIVE_DWELLING_OWNERSHIP_SHARE_NO", "REAL_ESTATE_PRIMARY_SECONDARY_DWELLING_TYPE", "REAL_ESTATE_CONSTRUCTION_YEAR", "REAL_ESTATE_SELF_OWNED_OR_COOPERATIVE_DWELLING_CALCULATED_MARKET_VALUE", "REAL_ESTATE_RENTAL_AREA_TOTAL", "REAL_ESTATE_RENTAL_PERIOD_MONTHS", "REAL_ESTATE_RENTAL_INCOME_TOTAL_CALCULATED", "REAL_ESTATE_RENTAL_GROSS_ANNUAL_PREV_YEAR", "REAL_ESTATE_RENTAL_GROSS_ANNUAL_PRIOR_YEAR_TWO", "REAL_ESTATE_RENTAL_ASSET_VALUE_BASE", "REAL_ESTATE_RENTAL_GROSS_INCOME", "REAL_ESTATE_PREV_YEAR_ASSET_VALUE_MANUAL", "REAL_ESTATE_EXPENSES_YEARLY_MANUAL", "REAL_ESTATE_EXPENSES_FARM_HOUSE_YEARLY_MANUAL", "REAL_ESTATE_EXPENSES_OTHER_PROPERTY_YEARLY_MANUAL", "REAL_ESTATE_MULTI_UNIT_BUILDING_UNIT_ROW_ID", "REAL_ESTATE_MULTI_UNIT_BUILDING_UNIT_NO", "REAL_ESTATE_MULTI_UNIT_BUILDING_UNIT_AREA", "REAL_ESTATE_MULTI_UNIT_BUILDING_UNIT_CONSTRUCTION_YEAR", "REAL_ESTATE_MULTI_UNIT_BUILDING_UNIT_VALUE", "REAL_ESTATE_USE_INCREASED_CALCULATION_FACTOR", "YEARLY_DIVIDEND", "DIVIDEND_CREDIT", "DIVIDEND_SECURITY_OFFERED", "DIVIDEND_DISPOSITIONS", "PARTICIPANT_NAME", "PARTICIPANT_NUMBER", "PARTICIPANT_OWNERSHIP", "PARTICIPANT_REPORT_DISTRIBUTION_CASH_DISBURSEMENT_FROM_COMPANY", "PARTICIPANT_REPORT_DISTRIBUTION_VALUE_OF_ASSETS_OR_SERVICE_WITHDRAWN", "PARTICIPANT_REPORT_DISTRIBUTION_CAPITAL_REIMBURSEMENT", "PARTICIPANT_REPORT_SHIELDING_BASIS_OTHER_INITIAL_VALUE_CORRECTION", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_UNUSED_SHIELDING_FROM_PREVIOUS_YEAR", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_CORRECTION_FOR_INHERITANCE_OR_GIFT_IN_INCOME_YEAR", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_TRANSFERRED_SHIELDING_DEDUCTION_FROM_PREVIOUS_YEARS", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_TRANSFERRED_SHIELDING_DEDUCTION", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_OTHER_CORRECTION", "PARTICIPANT_REPORT_ADDITIONS_TO_ORDINARY_INCOME_OTHER_CORRECTION", "PARTICIPANT_REPORT_TAX_BASIS_SPECIFICATION_SHARE_OF_TAXABLE_EQUITY_AT_BEGINNING_OF_YEAR", "PARTICIPANT_REPORT_TAX_BASIS_SPECIFICATION_DEPOSIT", "PARTICIPANT_REPORT_TAX_BASIS_SPECIFICATION_OTHER_CORRECTION", "PARTICIPANT_REPORT_SHARES_REALIZED_OR_ACQUIRED", "PARTICIPANT_REPORT_PAID_IN_SHARE_OF_TAXABLE_EQUITY_AS_OF_BEGINNING_OF_YEAR", "PARTICIPANT_REPORT_PAID_IN_ACQUISITION_OF_SHARE", "PARTICIPANT_REPORT_PAID_IN_DISPOSAL_OF_SHARE", "PARTICIPANT_REPORT_PAID_IN_OTHER_CORRECTION", "PARTICIPANT_REPORT_RETAINED_EARNINGS_SHARE_OF_TAXABLE_EQUITY_AS_OF_BEGINNING_OF_YEAR", "PARTICIPANT_REPORT_RETAINED_EARNINGS_ACQUISITION_OF_SHARE", "PARTICIPANT_REPORT_RETAINED_EARNINGS_DISPOSAL_OF_SHARE", "PARTICIPANT_REPORT_RETAINED_EARNINGS_TAX_RESULT", "PARTICIPANT_REPORT_RETAINED_EARNINGS_TAX_FREE_INCOME", "PARTICIPANT_REPORT_RETAINED_EARNINGS_OTHER_CORRECTION", "PARTICIPANT_REPORT_RETAINED_EARNINGS_NON_DEDUCTIBLE_EXPENSES", "PARTICIPANT_REPORT_COMPENSATION_FOR_WORK_IN_OTHER_INDUSTRIES_INCLUDING_AGRICULTURE", "PARTICIPANT_REPORT_COMPENSATION_FOR_WORK_IN_FISHING_AND_HUNTING", "PARTICIPANT_REPORT_COMPENSATION_FOR_WORK_IN_FAMILY_KINDERGARTEN_AT_PARTICIPANTS_HOME", "PARTICIPANT_REPORT_AGRICULTURAL_DEDUCTION", "PARTICIPANT_REPORT_RENTAL_INCOME_FROM_AGRICULTURAL_OPERATIONS", "PARTICIPANT_REPORT_RESIDES_IN_NORDTROMS_OR_FINNMARK", "PARTICIPANT_DISPROPORTIONATE_DISTRIBUTION", "PARTICIPANT_DISPROPORTIONATE_DISTRIBUTION_SHARE_OF_RESULT", "PARTICIPANT_DISPROPORTIONATE_DISTRIBUTION_SHARE_OF_WEALTH", "PARTICIPANT_PRICE_MANAGEMENT_PRICING", "PARTICIPANT_PRICE_MANAGEMENT_REALIZED_SHARE_TAX_EQUITY", "PARTICIPANT_PRICE_MANAGEMENT_REALIZED_COST_PRICE", "PARTICIPANT_PRICE_MANAGEMENT_REALIZED_SHARE_OF_PRICE_ADJUSTMENT", "PARTICIPANT_PRICE_MANAGEMENT_ACCUMULATED_ADJUSTMENTS", "PARTICIPANT_ASSESSMENT_REPORT_COMPANY_NAME", "PARTICIPANT_ASSESSMENT_REPORT_ORG_NUMBER", "PARTICIPANT_ASSESSMENT_REPORT_MUNICIPALITY_ID", "PARTICIPANT_ASSESSMENT_REPORT_COUNTRY_CODE", "PARTICIPANT_ASSESSMENT_REPORT_VALUE_BEFORE_APPRECIATION_FOR_NET_ASSETS", "PARTICIPANT_ASSESSMENT_REPORT_DEBT", "PARTICIPANT_ASSESSMENT_REPORT_ORDINARY_INCOME", "PARTICIPANT_ASSESSMENT_REPORT_LOSS", "PARTICIPANT_ASSESSMENT_REPORT_PAYMENT_TO_PARTICIPANT", "PARTICIPANT_ASSESSMENT_REPORT_GAIN_ON_REALIZATION_OF_SHARE", "PARTICIPANT_ASSESSMENT_REPORT_LOSS_ON_REALIZATION_OF_SHARE", "PARTICIPANT_REPORT_ROE_TRANSFER_TYPE", "PARTICIPANT_REPORT_ROE_NAME", "PARTICIPANT_REPORT_ROE_IDENTIFICATION", "PARTICIPANT_REPORT_ROE_TRANSACTION_TYPE", "PARTICIPANT_REPORT_ROE_TIME", "PARTICIPANT_REPORT_ROE_AMOUNT", "PARTICIPANT_REPORT_ROE_REMUNERATION", "PARTICIPANT_REPORT_ROE_COSTS", "PARTICIPANT_REPORT_ROE_ADDITION_NON_DEDUCTIBLE_LOSS", "PARTICIPANT_REPORT_ROE_UNUSED_SHIELDING_PREVIOUS_YEARS", "PARTICIPANT_REPORT_ROE_OTHER_CORRECTIONS", "PARTICIPANT_REPORT_ROE_GAIN_LOSS_REALIZATION", "PARTICIPANT_REPORT_ROE_IS_COVERED_EXEMPTION_METHOD", "PARTICIPANT_REPORT_ROE_ACQUIRED_INITIAL_VALUE", "PARTICIPANT_REPORT_ROE_PRICE", "PARTICIPANT_REPORT_TAX_BASIS_SPECIFICATION_REALIZATION_OF_SHARE_VALUE", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_OFFSET_AGAINST_REALIZATION_GAIN", "PARTICIPANT_REPORT_SHIELDING_BASIS_REDUCTION_OF_USED_SHIELDING_DUE_TO_REALIZATION", "PARTICIPANT_REPORT_TAX_BASIS_SPECIFICATION_ACQUISITION_OF_SHARE_VALUE", "YEAR_END_ATTACHMENT_TOGGLE_ENABLED", "COOPERATIVE_ENTERPRISE_TAXABLE_BUSINESS_INCOME", "COOPERATIVE_ENTERPRISE_FROM_SALES_INVOLVING_MEMBER", "COOPERATIVE_ENTERPRISE_SALES_INVOLVING_MEMBER_SEPARATE", "COOPERATIVE_ENTERPRISE_SALES_INVOLVING_MEMBER_ANOTHER", "COOPERATIVE_ENTERPRISE_OTHER_SALES", "COOPERATIVE_ENTERPRISE_RETROACTIVE_PAYMENT_ETC_SEPARATE", "COOPERATIVE_ENTERPRISE_RETROACTIVE_PAYMENT_ETC_OTHER", "COOPERATIVE_ENTERPRISE_CONDITIONS_FOR_DEDUCTION_RETROACTIVE_PAYMENT_ARE_MET", "COOPERATIVE_ENTERPRISE_PURCHASE_INVOLVING_MEMBER_SEPARATE", "COOPERATIVE_ENTERPRISE_PURCHASE_INVOLVING_MEMBER_ANOTHER", "COOPERATIVE_ENTERPRISE_OTHER_PURCHASES", "COOPERATIVE_ENTERPRISE_DECIDED_PAID_BACK_PAYMENT", "COOPERATIVE_ENTERPRISE_CARRY_FORWARD_DEDUCTION_THIS_YEAR", "COOPERATIVE_ENTERPRISE_DECIDED_ALLOCATED_PROFIT", "COOPERATIVE_ENTERPRISE_COOPERATIVE_TYPE", "COOPERATIVE_ENTERPRISE_DEDUCTION_LIMIT_INCOME_YEAR", "COOPERATIVE_ENTERPRISE_DEDUCTION_LIMIT_PREVIOUS_YEAR", "OTHER_CIRCUMSTANCES_TOTAL_DISTRIBUTED_DIVIDEND", "OTHER_CIRCUMSTANCES_INTEREST_ON_EQUITY_CERTIFICATE", "OTHER_CIRCUMSTANCES_COMPANY_HAS_GRANTED_LOAN", "OTHER_CIRCUMSTANCES_SHAREHOLDER_HAS_GRANTED_LOAN", "OTHER_CIRCUMSTANCES_LOAN_AMOUNT_TO_SHAREHOLDER", "OTHER_CIRCUMSTANCES_LOAN_AMOUNT_TO_COMPANY", "OTHER_CIRCUMSTANCES_INTEREST_RECOGNISED_AS_INCOME", "OTHER_CIRCUMSTANCES_INTEREST_RECOGNISED_AS_EXPENSES", "OTHER_CIRCUMSTANCES_LOAN_BALANCE", "OTHER_CIRCUMSTANCES_COLLATERAL_AMOUNT", "OTHER_CIRCUMSTANCES_COLLATERAL_AMOUNT_INCOME_YEAR_TO_COMPANY", "OTHER_CIRCUMSTANCES_COLLATERAL_AMOUNT_INCOME_YEAR_TO_SHAREHOLDER", "OTHER_CIRCUMSTANCES_RENTAL_WITHDRAWAL_SALE_GRANTED", "OTHER_CIRCUMSTANCES_RENTAL_SALE_GRANTED", "OTHER_CIRCUMSTANCES_ASSET_TYPE", "OTHER_CIRCUMSTANCES_PRICING_METHOD", "OTHER_CIRCUMSTANCES_RENTAL_VALUE", "OTHER_CIRCUMSTANCES_VALUE_OF_SALE_OR_WITHDRAWAL", "RESEARCH_AND_DEVELOPMENT_PROJECT_NUMBER", "RESEARCH_AND_DEVELOPMENT_PROJECT_TITLE", "RESEARCH_AND_DEVELOPMENT_PROJECT_CATEGORY", "RESEARCH_AND_DEVELOPMENT_APPLICATION_APPROVED_DATE", "RESEARCH_AND_DEVELOPMENT_PROJECT_START_DATE", "RESEARCH_AND_DEVELOPMENT_PROJECT_END_DATE", "RESEARCH_AND_DEVELOPMENT_APPROVED_RND_INCENTIVE_START_YEAR", "RESEARCH_AND_DEVELOPMENT_APPROVED_RND_INCENTIVE_END_YEAR", "RESEARCH_AND_DEVELOPMENT_PROJECT_STATUS", "RESEARCH_AND_DEVELOPMENT_PROJECT_STATUS_DATE", "RESEARCH_AND_DEVELOPMENT_BUSINESS_CATEGORY", "RESEARCH_AND_DEVELOPMENT_IS_COLLABORATIVE_PROJECT_WITH_OTHER_ENTERPRISES", "RESEARCH_AND_DEVELOPMENT_HAS_EXTENSIVE_DISSEMINATION_THROUGH_CONFERENCES_PUBLICATIONS_ETC", "RESEARCH_AND_DEVELOPMENT_TOTAL_COSTS_PREVIOUS_YEARS", "RESEARCH_AND_DEVELOPMENT_TOTAL_GROSS_TAX_DEDUCTION_FROM_PREVIOUS_YEARS", "RESEARCH_AND_DEVELOPMENT_TOTAL_GROSS_TAX_DEDUCTION_FROM_INCOME_YEAR", "RESEARCH_AND_DEVELOPMENT_INCLUDED_PERSONNEL_COSTS_IN_INCOME_YEAR", "RESEARCH_AND_DEVELOPMENT_NUMBER_OF_OWN_HOURS_IN_INCOME_YEAR", "RESEARCH_AND_DEVELOPMENT_PUBLIC_SUPPORT_AS_REDUCED_WORKER_FEE", "RESEARCH_AND_DEVELOPMENT_WAS_IN_ECONOMIC_DIFFICULTIES_AT_APPLICATION_TIME", "RESEARCH_AND_DEVELOPMENT_UNDERLYING_DOCUMENTS_USED_FOR_ASSESSMENT", "RESEARCH_AND_DEVELOPMENT_UNDERLYING_DOCUMENTATION_DATE", "RESEARCH_AND_DEVELOPMENT_RESOLUTION_DATE", "RESEARCH_AND_DEVELOPMENT_RESOLUTION_TYPE", "RESEARCH_AND_DEVELOPMENT_RESOLUTION_DELIMITATION", "RESEARCH_AND_DEVELOPMENT_OTHER_PUBLIC_SUPPORT_PAYER_NAME", "RESEARCH_AND_DEVELOPMENT_OTHER_PUBLIC_SUPPORT_AMOUNT", "RESEARCH_AND_DEVELOPMENT_TOTAL_COSTS_EXCLUDED_FROM_TAX_DEDUCTION", "RESEARCH_AND_DEVELOPMENT_PROJECT_TO_BE_SIGNED_BY_AUDITOR", "RESEARCH_AND_DEVELOPMENT_STAKE_IN_COLLABORATIVE_PROJECT", "RESEARCH_AND_DEVELOPMENT_APPLIED_FOR_OTHER_PUBLIC_SUPPORT_IN_NORWAY", "RESEARCH_AND_DEVELOPMENT_WORK_PACKAGE_ID", "RESEARCH_AND_DEVELOPMENT_WORK_PACKAGE_TITLE", "RESEARCH_AND_DEVELOPMENT_WORK_PACKAGE_TOTAL_COST_FROM_PREVIOUS_YEAR", "RESEARCH_AND_DEVELOPMENT_WORK_PACKAGE_RECEIVED_PUBLIC_SUPPORT", "RESEARCH_AND_DEVELOPMENT_COLLABORATIVE_BUSINESS_ORG_NO", "RESEARCH_AND_DEVELOPMENT_COLLABORATIVE_BUSINESS_DESCRIPTION", "TIMBER_ACCOUNT_SHARE_OF_OPERATING_REVENUES_HUNTING_FISHING_ETC_MANUAL", "TIMBER_ACCOUNT_STANDARD_INCOME_FROM_BIOMASS_OR_WOOD_PRODUCTION_TRANSFERRED_AGRIGULTURE", "TIMBER_ACCOUNT_SHARE_OF_PROFIT_TO_REGISTER", "TIMBER_ACCOUNT_INCOMING_VALUE_FROM_AQUIRED_TIMBER_ACCOUNT", "TIMBER_ACCOUNT_VALUE_OF_SHARE_OF_REALIZED_TIMBER_ACCOUNT", "TIMBER_ACCOUNT_SHARE_OF_BASIS_NEXT_YEAR", "TIMBER_ACCOUNT_REMAINDER_NOT_TAXED_FELLING", "TIMBER_ACCOUNT_REMAINDER_INCLUDED_THIS_YEAR", "TIMBER_ACCOUNT_MUNICIPALITY_NO", "TIMBER_ACCOUNT_PAID_PUBLIC_CONTRIBUTION_FOREST_FUND", "TIMBER_ACCOUNT_SHARE_OF_OPERATING_REVENUES_HUNTING_FISHING_ETC", "CONTROLLED_TRANSACTIONS_EXEMPT_TRANSACTION_SHARING", "CONTROLLED_TRANSACTIONS_EXEMPT_PRICE_SHARING", "CONTROLLED_TRANSACTIONS_CONSOLIDATED_MARGIN_YEAR", "CONTROLLED_TRANSACTIONS_CONSOLIDATED_MARGIN_PERCENTAGE", "CONTROLLED_TRANSACTIONS_REPORTS_ONLY_PROVISION_INCOME", "CONTROLLED_TRANSACTIONS_COST_OF_IMMATERIAL_ASSETS", "CONTROLLED_TRANSACTIONS_NUMBER_OF_REGISTERED_PATENTS", "CONTROLLED_TRANSACTIONS_GROUP_HAS_BEEN_RESTRUCTURED", "CONTROLLED_TRANSACTIONS_COMPANY_HAS_SERVICED_OTHER_COMPANY_IN_GROUP_FOR_FREE", "CONTROLLED_TRANSACTIONS_COMPANY_IS_GUARANTOR_FOR_AGREEMENTS_BY_OTHER_COMPANIES_IN_SAME_GROUP", "CONTROLLED_TRANSACTIONS_RELATED_COMPANY_IDENTIFIER", "CONTROLLED_TRANSACTIONS_RELATED_COMPANY_NAME", "CONTROLLED_TRANSACTIONS_RELATED_COMPANY_COUNTRY", "CONTROLLED_TRANSACTIONS_FUNCTION_AND_RISK_FUNCTION_TYPE", "CONTROLLED_TRANSACTIONS_FUNCTION_AND_RISK_RISK_TYPE", "CONTROLLED_TRANSACTIONS_FUNCTION_AND_RISK_DESCRIPTION", "CONTROLLED_TRANSACTIONS_COMPANY_SPECIFICATION_COMPANY_IDENTIFIER", "CONTROLLED_TRANSACTIONS_COMPANY_SPECIFICATION_COMPANY_NAME", "CONTROLLED_TRANSACTIONS_COMPANY_SPECIFICATION_COMPANY_COUNTRY", "CONTROLLED_TRANSACTIONS_TRANSACTION_TYPE", "CONTROLLED_TRANSACTIONS_TRANSACTION_DESCRIPTION", "CONTROLLED_TRANSACTIONS_TRANSACTION_AMOUNT", "CONTROLLED_TRANSACTIONS_OUTSTANDING_ACCOUNT", "CONTROLLED_TRANSACTIONS_OUTSTANDING_AMOUNT", "CONTROLLED_TRANSACTIONS_OUTSTANDING_COUNTRY_CODE", "CONTROLLED_TRANSACTIONS_TRANSACTION_COUNTRY_CODE", "CONTROLLED_TRANSACTIONS_RESULT_AS_PERCENTAGE_OF_GROSS_REVENUE", "CONTROLLED_TRANSACTIONS_MAIN_BUSINESS_ACTIVITY", "CONTROLLED_TRANSACTIONS_NUMBER_OF_ENTITIES_WITH_CONTROLLED_TRANSACTIONS_IN_NORWAY", "CONTROLLED_TRANSACTIONS_NUMBER_OF_ENTITIES_WITH_CONTROLLED_TRANSACTIONS_OUTSIDE_NORWAY", "CONTROLLED_TRANSACTIONS_COMPANY_HAS_BEEN_SERVICED_BY_OTHER_COMPANY_IN_GROUP_FOR_FREE", "CONTROLLED_TRANSACTIONS_HAS_CONTROLLED_TRANSACTIONS_EXCEEDING_LIMIT", "CONTROLLED_TRANSACTIONS_IS_OBLIGED_TO_DOCUMENT", "INTEREST_LIMITATION_COMPANY_COMPLIANCE_WITH_INTEREST_LIMITATION", "INTEREST_LIMITATION_NET_INTEREST_COSTS_NORWEGIAN_GROUP_EXCEEDS_25MNOK", "INTEREST_LIMITATION_COMPANY_USES_EXCEPTION_RULE", "INTEREST_LIMITATION_GROUP_APEX_COMPANY_NAME", "INTEREST_LIMITATION_GROUP_APEX_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_GROUP_APEX_COUNTRY_CODE", "INTEREST_LIMITATION_NORWEGIAN_PART_OF_GROUP_REPORTED_ANOTHER_COMPANY", "INTEREST_LIMITATION_NORWEGIAN_PART_OF_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_NORWEGIAN_PART_OF_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_NORWEGIAN_PART_OF_GROUP_COUNTRY_CODE", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_CORRECTION_OF_INTEREST_EXPENSES", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_CORRECTION_OF_INTEREST_INCOME", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_GUARANTEE_COMMISSIONS_ON_DEBT", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_LOSS_ON_REALIZATION_OF_PREMIUM_DISCOUNT_BONDS", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_GAIN_ON_REALIZATION_OF_PREMIUM_DISCOUNT_BONDS", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_LOSS_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_COMPANIES_IN_SAME_GROUP_COSTS_FOR_GUARANTEE_COMMISSION", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_COMPANY_IN_SAME_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_COMPANY_IN_SAME_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_COMPANY_IN_SAME_GROUP_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_COMPANY_IN_SAME_GROUP_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_GROUP_GUARANTOR_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_GROUP_GUARANTOR_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_GROUP_GUARANTOR_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_GROUP_GUARANTOR_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_WITH_OUTSTANDING_CLAIM_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_WITH_OUTSTANDING_CLAIM_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_WITH_OUTSTANDING_CLAIM_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_WITH_OUTSTANDING_CLAIM_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANY_IN_SAME_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANY_IN_SAME_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANY_IN_SAME_GROUP_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANY_IN_SAME_GROUP_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANIES_IN_SAME_GROUP_LOSS_FOR_HOLDER_ON_REALIZATION_OF_PREMIUM_DISCOUNT_BOND", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANIES_IN_SAME_GROUP_GAIN_FOR_HOLDER_UPON_REALIZATION_OF_PREMIUM_DISCOUNT_BOND", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANIES_IN_SAME_GROUP_LOSS_FOR_HOLDER_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANIES_IN_SAME_GROUP_GAIN_FOR_HOLDER_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_GROUP_GUARANTOR_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_GROUP_GUARANTOR_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_GROUP_GUARANTOR_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_GROUP_GUARANTOR_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_WITH_OUTSTANDING_CLAIM_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_WITH_OUTSTANDING_CLAIM_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_WITH_OUTSTANDING_CLAIM_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_WITH_OUTSTANDING_CLAIM_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_COSTS_FOR_GUARANTEE_COMMISSION", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_LOSS_FOR_HOLDER_ON_REALIZATION_OF_PREMIUM_DISCOUNT_BOND", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_GAIN_FOR_HOLDER_UPON_REALIZATION_OF_PREMIUM_DISCOUNT_BOND", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_LOSS_FOR_HOLDER_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_GAIN_FOR_HOLDER_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_COMPANIES_INCLUDED_IN_NORWEGIAN_PART_OF_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_COMPANIES_INCLUDED_IN_NORWEGIAN_PART_OF_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_COMPANIES_INCLUDED_IN_NORWEGIAN_PART_OF_GROUP_NET_INTEREST_COST", "INTEREST_LIMITATION_COMPANIES_INCLUDED_IN_NORWEGIAN_PART_OF_GROUP_NET_DEDUCTIBLE_INTEREST_COST", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_GAIN_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_CALCULATION_OF_INTEREST_DEDUCTION_LIMIT_AMORTIZED_LEASE_COST", "INTEREST_LIMITATION_CALCULATION_OF_INTEREST_DEDUCTION_LIMIT_DEDUCTION_FOR_GROUP_CONTRIBUTIONS_NOT_INCLUDED_IN_CALCULATION_BASIS", "FORWARDING_DISALLOWED_INTEREST_DEDUCTION_INCOME_YEAR", "FORWARDING_DISALLOWED_INTEREST_DEDUCTION_CARRIED_FORWARD_FROM_PREVIOUS_YEAR", "INTEREST_LIMITATION_COMPANY_CARRIED_FORWARD_INTEREST_DEDUCTIONS_FROM_PREVIOUS_YEARS", "TAX_ASSESSMENT_NEGATIVE_PERSONAL_INCOME_PREVIOUS_YEAR_OWNER", "TAX_ASSESSMENT_NEGATIVE_PERSONAL_INCOME_PREVIOUS_YEAR_SPOUSE", "TAX_ASSESSMENT_COORDINATION_OTHER_PERSONAL_INCOME_OWNER", "TAX_ASSESSMENT_COORDINATION_OTHER_PERSONAL_INCOME_SPOUSE", "TAX_ASSESSMENT_COORDINATION_COORDINATION_GENERAL_PARTNERSHIP_OWNER", "TAX_ASSESSMENT_COORDINATION_COORDINATION_GENERAL_PARTNERSHIP_SPOUSE", "TAX_ASSESSMENT_SALARY_INCOME_OWNER", "TAX_ASSESSMENT_SALARY_INCOME_SPOUSE", "TAX_ASSESSMENT_SICK_PAYABLE_FISHING_ETC_OWNER", "TAX_ASSESSMENT_SICK_PAYABLE_FISHING_ETC_SPOUSE", "TAX_ASSESSMENT_SICK_PAYABLE_AGRICULTURE_OWNER", "TAX_ASSESSMENT_SICK_PAYABLE_AGRICULTURE_SPOUSE", "TAX_ASSESSMENT_SICK_PAYABLE_OTHER_OWNER", "TAX_ASSESSMENT_SICK_PAYABLE_OTHER_SPOUSE", "TAX_ASSESSMENT_OTHER_PENSIONABLE_INCOME_OWNER", "TAX_ASSESSMENT_OTHER_PENSIONABLE_INCOME_SPOUSE", "TAX_ASSESSMENT_CONDITIONS_ARE_SPECIAL_ALLOWANCE_AGRICULTURE_MET", "TAX_ASSESSMENT_SHARE_FROM_SDF", "REINDEER_HUSBANDRY", "REINDEER_HUSBANDRY_CAPITAL_COSTS_MINUS_CAPITAL_REVENUES", "REINDEER_HUSBANDRY_CORRECTED_BUSINESS_INCOME_TWO_YEARS_AGO", "REINDEER_HUSBANDRY_CORRECTED_BUSINESS_INCOME_ONE_YEAR_AGO", "REINDEER_HUSBANDRY_WITHDRAWAL", "REINDEER_HUSBANDRY_DEPOSIT", "AGRICULTURAL_ACCOUNT_DEPARTMENTS", "AGRICULTURAL_ACCOUNT_SHARE_OF_OPERATING_COSTS", "AGRICULTURAL_ACCOUNT_INCOME_FROM_BIOMASS_OR_WOOD_PRODUCTION", "AGRICULTURAL_ACCOUNT_OPERATIONAL_ENTITY", "AGRICULTURAL_ACCOUNT_MUNICIPALITY", "AGRICULTURAL_ACCOUNT_TRANSFER_TO_AGRICULTURAL_ACCOUNT", "AGRICULTURAL_ACCOUNT_INHERITED_UPON_INHERITANCE_GENERATIONAL_CHANGE", "AGRICULTURAL_ACCOUNT_REALIZED_UPON_INHERITANCE_GENERATIONAL_CHANGE", "AGRICULTURAL_ACCOUNT_SHARE_OF_BASIS_NEXT_YEAR", "AGRICULTURAL_ACCOUNT_SHARE_OF_OPERATING_COSTS_MANUAL", "AGRICULTURAL_ACCOUNT_OWN_CORRECTIONS_INCOME", "AGRICULTURAL_ACCOUNT_OWN_CORRECTIONS_INCOME_MANUAL" ] }, "closingBalancePostType" : { "type" : "string", "readOnly" : true, "enum" : [ "REGISTRATION_NUMBER", "DESCRIPTION", "VEHICLE_TYPE", "YEAR_OF_INITIAL_REGISTRATION", "LIST_PRICE", "DATE_FROM", "DATE_TO", "LICENCE", "LICENCE_NUMBER", "IS_ELECTRONIC_VEHICLE_LOGBOOK_LOGGED", "NO_OF_KILOMETRES_TOTAL", "OPERATING_EXPENSES", "LEASING_RENT", "IS_COMPANY_VEHICLE_USED_PRIVATE", "NO_OF_KILOMETRES_PRIVATE", "DEPRECIATION_PRIVATE_USE", "REVERSED_VEHICLE_EXPENSES", "FUEL_COST", "MAINTENANCE_COST", "COST_OF_INSURANCE_AND_TAX", "CAR_DEPARTMENT", "NO_OF_LITER_FUEL", "TAXIMETER_TYPE", "INCOME_PERSONAL_TRANSPORT", "INCOME_GOODS_TRANSPORT", "DRIVING_INCOME_PAYED_IN_CASH", "DRIVING_INCOME_INVOICED_PUBLIC_AGENCIES", "TIP_PAYED_WITH_CARD_OR_INVOICE", "TIP_PAYED_IN_CASH", "NO_OF_KILOMETRES_SCHOOL_CHILDREN", "NO_OF_KILOMETRES_WITH_PASSENGER", "FLOP_TRIP_AMOUNT", "IS_CONNECTED_TO_CENTRAL", "ID_FOR_PROFIT_AND_LOSS_ACCOUNT", "DESCRIPTION_PROFIT_AND_LOSS_ACCOUNT", "MUNICIPALITY_NUMBER", "OPENING_BALANCE", "PROFIT_SALES_WITHDRAWAL_OTHER_REALIZATIONS", "LOSS_SALES_WITHDRAWAL_OTHER_REALIZATIONS", "PROFIT_REALIZATIONS_LIVESTOCK", "VALUE_ACQUIRED_PROFIT_AND_LOSS_ACCOUNT", "VALUE_REALIZED_PROFIT_AND_LOSS_ACCOUNT", "ANNUAL_INCOME_RECOGNITION_OR_DEDUCTION_BASIS", "PERCENTAGE_PROFIT_AND_LOSS_ACCOUNT", "ANNUAL_INCOME_RECOGNITION", "ANNUAL_DEDUCTION", "CLOSING_BALANCE", "IS_REGARDING_REALIZATION_SEPARATED_PLOT_AGRICULTURE_OR_FORESTRY", "IS_REGARDING_REALIZATION_WHOLE_AGRICULTURE_OR_FORESTRY_BUSINESS", "PROFIT_AND_LOSS_DEPARTMENT", "ID_FOR_ACCOMMODATION_AND_RESTAURANT", "COVER_CHARGE_SUBJECT_TO_VAT", "COVER_CHARGE_NOT_SUBJECT_TO_VAT", "COVER_CHARGE", "DESCRIPTION_ACCOMMODATION_AND_RESTAURANT", "MUST_BE_CONFIRMED_BY_AUDITOR", "PRODUCT_TYPE", "OPENING_STOCK", "CLOSING_STOCK", "PURCHASE_OF_GOODS", "COST_OF_GOODS_SOLD", "SALES_REVENUE_AND_WITHDRAWALS", "SALES_REVENUE_IN_CASH", "CASH_REGISTER_SYSTEM_YEAR_OF_INITIAL_REGISTRATION", "CASH_REGISTER_SYSTEM_TYPE", "WITHDRAWAL_OF_PRODUCTS_VALUED_AT_TURNOVER", "PRIVATE_WITHDRAWAL_ENTERED_ON_PRIVATE_ACCOUNT", "TOTAL_WITHDRAWAL_PRODUCTS_ENTERED_AS_SALES_REVENUE", "WITHDRAWAL_COST_FOR_ENTERTAINMENT", "WITHDRAWAL_VALUE_VALUED_AT_MARKET_VALUE", "MARKUP_WITHDRAWAL_COST_FOR_ENTERTAINMENT", "TOTAL_WITHDRAWAL_COST_FOR_ENTERTAINMENT", "OPENING_BALANCE_CREDIT_SALES", "CLOSING_BALANCE_CREDIT_SALES", "OPENING_BALANCE_WRITE_DOWN_NEW_COMPANY", "CLOSING_BALANCE_WRITE_DOWN_NEW_COMPANY", "SALARY_AND_PENSION_EXPENSES_ACCOUNT_ID", "SALARY_AND_PENSION_EXPENSES_ACCOUNT_ADDITION", "SALARY_AND_PENSION_EXPENSES_ACCOUNT_DEDUCTION", "SALARY_AND_PENSION_EXPENSES_ACCOUNT_REPORTED_BENEFIT", "SALARY_AND_PENSION_EXPENSES_MANUAL_FILLING", "EMPLOYERS_PAYMENT_OF_SUBSIDY", "TOTAL_AMOUNT_CREDITED_TO_NATURAL_BENEFITS", "BASIS_FOR_INCREASED_EMPLOYERS_TAX", "SALARY_AND_PENSION_EXPENSES_MANUAL_ACCOUNT_DESCRIPTION", "SALARY_AND_PENSION_EXPENSES_MANUAL_ACCOUNT_EXPENSED_BENEFIT", "OPENING_BALANCE_RAW_MATERIAL_AND_SEMI_FINISHED_PRODUCTS", "CLOSING_BALANCE_RAW_MATERIAL_AND_SEMI_FINISHED_PRODUCTS", "OPENING_BALANCE_PRODUCT_UNDER_MANUFACTURING", "CLOSING_BALANCE_PRODUCT_UNDER_MANUFACTURING", "OPENING_BALANCE_INVENTORIES_FINISHED_ITEM", "CLOSING_BALANCE_INVENTORIES_FINISHED_ITEM", "OPENING_BALANCE_PURCHASED_ITEM_FOR_RESALE", "CLOSING_BALANCE_PURCHASED_ITEM_FOR_RESALE", "OPENING_BALANCE_SELF_PRODUCED_PRODUCT_OWN_PRODUCTUION", "CLOSING_BALANCE_SELF_PRODUCED_PRODUCT_OWN_PRODUCTUION", "OPENING_BALANCE_LIVESTOCK", "CLOSING_BALANCE_LIVESTOCK", "ACCOUNT_INVENTORY_BALANCE_ACCOUNT_ID", "ACCOUNT_INVENTORY_BALANCE_DEPARTMENT_ID", "ACCOUNT_INVENTORY_BALANCE_UNIT_RATE", "ACCOUNT_INVENTORY_BALANCE_BALANCE_OUT_QUANTITY", "ACCOUNT_INVENTORY_BALANCE_BALANCE_OUT", "TANGIBLE_FIXED_ASSETS_TYPE", "OPENING_BALANCE_TANGIBLE_FIXED_ASSETS", "TAX_DEPRECIATION_PERCENTAGE", "STRAIGHT_LINE_DEPRECIATION", "PROFIT_TRANSFERRED_TO_PROFIT_AND_LOSS_ACCOUNT", "LOSS_TRANSFERRED_TO_PROFIT_AND_LOSS_ACCOUNT", "ACQUISITION_COST", "LIFETIME", "ACQUISITION_DATE", "REALISATION_DATE", "IS_COMMERCIAL_BUILDING_ACQUIRED_BEFORE_1984", "HISTORICAL_COST_PRICE", "WRITTEN_DOWN_VALUE_PR_01011984", "LOWER_LIMIT_DEPRECIATION", "IS_PHYSICAL_OPERATING_ASSETS_IN_BALANCE_SHEET", "FACILITY_TYPE", "DEPRECIATION_PERCENTAGE", "CASH_DEPOSITS", "CONTRIBUTIONS_IN_KIND", "CAPITAL_REDUCTION_DISTRIBUTED_SHARED_CAPITAL_CASH", "CAPITAL_REDUCTION_DISTRIBUTED_SHARED_CAPITAL_OTHER_ASSETS", "DEBT_WAVING", "BUYING_OWN_SHARES", "SELLING_OWN_SHARES", "DEBT_CONVERSION_TO_EQUITY", "POSITIVE_DIFF_BETWEEN_ALLOCATED_AND_DISTRIBUTED_DIVIDEND", "NEGATIVE_DIFF_BETWEEN_ALLOCATED_AND_DISTRIBUTED_DIVIDEND", "OTHER_NEGATIVE_CHANGE_IN_EQUITY", "LATE_PAYMENT", "OTHER_INTEREST_INCOME", "OTHER_INTEREST_EXPENSE", "INCOME_FROM_OTHER_INVESTMENTS_AND_DIVIDENDS", "PROFIT_ON_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "LOSS_ON_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "PRIVATE_ACCOUNT", "DEDUCTIBLE_COST_OF_USING_A_PRIVATE_CAR", "OTHER_TAX_FREE_INCOME", "OTHERNON_DEDUCTIBLECOST", "TAX_FREE_PROFIT_FROM_THE_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "NON_DEDUCTIBLE_LOSS_ON_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "TAX_FREE_PART_OF_DIVIDENDS_AND_DISTRIBUTIONS", "RETURN_OF_PROFITS_TO_ISDF", "RETURN_OF_DEFICIT_TO_ISDF", "CASH_PAYMENT", "WITHDRAWAL_OF_ASSETS_AND_SERVICES", "OTHER_WITHDRAWALS_AND_DISTRIBUTIONS", "OTHER_POSTIVE_CHANGE_IN_EQUITY", "OTHER_POSITIVE_CHANGE_IN_EQUITY", "NONE_DEDUCTIBLE_COST", "POSITIVE_TAX_COST", "INTEREST_EXPENSE_FIXED_TAX", "SHARE_OF_LOSS_FROM_INVESTMENT", "REVERSAL_OF_IMPAIRMENT", "ACCOUNTING_IMPAIRMENT", "ACCOUNTING_LOSS", "ACCOUNTING_DEFICIT_NORWEGIAN_SDF", "ACCOUNTING_DEFICIT_FOREIGN_SDF", "ACCOUNTING_LOSS_NORWEGIAN_SDF", "ACCOUNTING_LOSS_FOREIGN_SDF", "RETURNED_DEBT_INTEREST", "TAXABLE_PROFIT_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "TAXABLE_DIVIDEND_ON_SHARES", "TAXABLE_PART_OF_DIVIDEND_AND_DISTRIBUTION", "SHARE_OF_TAXABLE_PROFIT_NORWEGIAN_SDF", "SHARE_OF_TAXABLE_PROFIT_FOREIGN_SDF", "TAXABLE_PROFIT_REALIZATION_OF_NORWEGIAN_SDF", "TAXABLE_PROFIT_REALIZATION_OF_FOREIGN_SDF", "ADDITION_INTEREST_COST", "CORRECTION_PURPOSED_DIVIDEND", "TAXABLE_PROFIT_WITHDRAWAL_NORWEGIAN_TAX_AREA", "INCOME_SUPPLEMENT_FOR_CONVERSION_DIFFERENCE", "OTHER_INCOME_SUPPLEMENT", "RETURN_OF_INCOME_RELATED_DIVIDENDS", "PROFIT_AND_LOSS_GROUP_CONTRIBUTION", "ACCOUNTING_PROFIT_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "ACCOUNTING_PROFIT_SHARE_NORWEGIAN_SDF", "ACCOUNTING_PROFIT_SHARE_FOREIGN_SDF", "ACCOUNTING_GAIN_NORWEGIAN_SDF", "ACCOUNTING_GAIN_FOREIGN_SDF", "DEDUCTIBLE_LOSS_ON_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "SHARE_OF_DEDUCTIBLE_DEFICIT_NORWEGIAN_SDF", "SHARE_OF_DEDUCTIBLE_DEFICIT_FOREIGN_SDF", "DEDUCTIBLE_LOSS_ON_REALIZATION_NORWEGIAN_SDF", "DEDUCTIBLE_LOSS_ON_REALIZATION_FOREIGN_SDF", "DEDUCTIBLE_LOSS_ON_WITHDRAWAL_NORWEGIAN_TAX_AREA", "ISSUE_AND_ESTABLISHMENT_COST", "INCOME_DEDUCTION_FROM_ACCOUNTING_CURRENCY_TO_NOK", "OTHER_INCOME_DEDUCTION", "INCOME_ACCOUNT_DEFERRED_INCOME", "RETURN_VALUE_REDUCTION_COMPANY_PORTFOLIO", "INCOME_RECOGNITION_PARAGRAPH_10_TRANSACTIONS", "STANDARD_PRICE_ADDITION", "INTEREST_EXPENSE_IN_INCOME_STATEMENT", "INCOME_SUPPLEMENT_PRIVATE_USE_COMMERCIAL_VEHICLE", "INTEREST_INCOME_IN_INCOME_STATEMENT", "RETURN_VALUE_ADDITIONS_COMPANY_PORTFOLIO", "NOT_DEDUCTIBLE_COSTS_AND_LOSS_PETROLEUM_ABROAD", "TEMPLATE_DEDUCTION_TAXABLE_INCOME", "COST_ACCOUNTING_PARAGRAPH_10_TRANSACTIONS", "STANDARD_PRICE_DEDUCTION", "TAX_RETURN_DEDUCTIONS_FOU", "EXEMPT_INCOME_ACCORDINT_TO_PETROLEUM_TAX_LAW", "TAX_FREE_INCOME_RELATED_TO_EXTRACTION_PETROLEUM_ABROAD", "OWN_SICKNESS_BENEFITS_AS_INCOME_IN_ANNUAL_ACCOUNTS", "RETURN_ON_LIFE_INSURANCE_IN_ANNUAL_ACCOUNTS", "REVERSAL_OF_DEDUCTIONS_SCIENTIFIC_RESEARCH_AND_VOCATIONAL_TRAINING", "REVERSAL_INCREASE_VALUE_LINKED_TO_COMPANY_PORTFOLIO", "TEMPORARY_DIFFERENCES_TYPE", "OPENING_BALANCE_ACCOUNTABLE_VALUE", "CLOSING_BALANCE_ACCOUNTABLE_VALUE", "OPENING_BALANCE_TAX_VALUE", "CLOSING_BALANCE_TAX_VALUE", "OPENING_BALANCE_DIFFERENCES", "CLOSING_BALANCE_DIFFERENCES", "SHOW_PROFIT_AND_LOSS", "SHOW_ACCOMMODATION_AND_RESTAURANT", "IS_ACCOUNTABLE", "USE_ACCOUNTING_VALUES_IN_INVENTORIES", "USE_ACCOUNTING_VALUES_IN_CUSTOMER_RECEIVABLES", "SHOW_TANGIBLE_FIXED_ASSET", "SHOW_CAR", "SHOW_INVENTORIES", "SHOW_CUSTOMER_RECEIVABLES", "SHOW_CONCERN_RELATION", "OWN_BUSINESS_PROPERTIES", "OWN_ASSET_PAPER", "SHOW_SALARY_AND_PENSION_EXPENSES", "TRANSFERRED_BY", "TRANSFERRED_DATE", "IS_TAXABLE", "AUDITING_OBLIGATION", "VALIDATION_ONLY_ON_SUBMIT", "DATE_OF_DETERMINATION", "CONFIRMING_COMPANY_REPRESENTATIVE", "CONTACT_PERSON", "PARENT_COMPANY", "SMALL_ENTERPRISES", "PREPARED_BY_AUTHORIZED_ACCOUNTANT", "SERVICE_ASSISTANCE_USED", "ELECTRONIC_CASE_PROCESSING", "SUBMIT_WITHOUT_BUSINESS_SPECIFICATION", "SHOW_RESULT_AND_BALANCE_PREVIOUS_YEAR", "DATE_START", "DATE_END", "INCLUDE_PREVIOUS_YEAR_IN_RESULT", "DISTRIBUTE_INCOME_MODULE_INDUSTRY", "HIDE_TRANSFERRED_FROM_LAST_YEAR_NOTIFICATION", "RESEARCH_AND_DEVELOPMENT", "COMPANY_PARTICIPANT_ANS_DA", "CONTROLLED_TRANSACTION_AND_INBETWEEN", "LIMITATION_OF_DEDUCTION", "EXCEPTION_FOR_INTEREST_LIMITATION", "NUF_COMPANY_ID", "NUF_COMPANY_NAME", "NUF_COUNTRY_CODE", "TIMBER_ACCOUNT", "KLAGE_PAA_SKJOENNSFASTSETTING", "DEV_PILOT_TEST_ORG_NO", "HIDE_MOVE_AGRO_ACCOUNT_NUMBER_NOTIFICATION", "FOREST_FUND", "SUBMISSION_TO_LANDBRUKETS_DATAFLYT_DATE", "SUBMISSION_TO_LANDBRUKETS_DATAFLYT_BY", "SUBMISSION_TO_NIBIO_DATE", "SUBMISSION_TO_NIBIO_BY", "SHOW_ALL_POSTS_RESULT_AND_BALANCE", "REPORT_SIGNATURE_DATE", "REPORT_SIGNATURE_LOCATION", "REPORT_TOGGLE_DATE_LOCATION", "AGRICULTURAL_ACCOUNT", "AGRICULTURAL_ACCOUNT_USE_MULTIPLE_ACCOUNTS", "REPORT_SELECTED_STEP_FRONT_PAGE", "REPORT_SELECTED_STEP_CONTENT_TABLE", "REPORT_SELECTED_STEP_RESULT_AND_BALANCE", "REPORT_SELECTED_STEP_NOTES_FOR_SUBMISSION", "REPORT_SELECTED_STEP_NOTES_FOR_INTERNAL_USE", "REPORT_SELECTED_STEP_SIGNING", "YEAR_END_BRREG_DOC_ID", "YEAR_END_BRREG_DOC_FETCHER_NAME", "YEAR_END_DOCUMENTATION_ACCOMMODATION_AND_RESTAURANT", "YEAR_END_DOCUMENTATION_PROFIT_AND_LOSS_ACCOUNT", "YEAR_END_DOCUMENTATION_COMMERCIAL_VEHICLE", "YEAR_END_DOCUMENTATION_TANGIBLE_FIXED_ASSETS", "YEAR_END_DOCUMENTATION_INVENTORIES", "YEAR_END_DOCUMENTATION_ACCOUNTS_RECEIVABLE_FROM_CUSTOMERS", "YEAR_END_DOCUMENTATION_PROFIT_LOSS", "YEAR_END_DOCUMENTATION_BALANCE", "YEAR_END_DOCUMENTATION_PERSONAL_INCOME", "YEAR_END_DOCUMENTATION_PERMANENT_DIFFERENCES", "YEAR_END_DOCUMENTATION_TEMPORARY_DIFFERENCES", "YEAR_END_DOCUMENTATION_TAX_RELATED_RESULT", "YEAR_END_DOCUMENTATION_GROUP_CONTRIBUTIONS", "YEAR_END_DOCUMENTATION_EQUITY_RECONCILIATION", "YEAR_END_DOCUMENTATION_TAX_RETURN", "YEAR_END_DOCUMENTATION_DIVIDEND", "YEAR_END_DOCUMENTATION_DISPOSITIONS", "YEAR_END_DOCUMENTATION_PROPERTIES", "YEAR_END_DOCUMENTATION_SECURITIES", "YEAR_END_DOCUMENTATION_TAX_CALCULATION", "YEAR_END_DOCUMENTATION_AUDIT_REPORT", "YEAR_END_DOCUMENTATION_ANNUAL_REPORT", "YEAR_END_DOCUMENTATION_CASH_FLOW_STATEMENT", "YEAR_END_DOCUMENTATION_ANNEXES_TO_THE_ANNUAL_ACCOUNTS", "YEAR_END_DOCUMENTATION_SALARY_AND_PENSION_EXPENSES", "YEAR_END_DOCUMENTATION_COOPERATIVE_ENTERPRISE", "YEAR_END_DOCUMENTATION_OTHER_CIRCUMSTANCES", "YEAR_END_DOCUMENTATION_TIMBER_ACCOUNT", "YEAR_END_DOCUMENTATION_PARTICIPANT_ASSESSMENT", "YEAR_END_DOCUMENTATION_RESEARCH_AND_DEVELOPMENT", "YEAR_END_DOCUMENTATION_COMPANY_TAX_RETURN", "YEAR_END_DOCUMENTATION_PARTICIPANTS_TASK", "YEAR_END_DOCUMENTATION_CONTROLLED_TRANSACTIONS", "YEAR_END_DOCUMENTATION_LIMITATION_OF_DEDUCTION", "YEAR_END_DOCUMENTATION_SKJOENNSFASTSETTING", "YEAR_END_DOCUMENTATION_SKJOENNSFASTSETTING_ALTINN_ID", "YEAR_END_DOCUMENTATION_FOREST_FUND", "YEAR_END_DOCUMENTATION_ATTACHMENT_CATEGORY", "YEAR_END_DOCUMENTATION_DISTRIBUTE_CAPITAL_DEBT_WITH_SPOUSE", "YEAR_END_DOCUMENTATION_REINDEER_HUSBANDRY", "YEAR_END_DOCUMENT_SELECTED", "YEAR_END_DOCUMENTATION_ANNUALACCOUNTS_REPORT_GENERATED", "YEAR_END_DOCUMENTATION_AGRICULTURAL_ACCOUNT", "RECEIVER_ORG_NR", "RECEIVER_NAME", "CONCERN_CONNECTION", "VOTING_LIMIT", "DATE_OF_ACQUISITION", "RECEIVED_GROUP_CONTRIBUTIONS_WITH_TAX_AFFECTION", "RECEIVED_GROUP_CONTRIBUTIONS_WITHOUT_TAX_AFFECTION", "SUBMITTED_GROUP_CONTRIBUTIONS_WITH_TAX_AFFECTION", "SUBMITTED_GROUP_CONTRIBUTIONS_WITHOUT_TAX_AFFECTION", "RECEIVED_GROUP_CONTRIBUTIONS_FOREIGN_COMPANY_WITH_TAX_AFFECTION", "SUBMITTED_GROUP_CONTRIBUTIONS_FOREIGN_COMPANY_WITH_TAX_AFFECTION", "APPLICATION_OF_LOSS_CARRY_FORWARDS", "ACCUMULATED_LOSS_FROM_PREVIOUS_YEARS", "CORRECTIONS_AND_OTHER_CAPITAL", "CORRECTIONS_AND_OTHER_DEBT", "NUMBER_OF_SHARES", "TOTAL_SHARE_CAPITAL", "IS_PART_OF_GROUP_COMPANY", "IS_LISTED_ON_THE_STOCK_EXCHANGE", "IS_REORGANIZED_ACROSS_BORDERS", "HAS_RECEIVED_OR_TRANSFERRED_ASSETS", "HEAD_OF_GROUP_NAME", "HEAD_OF_GROUP_COUNTRY_CODE", "HEAD_OF_GROUP_LAST_YEAR_NAME", "HEAD_OF_GROUP_LAST_YEAR_COUNTRY_CODE", "FOREIGN_OWNERSHIP_COMPANY_NAME", "FOREIGN_OWNERSHIP_COMPANY_COUNTRY_CODE", "OWNS_MIN_50_PERCENT_OF_FOREIGN_COMPANY", "HAS_PERMANENT_ESTABLISHMENT_ABROAD", "COUNTRY_FOR_COUNTRY_REPORTABLE_ENTERPRISE_NAME", "COUNTRY_FOR_COUNTRY_REPORTABLE_ENTERPRISE_COUNTRY_CODE", "HAS_PERFORMANCE_BETWEEN_SHAREHOLDERS_AND_OTHER", "HAS_OUTSTANDING_PAYMENT_CLAIMS_RELATED_TO_ILLEGAL_STATE_AID", "IS_SMALL_OR_MEDIUM_SIZED_BUSINESS", "HAD_FINANCIAL_DIFFICULTIES_LAST_YEAR", "IS_GROUP_COMPANY", "HAS_RECEIVED_OTHER_PUBLIC_SUPPORT", "TAXABLE_VALUE_ON_OTHER_ASSETS", "ADDITIONS_NON_DEDUCTIBLE_LATE_PAYMENT", "SALES_WITH_MEMBERS_IN_OWN_COOPERATIVE", "RETROACTIVE_PAYMENT_MEMBERS_IN_OWN_COOPERATIVE", "CARRIED_FORWARD_DEDUCTION_LIMIT_LATE_PAYMENT_PREV_YEAR", "CARRY_FORWARD_DEDUCTION_LIMIT_LATE_PAYMENT", "TAXABLE_VALUE_ON_FORESTRY", "REINSTATED_LOSS_FROM_PRELIMINARY_ASSESSMENT_IN_LATER_YEARS", "HEAD_OF_GROUP_IDENTIFIER", "HEAD_OF_GROUP_LAST_YEAR_IDENTIFIER", "COUNTRY_FOR_COUNTRY_REPORTABLE_ENTERPRISE_IDENTIFIER", "NORWEGIAN_HEAD_OF_GROUP_NAME", "NORWEGIAN_HEAD_OF_GROUP_IDENTIFIER", "NORWEGIAN_HEAD_OF_GROUP_COUNTRY_CODE", "SHARE_OF_LOSS_OFFSET_AGAINST_PROFIT_TWO_PRECEDING_YEARS", "AID_SCHEME_TONNAGE_TAX_REGIME", "AID_SCHEME_RULES_FOR_ELECTRIC_DELIVERY_TRUCKS", "AID_SCHEME_FOR_LONG_TERM_INVESTMENTS", "AID_SCHEME_EMPLOYMENT_RELATED_OPTIONS_START_UP", "AID_SCHEME_TAX_FUN", "AID_SCHEME_FAVOURABLE_DEPRECIATION_RULES", "AID_SCHEME_REGIONALLY_DIFFERENTIATED_INSURANCE_CONTRIBUTIONS", "AID_SCHEME_FAVOURABLE_DETERMINED_LIST_PRICES_ELECTRIC_VEHICLES", "AID_SCHEME_VAT_EXEMPTION_TURNOVER_ELECTRIC_CARS", "AID_SCHEME_VAT_EXEMPTION_LEASING_ELECTRIC_CARS", "AID_SCHEME_VAT_EXEMPTION_TURNOVER_BATTERIES", "AID_SCHEME_VAT_EXEMPTION_TURNOVER_ELECTRIC_NEWS", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_INDUSTRIAL_SECTOR", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_DISTRICT_HEATING", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_TARGET_ZONE", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_DATA_CENTRES", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_COMMERCIAL_VESSELS", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_ENERGY_PRODUCTS", "AID_SCHEME_REDUCED_BASIC_TAX_MINERAL_OIL_WOOD_INDUSTRY", "AID_SCHEME_REDUCED_BASIC_TAX_MINERAL_OIL_PIGMENT_INDUSTRY", "AID_SCHEME_EXEMPTION_CO2_TAX_MINERAL_OIL", "AID_SCHEME_EXEMPTION_CO2_TAX_GAS", "AID_SCHEME_EXEMPTION_NOX_DUTY", "AID_SCHEME_EXEMPTION_TRANSFER_FEE", "AID_SCHEME_REDUCED_ROAD_TRAFFIC_INSURANCE_TAX", "OTHER_CORRECTIONS", "DEFERRED_TAX_ASSETS_IN_BALANCE", "SHARES_AND_SECURITIES_NAME", "SHARES_AND_SECURITIES_STOCK_TYPE", "SHARES_AND_SECURITIES_VAT_NUMBER", "SHARES_AND_SECURITIES_ISIN", "SHARES_AND_SECURITIES_COUNTRY_CODE", "SHARES_AND_SECURITIES_SHARE_CLASS", "SHARES_AND_SECURITIES_SHARES_BY_THE_START_OF_THE_YEAR", "SHARES_AND_SECURITIES_SHARES_BY_THE_END_OF_THE_YEAR", "SHARES_AND_SECURITIES_VALUE", "SHARES_AND_SECURITIES_TOTAL_VALUE", "SHARES_AND_SECURITIES_DIVIDEND", "SHARES_AND_SECURITIES_INTEREST_INCOME", "SHARES_AND_SECURITIES_PROFIT_REALISATION", "SHARES_AND_SECURITIES_LOSS_REALISATION", "SHARES_AND_SECURITIES_PROFIT_INTEREST", "SHARES_AND_SECURITIES_LOSS_INTEREST", "SHARES_AND_SECURITIES_EXEMPTION_METHOD", "SHARES_AND_SECURITIES_FINANCIAL_PRODUCT", "REAL_ESTATE_TYPE", "REAL_ESTATE_DESCRIPTION", "COMMERCIAL_PROPERTY_TYPE", "SHARE_OF_ASSET_VALUE", "INTERNAL_PROPERTY_IDENTIFIER", "ASSET_VALUE_FOR_ASSET_SHARE", "VALUE_BEFORE_VALUATION_DISCOUNT_ASSET_SHARE", "TOTAL_AREA", "CALCULATED_RENTAL_VALUE", "CALCULATED_VALUE_IS_OUTDATED", "REAL_ESTATE_SERG_NO", "REAL_ESTATE_ADDRESS", "REAL_ESTATE_ZIP_CODE", "REAL_ESTATE_POSTAL_PLACE_NAME", "REAL_ESTATE_COUNTRY_CODE", "REAL_ESTATE_MUNICIPALITY_NO", "REAL_ESTATE_MUNICIPALITY_NAME", "REAL_ESTATE_CADASTRAL_UNIT_NO", "REAL_ESTATE_PROPERTY_UNIT_NO", "REAL_ESTATE_LEASEHOLD_NO", "REAL_ESTATE_SECTION_NO", "REAL_ESTATE_OWNERSHIP_SHARE_PERCENTAGE", "REAL_ESTATE_PREV_YEAR_ASSET_VALUE", "REAL_ESTATE_EXPENSES_YEARLY", "REAL_ESTATE_EXPENSES_FARM_HOUSE_YEARLY", "REAL_ESTATE_EXPENSES_OTHER_PROPERTY_YEARLY", "REAL_ESTATE_DATE_DOCUMENTED", "REAL_ESTATE_MARKET_VALUE_MANUAL", "REAL_ESTATE_MARKET_VALUE_CALCULATED", "REAL_ESTATE_USE_VALUE_MARKET", "REAL_ESTATE_DWELLING_TYPE", "REAL_ESTATE_ASSOCIATION_OR_COOPERATIVE_DWELLING_OWNERSHIP_TYPE", "REAL_ESTATE_ASSOCIATION_OR_COOPERATIVE_DWELLING_OWNERSHIP_NAME", "REAL_ESTATE_ASSOCIATION_OR_COOPERATIVE_DWELLING_OWNERSHIP_ORG_NO", "REAL_ESTATE_ASSOCIATION_OR_COOPERATIVE_DWELLING_OWNERSHIP_SHARE_NO", "REAL_ESTATE_PRIMARY_SECONDARY_DWELLING_TYPE", "REAL_ESTATE_CONSTRUCTION_YEAR", "REAL_ESTATE_SELF_OWNED_OR_COOPERATIVE_DWELLING_CALCULATED_MARKET_VALUE", "REAL_ESTATE_RENTAL_AREA_TOTAL", "REAL_ESTATE_RENTAL_PERIOD_MONTHS", "REAL_ESTATE_RENTAL_INCOME_TOTAL_CALCULATED", "REAL_ESTATE_RENTAL_GROSS_ANNUAL_PREV_YEAR", "REAL_ESTATE_RENTAL_GROSS_ANNUAL_PRIOR_YEAR_TWO", "REAL_ESTATE_RENTAL_ASSET_VALUE_BASE", "REAL_ESTATE_RENTAL_GROSS_INCOME", "REAL_ESTATE_PREV_YEAR_ASSET_VALUE_MANUAL", "REAL_ESTATE_EXPENSES_YEARLY_MANUAL", "REAL_ESTATE_EXPENSES_FARM_HOUSE_YEARLY_MANUAL", "REAL_ESTATE_EXPENSES_OTHER_PROPERTY_YEARLY_MANUAL", "REAL_ESTATE_MULTI_UNIT_BUILDING_UNIT_ROW_ID", "REAL_ESTATE_MULTI_UNIT_BUILDING_UNIT_NO", "REAL_ESTATE_MULTI_UNIT_BUILDING_UNIT_AREA", "REAL_ESTATE_MULTI_UNIT_BUILDING_UNIT_CONSTRUCTION_YEAR", "REAL_ESTATE_MULTI_UNIT_BUILDING_UNIT_VALUE", "REAL_ESTATE_USE_INCREASED_CALCULATION_FACTOR", "YEARLY_DIVIDEND", "DIVIDEND_CREDIT", "DIVIDEND_SECURITY_OFFERED", "DIVIDEND_DISPOSITIONS", "PARTICIPANT_NAME", "PARTICIPANT_NUMBER", "PARTICIPANT_OWNERSHIP", "PARTICIPANT_REPORT_DISTRIBUTION_CASH_DISBURSEMENT_FROM_COMPANY", "PARTICIPANT_REPORT_DISTRIBUTION_VALUE_OF_ASSETS_OR_SERVICE_WITHDRAWN", "PARTICIPANT_REPORT_DISTRIBUTION_CAPITAL_REIMBURSEMENT", "PARTICIPANT_REPORT_SHIELDING_BASIS_OTHER_INITIAL_VALUE_CORRECTION", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_UNUSED_SHIELDING_FROM_PREVIOUS_YEAR", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_CORRECTION_FOR_INHERITANCE_OR_GIFT_IN_INCOME_YEAR", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_TRANSFERRED_SHIELDING_DEDUCTION_FROM_PREVIOUS_YEARS", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_TRANSFERRED_SHIELDING_DEDUCTION", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_OTHER_CORRECTION", "PARTICIPANT_REPORT_ADDITIONS_TO_ORDINARY_INCOME_OTHER_CORRECTION", "PARTICIPANT_REPORT_TAX_BASIS_SPECIFICATION_SHARE_OF_TAXABLE_EQUITY_AT_BEGINNING_OF_YEAR", "PARTICIPANT_REPORT_TAX_BASIS_SPECIFICATION_DEPOSIT", "PARTICIPANT_REPORT_TAX_BASIS_SPECIFICATION_OTHER_CORRECTION", "PARTICIPANT_REPORT_SHARES_REALIZED_OR_ACQUIRED", "PARTICIPANT_REPORT_PAID_IN_SHARE_OF_TAXABLE_EQUITY_AS_OF_BEGINNING_OF_YEAR", "PARTICIPANT_REPORT_PAID_IN_ACQUISITION_OF_SHARE", "PARTICIPANT_REPORT_PAID_IN_DISPOSAL_OF_SHARE", "PARTICIPANT_REPORT_PAID_IN_OTHER_CORRECTION", "PARTICIPANT_REPORT_RETAINED_EARNINGS_SHARE_OF_TAXABLE_EQUITY_AS_OF_BEGINNING_OF_YEAR", "PARTICIPANT_REPORT_RETAINED_EARNINGS_ACQUISITION_OF_SHARE", "PARTICIPANT_REPORT_RETAINED_EARNINGS_DISPOSAL_OF_SHARE", "PARTICIPANT_REPORT_RETAINED_EARNINGS_TAX_RESULT", "PARTICIPANT_REPORT_RETAINED_EARNINGS_TAX_FREE_INCOME", "PARTICIPANT_REPORT_RETAINED_EARNINGS_OTHER_CORRECTION", "PARTICIPANT_REPORT_RETAINED_EARNINGS_NON_DEDUCTIBLE_EXPENSES", "PARTICIPANT_REPORT_COMPENSATION_FOR_WORK_IN_OTHER_INDUSTRIES_INCLUDING_AGRICULTURE", "PARTICIPANT_REPORT_COMPENSATION_FOR_WORK_IN_FISHING_AND_HUNTING", "PARTICIPANT_REPORT_COMPENSATION_FOR_WORK_IN_FAMILY_KINDERGARTEN_AT_PARTICIPANTS_HOME", "PARTICIPANT_REPORT_AGRICULTURAL_DEDUCTION", "PARTICIPANT_REPORT_RENTAL_INCOME_FROM_AGRICULTURAL_OPERATIONS", "PARTICIPANT_REPORT_RESIDES_IN_NORDTROMS_OR_FINNMARK", "PARTICIPANT_DISPROPORTIONATE_DISTRIBUTION", "PARTICIPANT_DISPROPORTIONATE_DISTRIBUTION_SHARE_OF_RESULT", "PARTICIPANT_DISPROPORTIONATE_DISTRIBUTION_SHARE_OF_WEALTH", "PARTICIPANT_PRICE_MANAGEMENT_PRICING", "PARTICIPANT_PRICE_MANAGEMENT_REALIZED_SHARE_TAX_EQUITY", "PARTICIPANT_PRICE_MANAGEMENT_REALIZED_COST_PRICE", "PARTICIPANT_PRICE_MANAGEMENT_REALIZED_SHARE_OF_PRICE_ADJUSTMENT", "PARTICIPANT_PRICE_MANAGEMENT_ACCUMULATED_ADJUSTMENTS", "PARTICIPANT_ASSESSMENT_REPORT_COMPANY_NAME", "PARTICIPANT_ASSESSMENT_REPORT_ORG_NUMBER", "PARTICIPANT_ASSESSMENT_REPORT_MUNICIPALITY_ID", "PARTICIPANT_ASSESSMENT_REPORT_COUNTRY_CODE", "PARTICIPANT_ASSESSMENT_REPORT_VALUE_BEFORE_APPRECIATION_FOR_NET_ASSETS", "PARTICIPANT_ASSESSMENT_REPORT_DEBT", "PARTICIPANT_ASSESSMENT_REPORT_ORDINARY_INCOME", "PARTICIPANT_ASSESSMENT_REPORT_LOSS", "PARTICIPANT_ASSESSMENT_REPORT_PAYMENT_TO_PARTICIPANT", "PARTICIPANT_ASSESSMENT_REPORT_GAIN_ON_REALIZATION_OF_SHARE", "PARTICIPANT_ASSESSMENT_REPORT_LOSS_ON_REALIZATION_OF_SHARE", "PARTICIPANT_REPORT_ROE_TRANSFER_TYPE", "PARTICIPANT_REPORT_ROE_NAME", "PARTICIPANT_REPORT_ROE_IDENTIFICATION", "PARTICIPANT_REPORT_ROE_TRANSACTION_TYPE", "PARTICIPANT_REPORT_ROE_TIME", "PARTICIPANT_REPORT_ROE_AMOUNT", "PARTICIPANT_REPORT_ROE_REMUNERATION", "PARTICIPANT_REPORT_ROE_COSTS", "PARTICIPANT_REPORT_ROE_ADDITION_NON_DEDUCTIBLE_LOSS", "PARTICIPANT_REPORT_ROE_UNUSED_SHIELDING_PREVIOUS_YEARS", "PARTICIPANT_REPORT_ROE_OTHER_CORRECTIONS", "PARTICIPANT_REPORT_ROE_GAIN_LOSS_REALIZATION", "PARTICIPANT_REPORT_ROE_IS_COVERED_EXEMPTION_METHOD", "PARTICIPANT_REPORT_ROE_ACQUIRED_INITIAL_VALUE", "PARTICIPANT_REPORT_ROE_PRICE", "PARTICIPANT_REPORT_TAX_BASIS_SPECIFICATION_REALIZATION_OF_SHARE_VALUE", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_OFFSET_AGAINST_REALIZATION_GAIN", "PARTICIPANT_REPORT_SHIELDING_BASIS_REDUCTION_OF_USED_SHIELDING_DUE_TO_REALIZATION", "PARTICIPANT_REPORT_TAX_BASIS_SPECIFICATION_ACQUISITION_OF_SHARE_VALUE", "YEAR_END_ATTACHMENT_TOGGLE_ENABLED", "COOPERATIVE_ENTERPRISE_TAXABLE_BUSINESS_INCOME", "COOPERATIVE_ENTERPRISE_FROM_SALES_INVOLVING_MEMBER", "COOPERATIVE_ENTERPRISE_SALES_INVOLVING_MEMBER_SEPARATE", "COOPERATIVE_ENTERPRISE_SALES_INVOLVING_MEMBER_ANOTHER", "COOPERATIVE_ENTERPRISE_OTHER_SALES", "COOPERATIVE_ENTERPRISE_RETROACTIVE_PAYMENT_ETC_SEPARATE", "COOPERATIVE_ENTERPRISE_RETROACTIVE_PAYMENT_ETC_OTHER", "COOPERATIVE_ENTERPRISE_CONDITIONS_FOR_DEDUCTION_RETROACTIVE_PAYMENT_ARE_MET", "COOPERATIVE_ENTERPRISE_PURCHASE_INVOLVING_MEMBER_SEPARATE", "COOPERATIVE_ENTERPRISE_PURCHASE_INVOLVING_MEMBER_ANOTHER", "COOPERATIVE_ENTERPRISE_OTHER_PURCHASES", "COOPERATIVE_ENTERPRISE_DECIDED_PAID_BACK_PAYMENT", "COOPERATIVE_ENTERPRISE_CARRY_FORWARD_DEDUCTION_THIS_YEAR", "COOPERATIVE_ENTERPRISE_DECIDED_ALLOCATED_PROFIT", "COOPERATIVE_ENTERPRISE_COOPERATIVE_TYPE", "COOPERATIVE_ENTERPRISE_DEDUCTION_LIMIT_INCOME_YEAR", "COOPERATIVE_ENTERPRISE_DEDUCTION_LIMIT_PREVIOUS_YEAR", "OTHER_CIRCUMSTANCES_TOTAL_DISTRIBUTED_DIVIDEND", "OTHER_CIRCUMSTANCES_INTEREST_ON_EQUITY_CERTIFICATE", "OTHER_CIRCUMSTANCES_COMPANY_HAS_GRANTED_LOAN", "OTHER_CIRCUMSTANCES_SHAREHOLDER_HAS_GRANTED_LOAN", "OTHER_CIRCUMSTANCES_LOAN_AMOUNT_TO_SHAREHOLDER", "OTHER_CIRCUMSTANCES_LOAN_AMOUNT_TO_COMPANY", "OTHER_CIRCUMSTANCES_INTEREST_RECOGNISED_AS_INCOME", "OTHER_CIRCUMSTANCES_INTEREST_RECOGNISED_AS_EXPENSES", "OTHER_CIRCUMSTANCES_LOAN_BALANCE", "OTHER_CIRCUMSTANCES_COLLATERAL_AMOUNT", "OTHER_CIRCUMSTANCES_COLLATERAL_AMOUNT_INCOME_YEAR_TO_COMPANY", "OTHER_CIRCUMSTANCES_COLLATERAL_AMOUNT_INCOME_YEAR_TO_SHAREHOLDER", "OTHER_CIRCUMSTANCES_RENTAL_WITHDRAWAL_SALE_GRANTED", "OTHER_CIRCUMSTANCES_RENTAL_SALE_GRANTED", "OTHER_CIRCUMSTANCES_ASSET_TYPE", "OTHER_CIRCUMSTANCES_PRICING_METHOD", "OTHER_CIRCUMSTANCES_RENTAL_VALUE", "OTHER_CIRCUMSTANCES_VALUE_OF_SALE_OR_WITHDRAWAL", "RESEARCH_AND_DEVELOPMENT_PROJECT_NUMBER", "RESEARCH_AND_DEVELOPMENT_PROJECT_TITLE", "RESEARCH_AND_DEVELOPMENT_PROJECT_CATEGORY", "RESEARCH_AND_DEVELOPMENT_APPLICATION_APPROVED_DATE", "RESEARCH_AND_DEVELOPMENT_PROJECT_START_DATE", "RESEARCH_AND_DEVELOPMENT_PROJECT_END_DATE", "RESEARCH_AND_DEVELOPMENT_APPROVED_RND_INCENTIVE_START_YEAR", "RESEARCH_AND_DEVELOPMENT_APPROVED_RND_INCENTIVE_END_YEAR", "RESEARCH_AND_DEVELOPMENT_PROJECT_STATUS", "RESEARCH_AND_DEVELOPMENT_PROJECT_STATUS_DATE", "RESEARCH_AND_DEVELOPMENT_BUSINESS_CATEGORY", "RESEARCH_AND_DEVELOPMENT_IS_COLLABORATIVE_PROJECT_WITH_OTHER_ENTERPRISES", "RESEARCH_AND_DEVELOPMENT_HAS_EXTENSIVE_DISSEMINATION_THROUGH_CONFERENCES_PUBLICATIONS_ETC", "RESEARCH_AND_DEVELOPMENT_TOTAL_COSTS_PREVIOUS_YEARS", "RESEARCH_AND_DEVELOPMENT_TOTAL_GROSS_TAX_DEDUCTION_FROM_PREVIOUS_YEARS", "RESEARCH_AND_DEVELOPMENT_TOTAL_GROSS_TAX_DEDUCTION_FROM_INCOME_YEAR", "RESEARCH_AND_DEVELOPMENT_INCLUDED_PERSONNEL_COSTS_IN_INCOME_YEAR", "RESEARCH_AND_DEVELOPMENT_NUMBER_OF_OWN_HOURS_IN_INCOME_YEAR", "RESEARCH_AND_DEVELOPMENT_PUBLIC_SUPPORT_AS_REDUCED_WORKER_FEE", "RESEARCH_AND_DEVELOPMENT_WAS_IN_ECONOMIC_DIFFICULTIES_AT_APPLICATION_TIME", "RESEARCH_AND_DEVELOPMENT_UNDERLYING_DOCUMENTS_USED_FOR_ASSESSMENT", "RESEARCH_AND_DEVELOPMENT_UNDERLYING_DOCUMENTATION_DATE", "RESEARCH_AND_DEVELOPMENT_RESOLUTION_DATE", "RESEARCH_AND_DEVELOPMENT_RESOLUTION_TYPE", "RESEARCH_AND_DEVELOPMENT_RESOLUTION_DELIMITATION", "RESEARCH_AND_DEVELOPMENT_OTHER_PUBLIC_SUPPORT_PAYER_NAME", "RESEARCH_AND_DEVELOPMENT_OTHER_PUBLIC_SUPPORT_AMOUNT", "RESEARCH_AND_DEVELOPMENT_TOTAL_COSTS_EXCLUDED_FROM_TAX_DEDUCTION", "RESEARCH_AND_DEVELOPMENT_PROJECT_TO_BE_SIGNED_BY_AUDITOR", "RESEARCH_AND_DEVELOPMENT_STAKE_IN_COLLABORATIVE_PROJECT", "RESEARCH_AND_DEVELOPMENT_APPLIED_FOR_OTHER_PUBLIC_SUPPORT_IN_NORWAY", "RESEARCH_AND_DEVELOPMENT_WORK_PACKAGE_ID", "RESEARCH_AND_DEVELOPMENT_WORK_PACKAGE_TITLE", "RESEARCH_AND_DEVELOPMENT_WORK_PACKAGE_TOTAL_COST_FROM_PREVIOUS_YEAR", "RESEARCH_AND_DEVELOPMENT_WORK_PACKAGE_RECEIVED_PUBLIC_SUPPORT", "RESEARCH_AND_DEVELOPMENT_COLLABORATIVE_BUSINESS_ORG_NO", "RESEARCH_AND_DEVELOPMENT_COLLABORATIVE_BUSINESS_DESCRIPTION", "TIMBER_ACCOUNT_SHARE_OF_OPERATING_REVENUES_HUNTING_FISHING_ETC_MANUAL", "TIMBER_ACCOUNT_STANDARD_INCOME_FROM_BIOMASS_OR_WOOD_PRODUCTION_TRANSFERRED_AGRIGULTURE", "TIMBER_ACCOUNT_SHARE_OF_PROFIT_TO_REGISTER", "TIMBER_ACCOUNT_INCOMING_VALUE_FROM_AQUIRED_TIMBER_ACCOUNT", "TIMBER_ACCOUNT_VALUE_OF_SHARE_OF_REALIZED_TIMBER_ACCOUNT", "TIMBER_ACCOUNT_SHARE_OF_BASIS_NEXT_YEAR", "TIMBER_ACCOUNT_REMAINDER_NOT_TAXED_FELLING", "TIMBER_ACCOUNT_REMAINDER_INCLUDED_THIS_YEAR", "TIMBER_ACCOUNT_MUNICIPALITY_NO", "TIMBER_ACCOUNT_PAID_PUBLIC_CONTRIBUTION_FOREST_FUND", "TIMBER_ACCOUNT_SHARE_OF_OPERATING_REVENUES_HUNTING_FISHING_ETC", "CONTROLLED_TRANSACTIONS_EXEMPT_TRANSACTION_SHARING", "CONTROLLED_TRANSACTIONS_EXEMPT_PRICE_SHARING", "CONTROLLED_TRANSACTIONS_CONSOLIDATED_MARGIN_YEAR", "CONTROLLED_TRANSACTIONS_CONSOLIDATED_MARGIN_PERCENTAGE", "CONTROLLED_TRANSACTIONS_REPORTS_ONLY_PROVISION_INCOME", "CONTROLLED_TRANSACTIONS_COST_OF_IMMATERIAL_ASSETS", "CONTROLLED_TRANSACTIONS_NUMBER_OF_REGISTERED_PATENTS", "CONTROLLED_TRANSACTIONS_GROUP_HAS_BEEN_RESTRUCTURED", "CONTROLLED_TRANSACTIONS_COMPANY_HAS_SERVICED_OTHER_COMPANY_IN_GROUP_FOR_FREE", "CONTROLLED_TRANSACTIONS_COMPANY_IS_GUARANTOR_FOR_AGREEMENTS_BY_OTHER_COMPANIES_IN_SAME_GROUP", "CONTROLLED_TRANSACTIONS_RELATED_COMPANY_IDENTIFIER", "CONTROLLED_TRANSACTIONS_RELATED_COMPANY_NAME", "CONTROLLED_TRANSACTIONS_RELATED_COMPANY_COUNTRY", "CONTROLLED_TRANSACTIONS_FUNCTION_AND_RISK_FUNCTION_TYPE", "CONTROLLED_TRANSACTIONS_FUNCTION_AND_RISK_RISK_TYPE", "CONTROLLED_TRANSACTIONS_FUNCTION_AND_RISK_DESCRIPTION", "CONTROLLED_TRANSACTIONS_COMPANY_SPECIFICATION_COMPANY_IDENTIFIER", "CONTROLLED_TRANSACTIONS_COMPANY_SPECIFICATION_COMPANY_NAME", "CONTROLLED_TRANSACTIONS_COMPANY_SPECIFICATION_COMPANY_COUNTRY", "CONTROLLED_TRANSACTIONS_TRANSACTION_TYPE", "CONTROLLED_TRANSACTIONS_TRANSACTION_DESCRIPTION", "CONTROLLED_TRANSACTIONS_TRANSACTION_AMOUNT", "CONTROLLED_TRANSACTIONS_OUTSTANDING_ACCOUNT", "CONTROLLED_TRANSACTIONS_OUTSTANDING_AMOUNT", "CONTROLLED_TRANSACTIONS_OUTSTANDING_COUNTRY_CODE", "CONTROLLED_TRANSACTIONS_TRANSACTION_COUNTRY_CODE", "CONTROLLED_TRANSACTIONS_RESULT_AS_PERCENTAGE_OF_GROSS_REVENUE", "CONTROLLED_TRANSACTIONS_MAIN_BUSINESS_ACTIVITY", "CONTROLLED_TRANSACTIONS_NUMBER_OF_ENTITIES_WITH_CONTROLLED_TRANSACTIONS_IN_NORWAY", "CONTROLLED_TRANSACTIONS_NUMBER_OF_ENTITIES_WITH_CONTROLLED_TRANSACTIONS_OUTSIDE_NORWAY", "CONTROLLED_TRANSACTIONS_COMPANY_HAS_BEEN_SERVICED_BY_OTHER_COMPANY_IN_GROUP_FOR_FREE", "CONTROLLED_TRANSACTIONS_HAS_CONTROLLED_TRANSACTIONS_EXCEEDING_LIMIT", "CONTROLLED_TRANSACTIONS_IS_OBLIGED_TO_DOCUMENT", "INTEREST_LIMITATION_COMPANY_COMPLIANCE_WITH_INTEREST_LIMITATION", "INTEREST_LIMITATION_NET_INTEREST_COSTS_NORWEGIAN_GROUP_EXCEEDS_25MNOK", "INTEREST_LIMITATION_COMPANY_USES_EXCEPTION_RULE", "INTEREST_LIMITATION_GROUP_APEX_COMPANY_NAME", "INTEREST_LIMITATION_GROUP_APEX_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_GROUP_APEX_COUNTRY_CODE", "INTEREST_LIMITATION_NORWEGIAN_PART_OF_GROUP_REPORTED_ANOTHER_COMPANY", "INTEREST_LIMITATION_NORWEGIAN_PART_OF_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_NORWEGIAN_PART_OF_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_NORWEGIAN_PART_OF_GROUP_COUNTRY_CODE", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_CORRECTION_OF_INTEREST_EXPENSES", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_CORRECTION_OF_INTEREST_INCOME", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_GUARANTEE_COMMISSIONS_ON_DEBT", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_LOSS_ON_REALIZATION_OF_PREMIUM_DISCOUNT_BONDS", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_GAIN_ON_REALIZATION_OF_PREMIUM_DISCOUNT_BONDS", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_LOSS_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_COMPANIES_IN_SAME_GROUP_COSTS_FOR_GUARANTEE_COMMISSION", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_COMPANY_IN_SAME_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_COMPANY_IN_SAME_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_COMPANY_IN_SAME_GROUP_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_COMPANY_IN_SAME_GROUP_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_GROUP_GUARANTOR_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_GROUP_GUARANTOR_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_GROUP_GUARANTOR_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_GROUP_GUARANTOR_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_WITH_OUTSTANDING_CLAIM_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_WITH_OUTSTANDING_CLAIM_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_WITH_OUTSTANDING_CLAIM_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_WITH_OUTSTANDING_CLAIM_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANY_IN_SAME_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANY_IN_SAME_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANY_IN_SAME_GROUP_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANY_IN_SAME_GROUP_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANIES_IN_SAME_GROUP_LOSS_FOR_HOLDER_ON_REALIZATION_OF_PREMIUM_DISCOUNT_BOND", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANIES_IN_SAME_GROUP_GAIN_FOR_HOLDER_UPON_REALIZATION_OF_PREMIUM_DISCOUNT_BOND", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANIES_IN_SAME_GROUP_LOSS_FOR_HOLDER_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANIES_IN_SAME_GROUP_GAIN_FOR_HOLDER_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_GROUP_GUARANTOR_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_GROUP_GUARANTOR_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_GROUP_GUARANTOR_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_GROUP_GUARANTOR_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_WITH_OUTSTANDING_CLAIM_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_WITH_OUTSTANDING_CLAIM_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_WITH_OUTSTANDING_CLAIM_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_WITH_OUTSTANDING_CLAIM_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_COSTS_FOR_GUARANTEE_COMMISSION", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_LOSS_FOR_HOLDER_ON_REALIZATION_OF_PREMIUM_DISCOUNT_BOND", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_GAIN_FOR_HOLDER_UPON_REALIZATION_OF_PREMIUM_DISCOUNT_BOND", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_LOSS_FOR_HOLDER_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_GAIN_FOR_HOLDER_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_COMPANIES_INCLUDED_IN_NORWEGIAN_PART_OF_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_COMPANIES_INCLUDED_IN_NORWEGIAN_PART_OF_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_COMPANIES_INCLUDED_IN_NORWEGIAN_PART_OF_GROUP_NET_INTEREST_COST", "INTEREST_LIMITATION_COMPANIES_INCLUDED_IN_NORWEGIAN_PART_OF_GROUP_NET_DEDUCTIBLE_INTEREST_COST", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_GAIN_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_CALCULATION_OF_INTEREST_DEDUCTION_LIMIT_AMORTIZED_LEASE_COST", "INTEREST_LIMITATION_CALCULATION_OF_INTEREST_DEDUCTION_LIMIT_DEDUCTION_FOR_GROUP_CONTRIBUTIONS_NOT_INCLUDED_IN_CALCULATION_BASIS", "FORWARDING_DISALLOWED_INTEREST_DEDUCTION_INCOME_YEAR", "FORWARDING_DISALLOWED_INTEREST_DEDUCTION_CARRIED_FORWARD_FROM_PREVIOUS_YEAR", "INTEREST_LIMITATION_COMPANY_CARRIED_FORWARD_INTEREST_DEDUCTIONS_FROM_PREVIOUS_YEARS", "TAX_ASSESSMENT_NEGATIVE_PERSONAL_INCOME_PREVIOUS_YEAR_OWNER", "TAX_ASSESSMENT_NEGATIVE_PERSONAL_INCOME_PREVIOUS_YEAR_SPOUSE", "TAX_ASSESSMENT_COORDINATION_OTHER_PERSONAL_INCOME_OWNER", "TAX_ASSESSMENT_COORDINATION_OTHER_PERSONAL_INCOME_SPOUSE", "TAX_ASSESSMENT_COORDINATION_COORDINATION_GENERAL_PARTNERSHIP_OWNER", "TAX_ASSESSMENT_COORDINATION_COORDINATION_GENERAL_PARTNERSHIP_SPOUSE", "TAX_ASSESSMENT_SALARY_INCOME_OWNER", "TAX_ASSESSMENT_SALARY_INCOME_SPOUSE", "TAX_ASSESSMENT_SICK_PAYABLE_FISHING_ETC_OWNER", "TAX_ASSESSMENT_SICK_PAYABLE_FISHING_ETC_SPOUSE", "TAX_ASSESSMENT_SICK_PAYABLE_AGRICULTURE_OWNER", "TAX_ASSESSMENT_SICK_PAYABLE_AGRICULTURE_SPOUSE", "TAX_ASSESSMENT_SICK_PAYABLE_OTHER_OWNER", "TAX_ASSESSMENT_SICK_PAYABLE_OTHER_SPOUSE", "TAX_ASSESSMENT_OTHER_PENSIONABLE_INCOME_OWNER", "TAX_ASSESSMENT_OTHER_PENSIONABLE_INCOME_SPOUSE", "TAX_ASSESSMENT_CONDITIONS_ARE_SPECIAL_ALLOWANCE_AGRICULTURE_MET", "TAX_ASSESSMENT_SHARE_FROM_SDF", "REINDEER_HUSBANDRY", "REINDEER_HUSBANDRY_CAPITAL_COSTS_MINUS_CAPITAL_REVENUES", "REINDEER_HUSBANDRY_CORRECTED_BUSINESS_INCOME_TWO_YEARS_AGO", "REINDEER_HUSBANDRY_CORRECTED_BUSINESS_INCOME_ONE_YEAR_AGO", "REINDEER_HUSBANDRY_WITHDRAWAL", "REINDEER_HUSBANDRY_DEPOSIT", "AGRICULTURAL_ACCOUNT_DEPARTMENTS", "AGRICULTURAL_ACCOUNT_SHARE_OF_OPERATING_COSTS", "AGRICULTURAL_ACCOUNT_INCOME_FROM_BIOMASS_OR_WOOD_PRODUCTION", "AGRICULTURAL_ACCOUNT_OPERATIONAL_ENTITY", "AGRICULTURAL_ACCOUNT_MUNICIPALITY", "AGRICULTURAL_ACCOUNT_TRANSFER_TO_AGRICULTURAL_ACCOUNT", "AGRICULTURAL_ACCOUNT_INHERITED_UPON_INHERITANCE_GENERATIONAL_CHANGE", "AGRICULTURAL_ACCOUNT_REALIZED_UPON_INHERITANCE_GENERATIONAL_CHANGE", "AGRICULTURAL_ACCOUNT_SHARE_OF_BASIS_NEXT_YEAR", "AGRICULTURAL_ACCOUNT_SHARE_OF_OPERATING_COSTS_MANUAL", "AGRICULTURAL_ACCOUNT_OWN_CORRECTIONS_INCOME", "AGRICULTURAL_ACCOUNT_OWN_CORRECTIONS_INCOME_MANUAL" ] } } }, "InventoriesOverview" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "inventories" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/InventoriesDetails" } }, "totalOpeningBalance" : { "type" : "number", "readOnly" : true }, "totalClosingBalance" : { "type" : "number", "readOnly" : true }, "totalOpeningBalanceTaxValue" : { "type" : "number", "readOnly" : true }, "totalClosingBalanceTaxValue" : { "type" : "number", "readOnly" : true }, "openingBalanceDifferences" : { "type" : "number", "readOnly" : true }, "closingBalanceDifferences" : { "type" : "number", "readOnly" : true }, "changes" : { "type" : "number", "readOnly" : true } } }, "ResponseWrapperInventoriesOverview" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/InventoriesOverview" } } }, "ResponseWrapperGenericDataOverview" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/GenericDataOverview" } } }, "Participant" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "groupId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "name" : { "type" : "string", "readOnly" : true }, "number" : { "type" : "string", "readOnly" : true }, "ownership" : { "type" : "number", "readOnly" : true }, "ownershipAtBeginningOfYear" : { "type" : "number", "readOnly" : true }, "shareOfResult" : { "type" : "number", "readOnly" : true }, "shareOfWealth" : { "type" : "number", "readOnly" : true }, "posts" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/GenericData" } } }, "description" : "Information about the participant", "readOnly" : true }, "ParticipantOverview" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "participants" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/Participant" } } } }, "ResponseWrapperParticipantOverview" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ParticipantOverview" } } }, "DifferencesOverview" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "permanentDifferencesAdditions" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/PermanentDifferences" } }, "permanentDifferencesDeductions" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/PermanentDifferences" } }, "temporaryDifferences" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/TemporaryDifferences" } }, "sumAdditions" : { "type" : "number", "readOnly" : true }, "sumDeductions" : { "type" : "number", "readOnly" : true }, "sumChanges" : { "type" : "number", "readOnly" : true } } }, "PermanentDifferences" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "name" : { "type" : "string", "readOnly" : true }, "grouping" : { "type" : "string", "readOnly" : true }, "negate" : { "type" : "boolean", "readOnly" : true }, "readOnly" : { "type" : "boolean", "readOnly" : true }, "source" : { "type" : "string", "readOnly" : true }, "postType" : { "type" : "string", "readOnly" : true, "enum" : [ "REGISTRATION_NUMBER", "DESCRIPTION", "VEHICLE_TYPE", "YEAR_OF_INITIAL_REGISTRATION", "LIST_PRICE", "DATE_FROM", "DATE_TO", "LICENCE", "LICENCE_NUMBER", "IS_ELECTRONIC_VEHICLE_LOGBOOK_LOGGED", "NO_OF_KILOMETRES_TOTAL", "OPERATING_EXPENSES", "LEASING_RENT", "IS_COMPANY_VEHICLE_USED_PRIVATE", "NO_OF_KILOMETRES_PRIVATE", "DEPRECIATION_PRIVATE_USE", "REVERSED_VEHICLE_EXPENSES", "FUEL_COST", "MAINTENANCE_COST", "COST_OF_INSURANCE_AND_TAX", "CAR_DEPARTMENT", "NO_OF_LITER_FUEL", "TAXIMETER_TYPE", "INCOME_PERSONAL_TRANSPORT", "INCOME_GOODS_TRANSPORT", "DRIVING_INCOME_PAYED_IN_CASH", "DRIVING_INCOME_INVOICED_PUBLIC_AGENCIES", "TIP_PAYED_WITH_CARD_OR_INVOICE", "TIP_PAYED_IN_CASH", "NO_OF_KILOMETRES_SCHOOL_CHILDREN", "NO_OF_KILOMETRES_WITH_PASSENGER", "FLOP_TRIP_AMOUNT", "IS_CONNECTED_TO_CENTRAL", "ID_FOR_PROFIT_AND_LOSS_ACCOUNT", "DESCRIPTION_PROFIT_AND_LOSS_ACCOUNT", "MUNICIPALITY_NUMBER", "OPENING_BALANCE", "PROFIT_SALES_WITHDRAWAL_OTHER_REALIZATIONS", "LOSS_SALES_WITHDRAWAL_OTHER_REALIZATIONS", "PROFIT_REALIZATIONS_LIVESTOCK", "VALUE_ACQUIRED_PROFIT_AND_LOSS_ACCOUNT", "VALUE_REALIZED_PROFIT_AND_LOSS_ACCOUNT", "ANNUAL_INCOME_RECOGNITION_OR_DEDUCTION_BASIS", "PERCENTAGE_PROFIT_AND_LOSS_ACCOUNT", "ANNUAL_INCOME_RECOGNITION", "ANNUAL_DEDUCTION", "CLOSING_BALANCE", "IS_REGARDING_REALIZATION_SEPARATED_PLOT_AGRICULTURE_OR_FORESTRY", "IS_REGARDING_REALIZATION_WHOLE_AGRICULTURE_OR_FORESTRY_BUSINESS", "PROFIT_AND_LOSS_DEPARTMENT", "ID_FOR_ACCOMMODATION_AND_RESTAURANT", "COVER_CHARGE_SUBJECT_TO_VAT", "COVER_CHARGE_NOT_SUBJECT_TO_VAT", "COVER_CHARGE", "DESCRIPTION_ACCOMMODATION_AND_RESTAURANT", "MUST_BE_CONFIRMED_BY_AUDITOR", "PRODUCT_TYPE", "OPENING_STOCK", "CLOSING_STOCK", "PURCHASE_OF_GOODS", "COST_OF_GOODS_SOLD", "SALES_REVENUE_AND_WITHDRAWALS", "SALES_REVENUE_IN_CASH", "CASH_REGISTER_SYSTEM_YEAR_OF_INITIAL_REGISTRATION", "CASH_REGISTER_SYSTEM_TYPE", "WITHDRAWAL_OF_PRODUCTS_VALUED_AT_TURNOVER", "PRIVATE_WITHDRAWAL_ENTERED_ON_PRIVATE_ACCOUNT", "TOTAL_WITHDRAWAL_PRODUCTS_ENTERED_AS_SALES_REVENUE", "WITHDRAWAL_COST_FOR_ENTERTAINMENT", "WITHDRAWAL_VALUE_VALUED_AT_MARKET_VALUE", "MARKUP_WITHDRAWAL_COST_FOR_ENTERTAINMENT", "TOTAL_WITHDRAWAL_COST_FOR_ENTERTAINMENT", "OPENING_BALANCE_CREDIT_SALES", "CLOSING_BALANCE_CREDIT_SALES", "OPENING_BALANCE_WRITE_DOWN_NEW_COMPANY", "CLOSING_BALANCE_WRITE_DOWN_NEW_COMPANY", "SALARY_AND_PENSION_EXPENSES_ACCOUNT_ID", "SALARY_AND_PENSION_EXPENSES_ACCOUNT_ADDITION", "SALARY_AND_PENSION_EXPENSES_ACCOUNT_DEDUCTION", "SALARY_AND_PENSION_EXPENSES_ACCOUNT_REPORTED_BENEFIT", "SALARY_AND_PENSION_EXPENSES_MANUAL_FILLING", "EMPLOYERS_PAYMENT_OF_SUBSIDY", "TOTAL_AMOUNT_CREDITED_TO_NATURAL_BENEFITS", "BASIS_FOR_INCREASED_EMPLOYERS_TAX", "SALARY_AND_PENSION_EXPENSES_MANUAL_ACCOUNT_DESCRIPTION", "SALARY_AND_PENSION_EXPENSES_MANUAL_ACCOUNT_EXPENSED_BENEFIT", "OPENING_BALANCE_RAW_MATERIAL_AND_SEMI_FINISHED_PRODUCTS", "CLOSING_BALANCE_RAW_MATERIAL_AND_SEMI_FINISHED_PRODUCTS", "OPENING_BALANCE_PRODUCT_UNDER_MANUFACTURING", "CLOSING_BALANCE_PRODUCT_UNDER_MANUFACTURING", "OPENING_BALANCE_INVENTORIES_FINISHED_ITEM", "CLOSING_BALANCE_INVENTORIES_FINISHED_ITEM", "OPENING_BALANCE_PURCHASED_ITEM_FOR_RESALE", "CLOSING_BALANCE_PURCHASED_ITEM_FOR_RESALE", "OPENING_BALANCE_SELF_PRODUCED_PRODUCT_OWN_PRODUCTUION", "CLOSING_BALANCE_SELF_PRODUCED_PRODUCT_OWN_PRODUCTUION", "OPENING_BALANCE_LIVESTOCK", "CLOSING_BALANCE_LIVESTOCK", "ACCOUNT_INVENTORY_BALANCE_ACCOUNT_ID", "ACCOUNT_INVENTORY_BALANCE_DEPARTMENT_ID", "ACCOUNT_INVENTORY_BALANCE_UNIT_RATE", "ACCOUNT_INVENTORY_BALANCE_BALANCE_OUT_QUANTITY", "ACCOUNT_INVENTORY_BALANCE_BALANCE_OUT", "TANGIBLE_FIXED_ASSETS_TYPE", "OPENING_BALANCE_TANGIBLE_FIXED_ASSETS", "TAX_DEPRECIATION_PERCENTAGE", "STRAIGHT_LINE_DEPRECIATION", "PROFIT_TRANSFERRED_TO_PROFIT_AND_LOSS_ACCOUNT", "LOSS_TRANSFERRED_TO_PROFIT_AND_LOSS_ACCOUNT", "ACQUISITION_COST", "LIFETIME", "ACQUISITION_DATE", "REALISATION_DATE", "IS_COMMERCIAL_BUILDING_ACQUIRED_BEFORE_1984", "HISTORICAL_COST_PRICE", "WRITTEN_DOWN_VALUE_PR_01011984", "LOWER_LIMIT_DEPRECIATION", "IS_PHYSICAL_OPERATING_ASSETS_IN_BALANCE_SHEET", "FACILITY_TYPE", "DEPRECIATION_PERCENTAGE", "CASH_DEPOSITS", "CONTRIBUTIONS_IN_KIND", "CAPITAL_REDUCTION_DISTRIBUTED_SHARED_CAPITAL_CASH", "CAPITAL_REDUCTION_DISTRIBUTED_SHARED_CAPITAL_OTHER_ASSETS", "DEBT_WAVING", "BUYING_OWN_SHARES", "SELLING_OWN_SHARES", "DEBT_CONVERSION_TO_EQUITY", "POSITIVE_DIFF_BETWEEN_ALLOCATED_AND_DISTRIBUTED_DIVIDEND", "NEGATIVE_DIFF_BETWEEN_ALLOCATED_AND_DISTRIBUTED_DIVIDEND", "OTHER_NEGATIVE_CHANGE_IN_EQUITY", "LATE_PAYMENT", "OTHER_INTEREST_INCOME", "OTHER_INTEREST_EXPENSE", "INCOME_FROM_OTHER_INVESTMENTS_AND_DIVIDENDS", "PROFIT_ON_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "LOSS_ON_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "PRIVATE_ACCOUNT", "DEDUCTIBLE_COST_OF_USING_A_PRIVATE_CAR", "OTHER_TAX_FREE_INCOME", "OTHERNON_DEDUCTIBLECOST", "TAX_FREE_PROFIT_FROM_THE_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "NON_DEDUCTIBLE_LOSS_ON_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "TAX_FREE_PART_OF_DIVIDENDS_AND_DISTRIBUTIONS", "RETURN_OF_PROFITS_TO_ISDF", "RETURN_OF_DEFICIT_TO_ISDF", "CASH_PAYMENT", "WITHDRAWAL_OF_ASSETS_AND_SERVICES", "OTHER_WITHDRAWALS_AND_DISTRIBUTIONS", "OTHER_POSTIVE_CHANGE_IN_EQUITY", "OTHER_POSITIVE_CHANGE_IN_EQUITY", "NONE_DEDUCTIBLE_COST", "POSITIVE_TAX_COST", "INTEREST_EXPENSE_FIXED_TAX", "SHARE_OF_LOSS_FROM_INVESTMENT", "REVERSAL_OF_IMPAIRMENT", "ACCOUNTING_IMPAIRMENT", "ACCOUNTING_LOSS", "ACCOUNTING_DEFICIT_NORWEGIAN_SDF", "ACCOUNTING_DEFICIT_FOREIGN_SDF", "ACCOUNTING_LOSS_NORWEGIAN_SDF", "ACCOUNTING_LOSS_FOREIGN_SDF", "RETURNED_DEBT_INTEREST", "TAXABLE_PROFIT_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "TAXABLE_DIVIDEND_ON_SHARES", "TAXABLE_PART_OF_DIVIDEND_AND_DISTRIBUTION", "SHARE_OF_TAXABLE_PROFIT_NORWEGIAN_SDF", "SHARE_OF_TAXABLE_PROFIT_FOREIGN_SDF", "TAXABLE_PROFIT_REALIZATION_OF_NORWEGIAN_SDF", "TAXABLE_PROFIT_REALIZATION_OF_FOREIGN_SDF", "ADDITION_INTEREST_COST", "CORRECTION_PURPOSED_DIVIDEND", "TAXABLE_PROFIT_WITHDRAWAL_NORWEGIAN_TAX_AREA", "INCOME_SUPPLEMENT_FOR_CONVERSION_DIFFERENCE", "OTHER_INCOME_SUPPLEMENT", "RETURN_OF_INCOME_RELATED_DIVIDENDS", "PROFIT_AND_LOSS_GROUP_CONTRIBUTION", "ACCOUNTING_PROFIT_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "ACCOUNTING_PROFIT_SHARE_NORWEGIAN_SDF", "ACCOUNTING_PROFIT_SHARE_FOREIGN_SDF", "ACCOUNTING_GAIN_NORWEGIAN_SDF", "ACCOUNTING_GAIN_FOREIGN_SDF", "DEDUCTIBLE_LOSS_ON_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "SHARE_OF_DEDUCTIBLE_DEFICIT_NORWEGIAN_SDF", "SHARE_OF_DEDUCTIBLE_DEFICIT_FOREIGN_SDF", "DEDUCTIBLE_LOSS_ON_REALIZATION_NORWEGIAN_SDF", "DEDUCTIBLE_LOSS_ON_REALIZATION_FOREIGN_SDF", "DEDUCTIBLE_LOSS_ON_WITHDRAWAL_NORWEGIAN_TAX_AREA", "ISSUE_AND_ESTABLISHMENT_COST", "INCOME_DEDUCTION_FROM_ACCOUNTING_CURRENCY_TO_NOK", "OTHER_INCOME_DEDUCTION", "INCOME_ACCOUNT_DEFERRED_INCOME", "RETURN_VALUE_REDUCTION_COMPANY_PORTFOLIO", "INCOME_RECOGNITION_PARAGRAPH_10_TRANSACTIONS", "STANDARD_PRICE_ADDITION", "INTEREST_EXPENSE_IN_INCOME_STATEMENT", "INCOME_SUPPLEMENT_PRIVATE_USE_COMMERCIAL_VEHICLE", "INTEREST_INCOME_IN_INCOME_STATEMENT", "RETURN_VALUE_ADDITIONS_COMPANY_PORTFOLIO", "NOT_DEDUCTIBLE_COSTS_AND_LOSS_PETROLEUM_ABROAD", "TEMPLATE_DEDUCTION_TAXABLE_INCOME", "COST_ACCOUNTING_PARAGRAPH_10_TRANSACTIONS", "STANDARD_PRICE_DEDUCTION", "TAX_RETURN_DEDUCTIONS_FOU", "EXEMPT_INCOME_ACCORDINT_TO_PETROLEUM_TAX_LAW", "TAX_FREE_INCOME_RELATED_TO_EXTRACTION_PETROLEUM_ABROAD", "OWN_SICKNESS_BENEFITS_AS_INCOME_IN_ANNUAL_ACCOUNTS", "RETURN_ON_LIFE_INSURANCE_IN_ANNUAL_ACCOUNTS", "REVERSAL_OF_DEDUCTIONS_SCIENTIFIC_RESEARCH_AND_VOCATIONAL_TRAINING", "REVERSAL_INCREASE_VALUE_LINKED_TO_COMPANY_PORTFOLIO", "TEMPORARY_DIFFERENCES_TYPE", "OPENING_BALANCE_ACCOUNTABLE_VALUE", "CLOSING_BALANCE_ACCOUNTABLE_VALUE", "OPENING_BALANCE_TAX_VALUE", "CLOSING_BALANCE_TAX_VALUE", "OPENING_BALANCE_DIFFERENCES", "CLOSING_BALANCE_DIFFERENCES", "SHOW_PROFIT_AND_LOSS", "SHOW_ACCOMMODATION_AND_RESTAURANT", "IS_ACCOUNTABLE", "USE_ACCOUNTING_VALUES_IN_INVENTORIES", "USE_ACCOUNTING_VALUES_IN_CUSTOMER_RECEIVABLES", "SHOW_TANGIBLE_FIXED_ASSET", "SHOW_CAR", "SHOW_INVENTORIES", "SHOW_CUSTOMER_RECEIVABLES", "SHOW_CONCERN_RELATION", "OWN_BUSINESS_PROPERTIES", "OWN_ASSET_PAPER", "SHOW_SALARY_AND_PENSION_EXPENSES", "TRANSFERRED_BY", "TRANSFERRED_DATE", "IS_TAXABLE", "AUDITING_OBLIGATION", "VALIDATION_ONLY_ON_SUBMIT", "DATE_OF_DETERMINATION", "CONFIRMING_COMPANY_REPRESENTATIVE", "CONTACT_PERSON", "PARENT_COMPANY", "SMALL_ENTERPRISES", "PREPARED_BY_AUTHORIZED_ACCOUNTANT", "SERVICE_ASSISTANCE_USED", "ELECTRONIC_CASE_PROCESSING", "SUBMIT_WITHOUT_BUSINESS_SPECIFICATION", "SHOW_RESULT_AND_BALANCE_PREVIOUS_YEAR", "DATE_START", "DATE_END", "INCLUDE_PREVIOUS_YEAR_IN_RESULT", "DISTRIBUTE_INCOME_MODULE_INDUSTRY", "HIDE_TRANSFERRED_FROM_LAST_YEAR_NOTIFICATION", "RESEARCH_AND_DEVELOPMENT", "COMPANY_PARTICIPANT_ANS_DA", "CONTROLLED_TRANSACTION_AND_INBETWEEN", "LIMITATION_OF_DEDUCTION", "EXCEPTION_FOR_INTEREST_LIMITATION", "NUF_COMPANY_ID", "NUF_COMPANY_NAME", "NUF_COUNTRY_CODE", "TIMBER_ACCOUNT", "KLAGE_PAA_SKJOENNSFASTSETTING", "DEV_PILOT_TEST_ORG_NO", "HIDE_MOVE_AGRO_ACCOUNT_NUMBER_NOTIFICATION", "FOREST_FUND", "SUBMISSION_TO_LANDBRUKETS_DATAFLYT_DATE", "SUBMISSION_TO_LANDBRUKETS_DATAFLYT_BY", "SUBMISSION_TO_NIBIO_DATE", "SUBMISSION_TO_NIBIO_BY", "SHOW_ALL_POSTS_RESULT_AND_BALANCE", "REPORT_SIGNATURE_DATE", "REPORT_SIGNATURE_LOCATION", "REPORT_TOGGLE_DATE_LOCATION", "AGRICULTURAL_ACCOUNT", "AGRICULTURAL_ACCOUNT_USE_MULTIPLE_ACCOUNTS", "REPORT_SELECTED_STEP_FRONT_PAGE", "REPORT_SELECTED_STEP_CONTENT_TABLE", "REPORT_SELECTED_STEP_RESULT_AND_BALANCE", "REPORT_SELECTED_STEP_NOTES_FOR_SUBMISSION", "REPORT_SELECTED_STEP_NOTES_FOR_INTERNAL_USE", "REPORT_SELECTED_STEP_SIGNING", "YEAR_END_BRREG_DOC_ID", "YEAR_END_BRREG_DOC_FETCHER_NAME", "YEAR_END_DOCUMENTATION_ACCOMMODATION_AND_RESTAURANT", "YEAR_END_DOCUMENTATION_PROFIT_AND_LOSS_ACCOUNT", "YEAR_END_DOCUMENTATION_COMMERCIAL_VEHICLE", "YEAR_END_DOCUMENTATION_TANGIBLE_FIXED_ASSETS", "YEAR_END_DOCUMENTATION_INVENTORIES", "YEAR_END_DOCUMENTATION_ACCOUNTS_RECEIVABLE_FROM_CUSTOMERS", "YEAR_END_DOCUMENTATION_PROFIT_LOSS", "YEAR_END_DOCUMENTATION_BALANCE", "YEAR_END_DOCUMENTATION_PERSONAL_INCOME", "YEAR_END_DOCUMENTATION_PERMANENT_DIFFERENCES", "YEAR_END_DOCUMENTATION_TEMPORARY_DIFFERENCES", "YEAR_END_DOCUMENTATION_TAX_RELATED_RESULT", "YEAR_END_DOCUMENTATION_GROUP_CONTRIBUTIONS", "YEAR_END_DOCUMENTATION_EQUITY_RECONCILIATION", "YEAR_END_DOCUMENTATION_TAX_RETURN", "YEAR_END_DOCUMENTATION_DIVIDEND", "YEAR_END_DOCUMENTATION_DISPOSITIONS", "YEAR_END_DOCUMENTATION_PROPERTIES", "YEAR_END_DOCUMENTATION_SECURITIES", "YEAR_END_DOCUMENTATION_TAX_CALCULATION", "YEAR_END_DOCUMENTATION_AUDIT_REPORT", "YEAR_END_DOCUMENTATION_ANNUAL_REPORT", "YEAR_END_DOCUMENTATION_CASH_FLOW_STATEMENT", "YEAR_END_DOCUMENTATION_ANNEXES_TO_THE_ANNUAL_ACCOUNTS", "YEAR_END_DOCUMENTATION_SALARY_AND_PENSION_EXPENSES", "YEAR_END_DOCUMENTATION_COOPERATIVE_ENTERPRISE", "YEAR_END_DOCUMENTATION_OTHER_CIRCUMSTANCES", "YEAR_END_DOCUMENTATION_TIMBER_ACCOUNT", "YEAR_END_DOCUMENTATION_PARTICIPANT_ASSESSMENT", "YEAR_END_DOCUMENTATION_RESEARCH_AND_DEVELOPMENT", "YEAR_END_DOCUMENTATION_COMPANY_TAX_RETURN", "YEAR_END_DOCUMENTATION_PARTICIPANTS_TASK", "YEAR_END_DOCUMENTATION_CONTROLLED_TRANSACTIONS", "YEAR_END_DOCUMENTATION_LIMITATION_OF_DEDUCTION", "YEAR_END_DOCUMENTATION_SKJOENNSFASTSETTING", "YEAR_END_DOCUMENTATION_SKJOENNSFASTSETTING_ALTINN_ID", "YEAR_END_DOCUMENTATION_FOREST_FUND", "YEAR_END_DOCUMENTATION_ATTACHMENT_CATEGORY", "YEAR_END_DOCUMENTATION_DISTRIBUTE_CAPITAL_DEBT_WITH_SPOUSE", "YEAR_END_DOCUMENTATION_REINDEER_HUSBANDRY", "YEAR_END_DOCUMENT_SELECTED", "YEAR_END_DOCUMENTATION_ANNUALACCOUNTS_REPORT_GENERATED", "YEAR_END_DOCUMENTATION_AGRICULTURAL_ACCOUNT", "RECEIVER_ORG_NR", "RECEIVER_NAME", "CONCERN_CONNECTION", "VOTING_LIMIT", "DATE_OF_ACQUISITION", "RECEIVED_GROUP_CONTRIBUTIONS_WITH_TAX_AFFECTION", "RECEIVED_GROUP_CONTRIBUTIONS_WITHOUT_TAX_AFFECTION", "SUBMITTED_GROUP_CONTRIBUTIONS_WITH_TAX_AFFECTION", "SUBMITTED_GROUP_CONTRIBUTIONS_WITHOUT_TAX_AFFECTION", "RECEIVED_GROUP_CONTRIBUTIONS_FOREIGN_COMPANY_WITH_TAX_AFFECTION", "SUBMITTED_GROUP_CONTRIBUTIONS_FOREIGN_COMPANY_WITH_TAX_AFFECTION", "APPLICATION_OF_LOSS_CARRY_FORWARDS", "ACCUMULATED_LOSS_FROM_PREVIOUS_YEARS", "CORRECTIONS_AND_OTHER_CAPITAL", "CORRECTIONS_AND_OTHER_DEBT", "NUMBER_OF_SHARES", "TOTAL_SHARE_CAPITAL", "IS_PART_OF_GROUP_COMPANY", "IS_LISTED_ON_THE_STOCK_EXCHANGE", "IS_REORGANIZED_ACROSS_BORDERS", "HAS_RECEIVED_OR_TRANSFERRED_ASSETS", "HEAD_OF_GROUP_NAME", "HEAD_OF_GROUP_COUNTRY_CODE", "HEAD_OF_GROUP_LAST_YEAR_NAME", "HEAD_OF_GROUP_LAST_YEAR_COUNTRY_CODE", "FOREIGN_OWNERSHIP_COMPANY_NAME", "FOREIGN_OWNERSHIP_COMPANY_COUNTRY_CODE", "OWNS_MIN_50_PERCENT_OF_FOREIGN_COMPANY", "HAS_PERMANENT_ESTABLISHMENT_ABROAD", "COUNTRY_FOR_COUNTRY_REPORTABLE_ENTERPRISE_NAME", "COUNTRY_FOR_COUNTRY_REPORTABLE_ENTERPRISE_COUNTRY_CODE", "HAS_PERFORMANCE_BETWEEN_SHAREHOLDERS_AND_OTHER", "HAS_OUTSTANDING_PAYMENT_CLAIMS_RELATED_TO_ILLEGAL_STATE_AID", "IS_SMALL_OR_MEDIUM_SIZED_BUSINESS", "HAD_FINANCIAL_DIFFICULTIES_LAST_YEAR", "IS_GROUP_COMPANY", "HAS_RECEIVED_OTHER_PUBLIC_SUPPORT", "TAXABLE_VALUE_ON_OTHER_ASSETS", "ADDITIONS_NON_DEDUCTIBLE_LATE_PAYMENT", "SALES_WITH_MEMBERS_IN_OWN_COOPERATIVE", "RETROACTIVE_PAYMENT_MEMBERS_IN_OWN_COOPERATIVE", "CARRIED_FORWARD_DEDUCTION_LIMIT_LATE_PAYMENT_PREV_YEAR", "CARRY_FORWARD_DEDUCTION_LIMIT_LATE_PAYMENT", "TAXABLE_VALUE_ON_FORESTRY", "REINSTATED_LOSS_FROM_PRELIMINARY_ASSESSMENT_IN_LATER_YEARS", "HEAD_OF_GROUP_IDENTIFIER", "HEAD_OF_GROUP_LAST_YEAR_IDENTIFIER", "COUNTRY_FOR_COUNTRY_REPORTABLE_ENTERPRISE_IDENTIFIER", "NORWEGIAN_HEAD_OF_GROUP_NAME", "NORWEGIAN_HEAD_OF_GROUP_IDENTIFIER", "NORWEGIAN_HEAD_OF_GROUP_COUNTRY_CODE", "SHARE_OF_LOSS_OFFSET_AGAINST_PROFIT_TWO_PRECEDING_YEARS", "AID_SCHEME_TONNAGE_TAX_REGIME", "AID_SCHEME_RULES_FOR_ELECTRIC_DELIVERY_TRUCKS", "AID_SCHEME_FOR_LONG_TERM_INVESTMENTS", "AID_SCHEME_EMPLOYMENT_RELATED_OPTIONS_START_UP", "AID_SCHEME_TAX_FUN", "AID_SCHEME_FAVOURABLE_DEPRECIATION_RULES", "AID_SCHEME_REGIONALLY_DIFFERENTIATED_INSURANCE_CONTRIBUTIONS", "AID_SCHEME_FAVOURABLE_DETERMINED_LIST_PRICES_ELECTRIC_VEHICLES", "AID_SCHEME_VAT_EXEMPTION_TURNOVER_ELECTRIC_CARS", "AID_SCHEME_VAT_EXEMPTION_LEASING_ELECTRIC_CARS", "AID_SCHEME_VAT_EXEMPTION_TURNOVER_BATTERIES", "AID_SCHEME_VAT_EXEMPTION_TURNOVER_ELECTRIC_NEWS", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_INDUSTRIAL_SECTOR", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_DISTRICT_HEATING", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_TARGET_ZONE", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_DATA_CENTRES", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_COMMERCIAL_VESSELS", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_ENERGY_PRODUCTS", "AID_SCHEME_REDUCED_BASIC_TAX_MINERAL_OIL_WOOD_INDUSTRY", "AID_SCHEME_REDUCED_BASIC_TAX_MINERAL_OIL_PIGMENT_INDUSTRY", "AID_SCHEME_EXEMPTION_CO2_TAX_MINERAL_OIL", "AID_SCHEME_EXEMPTION_CO2_TAX_GAS", "AID_SCHEME_EXEMPTION_NOX_DUTY", "AID_SCHEME_EXEMPTION_TRANSFER_FEE", "AID_SCHEME_REDUCED_ROAD_TRAFFIC_INSURANCE_TAX", "OTHER_CORRECTIONS", "DEFERRED_TAX_ASSETS_IN_BALANCE", "SHARES_AND_SECURITIES_NAME", "SHARES_AND_SECURITIES_STOCK_TYPE", "SHARES_AND_SECURITIES_VAT_NUMBER", "SHARES_AND_SECURITIES_ISIN", "SHARES_AND_SECURITIES_COUNTRY_CODE", "SHARES_AND_SECURITIES_SHARE_CLASS", "SHARES_AND_SECURITIES_SHARES_BY_THE_START_OF_THE_YEAR", "SHARES_AND_SECURITIES_SHARES_BY_THE_END_OF_THE_YEAR", "SHARES_AND_SECURITIES_VALUE", "SHARES_AND_SECURITIES_TOTAL_VALUE", "SHARES_AND_SECURITIES_DIVIDEND", "SHARES_AND_SECURITIES_INTEREST_INCOME", "SHARES_AND_SECURITIES_PROFIT_REALISATION", "SHARES_AND_SECURITIES_LOSS_REALISATION", "SHARES_AND_SECURITIES_PROFIT_INTEREST", "SHARES_AND_SECURITIES_LOSS_INTEREST", "SHARES_AND_SECURITIES_EXEMPTION_METHOD", "SHARES_AND_SECURITIES_FINANCIAL_PRODUCT", "REAL_ESTATE_TYPE", "REAL_ESTATE_DESCRIPTION", "COMMERCIAL_PROPERTY_TYPE", "SHARE_OF_ASSET_VALUE", "INTERNAL_PROPERTY_IDENTIFIER", "ASSET_VALUE_FOR_ASSET_SHARE", "VALUE_BEFORE_VALUATION_DISCOUNT_ASSET_SHARE", "TOTAL_AREA", "CALCULATED_RENTAL_VALUE", "CALCULATED_VALUE_IS_OUTDATED", "REAL_ESTATE_SERG_NO", "REAL_ESTATE_ADDRESS", "REAL_ESTATE_ZIP_CODE", "REAL_ESTATE_POSTAL_PLACE_NAME", "REAL_ESTATE_COUNTRY_CODE", "REAL_ESTATE_MUNICIPALITY_NO", "REAL_ESTATE_MUNICIPALITY_NAME", "REAL_ESTATE_CADASTRAL_UNIT_NO", "REAL_ESTATE_PROPERTY_UNIT_NO", "REAL_ESTATE_LEASEHOLD_NO", "REAL_ESTATE_SECTION_NO", "REAL_ESTATE_OWNERSHIP_SHARE_PERCENTAGE", "REAL_ESTATE_PREV_YEAR_ASSET_VALUE", "REAL_ESTATE_EXPENSES_YEARLY", "REAL_ESTATE_EXPENSES_FARM_HOUSE_YEARLY", "REAL_ESTATE_EXPENSES_OTHER_PROPERTY_YEARLY", "REAL_ESTATE_DATE_DOCUMENTED", "REAL_ESTATE_MARKET_VALUE_MANUAL", "REAL_ESTATE_MARKET_VALUE_CALCULATED", "REAL_ESTATE_USE_VALUE_MARKET", "REAL_ESTATE_DWELLING_TYPE", "REAL_ESTATE_ASSOCIATION_OR_COOPERATIVE_DWELLING_OWNERSHIP_TYPE", "REAL_ESTATE_ASSOCIATION_OR_COOPERATIVE_DWELLING_OWNERSHIP_NAME", "REAL_ESTATE_ASSOCIATION_OR_COOPERATIVE_DWELLING_OWNERSHIP_ORG_NO", "REAL_ESTATE_ASSOCIATION_OR_COOPERATIVE_DWELLING_OWNERSHIP_SHARE_NO", "REAL_ESTATE_PRIMARY_SECONDARY_DWELLING_TYPE", "REAL_ESTATE_CONSTRUCTION_YEAR", "REAL_ESTATE_SELF_OWNED_OR_COOPERATIVE_DWELLING_CALCULATED_MARKET_VALUE", "REAL_ESTATE_RENTAL_AREA_TOTAL", "REAL_ESTATE_RENTAL_PERIOD_MONTHS", "REAL_ESTATE_RENTAL_INCOME_TOTAL_CALCULATED", "REAL_ESTATE_RENTAL_GROSS_ANNUAL_PREV_YEAR", "REAL_ESTATE_RENTAL_GROSS_ANNUAL_PRIOR_YEAR_TWO", "REAL_ESTATE_RENTAL_ASSET_VALUE_BASE", "REAL_ESTATE_RENTAL_GROSS_INCOME", "REAL_ESTATE_PREV_YEAR_ASSET_VALUE_MANUAL", "REAL_ESTATE_EXPENSES_YEARLY_MANUAL", "REAL_ESTATE_EXPENSES_FARM_HOUSE_YEARLY_MANUAL", "REAL_ESTATE_EXPENSES_OTHER_PROPERTY_YEARLY_MANUAL", "REAL_ESTATE_MULTI_UNIT_BUILDING_UNIT_ROW_ID", "REAL_ESTATE_MULTI_UNIT_BUILDING_UNIT_NO", "REAL_ESTATE_MULTI_UNIT_BUILDING_UNIT_AREA", "REAL_ESTATE_MULTI_UNIT_BUILDING_UNIT_CONSTRUCTION_YEAR", "REAL_ESTATE_MULTI_UNIT_BUILDING_UNIT_VALUE", "REAL_ESTATE_USE_INCREASED_CALCULATION_FACTOR", "YEARLY_DIVIDEND", "DIVIDEND_CREDIT", "DIVIDEND_SECURITY_OFFERED", "DIVIDEND_DISPOSITIONS", "PARTICIPANT_NAME", "PARTICIPANT_NUMBER", "PARTICIPANT_OWNERSHIP", "PARTICIPANT_REPORT_DISTRIBUTION_CASH_DISBURSEMENT_FROM_COMPANY", "PARTICIPANT_REPORT_DISTRIBUTION_VALUE_OF_ASSETS_OR_SERVICE_WITHDRAWN", "PARTICIPANT_REPORT_DISTRIBUTION_CAPITAL_REIMBURSEMENT", "PARTICIPANT_REPORT_SHIELDING_BASIS_OTHER_INITIAL_VALUE_CORRECTION", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_UNUSED_SHIELDING_FROM_PREVIOUS_YEAR", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_CORRECTION_FOR_INHERITANCE_OR_GIFT_IN_INCOME_YEAR", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_TRANSFERRED_SHIELDING_DEDUCTION_FROM_PREVIOUS_YEARS", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_TRANSFERRED_SHIELDING_DEDUCTION", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_OTHER_CORRECTION", "PARTICIPANT_REPORT_ADDITIONS_TO_ORDINARY_INCOME_OTHER_CORRECTION", "PARTICIPANT_REPORT_TAX_BASIS_SPECIFICATION_SHARE_OF_TAXABLE_EQUITY_AT_BEGINNING_OF_YEAR", "PARTICIPANT_REPORT_TAX_BASIS_SPECIFICATION_DEPOSIT", "PARTICIPANT_REPORT_TAX_BASIS_SPECIFICATION_OTHER_CORRECTION", "PARTICIPANT_REPORT_SHARES_REALIZED_OR_ACQUIRED", "PARTICIPANT_REPORT_PAID_IN_SHARE_OF_TAXABLE_EQUITY_AS_OF_BEGINNING_OF_YEAR", "PARTICIPANT_REPORT_PAID_IN_ACQUISITION_OF_SHARE", "PARTICIPANT_REPORT_PAID_IN_DISPOSAL_OF_SHARE", "PARTICIPANT_REPORT_PAID_IN_OTHER_CORRECTION", "PARTICIPANT_REPORT_RETAINED_EARNINGS_SHARE_OF_TAXABLE_EQUITY_AS_OF_BEGINNING_OF_YEAR", "PARTICIPANT_REPORT_RETAINED_EARNINGS_ACQUISITION_OF_SHARE", "PARTICIPANT_REPORT_RETAINED_EARNINGS_DISPOSAL_OF_SHARE", "PARTICIPANT_REPORT_RETAINED_EARNINGS_TAX_RESULT", "PARTICIPANT_REPORT_RETAINED_EARNINGS_TAX_FREE_INCOME", "PARTICIPANT_REPORT_RETAINED_EARNINGS_OTHER_CORRECTION", "PARTICIPANT_REPORT_RETAINED_EARNINGS_NON_DEDUCTIBLE_EXPENSES", "PARTICIPANT_REPORT_COMPENSATION_FOR_WORK_IN_OTHER_INDUSTRIES_INCLUDING_AGRICULTURE", "PARTICIPANT_REPORT_COMPENSATION_FOR_WORK_IN_FISHING_AND_HUNTING", "PARTICIPANT_REPORT_COMPENSATION_FOR_WORK_IN_FAMILY_KINDERGARTEN_AT_PARTICIPANTS_HOME", "PARTICIPANT_REPORT_AGRICULTURAL_DEDUCTION", "PARTICIPANT_REPORT_RENTAL_INCOME_FROM_AGRICULTURAL_OPERATIONS", "PARTICIPANT_REPORT_RESIDES_IN_NORDTROMS_OR_FINNMARK", "PARTICIPANT_DISPROPORTIONATE_DISTRIBUTION", "PARTICIPANT_DISPROPORTIONATE_DISTRIBUTION_SHARE_OF_RESULT", "PARTICIPANT_DISPROPORTIONATE_DISTRIBUTION_SHARE_OF_WEALTH", "PARTICIPANT_PRICE_MANAGEMENT_PRICING", "PARTICIPANT_PRICE_MANAGEMENT_REALIZED_SHARE_TAX_EQUITY", "PARTICIPANT_PRICE_MANAGEMENT_REALIZED_COST_PRICE", "PARTICIPANT_PRICE_MANAGEMENT_REALIZED_SHARE_OF_PRICE_ADJUSTMENT", "PARTICIPANT_PRICE_MANAGEMENT_ACCUMULATED_ADJUSTMENTS", "PARTICIPANT_ASSESSMENT_REPORT_COMPANY_NAME", "PARTICIPANT_ASSESSMENT_REPORT_ORG_NUMBER", "PARTICIPANT_ASSESSMENT_REPORT_MUNICIPALITY_ID", "PARTICIPANT_ASSESSMENT_REPORT_COUNTRY_CODE", "PARTICIPANT_ASSESSMENT_REPORT_VALUE_BEFORE_APPRECIATION_FOR_NET_ASSETS", "PARTICIPANT_ASSESSMENT_REPORT_DEBT", "PARTICIPANT_ASSESSMENT_REPORT_ORDINARY_INCOME", "PARTICIPANT_ASSESSMENT_REPORT_LOSS", "PARTICIPANT_ASSESSMENT_REPORT_PAYMENT_TO_PARTICIPANT", "PARTICIPANT_ASSESSMENT_REPORT_GAIN_ON_REALIZATION_OF_SHARE", "PARTICIPANT_ASSESSMENT_REPORT_LOSS_ON_REALIZATION_OF_SHARE", "PARTICIPANT_REPORT_ROE_TRANSFER_TYPE", "PARTICIPANT_REPORT_ROE_NAME", "PARTICIPANT_REPORT_ROE_IDENTIFICATION", "PARTICIPANT_REPORT_ROE_TRANSACTION_TYPE", "PARTICIPANT_REPORT_ROE_TIME", "PARTICIPANT_REPORT_ROE_AMOUNT", "PARTICIPANT_REPORT_ROE_REMUNERATION", "PARTICIPANT_REPORT_ROE_COSTS", "PARTICIPANT_REPORT_ROE_ADDITION_NON_DEDUCTIBLE_LOSS", "PARTICIPANT_REPORT_ROE_UNUSED_SHIELDING_PREVIOUS_YEARS", "PARTICIPANT_REPORT_ROE_OTHER_CORRECTIONS", "PARTICIPANT_REPORT_ROE_GAIN_LOSS_REALIZATION", "PARTICIPANT_REPORT_ROE_IS_COVERED_EXEMPTION_METHOD", "PARTICIPANT_REPORT_ROE_ACQUIRED_INITIAL_VALUE", "PARTICIPANT_REPORT_ROE_PRICE", "PARTICIPANT_REPORT_TAX_BASIS_SPECIFICATION_REALIZATION_OF_SHARE_VALUE", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_OFFSET_AGAINST_REALIZATION_GAIN", "PARTICIPANT_REPORT_SHIELDING_BASIS_REDUCTION_OF_USED_SHIELDING_DUE_TO_REALIZATION", "PARTICIPANT_REPORT_TAX_BASIS_SPECIFICATION_ACQUISITION_OF_SHARE_VALUE", "YEAR_END_ATTACHMENT_TOGGLE_ENABLED", "COOPERATIVE_ENTERPRISE_TAXABLE_BUSINESS_INCOME", "COOPERATIVE_ENTERPRISE_FROM_SALES_INVOLVING_MEMBER", "COOPERATIVE_ENTERPRISE_SALES_INVOLVING_MEMBER_SEPARATE", "COOPERATIVE_ENTERPRISE_SALES_INVOLVING_MEMBER_ANOTHER", "COOPERATIVE_ENTERPRISE_OTHER_SALES", "COOPERATIVE_ENTERPRISE_RETROACTIVE_PAYMENT_ETC_SEPARATE", "COOPERATIVE_ENTERPRISE_RETROACTIVE_PAYMENT_ETC_OTHER", "COOPERATIVE_ENTERPRISE_CONDITIONS_FOR_DEDUCTION_RETROACTIVE_PAYMENT_ARE_MET", "COOPERATIVE_ENTERPRISE_PURCHASE_INVOLVING_MEMBER_SEPARATE", "COOPERATIVE_ENTERPRISE_PURCHASE_INVOLVING_MEMBER_ANOTHER", "COOPERATIVE_ENTERPRISE_OTHER_PURCHASES", "COOPERATIVE_ENTERPRISE_DECIDED_PAID_BACK_PAYMENT", "COOPERATIVE_ENTERPRISE_CARRY_FORWARD_DEDUCTION_THIS_YEAR", "COOPERATIVE_ENTERPRISE_DECIDED_ALLOCATED_PROFIT", "COOPERATIVE_ENTERPRISE_COOPERATIVE_TYPE", "COOPERATIVE_ENTERPRISE_DEDUCTION_LIMIT_INCOME_YEAR", "COOPERATIVE_ENTERPRISE_DEDUCTION_LIMIT_PREVIOUS_YEAR", "OTHER_CIRCUMSTANCES_TOTAL_DISTRIBUTED_DIVIDEND", "OTHER_CIRCUMSTANCES_INTEREST_ON_EQUITY_CERTIFICATE", "OTHER_CIRCUMSTANCES_COMPANY_HAS_GRANTED_LOAN", "OTHER_CIRCUMSTANCES_SHAREHOLDER_HAS_GRANTED_LOAN", "OTHER_CIRCUMSTANCES_LOAN_AMOUNT_TO_SHAREHOLDER", "OTHER_CIRCUMSTANCES_LOAN_AMOUNT_TO_COMPANY", "OTHER_CIRCUMSTANCES_INTEREST_RECOGNISED_AS_INCOME", "OTHER_CIRCUMSTANCES_INTEREST_RECOGNISED_AS_EXPENSES", "OTHER_CIRCUMSTANCES_LOAN_BALANCE", "OTHER_CIRCUMSTANCES_COLLATERAL_AMOUNT", "OTHER_CIRCUMSTANCES_COLLATERAL_AMOUNT_INCOME_YEAR_TO_COMPANY", "OTHER_CIRCUMSTANCES_COLLATERAL_AMOUNT_INCOME_YEAR_TO_SHAREHOLDER", "OTHER_CIRCUMSTANCES_RENTAL_WITHDRAWAL_SALE_GRANTED", "OTHER_CIRCUMSTANCES_RENTAL_SALE_GRANTED", "OTHER_CIRCUMSTANCES_ASSET_TYPE", "OTHER_CIRCUMSTANCES_PRICING_METHOD", "OTHER_CIRCUMSTANCES_RENTAL_VALUE", "OTHER_CIRCUMSTANCES_VALUE_OF_SALE_OR_WITHDRAWAL", "RESEARCH_AND_DEVELOPMENT_PROJECT_NUMBER", "RESEARCH_AND_DEVELOPMENT_PROJECT_TITLE", "RESEARCH_AND_DEVELOPMENT_PROJECT_CATEGORY", "RESEARCH_AND_DEVELOPMENT_APPLICATION_APPROVED_DATE", "RESEARCH_AND_DEVELOPMENT_PROJECT_START_DATE", "RESEARCH_AND_DEVELOPMENT_PROJECT_END_DATE", "RESEARCH_AND_DEVELOPMENT_APPROVED_RND_INCENTIVE_START_YEAR", "RESEARCH_AND_DEVELOPMENT_APPROVED_RND_INCENTIVE_END_YEAR", "RESEARCH_AND_DEVELOPMENT_PROJECT_STATUS", "RESEARCH_AND_DEVELOPMENT_PROJECT_STATUS_DATE", "RESEARCH_AND_DEVELOPMENT_BUSINESS_CATEGORY", "RESEARCH_AND_DEVELOPMENT_IS_COLLABORATIVE_PROJECT_WITH_OTHER_ENTERPRISES", "RESEARCH_AND_DEVELOPMENT_HAS_EXTENSIVE_DISSEMINATION_THROUGH_CONFERENCES_PUBLICATIONS_ETC", "RESEARCH_AND_DEVELOPMENT_TOTAL_COSTS_PREVIOUS_YEARS", "RESEARCH_AND_DEVELOPMENT_TOTAL_GROSS_TAX_DEDUCTION_FROM_PREVIOUS_YEARS", "RESEARCH_AND_DEVELOPMENT_TOTAL_GROSS_TAX_DEDUCTION_FROM_INCOME_YEAR", "RESEARCH_AND_DEVELOPMENT_INCLUDED_PERSONNEL_COSTS_IN_INCOME_YEAR", "RESEARCH_AND_DEVELOPMENT_NUMBER_OF_OWN_HOURS_IN_INCOME_YEAR", "RESEARCH_AND_DEVELOPMENT_PUBLIC_SUPPORT_AS_REDUCED_WORKER_FEE", "RESEARCH_AND_DEVELOPMENT_WAS_IN_ECONOMIC_DIFFICULTIES_AT_APPLICATION_TIME", "RESEARCH_AND_DEVELOPMENT_UNDERLYING_DOCUMENTS_USED_FOR_ASSESSMENT", "RESEARCH_AND_DEVELOPMENT_UNDERLYING_DOCUMENTATION_DATE", "RESEARCH_AND_DEVELOPMENT_RESOLUTION_DATE", "RESEARCH_AND_DEVELOPMENT_RESOLUTION_TYPE", "RESEARCH_AND_DEVELOPMENT_RESOLUTION_DELIMITATION", "RESEARCH_AND_DEVELOPMENT_OTHER_PUBLIC_SUPPORT_PAYER_NAME", "RESEARCH_AND_DEVELOPMENT_OTHER_PUBLIC_SUPPORT_AMOUNT", "RESEARCH_AND_DEVELOPMENT_TOTAL_COSTS_EXCLUDED_FROM_TAX_DEDUCTION", "RESEARCH_AND_DEVELOPMENT_PROJECT_TO_BE_SIGNED_BY_AUDITOR", "RESEARCH_AND_DEVELOPMENT_STAKE_IN_COLLABORATIVE_PROJECT", "RESEARCH_AND_DEVELOPMENT_APPLIED_FOR_OTHER_PUBLIC_SUPPORT_IN_NORWAY", "RESEARCH_AND_DEVELOPMENT_WORK_PACKAGE_ID", "RESEARCH_AND_DEVELOPMENT_WORK_PACKAGE_TITLE", "RESEARCH_AND_DEVELOPMENT_WORK_PACKAGE_TOTAL_COST_FROM_PREVIOUS_YEAR", "RESEARCH_AND_DEVELOPMENT_WORK_PACKAGE_RECEIVED_PUBLIC_SUPPORT", "RESEARCH_AND_DEVELOPMENT_COLLABORATIVE_BUSINESS_ORG_NO", "RESEARCH_AND_DEVELOPMENT_COLLABORATIVE_BUSINESS_DESCRIPTION", "TIMBER_ACCOUNT_SHARE_OF_OPERATING_REVENUES_HUNTING_FISHING_ETC_MANUAL", "TIMBER_ACCOUNT_STANDARD_INCOME_FROM_BIOMASS_OR_WOOD_PRODUCTION_TRANSFERRED_AGRIGULTURE", "TIMBER_ACCOUNT_SHARE_OF_PROFIT_TO_REGISTER", "TIMBER_ACCOUNT_INCOMING_VALUE_FROM_AQUIRED_TIMBER_ACCOUNT", "TIMBER_ACCOUNT_VALUE_OF_SHARE_OF_REALIZED_TIMBER_ACCOUNT", "TIMBER_ACCOUNT_SHARE_OF_BASIS_NEXT_YEAR", "TIMBER_ACCOUNT_REMAINDER_NOT_TAXED_FELLING", "TIMBER_ACCOUNT_REMAINDER_INCLUDED_THIS_YEAR", "TIMBER_ACCOUNT_MUNICIPALITY_NO", "TIMBER_ACCOUNT_PAID_PUBLIC_CONTRIBUTION_FOREST_FUND", "TIMBER_ACCOUNT_SHARE_OF_OPERATING_REVENUES_HUNTING_FISHING_ETC", "CONTROLLED_TRANSACTIONS_EXEMPT_TRANSACTION_SHARING", "CONTROLLED_TRANSACTIONS_EXEMPT_PRICE_SHARING", "CONTROLLED_TRANSACTIONS_CONSOLIDATED_MARGIN_YEAR", "CONTROLLED_TRANSACTIONS_CONSOLIDATED_MARGIN_PERCENTAGE", "CONTROLLED_TRANSACTIONS_REPORTS_ONLY_PROVISION_INCOME", "CONTROLLED_TRANSACTIONS_COST_OF_IMMATERIAL_ASSETS", "CONTROLLED_TRANSACTIONS_NUMBER_OF_REGISTERED_PATENTS", "CONTROLLED_TRANSACTIONS_GROUP_HAS_BEEN_RESTRUCTURED", "CONTROLLED_TRANSACTIONS_COMPANY_HAS_SERVICED_OTHER_COMPANY_IN_GROUP_FOR_FREE", "CONTROLLED_TRANSACTIONS_COMPANY_IS_GUARANTOR_FOR_AGREEMENTS_BY_OTHER_COMPANIES_IN_SAME_GROUP", "CONTROLLED_TRANSACTIONS_RELATED_COMPANY_IDENTIFIER", "CONTROLLED_TRANSACTIONS_RELATED_COMPANY_NAME", "CONTROLLED_TRANSACTIONS_RELATED_COMPANY_COUNTRY", "CONTROLLED_TRANSACTIONS_FUNCTION_AND_RISK_FUNCTION_TYPE", "CONTROLLED_TRANSACTIONS_FUNCTION_AND_RISK_RISK_TYPE", "CONTROLLED_TRANSACTIONS_FUNCTION_AND_RISK_DESCRIPTION", "CONTROLLED_TRANSACTIONS_COMPANY_SPECIFICATION_COMPANY_IDENTIFIER", "CONTROLLED_TRANSACTIONS_COMPANY_SPECIFICATION_COMPANY_NAME", "CONTROLLED_TRANSACTIONS_COMPANY_SPECIFICATION_COMPANY_COUNTRY", "CONTROLLED_TRANSACTIONS_TRANSACTION_TYPE", "CONTROLLED_TRANSACTIONS_TRANSACTION_DESCRIPTION", "CONTROLLED_TRANSACTIONS_TRANSACTION_AMOUNT", "CONTROLLED_TRANSACTIONS_OUTSTANDING_ACCOUNT", "CONTROLLED_TRANSACTIONS_OUTSTANDING_AMOUNT", "CONTROLLED_TRANSACTIONS_OUTSTANDING_COUNTRY_CODE", "CONTROLLED_TRANSACTIONS_TRANSACTION_COUNTRY_CODE", "CONTROLLED_TRANSACTIONS_RESULT_AS_PERCENTAGE_OF_GROSS_REVENUE", "CONTROLLED_TRANSACTIONS_MAIN_BUSINESS_ACTIVITY", "CONTROLLED_TRANSACTIONS_NUMBER_OF_ENTITIES_WITH_CONTROLLED_TRANSACTIONS_IN_NORWAY", "CONTROLLED_TRANSACTIONS_NUMBER_OF_ENTITIES_WITH_CONTROLLED_TRANSACTIONS_OUTSIDE_NORWAY", "CONTROLLED_TRANSACTIONS_COMPANY_HAS_BEEN_SERVICED_BY_OTHER_COMPANY_IN_GROUP_FOR_FREE", "CONTROLLED_TRANSACTIONS_HAS_CONTROLLED_TRANSACTIONS_EXCEEDING_LIMIT", "CONTROLLED_TRANSACTIONS_IS_OBLIGED_TO_DOCUMENT", "INTEREST_LIMITATION_COMPANY_COMPLIANCE_WITH_INTEREST_LIMITATION", "INTEREST_LIMITATION_NET_INTEREST_COSTS_NORWEGIAN_GROUP_EXCEEDS_25MNOK", "INTEREST_LIMITATION_COMPANY_USES_EXCEPTION_RULE", "INTEREST_LIMITATION_GROUP_APEX_COMPANY_NAME", "INTEREST_LIMITATION_GROUP_APEX_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_GROUP_APEX_COUNTRY_CODE", "INTEREST_LIMITATION_NORWEGIAN_PART_OF_GROUP_REPORTED_ANOTHER_COMPANY", "INTEREST_LIMITATION_NORWEGIAN_PART_OF_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_NORWEGIAN_PART_OF_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_NORWEGIAN_PART_OF_GROUP_COUNTRY_CODE", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_CORRECTION_OF_INTEREST_EXPENSES", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_CORRECTION_OF_INTEREST_INCOME", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_GUARANTEE_COMMISSIONS_ON_DEBT", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_LOSS_ON_REALIZATION_OF_PREMIUM_DISCOUNT_BONDS", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_GAIN_ON_REALIZATION_OF_PREMIUM_DISCOUNT_BONDS", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_LOSS_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_COMPANIES_IN_SAME_GROUP_COSTS_FOR_GUARANTEE_COMMISSION", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_COMPANY_IN_SAME_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_COMPANY_IN_SAME_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_COMPANY_IN_SAME_GROUP_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_COMPANY_IN_SAME_GROUP_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_GROUP_GUARANTOR_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_GROUP_GUARANTOR_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_GROUP_GUARANTOR_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_GROUP_GUARANTOR_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_WITH_OUTSTANDING_CLAIM_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_WITH_OUTSTANDING_CLAIM_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_WITH_OUTSTANDING_CLAIM_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_WITH_OUTSTANDING_CLAIM_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANY_IN_SAME_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANY_IN_SAME_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANY_IN_SAME_GROUP_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANY_IN_SAME_GROUP_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANIES_IN_SAME_GROUP_LOSS_FOR_HOLDER_ON_REALIZATION_OF_PREMIUM_DISCOUNT_BOND", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANIES_IN_SAME_GROUP_GAIN_FOR_HOLDER_UPON_REALIZATION_OF_PREMIUM_DISCOUNT_BOND", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANIES_IN_SAME_GROUP_LOSS_FOR_HOLDER_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANIES_IN_SAME_GROUP_GAIN_FOR_HOLDER_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_GROUP_GUARANTOR_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_GROUP_GUARANTOR_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_GROUP_GUARANTOR_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_GROUP_GUARANTOR_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_WITH_OUTSTANDING_CLAIM_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_WITH_OUTSTANDING_CLAIM_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_WITH_OUTSTANDING_CLAIM_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_WITH_OUTSTANDING_CLAIM_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_COSTS_FOR_GUARANTEE_COMMISSION", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_LOSS_FOR_HOLDER_ON_REALIZATION_OF_PREMIUM_DISCOUNT_BOND", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_GAIN_FOR_HOLDER_UPON_REALIZATION_OF_PREMIUM_DISCOUNT_BOND", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_LOSS_FOR_HOLDER_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_GAIN_FOR_HOLDER_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_COMPANIES_INCLUDED_IN_NORWEGIAN_PART_OF_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_COMPANIES_INCLUDED_IN_NORWEGIAN_PART_OF_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_COMPANIES_INCLUDED_IN_NORWEGIAN_PART_OF_GROUP_NET_INTEREST_COST", "INTEREST_LIMITATION_COMPANIES_INCLUDED_IN_NORWEGIAN_PART_OF_GROUP_NET_DEDUCTIBLE_INTEREST_COST", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_GAIN_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_CALCULATION_OF_INTEREST_DEDUCTION_LIMIT_AMORTIZED_LEASE_COST", "INTEREST_LIMITATION_CALCULATION_OF_INTEREST_DEDUCTION_LIMIT_DEDUCTION_FOR_GROUP_CONTRIBUTIONS_NOT_INCLUDED_IN_CALCULATION_BASIS", "FORWARDING_DISALLOWED_INTEREST_DEDUCTION_INCOME_YEAR", "FORWARDING_DISALLOWED_INTEREST_DEDUCTION_CARRIED_FORWARD_FROM_PREVIOUS_YEAR", "INTEREST_LIMITATION_COMPANY_CARRIED_FORWARD_INTEREST_DEDUCTIONS_FROM_PREVIOUS_YEARS", "TAX_ASSESSMENT_NEGATIVE_PERSONAL_INCOME_PREVIOUS_YEAR_OWNER", "TAX_ASSESSMENT_NEGATIVE_PERSONAL_INCOME_PREVIOUS_YEAR_SPOUSE", "TAX_ASSESSMENT_COORDINATION_OTHER_PERSONAL_INCOME_OWNER", "TAX_ASSESSMENT_COORDINATION_OTHER_PERSONAL_INCOME_SPOUSE", "TAX_ASSESSMENT_COORDINATION_COORDINATION_GENERAL_PARTNERSHIP_OWNER", "TAX_ASSESSMENT_COORDINATION_COORDINATION_GENERAL_PARTNERSHIP_SPOUSE", "TAX_ASSESSMENT_SALARY_INCOME_OWNER", "TAX_ASSESSMENT_SALARY_INCOME_SPOUSE", "TAX_ASSESSMENT_SICK_PAYABLE_FISHING_ETC_OWNER", "TAX_ASSESSMENT_SICK_PAYABLE_FISHING_ETC_SPOUSE", "TAX_ASSESSMENT_SICK_PAYABLE_AGRICULTURE_OWNER", "TAX_ASSESSMENT_SICK_PAYABLE_AGRICULTURE_SPOUSE", "TAX_ASSESSMENT_SICK_PAYABLE_OTHER_OWNER", "TAX_ASSESSMENT_SICK_PAYABLE_OTHER_SPOUSE", "TAX_ASSESSMENT_OTHER_PENSIONABLE_INCOME_OWNER", "TAX_ASSESSMENT_OTHER_PENSIONABLE_INCOME_SPOUSE", "TAX_ASSESSMENT_CONDITIONS_ARE_SPECIAL_ALLOWANCE_AGRICULTURE_MET", "TAX_ASSESSMENT_SHARE_FROM_SDF", "REINDEER_HUSBANDRY", "REINDEER_HUSBANDRY_CAPITAL_COSTS_MINUS_CAPITAL_REVENUES", "REINDEER_HUSBANDRY_CORRECTED_BUSINESS_INCOME_TWO_YEARS_AGO", "REINDEER_HUSBANDRY_CORRECTED_BUSINESS_INCOME_ONE_YEAR_AGO", "REINDEER_HUSBANDRY_WITHDRAWAL", "REINDEER_HUSBANDRY_DEPOSIT", "AGRICULTURAL_ACCOUNT_DEPARTMENTS", "AGRICULTURAL_ACCOUNT_SHARE_OF_OPERATING_COSTS", "AGRICULTURAL_ACCOUNT_INCOME_FROM_BIOMASS_OR_WOOD_PRODUCTION", "AGRICULTURAL_ACCOUNT_OPERATIONAL_ENTITY", "AGRICULTURAL_ACCOUNT_MUNICIPALITY", "AGRICULTURAL_ACCOUNT_TRANSFER_TO_AGRICULTURAL_ACCOUNT", "AGRICULTURAL_ACCOUNT_INHERITED_UPON_INHERITANCE_GENERATIONAL_CHANGE", "AGRICULTURAL_ACCOUNT_REALIZED_UPON_INHERITANCE_GENERATIONAL_CHANGE", "AGRICULTURAL_ACCOUNT_SHARE_OF_BASIS_NEXT_YEAR", "AGRICULTURAL_ACCOUNT_SHARE_OF_OPERATING_COSTS_MANUAL", "AGRICULTURAL_ACCOUNT_OWN_CORRECTIONS_INCOME", "AGRICULTURAL_ACCOUNT_OWN_CORRECTIONS_INCOME_MANUAL" ] }, "postValue" : { "type" : "number", "readOnly" : true } } }, "ResponseWrapperDifferencesOverview" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/DifferencesOverview" } } }, "TemporaryDifferences" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "name" : { "type" : "string", "readOnly" : true }, "grouping" : { "type" : "string", "readOnly" : true }, "objectIdentifier" : { "type" : "string", "readOnly" : true }, "negate" : { "type" : "boolean", "readOnly" : true }, "readOnly" : { "type" : "boolean", "readOnly" : true }, "source" : { "type" : "string", "readOnly" : true }, "type" : { "type" : "string", "readOnly" : true }, "openingBalanceAccountValue" : { "type" : "number", "readOnly" : true }, "openingBalanceTaxValue" : { "type" : "number", "readOnly" : true }, "openingBalanceDifferences" : { "type" : "number", "readOnly" : true }, "closingBalanceAccountValue" : { "type" : "number", "readOnly" : true }, "closingBalanceTaxValue" : { "type" : "number", "readOnly" : true }, "closingBalanceDifferences" : { "type" : "number", "readOnly" : true }, "changes" : { "type" : "number", "readOnly" : true }, "showAccounting" : { "type" : "boolean", "readOnly" : true }, "showTax" : { "type" : "boolean", "readOnly" : true }, "profitTransferedToProfitAndLossAccount" : { "type" : "number", "readOnly" : true }, "lossTransferedToProfitAndLossAccount" : { "type" : "number", "readOnly" : true } } }, "ProfitAndLoss" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "sumProfit" : { "type" : "number", "readOnly" : true }, "sumLoss" : { "type" : "number", "readOnly" : true }, "sumProfitAndLoss" : { "type" : "number", "readOnly" : true }, "openingBalance" : { "type" : "number", "readOnly" : true }, "openingBalanceProfit" : { "type" : "number", "readOnly" : true }, "openingBalanceLoss" : { "type" : "number", "readOnly" : true }, "closingBalanceProfit" : { "type" : "number", "readOnly" : true }, "closingBalanceLoss" : { "type" : "number", "readOnly" : true }, "postedOpeningBalanceProfit" : { "type" : "number", "readOnly" : true }, "postedOpeningBalanceLoss" : { "type" : "number", "readOnly" : true }, "postedClosingBalanceProfit" : { "type" : "number", "readOnly" : true }, "postedClosingBalanceLoss" : { "type" : "number", "readOnly" : true }, "closingBalance" : { "type" : "number", "readOnly" : true }, "annualIncomeRecognition" : { "type" : "number", "readOnly" : true }, "annualDeduction" : { "type" : "number", "readOnly" : true }, "amountToBePostedOnIncomeRecognitionAccount" : { "type" : "number", "readOnly" : true }, "amountToBePostedOnDeductionAccount" : { "type" : "number", "readOnly" : true }, "deductionDepartmentMap" : { "type" : "object", "additionalProperties" : { "type" : "number", "readOnly" : true }, "readOnly" : true }, "incomeRecognitionDepartmentMap" : { "type" : "object", "additionalProperties" : { "type" : "number", "readOnly" : true }, "readOnly" : true }, "genericDataOverviews" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/GenericDataOverview" } } } }, "ResponseWrapperProfitAndLoss" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ProfitAndLoss" } } }, "RealEstate" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "genericDataOverviews" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/GenericDataOverview" } } } }, "ResponseWrapperRealEstate" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/RealEstate" } } }, "ChangeOfEquity" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "name" : { "type" : "string", "readOnly" : true }, "grouping" : { "type" : "string", "readOnly" : true }, "negate" : { "type" : "boolean", "readOnly" : true }, "readOnly" : { "type" : "boolean", "readOnly" : true }, "postType" : { "type" : "string", "readOnly" : true, "enum" : [ "REGISTRATION_NUMBER", "DESCRIPTION", "VEHICLE_TYPE", "YEAR_OF_INITIAL_REGISTRATION", "LIST_PRICE", "DATE_FROM", "DATE_TO", "LICENCE", "LICENCE_NUMBER", "IS_ELECTRONIC_VEHICLE_LOGBOOK_LOGGED", "NO_OF_KILOMETRES_TOTAL", "OPERATING_EXPENSES", "LEASING_RENT", "IS_COMPANY_VEHICLE_USED_PRIVATE", "NO_OF_KILOMETRES_PRIVATE", "DEPRECIATION_PRIVATE_USE", "REVERSED_VEHICLE_EXPENSES", "FUEL_COST", "MAINTENANCE_COST", "COST_OF_INSURANCE_AND_TAX", "CAR_DEPARTMENT", "NO_OF_LITER_FUEL", "TAXIMETER_TYPE", "INCOME_PERSONAL_TRANSPORT", "INCOME_GOODS_TRANSPORT", "DRIVING_INCOME_PAYED_IN_CASH", "DRIVING_INCOME_INVOICED_PUBLIC_AGENCIES", "TIP_PAYED_WITH_CARD_OR_INVOICE", "TIP_PAYED_IN_CASH", "NO_OF_KILOMETRES_SCHOOL_CHILDREN", "NO_OF_KILOMETRES_WITH_PASSENGER", "FLOP_TRIP_AMOUNT", "IS_CONNECTED_TO_CENTRAL", "ID_FOR_PROFIT_AND_LOSS_ACCOUNT", "DESCRIPTION_PROFIT_AND_LOSS_ACCOUNT", "MUNICIPALITY_NUMBER", "OPENING_BALANCE", "PROFIT_SALES_WITHDRAWAL_OTHER_REALIZATIONS", "LOSS_SALES_WITHDRAWAL_OTHER_REALIZATIONS", "PROFIT_REALIZATIONS_LIVESTOCK", "VALUE_ACQUIRED_PROFIT_AND_LOSS_ACCOUNT", "VALUE_REALIZED_PROFIT_AND_LOSS_ACCOUNT", "ANNUAL_INCOME_RECOGNITION_OR_DEDUCTION_BASIS", "PERCENTAGE_PROFIT_AND_LOSS_ACCOUNT", "ANNUAL_INCOME_RECOGNITION", "ANNUAL_DEDUCTION", "CLOSING_BALANCE", "IS_REGARDING_REALIZATION_SEPARATED_PLOT_AGRICULTURE_OR_FORESTRY", "IS_REGARDING_REALIZATION_WHOLE_AGRICULTURE_OR_FORESTRY_BUSINESS", "PROFIT_AND_LOSS_DEPARTMENT", "ID_FOR_ACCOMMODATION_AND_RESTAURANT", "COVER_CHARGE_SUBJECT_TO_VAT", "COVER_CHARGE_NOT_SUBJECT_TO_VAT", "COVER_CHARGE", "DESCRIPTION_ACCOMMODATION_AND_RESTAURANT", "MUST_BE_CONFIRMED_BY_AUDITOR", "PRODUCT_TYPE", "OPENING_STOCK", "CLOSING_STOCK", "PURCHASE_OF_GOODS", "COST_OF_GOODS_SOLD", "SALES_REVENUE_AND_WITHDRAWALS", "SALES_REVENUE_IN_CASH", "CASH_REGISTER_SYSTEM_YEAR_OF_INITIAL_REGISTRATION", "CASH_REGISTER_SYSTEM_TYPE", "WITHDRAWAL_OF_PRODUCTS_VALUED_AT_TURNOVER", "PRIVATE_WITHDRAWAL_ENTERED_ON_PRIVATE_ACCOUNT", "TOTAL_WITHDRAWAL_PRODUCTS_ENTERED_AS_SALES_REVENUE", "WITHDRAWAL_COST_FOR_ENTERTAINMENT", "WITHDRAWAL_VALUE_VALUED_AT_MARKET_VALUE", "MARKUP_WITHDRAWAL_COST_FOR_ENTERTAINMENT", "TOTAL_WITHDRAWAL_COST_FOR_ENTERTAINMENT", "OPENING_BALANCE_CREDIT_SALES", "CLOSING_BALANCE_CREDIT_SALES", "OPENING_BALANCE_WRITE_DOWN_NEW_COMPANY", "CLOSING_BALANCE_WRITE_DOWN_NEW_COMPANY", "SALARY_AND_PENSION_EXPENSES_ACCOUNT_ID", "SALARY_AND_PENSION_EXPENSES_ACCOUNT_ADDITION", "SALARY_AND_PENSION_EXPENSES_ACCOUNT_DEDUCTION", "SALARY_AND_PENSION_EXPENSES_ACCOUNT_REPORTED_BENEFIT", "SALARY_AND_PENSION_EXPENSES_MANUAL_FILLING", "EMPLOYERS_PAYMENT_OF_SUBSIDY", "TOTAL_AMOUNT_CREDITED_TO_NATURAL_BENEFITS", "BASIS_FOR_INCREASED_EMPLOYERS_TAX", "SALARY_AND_PENSION_EXPENSES_MANUAL_ACCOUNT_DESCRIPTION", "SALARY_AND_PENSION_EXPENSES_MANUAL_ACCOUNT_EXPENSED_BENEFIT", "OPENING_BALANCE_RAW_MATERIAL_AND_SEMI_FINISHED_PRODUCTS", "CLOSING_BALANCE_RAW_MATERIAL_AND_SEMI_FINISHED_PRODUCTS", "OPENING_BALANCE_PRODUCT_UNDER_MANUFACTURING", "CLOSING_BALANCE_PRODUCT_UNDER_MANUFACTURING", "OPENING_BALANCE_INVENTORIES_FINISHED_ITEM", "CLOSING_BALANCE_INVENTORIES_FINISHED_ITEM", "OPENING_BALANCE_PURCHASED_ITEM_FOR_RESALE", "CLOSING_BALANCE_PURCHASED_ITEM_FOR_RESALE", "OPENING_BALANCE_SELF_PRODUCED_PRODUCT_OWN_PRODUCTUION", "CLOSING_BALANCE_SELF_PRODUCED_PRODUCT_OWN_PRODUCTUION", "OPENING_BALANCE_LIVESTOCK", "CLOSING_BALANCE_LIVESTOCK", "ACCOUNT_INVENTORY_BALANCE_ACCOUNT_ID", "ACCOUNT_INVENTORY_BALANCE_DEPARTMENT_ID", "ACCOUNT_INVENTORY_BALANCE_UNIT_RATE", "ACCOUNT_INVENTORY_BALANCE_BALANCE_OUT_QUANTITY", "ACCOUNT_INVENTORY_BALANCE_BALANCE_OUT", "TANGIBLE_FIXED_ASSETS_TYPE", "OPENING_BALANCE_TANGIBLE_FIXED_ASSETS", "TAX_DEPRECIATION_PERCENTAGE", "STRAIGHT_LINE_DEPRECIATION", "PROFIT_TRANSFERRED_TO_PROFIT_AND_LOSS_ACCOUNT", "LOSS_TRANSFERRED_TO_PROFIT_AND_LOSS_ACCOUNT", "ACQUISITION_COST", "LIFETIME", "ACQUISITION_DATE", "REALISATION_DATE", "IS_COMMERCIAL_BUILDING_ACQUIRED_BEFORE_1984", "HISTORICAL_COST_PRICE", "WRITTEN_DOWN_VALUE_PR_01011984", "LOWER_LIMIT_DEPRECIATION", "IS_PHYSICAL_OPERATING_ASSETS_IN_BALANCE_SHEET", "FACILITY_TYPE", "DEPRECIATION_PERCENTAGE", "CASH_DEPOSITS", "CONTRIBUTIONS_IN_KIND", "CAPITAL_REDUCTION_DISTRIBUTED_SHARED_CAPITAL_CASH", "CAPITAL_REDUCTION_DISTRIBUTED_SHARED_CAPITAL_OTHER_ASSETS", "DEBT_WAVING", "BUYING_OWN_SHARES", "SELLING_OWN_SHARES", "DEBT_CONVERSION_TO_EQUITY", "POSITIVE_DIFF_BETWEEN_ALLOCATED_AND_DISTRIBUTED_DIVIDEND", "NEGATIVE_DIFF_BETWEEN_ALLOCATED_AND_DISTRIBUTED_DIVIDEND", "OTHER_NEGATIVE_CHANGE_IN_EQUITY", "LATE_PAYMENT", "OTHER_INTEREST_INCOME", "OTHER_INTEREST_EXPENSE", "INCOME_FROM_OTHER_INVESTMENTS_AND_DIVIDENDS", "PROFIT_ON_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "LOSS_ON_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "PRIVATE_ACCOUNT", "DEDUCTIBLE_COST_OF_USING_A_PRIVATE_CAR", "OTHER_TAX_FREE_INCOME", "OTHERNON_DEDUCTIBLECOST", "TAX_FREE_PROFIT_FROM_THE_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "NON_DEDUCTIBLE_LOSS_ON_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "TAX_FREE_PART_OF_DIVIDENDS_AND_DISTRIBUTIONS", "RETURN_OF_PROFITS_TO_ISDF", "RETURN_OF_DEFICIT_TO_ISDF", "CASH_PAYMENT", "WITHDRAWAL_OF_ASSETS_AND_SERVICES", "OTHER_WITHDRAWALS_AND_DISTRIBUTIONS", "OTHER_POSTIVE_CHANGE_IN_EQUITY", "OTHER_POSITIVE_CHANGE_IN_EQUITY", "NONE_DEDUCTIBLE_COST", "POSITIVE_TAX_COST", "INTEREST_EXPENSE_FIXED_TAX", "SHARE_OF_LOSS_FROM_INVESTMENT", "REVERSAL_OF_IMPAIRMENT", "ACCOUNTING_IMPAIRMENT", "ACCOUNTING_LOSS", "ACCOUNTING_DEFICIT_NORWEGIAN_SDF", "ACCOUNTING_DEFICIT_FOREIGN_SDF", "ACCOUNTING_LOSS_NORWEGIAN_SDF", "ACCOUNTING_LOSS_FOREIGN_SDF", "RETURNED_DEBT_INTEREST", "TAXABLE_PROFIT_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "TAXABLE_DIVIDEND_ON_SHARES", "TAXABLE_PART_OF_DIVIDEND_AND_DISTRIBUTION", "SHARE_OF_TAXABLE_PROFIT_NORWEGIAN_SDF", "SHARE_OF_TAXABLE_PROFIT_FOREIGN_SDF", "TAXABLE_PROFIT_REALIZATION_OF_NORWEGIAN_SDF", "TAXABLE_PROFIT_REALIZATION_OF_FOREIGN_SDF", "ADDITION_INTEREST_COST", "CORRECTION_PURPOSED_DIVIDEND", "TAXABLE_PROFIT_WITHDRAWAL_NORWEGIAN_TAX_AREA", "INCOME_SUPPLEMENT_FOR_CONVERSION_DIFFERENCE", "OTHER_INCOME_SUPPLEMENT", "RETURN_OF_INCOME_RELATED_DIVIDENDS", "PROFIT_AND_LOSS_GROUP_CONTRIBUTION", "ACCOUNTING_PROFIT_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "ACCOUNTING_PROFIT_SHARE_NORWEGIAN_SDF", "ACCOUNTING_PROFIT_SHARE_FOREIGN_SDF", "ACCOUNTING_GAIN_NORWEGIAN_SDF", "ACCOUNTING_GAIN_FOREIGN_SDF", "DEDUCTIBLE_LOSS_ON_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "SHARE_OF_DEDUCTIBLE_DEFICIT_NORWEGIAN_SDF", "SHARE_OF_DEDUCTIBLE_DEFICIT_FOREIGN_SDF", "DEDUCTIBLE_LOSS_ON_REALIZATION_NORWEGIAN_SDF", "DEDUCTIBLE_LOSS_ON_REALIZATION_FOREIGN_SDF", "DEDUCTIBLE_LOSS_ON_WITHDRAWAL_NORWEGIAN_TAX_AREA", "ISSUE_AND_ESTABLISHMENT_COST", "INCOME_DEDUCTION_FROM_ACCOUNTING_CURRENCY_TO_NOK", "OTHER_INCOME_DEDUCTION", "INCOME_ACCOUNT_DEFERRED_INCOME", "RETURN_VALUE_REDUCTION_COMPANY_PORTFOLIO", "INCOME_RECOGNITION_PARAGRAPH_10_TRANSACTIONS", "STANDARD_PRICE_ADDITION", "INTEREST_EXPENSE_IN_INCOME_STATEMENT", "INCOME_SUPPLEMENT_PRIVATE_USE_COMMERCIAL_VEHICLE", "INTEREST_INCOME_IN_INCOME_STATEMENT", "RETURN_VALUE_ADDITIONS_COMPANY_PORTFOLIO", "NOT_DEDUCTIBLE_COSTS_AND_LOSS_PETROLEUM_ABROAD", "TEMPLATE_DEDUCTION_TAXABLE_INCOME", "COST_ACCOUNTING_PARAGRAPH_10_TRANSACTIONS", "STANDARD_PRICE_DEDUCTION", "TAX_RETURN_DEDUCTIONS_FOU", "EXEMPT_INCOME_ACCORDINT_TO_PETROLEUM_TAX_LAW", "TAX_FREE_INCOME_RELATED_TO_EXTRACTION_PETROLEUM_ABROAD", "OWN_SICKNESS_BENEFITS_AS_INCOME_IN_ANNUAL_ACCOUNTS", "RETURN_ON_LIFE_INSURANCE_IN_ANNUAL_ACCOUNTS", "REVERSAL_OF_DEDUCTIONS_SCIENTIFIC_RESEARCH_AND_VOCATIONAL_TRAINING", "REVERSAL_INCREASE_VALUE_LINKED_TO_COMPANY_PORTFOLIO", "TEMPORARY_DIFFERENCES_TYPE", "OPENING_BALANCE_ACCOUNTABLE_VALUE", "CLOSING_BALANCE_ACCOUNTABLE_VALUE", "OPENING_BALANCE_TAX_VALUE", "CLOSING_BALANCE_TAX_VALUE", "OPENING_BALANCE_DIFFERENCES", "CLOSING_BALANCE_DIFFERENCES", "SHOW_PROFIT_AND_LOSS", "SHOW_ACCOMMODATION_AND_RESTAURANT", "IS_ACCOUNTABLE", "USE_ACCOUNTING_VALUES_IN_INVENTORIES", "USE_ACCOUNTING_VALUES_IN_CUSTOMER_RECEIVABLES", "SHOW_TANGIBLE_FIXED_ASSET", "SHOW_CAR", "SHOW_INVENTORIES", "SHOW_CUSTOMER_RECEIVABLES", "SHOW_CONCERN_RELATION", "OWN_BUSINESS_PROPERTIES", "OWN_ASSET_PAPER", "SHOW_SALARY_AND_PENSION_EXPENSES", "TRANSFERRED_BY", "TRANSFERRED_DATE", "IS_TAXABLE", "AUDITING_OBLIGATION", "VALIDATION_ONLY_ON_SUBMIT", "DATE_OF_DETERMINATION", "CONFIRMING_COMPANY_REPRESENTATIVE", "CONTACT_PERSON", "PARENT_COMPANY", "SMALL_ENTERPRISES", "PREPARED_BY_AUTHORIZED_ACCOUNTANT", "SERVICE_ASSISTANCE_USED", "ELECTRONIC_CASE_PROCESSING", "SUBMIT_WITHOUT_BUSINESS_SPECIFICATION", "SHOW_RESULT_AND_BALANCE_PREVIOUS_YEAR", "DATE_START", "DATE_END", "INCLUDE_PREVIOUS_YEAR_IN_RESULT", "DISTRIBUTE_INCOME_MODULE_INDUSTRY", "HIDE_TRANSFERRED_FROM_LAST_YEAR_NOTIFICATION", "RESEARCH_AND_DEVELOPMENT", "COMPANY_PARTICIPANT_ANS_DA", "CONTROLLED_TRANSACTION_AND_INBETWEEN", "LIMITATION_OF_DEDUCTION", "EXCEPTION_FOR_INTEREST_LIMITATION", "NUF_COMPANY_ID", "NUF_COMPANY_NAME", "NUF_COUNTRY_CODE", "TIMBER_ACCOUNT", "KLAGE_PAA_SKJOENNSFASTSETTING", "DEV_PILOT_TEST_ORG_NO", "HIDE_MOVE_AGRO_ACCOUNT_NUMBER_NOTIFICATION", "FOREST_FUND", "SUBMISSION_TO_LANDBRUKETS_DATAFLYT_DATE", "SUBMISSION_TO_LANDBRUKETS_DATAFLYT_BY", "SUBMISSION_TO_NIBIO_DATE", "SUBMISSION_TO_NIBIO_BY", "SHOW_ALL_POSTS_RESULT_AND_BALANCE", "REPORT_SIGNATURE_DATE", "REPORT_SIGNATURE_LOCATION", "REPORT_TOGGLE_DATE_LOCATION", "AGRICULTURAL_ACCOUNT", "AGRICULTURAL_ACCOUNT_USE_MULTIPLE_ACCOUNTS", "REPORT_SELECTED_STEP_FRONT_PAGE", "REPORT_SELECTED_STEP_CONTENT_TABLE", "REPORT_SELECTED_STEP_RESULT_AND_BALANCE", "REPORT_SELECTED_STEP_NOTES_FOR_SUBMISSION", "REPORT_SELECTED_STEP_NOTES_FOR_INTERNAL_USE", "REPORT_SELECTED_STEP_SIGNING", "YEAR_END_BRREG_DOC_ID", "YEAR_END_BRREG_DOC_FETCHER_NAME", "YEAR_END_DOCUMENTATION_ACCOMMODATION_AND_RESTAURANT", "YEAR_END_DOCUMENTATION_PROFIT_AND_LOSS_ACCOUNT", "YEAR_END_DOCUMENTATION_COMMERCIAL_VEHICLE", "YEAR_END_DOCUMENTATION_TANGIBLE_FIXED_ASSETS", "YEAR_END_DOCUMENTATION_INVENTORIES", "YEAR_END_DOCUMENTATION_ACCOUNTS_RECEIVABLE_FROM_CUSTOMERS", "YEAR_END_DOCUMENTATION_PROFIT_LOSS", "YEAR_END_DOCUMENTATION_BALANCE", "YEAR_END_DOCUMENTATION_PERSONAL_INCOME", "YEAR_END_DOCUMENTATION_PERMANENT_DIFFERENCES", "YEAR_END_DOCUMENTATION_TEMPORARY_DIFFERENCES", "YEAR_END_DOCUMENTATION_TAX_RELATED_RESULT", "YEAR_END_DOCUMENTATION_GROUP_CONTRIBUTIONS", "YEAR_END_DOCUMENTATION_EQUITY_RECONCILIATION", "YEAR_END_DOCUMENTATION_TAX_RETURN", "YEAR_END_DOCUMENTATION_DIVIDEND", "YEAR_END_DOCUMENTATION_DISPOSITIONS", "YEAR_END_DOCUMENTATION_PROPERTIES", "YEAR_END_DOCUMENTATION_SECURITIES", "YEAR_END_DOCUMENTATION_TAX_CALCULATION", "YEAR_END_DOCUMENTATION_AUDIT_REPORT", "YEAR_END_DOCUMENTATION_ANNUAL_REPORT", "YEAR_END_DOCUMENTATION_CASH_FLOW_STATEMENT", "YEAR_END_DOCUMENTATION_ANNEXES_TO_THE_ANNUAL_ACCOUNTS", "YEAR_END_DOCUMENTATION_SALARY_AND_PENSION_EXPENSES", "YEAR_END_DOCUMENTATION_COOPERATIVE_ENTERPRISE", "YEAR_END_DOCUMENTATION_OTHER_CIRCUMSTANCES", "YEAR_END_DOCUMENTATION_TIMBER_ACCOUNT", "YEAR_END_DOCUMENTATION_PARTICIPANT_ASSESSMENT", "YEAR_END_DOCUMENTATION_RESEARCH_AND_DEVELOPMENT", "YEAR_END_DOCUMENTATION_COMPANY_TAX_RETURN", "YEAR_END_DOCUMENTATION_PARTICIPANTS_TASK", "YEAR_END_DOCUMENTATION_CONTROLLED_TRANSACTIONS", "YEAR_END_DOCUMENTATION_LIMITATION_OF_DEDUCTION", "YEAR_END_DOCUMENTATION_SKJOENNSFASTSETTING", "YEAR_END_DOCUMENTATION_SKJOENNSFASTSETTING_ALTINN_ID", "YEAR_END_DOCUMENTATION_FOREST_FUND", "YEAR_END_DOCUMENTATION_ATTACHMENT_CATEGORY", "YEAR_END_DOCUMENTATION_DISTRIBUTE_CAPITAL_DEBT_WITH_SPOUSE", "YEAR_END_DOCUMENTATION_REINDEER_HUSBANDRY", "YEAR_END_DOCUMENT_SELECTED", "YEAR_END_DOCUMENTATION_ANNUALACCOUNTS_REPORT_GENERATED", "YEAR_END_DOCUMENTATION_AGRICULTURAL_ACCOUNT", "RECEIVER_ORG_NR", "RECEIVER_NAME", "CONCERN_CONNECTION", "VOTING_LIMIT", "DATE_OF_ACQUISITION", "RECEIVED_GROUP_CONTRIBUTIONS_WITH_TAX_AFFECTION", "RECEIVED_GROUP_CONTRIBUTIONS_WITHOUT_TAX_AFFECTION", "SUBMITTED_GROUP_CONTRIBUTIONS_WITH_TAX_AFFECTION", "SUBMITTED_GROUP_CONTRIBUTIONS_WITHOUT_TAX_AFFECTION", "RECEIVED_GROUP_CONTRIBUTIONS_FOREIGN_COMPANY_WITH_TAX_AFFECTION", "SUBMITTED_GROUP_CONTRIBUTIONS_FOREIGN_COMPANY_WITH_TAX_AFFECTION", "APPLICATION_OF_LOSS_CARRY_FORWARDS", "ACCUMULATED_LOSS_FROM_PREVIOUS_YEARS", "CORRECTIONS_AND_OTHER_CAPITAL", "CORRECTIONS_AND_OTHER_DEBT", "NUMBER_OF_SHARES", "TOTAL_SHARE_CAPITAL", "IS_PART_OF_GROUP_COMPANY", "IS_LISTED_ON_THE_STOCK_EXCHANGE", "IS_REORGANIZED_ACROSS_BORDERS", "HAS_RECEIVED_OR_TRANSFERRED_ASSETS", "HEAD_OF_GROUP_NAME", "HEAD_OF_GROUP_COUNTRY_CODE", "HEAD_OF_GROUP_LAST_YEAR_NAME", "HEAD_OF_GROUP_LAST_YEAR_COUNTRY_CODE", "FOREIGN_OWNERSHIP_COMPANY_NAME", "FOREIGN_OWNERSHIP_COMPANY_COUNTRY_CODE", "OWNS_MIN_50_PERCENT_OF_FOREIGN_COMPANY", "HAS_PERMANENT_ESTABLISHMENT_ABROAD", "COUNTRY_FOR_COUNTRY_REPORTABLE_ENTERPRISE_NAME", "COUNTRY_FOR_COUNTRY_REPORTABLE_ENTERPRISE_COUNTRY_CODE", "HAS_PERFORMANCE_BETWEEN_SHAREHOLDERS_AND_OTHER", "HAS_OUTSTANDING_PAYMENT_CLAIMS_RELATED_TO_ILLEGAL_STATE_AID", "IS_SMALL_OR_MEDIUM_SIZED_BUSINESS", "HAD_FINANCIAL_DIFFICULTIES_LAST_YEAR", "IS_GROUP_COMPANY", "HAS_RECEIVED_OTHER_PUBLIC_SUPPORT", "TAXABLE_VALUE_ON_OTHER_ASSETS", "ADDITIONS_NON_DEDUCTIBLE_LATE_PAYMENT", "SALES_WITH_MEMBERS_IN_OWN_COOPERATIVE", "RETROACTIVE_PAYMENT_MEMBERS_IN_OWN_COOPERATIVE", "CARRIED_FORWARD_DEDUCTION_LIMIT_LATE_PAYMENT_PREV_YEAR", "CARRY_FORWARD_DEDUCTION_LIMIT_LATE_PAYMENT", "TAXABLE_VALUE_ON_FORESTRY", "REINSTATED_LOSS_FROM_PRELIMINARY_ASSESSMENT_IN_LATER_YEARS", "HEAD_OF_GROUP_IDENTIFIER", "HEAD_OF_GROUP_LAST_YEAR_IDENTIFIER", "COUNTRY_FOR_COUNTRY_REPORTABLE_ENTERPRISE_IDENTIFIER", "NORWEGIAN_HEAD_OF_GROUP_NAME", "NORWEGIAN_HEAD_OF_GROUP_IDENTIFIER", "NORWEGIAN_HEAD_OF_GROUP_COUNTRY_CODE", "SHARE_OF_LOSS_OFFSET_AGAINST_PROFIT_TWO_PRECEDING_YEARS", "AID_SCHEME_TONNAGE_TAX_REGIME", "AID_SCHEME_RULES_FOR_ELECTRIC_DELIVERY_TRUCKS", "AID_SCHEME_FOR_LONG_TERM_INVESTMENTS", "AID_SCHEME_EMPLOYMENT_RELATED_OPTIONS_START_UP", "AID_SCHEME_TAX_FUN", "AID_SCHEME_FAVOURABLE_DEPRECIATION_RULES", "AID_SCHEME_REGIONALLY_DIFFERENTIATED_INSURANCE_CONTRIBUTIONS", "AID_SCHEME_FAVOURABLE_DETERMINED_LIST_PRICES_ELECTRIC_VEHICLES", "AID_SCHEME_VAT_EXEMPTION_TURNOVER_ELECTRIC_CARS", "AID_SCHEME_VAT_EXEMPTION_LEASING_ELECTRIC_CARS", "AID_SCHEME_VAT_EXEMPTION_TURNOVER_BATTERIES", "AID_SCHEME_VAT_EXEMPTION_TURNOVER_ELECTRIC_NEWS", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_INDUSTRIAL_SECTOR", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_DISTRICT_HEATING", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_TARGET_ZONE", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_DATA_CENTRES", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_COMMERCIAL_VESSELS", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_ENERGY_PRODUCTS", "AID_SCHEME_REDUCED_BASIC_TAX_MINERAL_OIL_WOOD_INDUSTRY", "AID_SCHEME_REDUCED_BASIC_TAX_MINERAL_OIL_PIGMENT_INDUSTRY", "AID_SCHEME_EXEMPTION_CO2_TAX_MINERAL_OIL", "AID_SCHEME_EXEMPTION_CO2_TAX_GAS", "AID_SCHEME_EXEMPTION_NOX_DUTY", "AID_SCHEME_EXEMPTION_TRANSFER_FEE", "AID_SCHEME_REDUCED_ROAD_TRAFFIC_INSURANCE_TAX", "OTHER_CORRECTIONS", "DEFERRED_TAX_ASSETS_IN_BALANCE", "SHARES_AND_SECURITIES_NAME", "SHARES_AND_SECURITIES_STOCK_TYPE", "SHARES_AND_SECURITIES_VAT_NUMBER", "SHARES_AND_SECURITIES_ISIN", "SHARES_AND_SECURITIES_COUNTRY_CODE", "SHARES_AND_SECURITIES_SHARE_CLASS", "SHARES_AND_SECURITIES_SHARES_BY_THE_START_OF_THE_YEAR", "SHARES_AND_SECURITIES_SHARES_BY_THE_END_OF_THE_YEAR", "SHARES_AND_SECURITIES_VALUE", "SHARES_AND_SECURITIES_TOTAL_VALUE", "SHARES_AND_SECURITIES_DIVIDEND", "SHARES_AND_SECURITIES_INTEREST_INCOME", "SHARES_AND_SECURITIES_PROFIT_REALISATION", "SHARES_AND_SECURITIES_LOSS_REALISATION", "SHARES_AND_SECURITIES_PROFIT_INTEREST", "SHARES_AND_SECURITIES_LOSS_INTEREST", "SHARES_AND_SECURITIES_EXEMPTION_METHOD", "SHARES_AND_SECURITIES_FINANCIAL_PRODUCT", "REAL_ESTATE_TYPE", "REAL_ESTATE_DESCRIPTION", "COMMERCIAL_PROPERTY_TYPE", "SHARE_OF_ASSET_VALUE", "INTERNAL_PROPERTY_IDENTIFIER", "ASSET_VALUE_FOR_ASSET_SHARE", "VALUE_BEFORE_VALUATION_DISCOUNT_ASSET_SHARE", "TOTAL_AREA", "CALCULATED_RENTAL_VALUE", "CALCULATED_VALUE_IS_OUTDATED", "REAL_ESTATE_SERG_NO", "REAL_ESTATE_ADDRESS", "REAL_ESTATE_ZIP_CODE", "REAL_ESTATE_POSTAL_PLACE_NAME", "REAL_ESTATE_COUNTRY_CODE", "REAL_ESTATE_MUNICIPALITY_NO", "REAL_ESTATE_MUNICIPALITY_NAME", "REAL_ESTATE_CADASTRAL_UNIT_NO", "REAL_ESTATE_PROPERTY_UNIT_NO", "REAL_ESTATE_LEASEHOLD_NO", "REAL_ESTATE_SECTION_NO", "REAL_ESTATE_OWNERSHIP_SHARE_PERCENTAGE", "REAL_ESTATE_PREV_YEAR_ASSET_VALUE", "REAL_ESTATE_EXPENSES_YEARLY", "REAL_ESTATE_EXPENSES_FARM_HOUSE_YEARLY", "REAL_ESTATE_EXPENSES_OTHER_PROPERTY_YEARLY", "REAL_ESTATE_DATE_DOCUMENTED", "REAL_ESTATE_MARKET_VALUE_MANUAL", "REAL_ESTATE_MARKET_VALUE_CALCULATED", "REAL_ESTATE_USE_VALUE_MARKET", "REAL_ESTATE_DWELLING_TYPE", "REAL_ESTATE_ASSOCIATION_OR_COOPERATIVE_DWELLING_OWNERSHIP_TYPE", "REAL_ESTATE_ASSOCIATION_OR_COOPERATIVE_DWELLING_OWNERSHIP_NAME", "REAL_ESTATE_ASSOCIATION_OR_COOPERATIVE_DWELLING_OWNERSHIP_ORG_NO", "REAL_ESTATE_ASSOCIATION_OR_COOPERATIVE_DWELLING_OWNERSHIP_SHARE_NO", "REAL_ESTATE_PRIMARY_SECONDARY_DWELLING_TYPE", "REAL_ESTATE_CONSTRUCTION_YEAR", "REAL_ESTATE_SELF_OWNED_OR_COOPERATIVE_DWELLING_CALCULATED_MARKET_VALUE", "REAL_ESTATE_RENTAL_AREA_TOTAL", "REAL_ESTATE_RENTAL_PERIOD_MONTHS", "REAL_ESTATE_RENTAL_INCOME_TOTAL_CALCULATED", "REAL_ESTATE_RENTAL_GROSS_ANNUAL_PREV_YEAR", "REAL_ESTATE_RENTAL_GROSS_ANNUAL_PRIOR_YEAR_TWO", "REAL_ESTATE_RENTAL_ASSET_VALUE_BASE", "REAL_ESTATE_RENTAL_GROSS_INCOME", "REAL_ESTATE_PREV_YEAR_ASSET_VALUE_MANUAL", "REAL_ESTATE_EXPENSES_YEARLY_MANUAL", "REAL_ESTATE_EXPENSES_FARM_HOUSE_YEARLY_MANUAL", "REAL_ESTATE_EXPENSES_OTHER_PROPERTY_YEARLY_MANUAL", "REAL_ESTATE_MULTI_UNIT_BUILDING_UNIT_ROW_ID", "REAL_ESTATE_MULTI_UNIT_BUILDING_UNIT_NO", "REAL_ESTATE_MULTI_UNIT_BUILDING_UNIT_AREA", "REAL_ESTATE_MULTI_UNIT_BUILDING_UNIT_CONSTRUCTION_YEAR", "REAL_ESTATE_MULTI_UNIT_BUILDING_UNIT_VALUE", "REAL_ESTATE_USE_INCREASED_CALCULATION_FACTOR", "YEARLY_DIVIDEND", "DIVIDEND_CREDIT", "DIVIDEND_SECURITY_OFFERED", "DIVIDEND_DISPOSITIONS", "PARTICIPANT_NAME", "PARTICIPANT_NUMBER", "PARTICIPANT_OWNERSHIP", "PARTICIPANT_REPORT_DISTRIBUTION_CASH_DISBURSEMENT_FROM_COMPANY", "PARTICIPANT_REPORT_DISTRIBUTION_VALUE_OF_ASSETS_OR_SERVICE_WITHDRAWN", "PARTICIPANT_REPORT_DISTRIBUTION_CAPITAL_REIMBURSEMENT", "PARTICIPANT_REPORT_SHIELDING_BASIS_OTHER_INITIAL_VALUE_CORRECTION", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_UNUSED_SHIELDING_FROM_PREVIOUS_YEAR", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_CORRECTION_FOR_INHERITANCE_OR_GIFT_IN_INCOME_YEAR", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_TRANSFERRED_SHIELDING_DEDUCTION_FROM_PREVIOUS_YEARS", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_TRANSFERRED_SHIELDING_DEDUCTION", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_OTHER_CORRECTION", "PARTICIPANT_REPORT_ADDITIONS_TO_ORDINARY_INCOME_OTHER_CORRECTION", "PARTICIPANT_REPORT_TAX_BASIS_SPECIFICATION_SHARE_OF_TAXABLE_EQUITY_AT_BEGINNING_OF_YEAR", "PARTICIPANT_REPORT_TAX_BASIS_SPECIFICATION_DEPOSIT", "PARTICIPANT_REPORT_TAX_BASIS_SPECIFICATION_OTHER_CORRECTION", "PARTICIPANT_REPORT_SHARES_REALIZED_OR_ACQUIRED", "PARTICIPANT_REPORT_PAID_IN_SHARE_OF_TAXABLE_EQUITY_AS_OF_BEGINNING_OF_YEAR", "PARTICIPANT_REPORT_PAID_IN_ACQUISITION_OF_SHARE", "PARTICIPANT_REPORT_PAID_IN_DISPOSAL_OF_SHARE", "PARTICIPANT_REPORT_PAID_IN_OTHER_CORRECTION", "PARTICIPANT_REPORT_RETAINED_EARNINGS_SHARE_OF_TAXABLE_EQUITY_AS_OF_BEGINNING_OF_YEAR", "PARTICIPANT_REPORT_RETAINED_EARNINGS_ACQUISITION_OF_SHARE", "PARTICIPANT_REPORT_RETAINED_EARNINGS_DISPOSAL_OF_SHARE", "PARTICIPANT_REPORT_RETAINED_EARNINGS_TAX_RESULT", "PARTICIPANT_REPORT_RETAINED_EARNINGS_TAX_FREE_INCOME", "PARTICIPANT_REPORT_RETAINED_EARNINGS_OTHER_CORRECTION", "PARTICIPANT_REPORT_RETAINED_EARNINGS_NON_DEDUCTIBLE_EXPENSES", "PARTICIPANT_REPORT_COMPENSATION_FOR_WORK_IN_OTHER_INDUSTRIES_INCLUDING_AGRICULTURE", "PARTICIPANT_REPORT_COMPENSATION_FOR_WORK_IN_FISHING_AND_HUNTING", "PARTICIPANT_REPORT_COMPENSATION_FOR_WORK_IN_FAMILY_KINDERGARTEN_AT_PARTICIPANTS_HOME", "PARTICIPANT_REPORT_AGRICULTURAL_DEDUCTION", "PARTICIPANT_REPORT_RENTAL_INCOME_FROM_AGRICULTURAL_OPERATIONS", "PARTICIPANT_REPORT_RESIDES_IN_NORDTROMS_OR_FINNMARK", "PARTICIPANT_DISPROPORTIONATE_DISTRIBUTION", "PARTICIPANT_DISPROPORTIONATE_DISTRIBUTION_SHARE_OF_RESULT", "PARTICIPANT_DISPROPORTIONATE_DISTRIBUTION_SHARE_OF_WEALTH", "PARTICIPANT_PRICE_MANAGEMENT_PRICING", "PARTICIPANT_PRICE_MANAGEMENT_REALIZED_SHARE_TAX_EQUITY", "PARTICIPANT_PRICE_MANAGEMENT_REALIZED_COST_PRICE", "PARTICIPANT_PRICE_MANAGEMENT_REALIZED_SHARE_OF_PRICE_ADJUSTMENT", "PARTICIPANT_PRICE_MANAGEMENT_ACCUMULATED_ADJUSTMENTS", "PARTICIPANT_ASSESSMENT_REPORT_COMPANY_NAME", "PARTICIPANT_ASSESSMENT_REPORT_ORG_NUMBER", "PARTICIPANT_ASSESSMENT_REPORT_MUNICIPALITY_ID", "PARTICIPANT_ASSESSMENT_REPORT_COUNTRY_CODE", "PARTICIPANT_ASSESSMENT_REPORT_VALUE_BEFORE_APPRECIATION_FOR_NET_ASSETS", "PARTICIPANT_ASSESSMENT_REPORT_DEBT", "PARTICIPANT_ASSESSMENT_REPORT_ORDINARY_INCOME", "PARTICIPANT_ASSESSMENT_REPORT_LOSS", "PARTICIPANT_ASSESSMENT_REPORT_PAYMENT_TO_PARTICIPANT", "PARTICIPANT_ASSESSMENT_REPORT_GAIN_ON_REALIZATION_OF_SHARE", "PARTICIPANT_ASSESSMENT_REPORT_LOSS_ON_REALIZATION_OF_SHARE", "PARTICIPANT_REPORT_ROE_TRANSFER_TYPE", "PARTICIPANT_REPORT_ROE_NAME", "PARTICIPANT_REPORT_ROE_IDENTIFICATION", "PARTICIPANT_REPORT_ROE_TRANSACTION_TYPE", "PARTICIPANT_REPORT_ROE_TIME", "PARTICIPANT_REPORT_ROE_AMOUNT", "PARTICIPANT_REPORT_ROE_REMUNERATION", "PARTICIPANT_REPORT_ROE_COSTS", "PARTICIPANT_REPORT_ROE_ADDITION_NON_DEDUCTIBLE_LOSS", "PARTICIPANT_REPORT_ROE_UNUSED_SHIELDING_PREVIOUS_YEARS", "PARTICIPANT_REPORT_ROE_OTHER_CORRECTIONS", "PARTICIPANT_REPORT_ROE_GAIN_LOSS_REALIZATION", "PARTICIPANT_REPORT_ROE_IS_COVERED_EXEMPTION_METHOD", "PARTICIPANT_REPORT_ROE_ACQUIRED_INITIAL_VALUE", "PARTICIPANT_REPORT_ROE_PRICE", "PARTICIPANT_REPORT_TAX_BASIS_SPECIFICATION_REALIZATION_OF_SHARE_VALUE", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_OFFSET_AGAINST_REALIZATION_GAIN", "PARTICIPANT_REPORT_SHIELDING_BASIS_REDUCTION_OF_USED_SHIELDING_DUE_TO_REALIZATION", "PARTICIPANT_REPORT_TAX_BASIS_SPECIFICATION_ACQUISITION_OF_SHARE_VALUE", "YEAR_END_ATTACHMENT_TOGGLE_ENABLED", "COOPERATIVE_ENTERPRISE_TAXABLE_BUSINESS_INCOME", "COOPERATIVE_ENTERPRISE_FROM_SALES_INVOLVING_MEMBER", "COOPERATIVE_ENTERPRISE_SALES_INVOLVING_MEMBER_SEPARATE", "COOPERATIVE_ENTERPRISE_SALES_INVOLVING_MEMBER_ANOTHER", "COOPERATIVE_ENTERPRISE_OTHER_SALES", "COOPERATIVE_ENTERPRISE_RETROACTIVE_PAYMENT_ETC_SEPARATE", "COOPERATIVE_ENTERPRISE_RETROACTIVE_PAYMENT_ETC_OTHER", "COOPERATIVE_ENTERPRISE_CONDITIONS_FOR_DEDUCTION_RETROACTIVE_PAYMENT_ARE_MET", "COOPERATIVE_ENTERPRISE_PURCHASE_INVOLVING_MEMBER_SEPARATE", "COOPERATIVE_ENTERPRISE_PURCHASE_INVOLVING_MEMBER_ANOTHER", "COOPERATIVE_ENTERPRISE_OTHER_PURCHASES", "COOPERATIVE_ENTERPRISE_DECIDED_PAID_BACK_PAYMENT", "COOPERATIVE_ENTERPRISE_CARRY_FORWARD_DEDUCTION_THIS_YEAR", "COOPERATIVE_ENTERPRISE_DECIDED_ALLOCATED_PROFIT", "COOPERATIVE_ENTERPRISE_COOPERATIVE_TYPE", "COOPERATIVE_ENTERPRISE_DEDUCTION_LIMIT_INCOME_YEAR", "COOPERATIVE_ENTERPRISE_DEDUCTION_LIMIT_PREVIOUS_YEAR", "OTHER_CIRCUMSTANCES_TOTAL_DISTRIBUTED_DIVIDEND", "OTHER_CIRCUMSTANCES_INTEREST_ON_EQUITY_CERTIFICATE", "OTHER_CIRCUMSTANCES_COMPANY_HAS_GRANTED_LOAN", "OTHER_CIRCUMSTANCES_SHAREHOLDER_HAS_GRANTED_LOAN", "OTHER_CIRCUMSTANCES_LOAN_AMOUNT_TO_SHAREHOLDER", "OTHER_CIRCUMSTANCES_LOAN_AMOUNT_TO_COMPANY", "OTHER_CIRCUMSTANCES_INTEREST_RECOGNISED_AS_INCOME", "OTHER_CIRCUMSTANCES_INTEREST_RECOGNISED_AS_EXPENSES", "OTHER_CIRCUMSTANCES_LOAN_BALANCE", "OTHER_CIRCUMSTANCES_COLLATERAL_AMOUNT", "OTHER_CIRCUMSTANCES_COLLATERAL_AMOUNT_INCOME_YEAR_TO_COMPANY", "OTHER_CIRCUMSTANCES_COLLATERAL_AMOUNT_INCOME_YEAR_TO_SHAREHOLDER", "OTHER_CIRCUMSTANCES_RENTAL_WITHDRAWAL_SALE_GRANTED", "OTHER_CIRCUMSTANCES_RENTAL_SALE_GRANTED", "OTHER_CIRCUMSTANCES_ASSET_TYPE", "OTHER_CIRCUMSTANCES_PRICING_METHOD", "OTHER_CIRCUMSTANCES_RENTAL_VALUE", "OTHER_CIRCUMSTANCES_VALUE_OF_SALE_OR_WITHDRAWAL", "RESEARCH_AND_DEVELOPMENT_PROJECT_NUMBER", "RESEARCH_AND_DEVELOPMENT_PROJECT_TITLE", "RESEARCH_AND_DEVELOPMENT_PROJECT_CATEGORY", "RESEARCH_AND_DEVELOPMENT_APPLICATION_APPROVED_DATE", "RESEARCH_AND_DEVELOPMENT_PROJECT_START_DATE", "RESEARCH_AND_DEVELOPMENT_PROJECT_END_DATE", "RESEARCH_AND_DEVELOPMENT_APPROVED_RND_INCENTIVE_START_YEAR", "RESEARCH_AND_DEVELOPMENT_APPROVED_RND_INCENTIVE_END_YEAR", "RESEARCH_AND_DEVELOPMENT_PROJECT_STATUS", "RESEARCH_AND_DEVELOPMENT_PROJECT_STATUS_DATE", "RESEARCH_AND_DEVELOPMENT_BUSINESS_CATEGORY", "RESEARCH_AND_DEVELOPMENT_IS_COLLABORATIVE_PROJECT_WITH_OTHER_ENTERPRISES", "RESEARCH_AND_DEVELOPMENT_HAS_EXTENSIVE_DISSEMINATION_THROUGH_CONFERENCES_PUBLICATIONS_ETC", "RESEARCH_AND_DEVELOPMENT_TOTAL_COSTS_PREVIOUS_YEARS", "RESEARCH_AND_DEVELOPMENT_TOTAL_GROSS_TAX_DEDUCTION_FROM_PREVIOUS_YEARS", "RESEARCH_AND_DEVELOPMENT_TOTAL_GROSS_TAX_DEDUCTION_FROM_INCOME_YEAR", "RESEARCH_AND_DEVELOPMENT_INCLUDED_PERSONNEL_COSTS_IN_INCOME_YEAR", "RESEARCH_AND_DEVELOPMENT_NUMBER_OF_OWN_HOURS_IN_INCOME_YEAR", "RESEARCH_AND_DEVELOPMENT_PUBLIC_SUPPORT_AS_REDUCED_WORKER_FEE", "RESEARCH_AND_DEVELOPMENT_WAS_IN_ECONOMIC_DIFFICULTIES_AT_APPLICATION_TIME", "RESEARCH_AND_DEVELOPMENT_UNDERLYING_DOCUMENTS_USED_FOR_ASSESSMENT", "RESEARCH_AND_DEVELOPMENT_UNDERLYING_DOCUMENTATION_DATE", "RESEARCH_AND_DEVELOPMENT_RESOLUTION_DATE", "RESEARCH_AND_DEVELOPMENT_RESOLUTION_TYPE", "RESEARCH_AND_DEVELOPMENT_RESOLUTION_DELIMITATION", "RESEARCH_AND_DEVELOPMENT_OTHER_PUBLIC_SUPPORT_PAYER_NAME", "RESEARCH_AND_DEVELOPMENT_OTHER_PUBLIC_SUPPORT_AMOUNT", "RESEARCH_AND_DEVELOPMENT_TOTAL_COSTS_EXCLUDED_FROM_TAX_DEDUCTION", "RESEARCH_AND_DEVELOPMENT_PROJECT_TO_BE_SIGNED_BY_AUDITOR", "RESEARCH_AND_DEVELOPMENT_STAKE_IN_COLLABORATIVE_PROJECT", "RESEARCH_AND_DEVELOPMENT_APPLIED_FOR_OTHER_PUBLIC_SUPPORT_IN_NORWAY", "RESEARCH_AND_DEVELOPMENT_WORK_PACKAGE_ID", "RESEARCH_AND_DEVELOPMENT_WORK_PACKAGE_TITLE", "RESEARCH_AND_DEVELOPMENT_WORK_PACKAGE_TOTAL_COST_FROM_PREVIOUS_YEAR", "RESEARCH_AND_DEVELOPMENT_WORK_PACKAGE_RECEIVED_PUBLIC_SUPPORT", "RESEARCH_AND_DEVELOPMENT_COLLABORATIVE_BUSINESS_ORG_NO", "RESEARCH_AND_DEVELOPMENT_COLLABORATIVE_BUSINESS_DESCRIPTION", "TIMBER_ACCOUNT_SHARE_OF_OPERATING_REVENUES_HUNTING_FISHING_ETC_MANUAL", "TIMBER_ACCOUNT_STANDARD_INCOME_FROM_BIOMASS_OR_WOOD_PRODUCTION_TRANSFERRED_AGRIGULTURE", "TIMBER_ACCOUNT_SHARE_OF_PROFIT_TO_REGISTER", "TIMBER_ACCOUNT_INCOMING_VALUE_FROM_AQUIRED_TIMBER_ACCOUNT", "TIMBER_ACCOUNT_VALUE_OF_SHARE_OF_REALIZED_TIMBER_ACCOUNT", "TIMBER_ACCOUNT_SHARE_OF_BASIS_NEXT_YEAR", "TIMBER_ACCOUNT_REMAINDER_NOT_TAXED_FELLING", "TIMBER_ACCOUNT_REMAINDER_INCLUDED_THIS_YEAR", "TIMBER_ACCOUNT_MUNICIPALITY_NO", "TIMBER_ACCOUNT_PAID_PUBLIC_CONTRIBUTION_FOREST_FUND", "TIMBER_ACCOUNT_SHARE_OF_OPERATING_REVENUES_HUNTING_FISHING_ETC", "CONTROLLED_TRANSACTIONS_EXEMPT_TRANSACTION_SHARING", "CONTROLLED_TRANSACTIONS_EXEMPT_PRICE_SHARING", "CONTROLLED_TRANSACTIONS_CONSOLIDATED_MARGIN_YEAR", "CONTROLLED_TRANSACTIONS_CONSOLIDATED_MARGIN_PERCENTAGE", "CONTROLLED_TRANSACTIONS_REPORTS_ONLY_PROVISION_INCOME", "CONTROLLED_TRANSACTIONS_COST_OF_IMMATERIAL_ASSETS", "CONTROLLED_TRANSACTIONS_NUMBER_OF_REGISTERED_PATENTS", "CONTROLLED_TRANSACTIONS_GROUP_HAS_BEEN_RESTRUCTURED", "CONTROLLED_TRANSACTIONS_COMPANY_HAS_SERVICED_OTHER_COMPANY_IN_GROUP_FOR_FREE", "CONTROLLED_TRANSACTIONS_COMPANY_IS_GUARANTOR_FOR_AGREEMENTS_BY_OTHER_COMPANIES_IN_SAME_GROUP", "CONTROLLED_TRANSACTIONS_RELATED_COMPANY_IDENTIFIER", "CONTROLLED_TRANSACTIONS_RELATED_COMPANY_NAME", "CONTROLLED_TRANSACTIONS_RELATED_COMPANY_COUNTRY", "CONTROLLED_TRANSACTIONS_FUNCTION_AND_RISK_FUNCTION_TYPE", "CONTROLLED_TRANSACTIONS_FUNCTION_AND_RISK_RISK_TYPE", "CONTROLLED_TRANSACTIONS_FUNCTION_AND_RISK_DESCRIPTION", "CONTROLLED_TRANSACTIONS_COMPANY_SPECIFICATION_COMPANY_IDENTIFIER", "CONTROLLED_TRANSACTIONS_COMPANY_SPECIFICATION_COMPANY_NAME", "CONTROLLED_TRANSACTIONS_COMPANY_SPECIFICATION_COMPANY_COUNTRY", "CONTROLLED_TRANSACTIONS_TRANSACTION_TYPE", "CONTROLLED_TRANSACTIONS_TRANSACTION_DESCRIPTION", "CONTROLLED_TRANSACTIONS_TRANSACTION_AMOUNT", "CONTROLLED_TRANSACTIONS_OUTSTANDING_ACCOUNT", "CONTROLLED_TRANSACTIONS_OUTSTANDING_AMOUNT", "CONTROLLED_TRANSACTIONS_OUTSTANDING_COUNTRY_CODE", "CONTROLLED_TRANSACTIONS_TRANSACTION_COUNTRY_CODE", "CONTROLLED_TRANSACTIONS_RESULT_AS_PERCENTAGE_OF_GROSS_REVENUE", "CONTROLLED_TRANSACTIONS_MAIN_BUSINESS_ACTIVITY", "CONTROLLED_TRANSACTIONS_NUMBER_OF_ENTITIES_WITH_CONTROLLED_TRANSACTIONS_IN_NORWAY", "CONTROLLED_TRANSACTIONS_NUMBER_OF_ENTITIES_WITH_CONTROLLED_TRANSACTIONS_OUTSIDE_NORWAY", "CONTROLLED_TRANSACTIONS_COMPANY_HAS_BEEN_SERVICED_BY_OTHER_COMPANY_IN_GROUP_FOR_FREE", "CONTROLLED_TRANSACTIONS_HAS_CONTROLLED_TRANSACTIONS_EXCEEDING_LIMIT", "CONTROLLED_TRANSACTIONS_IS_OBLIGED_TO_DOCUMENT", "INTEREST_LIMITATION_COMPANY_COMPLIANCE_WITH_INTEREST_LIMITATION", "INTEREST_LIMITATION_NET_INTEREST_COSTS_NORWEGIAN_GROUP_EXCEEDS_25MNOK", "INTEREST_LIMITATION_COMPANY_USES_EXCEPTION_RULE", "INTEREST_LIMITATION_GROUP_APEX_COMPANY_NAME", "INTEREST_LIMITATION_GROUP_APEX_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_GROUP_APEX_COUNTRY_CODE", "INTEREST_LIMITATION_NORWEGIAN_PART_OF_GROUP_REPORTED_ANOTHER_COMPANY", "INTEREST_LIMITATION_NORWEGIAN_PART_OF_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_NORWEGIAN_PART_OF_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_NORWEGIAN_PART_OF_GROUP_COUNTRY_CODE", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_CORRECTION_OF_INTEREST_EXPENSES", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_CORRECTION_OF_INTEREST_INCOME", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_GUARANTEE_COMMISSIONS_ON_DEBT", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_LOSS_ON_REALIZATION_OF_PREMIUM_DISCOUNT_BONDS", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_GAIN_ON_REALIZATION_OF_PREMIUM_DISCOUNT_BONDS", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_LOSS_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_COMPANIES_IN_SAME_GROUP_COSTS_FOR_GUARANTEE_COMMISSION", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_COMPANY_IN_SAME_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_COMPANY_IN_SAME_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_COMPANY_IN_SAME_GROUP_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_COMPANY_IN_SAME_GROUP_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_GROUP_GUARANTOR_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_GROUP_GUARANTOR_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_GROUP_GUARANTOR_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_GROUP_GUARANTOR_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_WITH_OUTSTANDING_CLAIM_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_WITH_OUTSTANDING_CLAIM_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_WITH_OUTSTANDING_CLAIM_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_WITH_OUTSTANDING_CLAIM_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANY_IN_SAME_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANY_IN_SAME_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANY_IN_SAME_GROUP_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANY_IN_SAME_GROUP_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANIES_IN_SAME_GROUP_LOSS_FOR_HOLDER_ON_REALIZATION_OF_PREMIUM_DISCOUNT_BOND", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANIES_IN_SAME_GROUP_GAIN_FOR_HOLDER_UPON_REALIZATION_OF_PREMIUM_DISCOUNT_BOND", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANIES_IN_SAME_GROUP_LOSS_FOR_HOLDER_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANIES_IN_SAME_GROUP_GAIN_FOR_HOLDER_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_GROUP_GUARANTOR_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_GROUP_GUARANTOR_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_GROUP_GUARANTOR_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_GROUP_GUARANTOR_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_WITH_OUTSTANDING_CLAIM_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_WITH_OUTSTANDING_CLAIM_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_WITH_OUTSTANDING_CLAIM_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_WITH_OUTSTANDING_CLAIM_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_COSTS_FOR_GUARANTEE_COMMISSION", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_LOSS_FOR_HOLDER_ON_REALIZATION_OF_PREMIUM_DISCOUNT_BOND", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_GAIN_FOR_HOLDER_UPON_REALIZATION_OF_PREMIUM_DISCOUNT_BOND", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_LOSS_FOR_HOLDER_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_GAIN_FOR_HOLDER_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_COMPANIES_INCLUDED_IN_NORWEGIAN_PART_OF_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_COMPANIES_INCLUDED_IN_NORWEGIAN_PART_OF_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_COMPANIES_INCLUDED_IN_NORWEGIAN_PART_OF_GROUP_NET_INTEREST_COST", "INTEREST_LIMITATION_COMPANIES_INCLUDED_IN_NORWEGIAN_PART_OF_GROUP_NET_DEDUCTIBLE_INTEREST_COST", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_GAIN_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_CALCULATION_OF_INTEREST_DEDUCTION_LIMIT_AMORTIZED_LEASE_COST", "INTEREST_LIMITATION_CALCULATION_OF_INTEREST_DEDUCTION_LIMIT_DEDUCTION_FOR_GROUP_CONTRIBUTIONS_NOT_INCLUDED_IN_CALCULATION_BASIS", "FORWARDING_DISALLOWED_INTEREST_DEDUCTION_INCOME_YEAR", "FORWARDING_DISALLOWED_INTEREST_DEDUCTION_CARRIED_FORWARD_FROM_PREVIOUS_YEAR", "INTEREST_LIMITATION_COMPANY_CARRIED_FORWARD_INTEREST_DEDUCTIONS_FROM_PREVIOUS_YEARS", "TAX_ASSESSMENT_NEGATIVE_PERSONAL_INCOME_PREVIOUS_YEAR_OWNER", "TAX_ASSESSMENT_NEGATIVE_PERSONAL_INCOME_PREVIOUS_YEAR_SPOUSE", "TAX_ASSESSMENT_COORDINATION_OTHER_PERSONAL_INCOME_OWNER", "TAX_ASSESSMENT_COORDINATION_OTHER_PERSONAL_INCOME_SPOUSE", "TAX_ASSESSMENT_COORDINATION_COORDINATION_GENERAL_PARTNERSHIP_OWNER", "TAX_ASSESSMENT_COORDINATION_COORDINATION_GENERAL_PARTNERSHIP_SPOUSE", "TAX_ASSESSMENT_SALARY_INCOME_OWNER", "TAX_ASSESSMENT_SALARY_INCOME_SPOUSE", "TAX_ASSESSMENT_SICK_PAYABLE_FISHING_ETC_OWNER", "TAX_ASSESSMENT_SICK_PAYABLE_FISHING_ETC_SPOUSE", "TAX_ASSESSMENT_SICK_PAYABLE_AGRICULTURE_OWNER", "TAX_ASSESSMENT_SICK_PAYABLE_AGRICULTURE_SPOUSE", "TAX_ASSESSMENT_SICK_PAYABLE_OTHER_OWNER", "TAX_ASSESSMENT_SICK_PAYABLE_OTHER_SPOUSE", "TAX_ASSESSMENT_OTHER_PENSIONABLE_INCOME_OWNER", "TAX_ASSESSMENT_OTHER_PENSIONABLE_INCOME_SPOUSE", "TAX_ASSESSMENT_CONDITIONS_ARE_SPECIAL_ALLOWANCE_AGRICULTURE_MET", "TAX_ASSESSMENT_SHARE_FROM_SDF", "REINDEER_HUSBANDRY", "REINDEER_HUSBANDRY_CAPITAL_COSTS_MINUS_CAPITAL_REVENUES", "REINDEER_HUSBANDRY_CORRECTED_BUSINESS_INCOME_TWO_YEARS_AGO", "REINDEER_HUSBANDRY_CORRECTED_BUSINESS_INCOME_ONE_YEAR_AGO", "REINDEER_HUSBANDRY_WITHDRAWAL", "REINDEER_HUSBANDRY_DEPOSIT", "AGRICULTURAL_ACCOUNT_DEPARTMENTS", "AGRICULTURAL_ACCOUNT_SHARE_OF_OPERATING_COSTS", "AGRICULTURAL_ACCOUNT_INCOME_FROM_BIOMASS_OR_WOOD_PRODUCTION", "AGRICULTURAL_ACCOUNT_OPERATIONAL_ENTITY", "AGRICULTURAL_ACCOUNT_MUNICIPALITY", "AGRICULTURAL_ACCOUNT_TRANSFER_TO_AGRICULTURAL_ACCOUNT", "AGRICULTURAL_ACCOUNT_INHERITED_UPON_INHERITANCE_GENERATIONAL_CHANGE", "AGRICULTURAL_ACCOUNT_REALIZED_UPON_INHERITANCE_GENERATIONAL_CHANGE", "AGRICULTURAL_ACCOUNT_SHARE_OF_BASIS_NEXT_YEAR", "AGRICULTURAL_ACCOUNT_SHARE_OF_OPERATING_COSTS_MANUAL", "AGRICULTURAL_ACCOUNT_OWN_CORRECTIONS_INCOME", "AGRICULTURAL_ACCOUNT_OWN_CORRECTIONS_INCOME_MANUAL" ] }, "postValue" : { "type" : "number", "readOnly" : true } } }, "ReconciliationOfEquityOverview" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "changeOfEquities" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ChangeOfEquity" } }, "openingEquity" : { "type" : "number", "readOnly" : true }, "closingEquity" : { "type" : "number", "readOnly" : true }, "calculatedClosingEquity" : { "type" : "number", "readOnly" : true }, "closingEquityDiff" : { "type" : "number", "readOnly" : true } } }, "ResponseWrapperReconciliationOfEquityOverview" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ReconciliationOfEquityOverview" } } }, "ResponseWrapperListSharesAndSecurities" : { "type" : "object", "properties" : { "value" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/SharesAndSecurities" } } } }, "SharesAndSecurities" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "groupId" : { "type" : "integer", "format" : "int32" }, "genericDataType" : { "type" : "string", "enum" : [ "MISC", "TRANSPORT", "ACCOMMODATION_AND_RESTAURANT", "PROFIT_AND_LOSS", "CUSTOMER_RECEIVABLE", "INVENTORIES", "TANGIBLE_FIXED_ASSETS", "RECONCILIATION_OF_EQUITY", "PERMANENT_DIFFERENCES", "TEMPORARY_DIFFERENCES", "DOCUMENT_DOWNLOADED", "GROUP_CONTRIBUTIONS", "TAX_RETURN", "TAX_CALCULATIONS", "DOCUMENTATION", "SHARES_AND_SECURITIES", "REAL_ESTATE", "PARTICIPANT", "SALARY_AND_PENSION_EXPENSES", "COOPERATIVE_ENTERPRISE", "OTHER_CIRCUMSTANCES", "RESEARCH_AND_DEVELOPMENT", "TIMBER_ACCOUNT", "CONTROLLED_TRANSACTIONS", "PARTICIPANT_ASSESSMENT_REPORT", "CONTROLLED_TRANSACTIONS_COMPANY_SPECIFICATION", "INTEREST_LIMITATION", "DOCUMENT_WITH_ALTINN_ID", "FOREST_FUND", "TAX_ASSESSMENT", "DISTRIBUTION_OF_CAPITAL_DEBT", "REINDEER_HUSBANDRY", "LANDBRUKETS_DATAFLYT", "AGRICULTURAL_ACCOUNT" ] }, "genericDataSubType" : { "type" : "string", "enum" : [ "NONE", "NOT_LICENSED", "FREIGHT_TRANSPORT", "TAXI", "ACQUISITION_AND_REALIZATION", "PRODUCT_TYPE_INVENTORY", "CASH_REGISTER_SYSTEM", "PRIVATE_WITHDRAWAL_OF_GOODS", "ENTERTAINMENT", "MULTI_UNIT_BUILDING_UNIT", "RENTAL_WITHDRAWAL_SALE_COMPANY", "RENTAL_WITHDRAWAL_SALE_SHAREHOLDER", "RESOLUTION", "WORK_PACKAGE", "COLLABORATIVE_BUSINESS", "OTHER_PUBLIC_SUPPORT", "BUSINESS_ACTIVITY", "RELATED_COMPANY", "FUNCTION_AND_RISK", "TRANSACTION", "OUTSTANDING", "INTEREST_EXPENSES_TO_COMPANY_IN_SAME_GROUP", "INTEREST_EXPENSES_TO_OTHER_GROUP_GUARANTOR", "INTEREST_EXPENSES_TO_OTHER_WITH_OUTSTANDING_CLAIM", "COMPANIES_INCLUDED_IN_NORWEGIAN_PART_OF_GROUP", "INTEREST_INCOME_FROM_COMPANY_IN_SAME_GROUP", "INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP", "INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_GROUP_GUARANTOR", "INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_WITH_OUTSTANDING_CLAIM", "INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP", "FORWARDING_DISALLOWED_INTEREST_DEDUCTION" ] }, "genericDataSubTypeGroupId" : { "type" : "integer", "format" : "int32" }, "postType" : { "type" : "string", "enum" : [ "REGISTRATION_NUMBER", "DESCRIPTION", "VEHICLE_TYPE", "YEAR_OF_INITIAL_REGISTRATION", "LIST_PRICE", "DATE_FROM", "DATE_TO", "LICENCE", "LICENCE_NUMBER", "IS_ELECTRONIC_VEHICLE_LOGBOOK_LOGGED", "NO_OF_KILOMETRES_TOTAL", "OPERATING_EXPENSES", "LEASING_RENT", "IS_COMPANY_VEHICLE_USED_PRIVATE", "NO_OF_KILOMETRES_PRIVATE", "DEPRECIATION_PRIVATE_USE", "REVERSED_VEHICLE_EXPENSES", "FUEL_COST", "MAINTENANCE_COST", "COST_OF_INSURANCE_AND_TAX", "CAR_DEPARTMENT", "NO_OF_LITER_FUEL", "TAXIMETER_TYPE", "INCOME_PERSONAL_TRANSPORT", "INCOME_GOODS_TRANSPORT", "DRIVING_INCOME_PAYED_IN_CASH", "DRIVING_INCOME_INVOICED_PUBLIC_AGENCIES", "TIP_PAYED_WITH_CARD_OR_INVOICE", "TIP_PAYED_IN_CASH", "NO_OF_KILOMETRES_SCHOOL_CHILDREN", "NO_OF_KILOMETRES_WITH_PASSENGER", "FLOP_TRIP_AMOUNT", "IS_CONNECTED_TO_CENTRAL", "ID_FOR_PROFIT_AND_LOSS_ACCOUNT", "DESCRIPTION_PROFIT_AND_LOSS_ACCOUNT", "MUNICIPALITY_NUMBER", "OPENING_BALANCE", "PROFIT_SALES_WITHDRAWAL_OTHER_REALIZATIONS", "LOSS_SALES_WITHDRAWAL_OTHER_REALIZATIONS", "PROFIT_REALIZATIONS_LIVESTOCK", "VALUE_ACQUIRED_PROFIT_AND_LOSS_ACCOUNT", "VALUE_REALIZED_PROFIT_AND_LOSS_ACCOUNT", "ANNUAL_INCOME_RECOGNITION_OR_DEDUCTION_BASIS", "PERCENTAGE_PROFIT_AND_LOSS_ACCOUNT", "ANNUAL_INCOME_RECOGNITION", "ANNUAL_DEDUCTION", "CLOSING_BALANCE", "IS_REGARDING_REALIZATION_SEPARATED_PLOT_AGRICULTURE_OR_FORESTRY", "IS_REGARDING_REALIZATION_WHOLE_AGRICULTURE_OR_FORESTRY_BUSINESS", "PROFIT_AND_LOSS_DEPARTMENT", "ID_FOR_ACCOMMODATION_AND_RESTAURANT", "COVER_CHARGE_SUBJECT_TO_VAT", "COVER_CHARGE_NOT_SUBJECT_TO_VAT", "COVER_CHARGE", "DESCRIPTION_ACCOMMODATION_AND_RESTAURANT", "MUST_BE_CONFIRMED_BY_AUDITOR", "PRODUCT_TYPE", "OPENING_STOCK", "CLOSING_STOCK", "PURCHASE_OF_GOODS", "COST_OF_GOODS_SOLD", "SALES_REVENUE_AND_WITHDRAWALS", "SALES_REVENUE_IN_CASH", "CASH_REGISTER_SYSTEM_YEAR_OF_INITIAL_REGISTRATION", "CASH_REGISTER_SYSTEM_TYPE", "WITHDRAWAL_OF_PRODUCTS_VALUED_AT_TURNOVER", "PRIVATE_WITHDRAWAL_ENTERED_ON_PRIVATE_ACCOUNT", "TOTAL_WITHDRAWAL_PRODUCTS_ENTERED_AS_SALES_REVENUE", "WITHDRAWAL_COST_FOR_ENTERTAINMENT", "WITHDRAWAL_VALUE_VALUED_AT_MARKET_VALUE", "MARKUP_WITHDRAWAL_COST_FOR_ENTERTAINMENT", "TOTAL_WITHDRAWAL_COST_FOR_ENTERTAINMENT", "OPENING_BALANCE_CREDIT_SALES", "CLOSING_BALANCE_CREDIT_SALES", "OPENING_BALANCE_WRITE_DOWN_NEW_COMPANY", "CLOSING_BALANCE_WRITE_DOWN_NEW_COMPANY", "SALARY_AND_PENSION_EXPENSES_ACCOUNT_ID", "SALARY_AND_PENSION_EXPENSES_ACCOUNT_ADDITION", "SALARY_AND_PENSION_EXPENSES_ACCOUNT_DEDUCTION", "SALARY_AND_PENSION_EXPENSES_ACCOUNT_REPORTED_BENEFIT", "SALARY_AND_PENSION_EXPENSES_MANUAL_FILLING", "EMPLOYERS_PAYMENT_OF_SUBSIDY", "TOTAL_AMOUNT_CREDITED_TO_NATURAL_BENEFITS", "BASIS_FOR_INCREASED_EMPLOYERS_TAX", "SALARY_AND_PENSION_EXPENSES_MANUAL_ACCOUNT_DESCRIPTION", "SALARY_AND_PENSION_EXPENSES_MANUAL_ACCOUNT_EXPENSED_BENEFIT", "OPENING_BALANCE_RAW_MATERIAL_AND_SEMI_FINISHED_PRODUCTS", "CLOSING_BALANCE_RAW_MATERIAL_AND_SEMI_FINISHED_PRODUCTS", "OPENING_BALANCE_PRODUCT_UNDER_MANUFACTURING", "CLOSING_BALANCE_PRODUCT_UNDER_MANUFACTURING", "OPENING_BALANCE_INVENTORIES_FINISHED_ITEM", "CLOSING_BALANCE_INVENTORIES_FINISHED_ITEM", "OPENING_BALANCE_PURCHASED_ITEM_FOR_RESALE", "CLOSING_BALANCE_PURCHASED_ITEM_FOR_RESALE", "OPENING_BALANCE_SELF_PRODUCED_PRODUCT_OWN_PRODUCTUION", "CLOSING_BALANCE_SELF_PRODUCED_PRODUCT_OWN_PRODUCTUION", "OPENING_BALANCE_LIVESTOCK", "CLOSING_BALANCE_LIVESTOCK", "ACCOUNT_INVENTORY_BALANCE_ACCOUNT_ID", "ACCOUNT_INVENTORY_BALANCE_DEPARTMENT_ID", "ACCOUNT_INVENTORY_BALANCE_UNIT_RATE", "ACCOUNT_INVENTORY_BALANCE_BALANCE_OUT_QUANTITY", "ACCOUNT_INVENTORY_BALANCE_BALANCE_OUT", "TANGIBLE_FIXED_ASSETS_TYPE", "OPENING_BALANCE_TANGIBLE_FIXED_ASSETS", "TAX_DEPRECIATION_PERCENTAGE", "STRAIGHT_LINE_DEPRECIATION", "PROFIT_TRANSFERRED_TO_PROFIT_AND_LOSS_ACCOUNT", "LOSS_TRANSFERRED_TO_PROFIT_AND_LOSS_ACCOUNT", "ACQUISITION_COST", "LIFETIME", "ACQUISITION_DATE", "REALISATION_DATE", "IS_COMMERCIAL_BUILDING_ACQUIRED_BEFORE_1984", "HISTORICAL_COST_PRICE", "WRITTEN_DOWN_VALUE_PR_01011984", "LOWER_LIMIT_DEPRECIATION", "IS_PHYSICAL_OPERATING_ASSETS_IN_BALANCE_SHEET", "FACILITY_TYPE", "DEPRECIATION_PERCENTAGE", "CASH_DEPOSITS", "CONTRIBUTIONS_IN_KIND", "CAPITAL_REDUCTION_DISTRIBUTED_SHARED_CAPITAL_CASH", "CAPITAL_REDUCTION_DISTRIBUTED_SHARED_CAPITAL_OTHER_ASSETS", "DEBT_WAVING", "BUYING_OWN_SHARES", "SELLING_OWN_SHARES", "DEBT_CONVERSION_TO_EQUITY", "POSITIVE_DIFF_BETWEEN_ALLOCATED_AND_DISTRIBUTED_DIVIDEND", "NEGATIVE_DIFF_BETWEEN_ALLOCATED_AND_DISTRIBUTED_DIVIDEND", "OTHER_NEGATIVE_CHANGE_IN_EQUITY", "LATE_PAYMENT", "OTHER_INTEREST_INCOME", "OTHER_INTEREST_EXPENSE", "INCOME_FROM_OTHER_INVESTMENTS_AND_DIVIDENDS", "PROFIT_ON_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "LOSS_ON_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "PRIVATE_ACCOUNT", "DEDUCTIBLE_COST_OF_USING_A_PRIVATE_CAR", "OTHER_TAX_FREE_INCOME", "OTHERNON_DEDUCTIBLECOST", "TAX_FREE_PROFIT_FROM_THE_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "NON_DEDUCTIBLE_LOSS_ON_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "TAX_FREE_PART_OF_DIVIDENDS_AND_DISTRIBUTIONS", "RETURN_OF_PROFITS_TO_ISDF", "RETURN_OF_DEFICIT_TO_ISDF", "CASH_PAYMENT", "WITHDRAWAL_OF_ASSETS_AND_SERVICES", "OTHER_WITHDRAWALS_AND_DISTRIBUTIONS", "OTHER_POSTIVE_CHANGE_IN_EQUITY", "OTHER_POSITIVE_CHANGE_IN_EQUITY", "NONE_DEDUCTIBLE_COST", "POSITIVE_TAX_COST", "INTEREST_EXPENSE_FIXED_TAX", "SHARE_OF_LOSS_FROM_INVESTMENT", "REVERSAL_OF_IMPAIRMENT", "ACCOUNTING_IMPAIRMENT", "ACCOUNTING_LOSS", "ACCOUNTING_DEFICIT_NORWEGIAN_SDF", "ACCOUNTING_DEFICIT_FOREIGN_SDF", "ACCOUNTING_LOSS_NORWEGIAN_SDF", "ACCOUNTING_LOSS_FOREIGN_SDF", "RETURNED_DEBT_INTEREST", "TAXABLE_PROFIT_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "TAXABLE_DIVIDEND_ON_SHARES", "TAXABLE_PART_OF_DIVIDEND_AND_DISTRIBUTION", "SHARE_OF_TAXABLE_PROFIT_NORWEGIAN_SDF", "SHARE_OF_TAXABLE_PROFIT_FOREIGN_SDF", "TAXABLE_PROFIT_REALIZATION_OF_NORWEGIAN_SDF", "TAXABLE_PROFIT_REALIZATION_OF_FOREIGN_SDF", "ADDITION_INTEREST_COST", "CORRECTION_PURPOSED_DIVIDEND", "TAXABLE_PROFIT_WITHDRAWAL_NORWEGIAN_TAX_AREA", "INCOME_SUPPLEMENT_FOR_CONVERSION_DIFFERENCE", "OTHER_INCOME_SUPPLEMENT", "RETURN_OF_INCOME_RELATED_DIVIDENDS", "PROFIT_AND_LOSS_GROUP_CONTRIBUTION", "ACCOUNTING_PROFIT_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "ACCOUNTING_PROFIT_SHARE_NORWEGIAN_SDF", "ACCOUNTING_PROFIT_SHARE_FOREIGN_SDF", "ACCOUNTING_GAIN_NORWEGIAN_SDF", "ACCOUNTING_GAIN_FOREIGN_SDF", "DEDUCTIBLE_LOSS_ON_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "SHARE_OF_DEDUCTIBLE_DEFICIT_NORWEGIAN_SDF", "SHARE_OF_DEDUCTIBLE_DEFICIT_FOREIGN_SDF", "DEDUCTIBLE_LOSS_ON_REALIZATION_NORWEGIAN_SDF", "DEDUCTIBLE_LOSS_ON_REALIZATION_FOREIGN_SDF", "DEDUCTIBLE_LOSS_ON_WITHDRAWAL_NORWEGIAN_TAX_AREA", "ISSUE_AND_ESTABLISHMENT_COST", "INCOME_DEDUCTION_FROM_ACCOUNTING_CURRENCY_TO_NOK", "OTHER_INCOME_DEDUCTION", "INCOME_ACCOUNT_DEFERRED_INCOME", "RETURN_VALUE_REDUCTION_COMPANY_PORTFOLIO", "INCOME_RECOGNITION_PARAGRAPH_10_TRANSACTIONS", "STANDARD_PRICE_ADDITION", "INTEREST_EXPENSE_IN_INCOME_STATEMENT", "INCOME_SUPPLEMENT_PRIVATE_USE_COMMERCIAL_VEHICLE", "INTEREST_INCOME_IN_INCOME_STATEMENT", "RETURN_VALUE_ADDITIONS_COMPANY_PORTFOLIO", "NOT_DEDUCTIBLE_COSTS_AND_LOSS_PETROLEUM_ABROAD", "TEMPLATE_DEDUCTION_TAXABLE_INCOME", "COST_ACCOUNTING_PARAGRAPH_10_TRANSACTIONS", "STANDARD_PRICE_DEDUCTION", "TAX_RETURN_DEDUCTIONS_FOU", "EXEMPT_INCOME_ACCORDINT_TO_PETROLEUM_TAX_LAW", "TAX_FREE_INCOME_RELATED_TO_EXTRACTION_PETROLEUM_ABROAD", "OWN_SICKNESS_BENEFITS_AS_INCOME_IN_ANNUAL_ACCOUNTS", "RETURN_ON_LIFE_INSURANCE_IN_ANNUAL_ACCOUNTS", "REVERSAL_OF_DEDUCTIONS_SCIENTIFIC_RESEARCH_AND_VOCATIONAL_TRAINING", "REVERSAL_INCREASE_VALUE_LINKED_TO_COMPANY_PORTFOLIO", "TEMPORARY_DIFFERENCES_TYPE", "OPENING_BALANCE_ACCOUNTABLE_VALUE", "CLOSING_BALANCE_ACCOUNTABLE_VALUE", "OPENING_BALANCE_TAX_VALUE", "CLOSING_BALANCE_TAX_VALUE", "OPENING_BALANCE_DIFFERENCES", "CLOSING_BALANCE_DIFFERENCES", "SHOW_PROFIT_AND_LOSS", "SHOW_ACCOMMODATION_AND_RESTAURANT", "IS_ACCOUNTABLE", "USE_ACCOUNTING_VALUES_IN_INVENTORIES", "USE_ACCOUNTING_VALUES_IN_CUSTOMER_RECEIVABLES", "SHOW_TANGIBLE_FIXED_ASSET", "SHOW_CAR", "SHOW_INVENTORIES", "SHOW_CUSTOMER_RECEIVABLES", "SHOW_CONCERN_RELATION", "OWN_BUSINESS_PROPERTIES", "OWN_ASSET_PAPER", "SHOW_SALARY_AND_PENSION_EXPENSES", "TRANSFERRED_BY", "TRANSFERRED_DATE", "IS_TAXABLE", "AUDITING_OBLIGATION", "VALIDATION_ONLY_ON_SUBMIT", "DATE_OF_DETERMINATION", "CONFIRMING_COMPANY_REPRESENTATIVE", "CONTACT_PERSON", "PARENT_COMPANY", "SMALL_ENTERPRISES", "PREPARED_BY_AUTHORIZED_ACCOUNTANT", "SERVICE_ASSISTANCE_USED", "ELECTRONIC_CASE_PROCESSING", "SUBMIT_WITHOUT_BUSINESS_SPECIFICATION", "SHOW_RESULT_AND_BALANCE_PREVIOUS_YEAR", "DATE_START", "DATE_END", "INCLUDE_PREVIOUS_YEAR_IN_RESULT", "DISTRIBUTE_INCOME_MODULE_INDUSTRY", "HIDE_TRANSFERRED_FROM_LAST_YEAR_NOTIFICATION", "RESEARCH_AND_DEVELOPMENT", "COMPANY_PARTICIPANT_ANS_DA", "CONTROLLED_TRANSACTION_AND_INBETWEEN", "LIMITATION_OF_DEDUCTION", "EXCEPTION_FOR_INTEREST_LIMITATION", "NUF_COMPANY_ID", "NUF_COMPANY_NAME", "NUF_COUNTRY_CODE", "TIMBER_ACCOUNT", "KLAGE_PAA_SKJOENNSFASTSETTING", "DEV_PILOT_TEST_ORG_NO", "HIDE_MOVE_AGRO_ACCOUNT_NUMBER_NOTIFICATION", "FOREST_FUND", "SUBMISSION_TO_LANDBRUKETS_DATAFLYT_DATE", "SUBMISSION_TO_LANDBRUKETS_DATAFLYT_BY", "SUBMISSION_TO_NIBIO_DATE", "SUBMISSION_TO_NIBIO_BY", "SHOW_ALL_POSTS_RESULT_AND_BALANCE", "REPORT_SIGNATURE_DATE", "REPORT_SIGNATURE_LOCATION", "REPORT_TOGGLE_DATE_LOCATION", "AGRICULTURAL_ACCOUNT", "AGRICULTURAL_ACCOUNT_USE_MULTIPLE_ACCOUNTS", "REPORT_SELECTED_STEP_FRONT_PAGE", "REPORT_SELECTED_STEP_CONTENT_TABLE", "REPORT_SELECTED_STEP_RESULT_AND_BALANCE", "REPORT_SELECTED_STEP_NOTES_FOR_SUBMISSION", "REPORT_SELECTED_STEP_NOTES_FOR_INTERNAL_USE", "REPORT_SELECTED_STEP_SIGNING", "YEAR_END_BRREG_DOC_ID", "YEAR_END_BRREG_DOC_FETCHER_NAME", "YEAR_END_DOCUMENTATION_ACCOMMODATION_AND_RESTAURANT", "YEAR_END_DOCUMENTATION_PROFIT_AND_LOSS_ACCOUNT", "YEAR_END_DOCUMENTATION_COMMERCIAL_VEHICLE", "YEAR_END_DOCUMENTATION_TANGIBLE_FIXED_ASSETS", "YEAR_END_DOCUMENTATION_INVENTORIES", "YEAR_END_DOCUMENTATION_ACCOUNTS_RECEIVABLE_FROM_CUSTOMERS", "YEAR_END_DOCUMENTATION_PROFIT_LOSS", "YEAR_END_DOCUMENTATION_BALANCE", "YEAR_END_DOCUMENTATION_PERSONAL_INCOME", "YEAR_END_DOCUMENTATION_PERMANENT_DIFFERENCES", "YEAR_END_DOCUMENTATION_TEMPORARY_DIFFERENCES", "YEAR_END_DOCUMENTATION_TAX_RELATED_RESULT", "YEAR_END_DOCUMENTATION_GROUP_CONTRIBUTIONS", "YEAR_END_DOCUMENTATION_EQUITY_RECONCILIATION", "YEAR_END_DOCUMENTATION_TAX_RETURN", "YEAR_END_DOCUMENTATION_DIVIDEND", "YEAR_END_DOCUMENTATION_DISPOSITIONS", "YEAR_END_DOCUMENTATION_PROPERTIES", "YEAR_END_DOCUMENTATION_SECURITIES", "YEAR_END_DOCUMENTATION_TAX_CALCULATION", "YEAR_END_DOCUMENTATION_AUDIT_REPORT", "YEAR_END_DOCUMENTATION_ANNUAL_REPORT", "YEAR_END_DOCUMENTATION_CASH_FLOW_STATEMENT", "YEAR_END_DOCUMENTATION_ANNEXES_TO_THE_ANNUAL_ACCOUNTS", "YEAR_END_DOCUMENTATION_SALARY_AND_PENSION_EXPENSES", "YEAR_END_DOCUMENTATION_COOPERATIVE_ENTERPRISE", "YEAR_END_DOCUMENTATION_OTHER_CIRCUMSTANCES", "YEAR_END_DOCUMENTATION_TIMBER_ACCOUNT", "YEAR_END_DOCUMENTATION_PARTICIPANT_ASSESSMENT", "YEAR_END_DOCUMENTATION_RESEARCH_AND_DEVELOPMENT", "YEAR_END_DOCUMENTATION_COMPANY_TAX_RETURN", "YEAR_END_DOCUMENTATION_PARTICIPANTS_TASK", "YEAR_END_DOCUMENTATION_CONTROLLED_TRANSACTIONS", "YEAR_END_DOCUMENTATION_LIMITATION_OF_DEDUCTION", "YEAR_END_DOCUMENTATION_SKJOENNSFASTSETTING", "YEAR_END_DOCUMENTATION_SKJOENNSFASTSETTING_ALTINN_ID", "YEAR_END_DOCUMENTATION_FOREST_FUND", "YEAR_END_DOCUMENTATION_ATTACHMENT_CATEGORY", "YEAR_END_DOCUMENTATION_DISTRIBUTE_CAPITAL_DEBT_WITH_SPOUSE", "YEAR_END_DOCUMENTATION_REINDEER_HUSBANDRY", "YEAR_END_DOCUMENT_SELECTED", "YEAR_END_DOCUMENTATION_ANNUALACCOUNTS_REPORT_GENERATED", "YEAR_END_DOCUMENTATION_AGRICULTURAL_ACCOUNT", "RECEIVER_ORG_NR", "RECEIVER_NAME", "CONCERN_CONNECTION", "VOTING_LIMIT", "DATE_OF_ACQUISITION", "RECEIVED_GROUP_CONTRIBUTIONS_WITH_TAX_AFFECTION", "RECEIVED_GROUP_CONTRIBUTIONS_WITHOUT_TAX_AFFECTION", "SUBMITTED_GROUP_CONTRIBUTIONS_WITH_TAX_AFFECTION", "SUBMITTED_GROUP_CONTRIBUTIONS_WITHOUT_TAX_AFFECTION", "RECEIVED_GROUP_CONTRIBUTIONS_FOREIGN_COMPANY_WITH_TAX_AFFECTION", "SUBMITTED_GROUP_CONTRIBUTIONS_FOREIGN_COMPANY_WITH_TAX_AFFECTION", "APPLICATION_OF_LOSS_CARRY_FORWARDS", "ACCUMULATED_LOSS_FROM_PREVIOUS_YEARS", "CORRECTIONS_AND_OTHER_CAPITAL", "CORRECTIONS_AND_OTHER_DEBT", "NUMBER_OF_SHARES", "TOTAL_SHARE_CAPITAL", "IS_PART_OF_GROUP_COMPANY", "IS_LISTED_ON_THE_STOCK_EXCHANGE", "IS_REORGANIZED_ACROSS_BORDERS", "HAS_RECEIVED_OR_TRANSFERRED_ASSETS", "HEAD_OF_GROUP_NAME", "HEAD_OF_GROUP_COUNTRY_CODE", "HEAD_OF_GROUP_LAST_YEAR_NAME", "HEAD_OF_GROUP_LAST_YEAR_COUNTRY_CODE", "FOREIGN_OWNERSHIP_COMPANY_NAME", "FOREIGN_OWNERSHIP_COMPANY_COUNTRY_CODE", "OWNS_MIN_50_PERCENT_OF_FOREIGN_COMPANY", "HAS_PERMANENT_ESTABLISHMENT_ABROAD", "COUNTRY_FOR_COUNTRY_REPORTABLE_ENTERPRISE_NAME", "COUNTRY_FOR_COUNTRY_REPORTABLE_ENTERPRISE_COUNTRY_CODE", "HAS_PERFORMANCE_BETWEEN_SHAREHOLDERS_AND_OTHER", "HAS_OUTSTANDING_PAYMENT_CLAIMS_RELATED_TO_ILLEGAL_STATE_AID", "IS_SMALL_OR_MEDIUM_SIZED_BUSINESS", "HAD_FINANCIAL_DIFFICULTIES_LAST_YEAR", "IS_GROUP_COMPANY", "HAS_RECEIVED_OTHER_PUBLIC_SUPPORT", "TAXABLE_VALUE_ON_OTHER_ASSETS", "ADDITIONS_NON_DEDUCTIBLE_LATE_PAYMENT", "SALES_WITH_MEMBERS_IN_OWN_COOPERATIVE", "RETROACTIVE_PAYMENT_MEMBERS_IN_OWN_COOPERATIVE", "CARRIED_FORWARD_DEDUCTION_LIMIT_LATE_PAYMENT_PREV_YEAR", "CARRY_FORWARD_DEDUCTION_LIMIT_LATE_PAYMENT", "TAXABLE_VALUE_ON_FORESTRY", "REINSTATED_LOSS_FROM_PRELIMINARY_ASSESSMENT_IN_LATER_YEARS", "HEAD_OF_GROUP_IDENTIFIER", "HEAD_OF_GROUP_LAST_YEAR_IDENTIFIER", "COUNTRY_FOR_COUNTRY_REPORTABLE_ENTERPRISE_IDENTIFIER", "NORWEGIAN_HEAD_OF_GROUP_NAME", "NORWEGIAN_HEAD_OF_GROUP_IDENTIFIER", "NORWEGIAN_HEAD_OF_GROUP_COUNTRY_CODE", "SHARE_OF_LOSS_OFFSET_AGAINST_PROFIT_TWO_PRECEDING_YEARS", "AID_SCHEME_TONNAGE_TAX_REGIME", "AID_SCHEME_RULES_FOR_ELECTRIC_DELIVERY_TRUCKS", "AID_SCHEME_FOR_LONG_TERM_INVESTMENTS", "AID_SCHEME_EMPLOYMENT_RELATED_OPTIONS_START_UP", "AID_SCHEME_TAX_FUN", "AID_SCHEME_FAVOURABLE_DEPRECIATION_RULES", "AID_SCHEME_REGIONALLY_DIFFERENTIATED_INSURANCE_CONTRIBUTIONS", "AID_SCHEME_FAVOURABLE_DETERMINED_LIST_PRICES_ELECTRIC_VEHICLES", "AID_SCHEME_VAT_EXEMPTION_TURNOVER_ELECTRIC_CARS", "AID_SCHEME_VAT_EXEMPTION_LEASING_ELECTRIC_CARS", "AID_SCHEME_VAT_EXEMPTION_TURNOVER_BATTERIES", "AID_SCHEME_VAT_EXEMPTION_TURNOVER_ELECTRIC_NEWS", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_INDUSTRIAL_SECTOR", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_DISTRICT_HEATING", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_TARGET_ZONE", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_DATA_CENTRES", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_COMMERCIAL_VESSELS", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_ENERGY_PRODUCTS", "AID_SCHEME_REDUCED_BASIC_TAX_MINERAL_OIL_WOOD_INDUSTRY", "AID_SCHEME_REDUCED_BASIC_TAX_MINERAL_OIL_PIGMENT_INDUSTRY", "AID_SCHEME_EXEMPTION_CO2_TAX_MINERAL_OIL", "AID_SCHEME_EXEMPTION_CO2_TAX_GAS", "AID_SCHEME_EXEMPTION_NOX_DUTY", "AID_SCHEME_EXEMPTION_TRANSFER_FEE", "AID_SCHEME_REDUCED_ROAD_TRAFFIC_INSURANCE_TAX", "OTHER_CORRECTIONS", "DEFERRED_TAX_ASSETS_IN_BALANCE", "SHARES_AND_SECURITIES_NAME", "SHARES_AND_SECURITIES_STOCK_TYPE", "SHARES_AND_SECURITIES_VAT_NUMBER", "SHARES_AND_SECURITIES_ISIN", "SHARES_AND_SECURITIES_COUNTRY_CODE", "SHARES_AND_SECURITIES_SHARE_CLASS", "SHARES_AND_SECURITIES_SHARES_BY_THE_START_OF_THE_YEAR", "SHARES_AND_SECURITIES_SHARES_BY_THE_END_OF_THE_YEAR", "SHARES_AND_SECURITIES_VALUE", "SHARES_AND_SECURITIES_TOTAL_VALUE", "SHARES_AND_SECURITIES_DIVIDEND", "SHARES_AND_SECURITIES_INTEREST_INCOME", "SHARES_AND_SECURITIES_PROFIT_REALISATION", "SHARES_AND_SECURITIES_LOSS_REALISATION", "SHARES_AND_SECURITIES_PROFIT_INTEREST", "SHARES_AND_SECURITIES_LOSS_INTEREST", "SHARES_AND_SECURITIES_EXEMPTION_METHOD", "SHARES_AND_SECURITIES_FINANCIAL_PRODUCT", "REAL_ESTATE_TYPE", "REAL_ESTATE_DESCRIPTION", "COMMERCIAL_PROPERTY_TYPE", "SHARE_OF_ASSET_VALUE", "INTERNAL_PROPERTY_IDENTIFIER", "ASSET_VALUE_FOR_ASSET_SHARE", "VALUE_BEFORE_VALUATION_DISCOUNT_ASSET_SHARE", "TOTAL_AREA", "CALCULATED_RENTAL_VALUE", "CALCULATED_VALUE_IS_OUTDATED", "REAL_ESTATE_SERG_NO", "REAL_ESTATE_ADDRESS", "REAL_ESTATE_ZIP_CODE", "REAL_ESTATE_POSTAL_PLACE_NAME", "REAL_ESTATE_COUNTRY_CODE", "REAL_ESTATE_MUNICIPALITY_NO", "REAL_ESTATE_MUNICIPALITY_NAME", "REAL_ESTATE_CADASTRAL_UNIT_NO", "REAL_ESTATE_PROPERTY_UNIT_NO", "REAL_ESTATE_LEASEHOLD_NO", "REAL_ESTATE_SECTION_NO", "REAL_ESTATE_OWNERSHIP_SHARE_PERCENTAGE", "REAL_ESTATE_PREV_YEAR_ASSET_VALUE", "REAL_ESTATE_EXPENSES_YEARLY", "REAL_ESTATE_EXPENSES_FARM_HOUSE_YEARLY", "REAL_ESTATE_EXPENSES_OTHER_PROPERTY_YEARLY", "REAL_ESTATE_DATE_DOCUMENTED", "REAL_ESTATE_MARKET_VALUE_MANUAL", "REAL_ESTATE_MARKET_VALUE_CALCULATED", "REAL_ESTATE_USE_VALUE_MARKET", "REAL_ESTATE_DWELLING_TYPE", "REAL_ESTATE_ASSOCIATION_OR_COOPERATIVE_DWELLING_OWNERSHIP_TYPE", "REAL_ESTATE_ASSOCIATION_OR_COOPERATIVE_DWELLING_OWNERSHIP_NAME", "REAL_ESTATE_ASSOCIATION_OR_COOPERATIVE_DWELLING_OWNERSHIP_ORG_NO", "REAL_ESTATE_ASSOCIATION_OR_COOPERATIVE_DWELLING_OWNERSHIP_SHARE_NO", "REAL_ESTATE_PRIMARY_SECONDARY_DWELLING_TYPE", "REAL_ESTATE_CONSTRUCTION_YEAR", "REAL_ESTATE_SELF_OWNED_OR_COOPERATIVE_DWELLING_CALCULATED_MARKET_VALUE", "REAL_ESTATE_RENTAL_AREA_TOTAL", "REAL_ESTATE_RENTAL_PERIOD_MONTHS", "REAL_ESTATE_RENTAL_INCOME_TOTAL_CALCULATED", "REAL_ESTATE_RENTAL_GROSS_ANNUAL_PREV_YEAR", "REAL_ESTATE_RENTAL_GROSS_ANNUAL_PRIOR_YEAR_TWO", "REAL_ESTATE_RENTAL_ASSET_VALUE_BASE", "REAL_ESTATE_RENTAL_GROSS_INCOME", "REAL_ESTATE_PREV_YEAR_ASSET_VALUE_MANUAL", "REAL_ESTATE_EXPENSES_YEARLY_MANUAL", "REAL_ESTATE_EXPENSES_FARM_HOUSE_YEARLY_MANUAL", "REAL_ESTATE_EXPENSES_OTHER_PROPERTY_YEARLY_MANUAL", "REAL_ESTATE_MULTI_UNIT_BUILDING_UNIT_ROW_ID", "REAL_ESTATE_MULTI_UNIT_BUILDING_UNIT_NO", "REAL_ESTATE_MULTI_UNIT_BUILDING_UNIT_AREA", "REAL_ESTATE_MULTI_UNIT_BUILDING_UNIT_CONSTRUCTION_YEAR", "REAL_ESTATE_MULTI_UNIT_BUILDING_UNIT_VALUE", "REAL_ESTATE_USE_INCREASED_CALCULATION_FACTOR", "YEARLY_DIVIDEND", "DIVIDEND_CREDIT", "DIVIDEND_SECURITY_OFFERED", "DIVIDEND_DISPOSITIONS", "PARTICIPANT_NAME", "PARTICIPANT_NUMBER", "PARTICIPANT_OWNERSHIP", "PARTICIPANT_REPORT_DISTRIBUTION_CASH_DISBURSEMENT_FROM_COMPANY", "PARTICIPANT_REPORT_DISTRIBUTION_VALUE_OF_ASSETS_OR_SERVICE_WITHDRAWN", "PARTICIPANT_REPORT_DISTRIBUTION_CAPITAL_REIMBURSEMENT", "PARTICIPANT_REPORT_SHIELDING_BASIS_OTHER_INITIAL_VALUE_CORRECTION", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_UNUSED_SHIELDING_FROM_PREVIOUS_YEAR", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_CORRECTION_FOR_INHERITANCE_OR_GIFT_IN_INCOME_YEAR", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_TRANSFERRED_SHIELDING_DEDUCTION_FROM_PREVIOUS_YEARS", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_TRANSFERRED_SHIELDING_DEDUCTION", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_OTHER_CORRECTION", "PARTICIPANT_REPORT_ADDITIONS_TO_ORDINARY_INCOME_OTHER_CORRECTION", "PARTICIPANT_REPORT_TAX_BASIS_SPECIFICATION_SHARE_OF_TAXABLE_EQUITY_AT_BEGINNING_OF_YEAR", "PARTICIPANT_REPORT_TAX_BASIS_SPECIFICATION_DEPOSIT", "PARTICIPANT_REPORT_TAX_BASIS_SPECIFICATION_OTHER_CORRECTION", "PARTICIPANT_REPORT_SHARES_REALIZED_OR_ACQUIRED", "PARTICIPANT_REPORT_PAID_IN_SHARE_OF_TAXABLE_EQUITY_AS_OF_BEGINNING_OF_YEAR", "PARTICIPANT_REPORT_PAID_IN_ACQUISITION_OF_SHARE", "PARTICIPANT_REPORT_PAID_IN_DISPOSAL_OF_SHARE", "PARTICIPANT_REPORT_PAID_IN_OTHER_CORRECTION", "PARTICIPANT_REPORT_RETAINED_EARNINGS_SHARE_OF_TAXABLE_EQUITY_AS_OF_BEGINNING_OF_YEAR", "PARTICIPANT_REPORT_RETAINED_EARNINGS_ACQUISITION_OF_SHARE", "PARTICIPANT_REPORT_RETAINED_EARNINGS_DISPOSAL_OF_SHARE", "PARTICIPANT_REPORT_RETAINED_EARNINGS_TAX_RESULT", "PARTICIPANT_REPORT_RETAINED_EARNINGS_TAX_FREE_INCOME", "PARTICIPANT_REPORT_RETAINED_EARNINGS_OTHER_CORRECTION", "PARTICIPANT_REPORT_RETAINED_EARNINGS_NON_DEDUCTIBLE_EXPENSES", "PARTICIPANT_REPORT_COMPENSATION_FOR_WORK_IN_OTHER_INDUSTRIES_INCLUDING_AGRICULTURE", "PARTICIPANT_REPORT_COMPENSATION_FOR_WORK_IN_FISHING_AND_HUNTING", "PARTICIPANT_REPORT_COMPENSATION_FOR_WORK_IN_FAMILY_KINDERGARTEN_AT_PARTICIPANTS_HOME", "PARTICIPANT_REPORT_AGRICULTURAL_DEDUCTION", "PARTICIPANT_REPORT_RENTAL_INCOME_FROM_AGRICULTURAL_OPERATIONS", "PARTICIPANT_REPORT_RESIDES_IN_NORDTROMS_OR_FINNMARK", "PARTICIPANT_DISPROPORTIONATE_DISTRIBUTION", "PARTICIPANT_DISPROPORTIONATE_DISTRIBUTION_SHARE_OF_RESULT", "PARTICIPANT_DISPROPORTIONATE_DISTRIBUTION_SHARE_OF_WEALTH", "PARTICIPANT_PRICE_MANAGEMENT_PRICING", "PARTICIPANT_PRICE_MANAGEMENT_REALIZED_SHARE_TAX_EQUITY", "PARTICIPANT_PRICE_MANAGEMENT_REALIZED_COST_PRICE", "PARTICIPANT_PRICE_MANAGEMENT_REALIZED_SHARE_OF_PRICE_ADJUSTMENT", "PARTICIPANT_PRICE_MANAGEMENT_ACCUMULATED_ADJUSTMENTS", "PARTICIPANT_ASSESSMENT_REPORT_COMPANY_NAME", "PARTICIPANT_ASSESSMENT_REPORT_ORG_NUMBER", "PARTICIPANT_ASSESSMENT_REPORT_MUNICIPALITY_ID", "PARTICIPANT_ASSESSMENT_REPORT_COUNTRY_CODE", "PARTICIPANT_ASSESSMENT_REPORT_VALUE_BEFORE_APPRECIATION_FOR_NET_ASSETS", "PARTICIPANT_ASSESSMENT_REPORT_DEBT", "PARTICIPANT_ASSESSMENT_REPORT_ORDINARY_INCOME", "PARTICIPANT_ASSESSMENT_REPORT_LOSS", "PARTICIPANT_ASSESSMENT_REPORT_PAYMENT_TO_PARTICIPANT", "PARTICIPANT_ASSESSMENT_REPORT_GAIN_ON_REALIZATION_OF_SHARE", "PARTICIPANT_ASSESSMENT_REPORT_LOSS_ON_REALIZATION_OF_SHARE", "PARTICIPANT_REPORT_ROE_TRANSFER_TYPE", "PARTICIPANT_REPORT_ROE_NAME", "PARTICIPANT_REPORT_ROE_IDENTIFICATION", "PARTICIPANT_REPORT_ROE_TRANSACTION_TYPE", "PARTICIPANT_REPORT_ROE_TIME", "PARTICIPANT_REPORT_ROE_AMOUNT", "PARTICIPANT_REPORT_ROE_REMUNERATION", "PARTICIPANT_REPORT_ROE_COSTS", "PARTICIPANT_REPORT_ROE_ADDITION_NON_DEDUCTIBLE_LOSS", "PARTICIPANT_REPORT_ROE_UNUSED_SHIELDING_PREVIOUS_YEARS", "PARTICIPANT_REPORT_ROE_OTHER_CORRECTIONS", "PARTICIPANT_REPORT_ROE_GAIN_LOSS_REALIZATION", "PARTICIPANT_REPORT_ROE_IS_COVERED_EXEMPTION_METHOD", "PARTICIPANT_REPORT_ROE_ACQUIRED_INITIAL_VALUE", "PARTICIPANT_REPORT_ROE_PRICE", "PARTICIPANT_REPORT_TAX_BASIS_SPECIFICATION_REALIZATION_OF_SHARE_VALUE", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_OFFSET_AGAINST_REALIZATION_GAIN", "PARTICIPANT_REPORT_SHIELDING_BASIS_REDUCTION_OF_USED_SHIELDING_DUE_TO_REALIZATION", "PARTICIPANT_REPORT_TAX_BASIS_SPECIFICATION_ACQUISITION_OF_SHARE_VALUE", "YEAR_END_ATTACHMENT_TOGGLE_ENABLED", "COOPERATIVE_ENTERPRISE_TAXABLE_BUSINESS_INCOME", "COOPERATIVE_ENTERPRISE_FROM_SALES_INVOLVING_MEMBER", "COOPERATIVE_ENTERPRISE_SALES_INVOLVING_MEMBER_SEPARATE", "COOPERATIVE_ENTERPRISE_SALES_INVOLVING_MEMBER_ANOTHER", "COOPERATIVE_ENTERPRISE_OTHER_SALES", "COOPERATIVE_ENTERPRISE_RETROACTIVE_PAYMENT_ETC_SEPARATE", "COOPERATIVE_ENTERPRISE_RETROACTIVE_PAYMENT_ETC_OTHER", "COOPERATIVE_ENTERPRISE_CONDITIONS_FOR_DEDUCTION_RETROACTIVE_PAYMENT_ARE_MET", "COOPERATIVE_ENTERPRISE_PURCHASE_INVOLVING_MEMBER_SEPARATE", "COOPERATIVE_ENTERPRISE_PURCHASE_INVOLVING_MEMBER_ANOTHER", "COOPERATIVE_ENTERPRISE_OTHER_PURCHASES", "COOPERATIVE_ENTERPRISE_DECIDED_PAID_BACK_PAYMENT", "COOPERATIVE_ENTERPRISE_CARRY_FORWARD_DEDUCTION_THIS_YEAR", "COOPERATIVE_ENTERPRISE_DECIDED_ALLOCATED_PROFIT", "COOPERATIVE_ENTERPRISE_COOPERATIVE_TYPE", "COOPERATIVE_ENTERPRISE_DEDUCTION_LIMIT_INCOME_YEAR", "COOPERATIVE_ENTERPRISE_DEDUCTION_LIMIT_PREVIOUS_YEAR", "OTHER_CIRCUMSTANCES_TOTAL_DISTRIBUTED_DIVIDEND", "OTHER_CIRCUMSTANCES_INTEREST_ON_EQUITY_CERTIFICATE", "OTHER_CIRCUMSTANCES_COMPANY_HAS_GRANTED_LOAN", "OTHER_CIRCUMSTANCES_SHAREHOLDER_HAS_GRANTED_LOAN", "OTHER_CIRCUMSTANCES_LOAN_AMOUNT_TO_SHAREHOLDER", "OTHER_CIRCUMSTANCES_LOAN_AMOUNT_TO_COMPANY", "OTHER_CIRCUMSTANCES_INTEREST_RECOGNISED_AS_INCOME", "OTHER_CIRCUMSTANCES_INTEREST_RECOGNISED_AS_EXPENSES", "OTHER_CIRCUMSTANCES_LOAN_BALANCE", "OTHER_CIRCUMSTANCES_COLLATERAL_AMOUNT", "OTHER_CIRCUMSTANCES_COLLATERAL_AMOUNT_INCOME_YEAR_TO_COMPANY", "OTHER_CIRCUMSTANCES_COLLATERAL_AMOUNT_INCOME_YEAR_TO_SHAREHOLDER", "OTHER_CIRCUMSTANCES_RENTAL_WITHDRAWAL_SALE_GRANTED", "OTHER_CIRCUMSTANCES_RENTAL_SALE_GRANTED", "OTHER_CIRCUMSTANCES_ASSET_TYPE", "OTHER_CIRCUMSTANCES_PRICING_METHOD", "OTHER_CIRCUMSTANCES_RENTAL_VALUE", "OTHER_CIRCUMSTANCES_VALUE_OF_SALE_OR_WITHDRAWAL", "RESEARCH_AND_DEVELOPMENT_PROJECT_NUMBER", "RESEARCH_AND_DEVELOPMENT_PROJECT_TITLE", "RESEARCH_AND_DEVELOPMENT_PROJECT_CATEGORY", "RESEARCH_AND_DEVELOPMENT_APPLICATION_APPROVED_DATE", "RESEARCH_AND_DEVELOPMENT_PROJECT_START_DATE", "RESEARCH_AND_DEVELOPMENT_PROJECT_END_DATE", "RESEARCH_AND_DEVELOPMENT_APPROVED_RND_INCENTIVE_START_YEAR", "RESEARCH_AND_DEVELOPMENT_APPROVED_RND_INCENTIVE_END_YEAR", "RESEARCH_AND_DEVELOPMENT_PROJECT_STATUS", "RESEARCH_AND_DEVELOPMENT_PROJECT_STATUS_DATE", "RESEARCH_AND_DEVELOPMENT_BUSINESS_CATEGORY", "RESEARCH_AND_DEVELOPMENT_IS_COLLABORATIVE_PROJECT_WITH_OTHER_ENTERPRISES", "RESEARCH_AND_DEVELOPMENT_HAS_EXTENSIVE_DISSEMINATION_THROUGH_CONFERENCES_PUBLICATIONS_ETC", "RESEARCH_AND_DEVELOPMENT_TOTAL_COSTS_PREVIOUS_YEARS", "RESEARCH_AND_DEVELOPMENT_TOTAL_GROSS_TAX_DEDUCTION_FROM_PREVIOUS_YEARS", "RESEARCH_AND_DEVELOPMENT_TOTAL_GROSS_TAX_DEDUCTION_FROM_INCOME_YEAR", "RESEARCH_AND_DEVELOPMENT_INCLUDED_PERSONNEL_COSTS_IN_INCOME_YEAR", "RESEARCH_AND_DEVELOPMENT_NUMBER_OF_OWN_HOURS_IN_INCOME_YEAR", "RESEARCH_AND_DEVELOPMENT_PUBLIC_SUPPORT_AS_REDUCED_WORKER_FEE", "RESEARCH_AND_DEVELOPMENT_WAS_IN_ECONOMIC_DIFFICULTIES_AT_APPLICATION_TIME", "RESEARCH_AND_DEVELOPMENT_UNDERLYING_DOCUMENTS_USED_FOR_ASSESSMENT", "RESEARCH_AND_DEVELOPMENT_UNDERLYING_DOCUMENTATION_DATE", "RESEARCH_AND_DEVELOPMENT_RESOLUTION_DATE", "RESEARCH_AND_DEVELOPMENT_RESOLUTION_TYPE", "RESEARCH_AND_DEVELOPMENT_RESOLUTION_DELIMITATION", "RESEARCH_AND_DEVELOPMENT_OTHER_PUBLIC_SUPPORT_PAYER_NAME", "RESEARCH_AND_DEVELOPMENT_OTHER_PUBLIC_SUPPORT_AMOUNT", "RESEARCH_AND_DEVELOPMENT_TOTAL_COSTS_EXCLUDED_FROM_TAX_DEDUCTION", "RESEARCH_AND_DEVELOPMENT_PROJECT_TO_BE_SIGNED_BY_AUDITOR", "RESEARCH_AND_DEVELOPMENT_STAKE_IN_COLLABORATIVE_PROJECT", "RESEARCH_AND_DEVELOPMENT_APPLIED_FOR_OTHER_PUBLIC_SUPPORT_IN_NORWAY", "RESEARCH_AND_DEVELOPMENT_WORK_PACKAGE_ID", "RESEARCH_AND_DEVELOPMENT_WORK_PACKAGE_TITLE", "RESEARCH_AND_DEVELOPMENT_WORK_PACKAGE_TOTAL_COST_FROM_PREVIOUS_YEAR", "RESEARCH_AND_DEVELOPMENT_WORK_PACKAGE_RECEIVED_PUBLIC_SUPPORT", "RESEARCH_AND_DEVELOPMENT_COLLABORATIVE_BUSINESS_ORG_NO", "RESEARCH_AND_DEVELOPMENT_COLLABORATIVE_BUSINESS_DESCRIPTION", "TIMBER_ACCOUNT_SHARE_OF_OPERATING_REVENUES_HUNTING_FISHING_ETC_MANUAL", "TIMBER_ACCOUNT_STANDARD_INCOME_FROM_BIOMASS_OR_WOOD_PRODUCTION_TRANSFERRED_AGRIGULTURE", "TIMBER_ACCOUNT_SHARE_OF_PROFIT_TO_REGISTER", "TIMBER_ACCOUNT_INCOMING_VALUE_FROM_AQUIRED_TIMBER_ACCOUNT", "TIMBER_ACCOUNT_VALUE_OF_SHARE_OF_REALIZED_TIMBER_ACCOUNT", "TIMBER_ACCOUNT_SHARE_OF_BASIS_NEXT_YEAR", "TIMBER_ACCOUNT_REMAINDER_NOT_TAXED_FELLING", "TIMBER_ACCOUNT_REMAINDER_INCLUDED_THIS_YEAR", "TIMBER_ACCOUNT_MUNICIPALITY_NO", "TIMBER_ACCOUNT_PAID_PUBLIC_CONTRIBUTION_FOREST_FUND", "TIMBER_ACCOUNT_SHARE_OF_OPERATING_REVENUES_HUNTING_FISHING_ETC", "CONTROLLED_TRANSACTIONS_EXEMPT_TRANSACTION_SHARING", "CONTROLLED_TRANSACTIONS_EXEMPT_PRICE_SHARING", "CONTROLLED_TRANSACTIONS_CONSOLIDATED_MARGIN_YEAR", "CONTROLLED_TRANSACTIONS_CONSOLIDATED_MARGIN_PERCENTAGE", "CONTROLLED_TRANSACTIONS_REPORTS_ONLY_PROVISION_INCOME", "CONTROLLED_TRANSACTIONS_COST_OF_IMMATERIAL_ASSETS", "CONTROLLED_TRANSACTIONS_NUMBER_OF_REGISTERED_PATENTS", "CONTROLLED_TRANSACTIONS_GROUP_HAS_BEEN_RESTRUCTURED", "CONTROLLED_TRANSACTIONS_COMPANY_HAS_SERVICED_OTHER_COMPANY_IN_GROUP_FOR_FREE", "CONTROLLED_TRANSACTIONS_COMPANY_IS_GUARANTOR_FOR_AGREEMENTS_BY_OTHER_COMPANIES_IN_SAME_GROUP", "CONTROLLED_TRANSACTIONS_RELATED_COMPANY_IDENTIFIER", "CONTROLLED_TRANSACTIONS_RELATED_COMPANY_NAME", "CONTROLLED_TRANSACTIONS_RELATED_COMPANY_COUNTRY", "CONTROLLED_TRANSACTIONS_FUNCTION_AND_RISK_FUNCTION_TYPE", "CONTROLLED_TRANSACTIONS_FUNCTION_AND_RISK_RISK_TYPE", "CONTROLLED_TRANSACTIONS_FUNCTION_AND_RISK_DESCRIPTION", "CONTROLLED_TRANSACTIONS_COMPANY_SPECIFICATION_COMPANY_IDENTIFIER", "CONTROLLED_TRANSACTIONS_COMPANY_SPECIFICATION_COMPANY_NAME", "CONTROLLED_TRANSACTIONS_COMPANY_SPECIFICATION_COMPANY_COUNTRY", "CONTROLLED_TRANSACTIONS_TRANSACTION_TYPE", "CONTROLLED_TRANSACTIONS_TRANSACTION_DESCRIPTION", "CONTROLLED_TRANSACTIONS_TRANSACTION_AMOUNT", "CONTROLLED_TRANSACTIONS_OUTSTANDING_ACCOUNT", "CONTROLLED_TRANSACTIONS_OUTSTANDING_AMOUNT", "CONTROLLED_TRANSACTIONS_OUTSTANDING_COUNTRY_CODE", "CONTROLLED_TRANSACTIONS_TRANSACTION_COUNTRY_CODE", "CONTROLLED_TRANSACTIONS_RESULT_AS_PERCENTAGE_OF_GROSS_REVENUE", "CONTROLLED_TRANSACTIONS_MAIN_BUSINESS_ACTIVITY", "CONTROLLED_TRANSACTIONS_NUMBER_OF_ENTITIES_WITH_CONTROLLED_TRANSACTIONS_IN_NORWAY", "CONTROLLED_TRANSACTIONS_NUMBER_OF_ENTITIES_WITH_CONTROLLED_TRANSACTIONS_OUTSIDE_NORWAY", "CONTROLLED_TRANSACTIONS_COMPANY_HAS_BEEN_SERVICED_BY_OTHER_COMPANY_IN_GROUP_FOR_FREE", "CONTROLLED_TRANSACTIONS_HAS_CONTROLLED_TRANSACTIONS_EXCEEDING_LIMIT", "CONTROLLED_TRANSACTIONS_IS_OBLIGED_TO_DOCUMENT", "INTEREST_LIMITATION_COMPANY_COMPLIANCE_WITH_INTEREST_LIMITATION", "INTEREST_LIMITATION_NET_INTEREST_COSTS_NORWEGIAN_GROUP_EXCEEDS_25MNOK", "INTEREST_LIMITATION_COMPANY_USES_EXCEPTION_RULE", "INTEREST_LIMITATION_GROUP_APEX_COMPANY_NAME", "INTEREST_LIMITATION_GROUP_APEX_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_GROUP_APEX_COUNTRY_CODE", "INTEREST_LIMITATION_NORWEGIAN_PART_OF_GROUP_REPORTED_ANOTHER_COMPANY", "INTEREST_LIMITATION_NORWEGIAN_PART_OF_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_NORWEGIAN_PART_OF_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_NORWEGIAN_PART_OF_GROUP_COUNTRY_CODE", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_CORRECTION_OF_INTEREST_EXPENSES", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_CORRECTION_OF_INTEREST_INCOME", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_GUARANTEE_COMMISSIONS_ON_DEBT", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_LOSS_ON_REALIZATION_OF_PREMIUM_DISCOUNT_BONDS", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_GAIN_ON_REALIZATION_OF_PREMIUM_DISCOUNT_BONDS", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_LOSS_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_COMPANIES_IN_SAME_GROUP_COSTS_FOR_GUARANTEE_COMMISSION", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_COMPANY_IN_SAME_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_COMPANY_IN_SAME_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_COMPANY_IN_SAME_GROUP_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_COMPANY_IN_SAME_GROUP_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_GROUP_GUARANTOR_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_GROUP_GUARANTOR_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_GROUP_GUARANTOR_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_GROUP_GUARANTOR_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_WITH_OUTSTANDING_CLAIM_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_WITH_OUTSTANDING_CLAIM_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_WITH_OUTSTANDING_CLAIM_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_WITH_OUTSTANDING_CLAIM_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANY_IN_SAME_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANY_IN_SAME_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANY_IN_SAME_GROUP_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANY_IN_SAME_GROUP_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANIES_IN_SAME_GROUP_LOSS_FOR_HOLDER_ON_REALIZATION_OF_PREMIUM_DISCOUNT_BOND", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANIES_IN_SAME_GROUP_GAIN_FOR_HOLDER_UPON_REALIZATION_OF_PREMIUM_DISCOUNT_BOND", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANIES_IN_SAME_GROUP_LOSS_FOR_HOLDER_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANIES_IN_SAME_GROUP_GAIN_FOR_HOLDER_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_GROUP_GUARANTOR_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_GROUP_GUARANTOR_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_GROUP_GUARANTOR_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_GROUP_GUARANTOR_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_WITH_OUTSTANDING_CLAIM_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_WITH_OUTSTANDING_CLAIM_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_WITH_OUTSTANDING_CLAIM_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_WITH_OUTSTANDING_CLAIM_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_COSTS_FOR_GUARANTEE_COMMISSION", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_LOSS_FOR_HOLDER_ON_REALIZATION_OF_PREMIUM_DISCOUNT_BOND", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_GAIN_FOR_HOLDER_UPON_REALIZATION_OF_PREMIUM_DISCOUNT_BOND", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_LOSS_FOR_HOLDER_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_GAIN_FOR_HOLDER_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_COMPANIES_INCLUDED_IN_NORWEGIAN_PART_OF_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_COMPANIES_INCLUDED_IN_NORWEGIAN_PART_OF_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_COMPANIES_INCLUDED_IN_NORWEGIAN_PART_OF_GROUP_NET_INTEREST_COST", "INTEREST_LIMITATION_COMPANIES_INCLUDED_IN_NORWEGIAN_PART_OF_GROUP_NET_DEDUCTIBLE_INTEREST_COST", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_GAIN_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_CALCULATION_OF_INTEREST_DEDUCTION_LIMIT_AMORTIZED_LEASE_COST", "INTEREST_LIMITATION_CALCULATION_OF_INTEREST_DEDUCTION_LIMIT_DEDUCTION_FOR_GROUP_CONTRIBUTIONS_NOT_INCLUDED_IN_CALCULATION_BASIS", "FORWARDING_DISALLOWED_INTEREST_DEDUCTION_INCOME_YEAR", "FORWARDING_DISALLOWED_INTEREST_DEDUCTION_CARRIED_FORWARD_FROM_PREVIOUS_YEAR", "INTEREST_LIMITATION_COMPANY_CARRIED_FORWARD_INTEREST_DEDUCTIONS_FROM_PREVIOUS_YEARS", "TAX_ASSESSMENT_NEGATIVE_PERSONAL_INCOME_PREVIOUS_YEAR_OWNER", "TAX_ASSESSMENT_NEGATIVE_PERSONAL_INCOME_PREVIOUS_YEAR_SPOUSE", "TAX_ASSESSMENT_COORDINATION_OTHER_PERSONAL_INCOME_OWNER", "TAX_ASSESSMENT_COORDINATION_OTHER_PERSONAL_INCOME_SPOUSE", "TAX_ASSESSMENT_COORDINATION_COORDINATION_GENERAL_PARTNERSHIP_OWNER", "TAX_ASSESSMENT_COORDINATION_COORDINATION_GENERAL_PARTNERSHIP_SPOUSE", "TAX_ASSESSMENT_SALARY_INCOME_OWNER", "TAX_ASSESSMENT_SALARY_INCOME_SPOUSE", "TAX_ASSESSMENT_SICK_PAYABLE_FISHING_ETC_OWNER", "TAX_ASSESSMENT_SICK_PAYABLE_FISHING_ETC_SPOUSE", "TAX_ASSESSMENT_SICK_PAYABLE_AGRICULTURE_OWNER", "TAX_ASSESSMENT_SICK_PAYABLE_AGRICULTURE_SPOUSE", "TAX_ASSESSMENT_SICK_PAYABLE_OTHER_OWNER", "TAX_ASSESSMENT_SICK_PAYABLE_OTHER_SPOUSE", "TAX_ASSESSMENT_OTHER_PENSIONABLE_INCOME_OWNER", "TAX_ASSESSMENT_OTHER_PENSIONABLE_INCOME_SPOUSE", "TAX_ASSESSMENT_CONDITIONS_ARE_SPECIAL_ALLOWANCE_AGRICULTURE_MET", "TAX_ASSESSMENT_SHARE_FROM_SDF", "REINDEER_HUSBANDRY", "REINDEER_HUSBANDRY_CAPITAL_COSTS_MINUS_CAPITAL_REVENUES", "REINDEER_HUSBANDRY_CORRECTED_BUSINESS_INCOME_TWO_YEARS_AGO", "REINDEER_HUSBANDRY_CORRECTED_BUSINESS_INCOME_ONE_YEAR_AGO", "REINDEER_HUSBANDRY_WITHDRAWAL", "REINDEER_HUSBANDRY_DEPOSIT", "AGRICULTURAL_ACCOUNT_DEPARTMENTS", "AGRICULTURAL_ACCOUNT_SHARE_OF_OPERATING_COSTS", "AGRICULTURAL_ACCOUNT_INCOME_FROM_BIOMASS_OR_WOOD_PRODUCTION", "AGRICULTURAL_ACCOUNT_OPERATIONAL_ENTITY", "AGRICULTURAL_ACCOUNT_MUNICIPALITY", "AGRICULTURAL_ACCOUNT_TRANSFER_TO_AGRICULTURAL_ACCOUNT", "AGRICULTURAL_ACCOUNT_INHERITED_UPON_INHERITANCE_GENERATIONAL_CHANGE", "AGRICULTURAL_ACCOUNT_REALIZED_UPON_INHERITANCE_GENERATIONAL_CHANGE", "AGRICULTURAL_ACCOUNT_SHARE_OF_BASIS_NEXT_YEAR", "AGRICULTURAL_ACCOUNT_SHARE_OF_OPERATING_COSTS_MANUAL", "AGRICULTURAL_ACCOUNT_OWN_CORRECTIONS_INCOME", "AGRICULTURAL_ACCOUNT_OWN_CORRECTIONS_INCOME_MANUAL" ] }, "postValue" : { "type" : "string" }, "name" : { "type" : "string" }, "vatNumber" : { "type" : "string" }, "isin" : { "type" : "string" }, "stockType" : { "type" : "string" }, "shareClass" : { "type" : "string" }, "financialProduct" : { "type" : "string" }, "value" : { "type" : "number" }, "dividend" : { "type" : "number" }, "profitRealisation" : { "type" : "number" }, "lossRealisation" : { "type" : "number" }, "countryCode" : { "type" : "string" }, "sharesByTheStartOfTheYear" : { "type" : "number" }, "sharesByTheEndOfTheYear" : { "type" : "number" }, "totalValue" : { "type" : "number" }, "interestIncome" : { "type" : "number" }, "profitInterest" : { "type" : "number" }, "lossInterest" : { "type" : "number" }, "exemptionMethod" : { "type" : "integer", "format" : "int32" } } }, "AidScheme" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "name" : { "type" : "string", "readOnly" : true }, "grouping" : { "type" : "string", "readOnly" : true }, "negate" : { "type" : "boolean", "readOnly" : true }, "readOnly" : { "type" : "boolean", "readOnly" : true }, "source" : { "type" : "string", "readOnly" : true }, "postType" : { "type" : "string", "readOnly" : true, "enum" : [ "REGISTRATION_NUMBER", "DESCRIPTION", "VEHICLE_TYPE", "YEAR_OF_INITIAL_REGISTRATION", "LIST_PRICE", "DATE_FROM", "DATE_TO", "LICENCE", "LICENCE_NUMBER", "IS_ELECTRONIC_VEHICLE_LOGBOOK_LOGGED", "NO_OF_KILOMETRES_TOTAL", "OPERATING_EXPENSES", "LEASING_RENT", "IS_COMPANY_VEHICLE_USED_PRIVATE", "NO_OF_KILOMETRES_PRIVATE", "DEPRECIATION_PRIVATE_USE", "REVERSED_VEHICLE_EXPENSES", "FUEL_COST", "MAINTENANCE_COST", "COST_OF_INSURANCE_AND_TAX", "CAR_DEPARTMENT", "NO_OF_LITER_FUEL", "TAXIMETER_TYPE", "INCOME_PERSONAL_TRANSPORT", "INCOME_GOODS_TRANSPORT", "DRIVING_INCOME_PAYED_IN_CASH", "DRIVING_INCOME_INVOICED_PUBLIC_AGENCIES", "TIP_PAYED_WITH_CARD_OR_INVOICE", "TIP_PAYED_IN_CASH", "NO_OF_KILOMETRES_SCHOOL_CHILDREN", "NO_OF_KILOMETRES_WITH_PASSENGER", "FLOP_TRIP_AMOUNT", "IS_CONNECTED_TO_CENTRAL", "ID_FOR_PROFIT_AND_LOSS_ACCOUNT", "DESCRIPTION_PROFIT_AND_LOSS_ACCOUNT", "MUNICIPALITY_NUMBER", "OPENING_BALANCE", "PROFIT_SALES_WITHDRAWAL_OTHER_REALIZATIONS", "LOSS_SALES_WITHDRAWAL_OTHER_REALIZATIONS", "PROFIT_REALIZATIONS_LIVESTOCK", "VALUE_ACQUIRED_PROFIT_AND_LOSS_ACCOUNT", "VALUE_REALIZED_PROFIT_AND_LOSS_ACCOUNT", "ANNUAL_INCOME_RECOGNITION_OR_DEDUCTION_BASIS", "PERCENTAGE_PROFIT_AND_LOSS_ACCOUNT", "ANNUAL_INCOME_RECOGNITION", "ANNUAL_DEDUCTION", "CLOSING_BALANCE", "IS_REGARDING_REALIZATION_SEPARATED_PLOT_AGRICULTURE_OR_FORESTRY", "IS_REGARDING_REALIZATION_WHOLE_AGRICULTURE_OR_FORESTRY_BUSINESS", "PROFIT_AND_LOSS_DEPARTMENT", "ID_FOR_ACCOMMODATION_AND_RESTAURANT", "COVER_CHARGE_SUBJECT_TO_VAT", "COVER_CHARGE_NOT_SUBJECT_TO_VAT", "COVER_CHARGE", "DESCRIPTION_ACCOMMODATION_AND_RESTAURANT", "MUST_BE_CONFIRMED_BY_AUDITOR", "PRODUCT_TYPE", "OPENING_STOCK", "CLOSING_STOCK", "PURCHASE_OF_GOODS", "COST_OF_GOODS_SOLD", "SALES_REVENUE_AND_WITHDRAWALS", "SALES_REVENUE_IN_CASH", "CASH_REGISTER_SYSTEM_YEAR_OF_INITIAL_REGISTRATION", "CASH_REGISTER_SYSTEM_TYPE", "WITHDRAWAL_OF_PRODUCTS_VALUED_AT_TURNOVER", "PRIVATE_WITHDRAWAL_ENTERED_ON_PRIVATE_ACCOUNT", "TOTAL_WITHDRAWAL_PRODUCTS_ENTERED_AS_SALES_REVENUE", "WITHDRAWAL_COST_FOR_ENTERTAINMENT", "WITHDRAWAL_VALUE_VALUED_AT_MARKET_VALUE", "MARKUP_WITHDRAWAL_COST_FOR_ENTERTAINMENT", "TOTAL_WITHDRAWAL_COST_FOR_ENTERTAINMENT", "OPENING_BALANCE_CREDIT_SALES", "CLOSING_BALANCE_CREDIT_SALES", "OPENING_BALANCE_WRITE_DOWN_NEW_COMPANY", "CLOSING_BALANCE_WRITE_DOWN_NEW_COMPANY", "SALARY_AND_PENSION_EXPENSES_ACCOUNT_ID", "SALARY_AND_PENSION_EXPENSES_ACCOUNT_ADDITION", "SALARY_AND_PENSION_EXPENSES_ACCOUNT_DEDUCTION", "SALARY_AND_PENSION_EXPENSES_ACCOUNT_REPORTED_BENEFIT", "SALARY_AND_PENSION_EXPENSES_MANUAL_FILLING", "EMPLOYERS_PAYMENT_OF_SUBSIDY", "TOTAL_AMOUNT_CREDITED_TO_NATURAL_BENEFITS", "BASIS_FOR_INCREASED_EMPLOYERS_TAX", "SALARY_AND_PENSION_EXPENSES_MANUAL_ACCOUNT_DESCRIPTION", "SALARY_AND_PENSION_EXPENSES_MANUAL_ACCOUNT_EXPENSED_BENEFIT", "OPENING_BALANCE_RAW_MATERIAL_AND_SEMI_FINISHED_PRODUCTS", "CLOSING_BALANCE_RAW_MATERIAL_AND_SEMI_FINISHED_PRODUCTS", "OPENING_BALANCE_PRODUCT_UNDER_MANUFACTURING", "CLOSING_BALANCE_PRODUCT_UNDER_MANUFACTURING", "OPENING_BALANCE_INVENTORIES_FINISHED_ITEM", "CLOSING_BALANCE_INVENTORIES_FINISHED_ITEM", "OPENING_BALANCE_PURCHASED_ITEM_FOR_RESALE", "CLOSING_BALANCE_PURCHASED_ITEM_FOR_RESALE", "OPENING_BALANCE_SELF_PRODUCED_PRODUCT_OWN_PRODUCTUION", "CLOSING_BALANCE_SELF_PRODUCED_PRODUCT_OWN_PRODUCTUION", "OPENING_BALANCE_LIVESTOCK", "CLOSING_BALANCE_LIVESTOCK", "ACCOUNT_INVENTORY_BALANCE_ACCOUNT_ID", "ACCOUNT_INVENTORY_BALANCE_DEPARTMENT_ID", "ACCOUNT_INVENTORY_BALANCE_UNIT_RATE", "ACCOUNT_INVENTORY_BALANCE_BALANCE_OUT_QUANTITY", "ACCOUNT_INVENTORY_BALANCE_BALANCE_OUT", "TANGIBLE_FIXED_ASSETS_TYPE", "OPENING_BALANCE_TANGIBLE_FIXED_ASSETS", "TAX_DEPRECIATION_PERCENTAGE", "STRAIGHT_LINE_DEPRECIATION", "PROFIT_TRANSFERRED_TO_PROFIT_AND_LOSS_ACCOUNT", "LOSS_TRANSFERRED_TO_PROFIT_AND_LOSS_ACCOUNT", "ACQUISITION_COST", "LIFETIME", "ACQUISITION_DATE", "REALISATION_DATE", "IS_COMMERCIAL_BUILDING_ACQUIRED_BEFORE_1984", "HISTORICAL_COST_PRICE", "WRITTEN_DOWN_VALUE_PR_01011984", "LOWER_LIMIT_DEPRECIATION", "IS_PHYSICAL_OPERATING_ASSETS_IN_BALANCE_SHEET", "FACILITY_TYPE", "DEPRECIATION_PERCENTAGE", "CASH_DEPOSITS", "CONTRIBUTIONS_IN_KIND", "CAPITAL_REDUCTION_DISTRIBUTED_SHARED_CAPITAL_CASH", "CAPITAL_REDUCTION_DISTRIBUTED_SHARED_CAPITAL_OTHER_ASSETS", "DEBT_WAVING", "BUYING_OWN_SHARES", "SELLING_OWN_SHARES", "DEBT_CONVERSION_TO_EQUITY", "POSITIVE_DIFF_BETWEEN_ALLOCATED_AND_DISTRIBUTED_DIVIDEND", "NEGATIVE_DIFF_BETWEEN_ALLOCATED_AND_DISTRIBUTED_DIVIDEND", "OTHER_NEGATIVE_CHANGE_IN_EQUITY", "LATE_PAYMENT", "OTHER_INTEREST_INCOME", "OTHER_INTEREST_EXPENSE", "INCOME_FROM_OTHER_INVESTMENTS_AND_DIVIDENDS", "PROFIT_ON_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "LOSS_ON_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "PRIVATE_ACCOUNT", "DEDUCTIBLE_COST_OF_USING_A_PRIVATE_CAR", "OTHER_TAX_FREE_INCOME", "OTHERNON_DEDUCTIBLECOST", "TAX_FREE_PROFIT_FROM_THE_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "NON_DEDUCTIBLE_LOSS_ON_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "TAX_FREE_PART_OF_DIVIDENDS_AND_DISTRIBUTIONS", "RETURN_OF_PROFITS_TO_ISDF", "RETURN_OF_DEFICIT_TO_ISDF", "CASH_PAYMENT", "WITHDRAWAL_OF_ASSETS_AND_SERVICES", "OTHER_WITHDRAWALS_AND_DISTRIBUTIONS", "OTHER_POSTIVE_CHANGE_IN_EQUITY", "OTHER_POSITIVE_CHANGE_IN_EQUITY", "NONE_DEDUCTIBLE_COST", "POSITIVE_TAX_COST", "INTEREST_EXPENSE_FIXED_TAX", "SHARE_OF_LOSS_FROM_INVESTMENT", "REVERSAL_OF_IMPAIRMENT", "ACCOUNTING_IMPAIRMENT", "ACCOUNTING_LOSS", "ACCOUNTING_DEFICIT_NORWEGIAN_SDF", "ACCOUNTING_DEFICIT_FOREIGN_SDF", "ACCOUNTING_LOSS_NORWEGIAN_SDF", "ACCOUNTING_LOSS_FOREIGN_SDF", "RETURNED_DEBT_INTEREST", "TAXABLE_PROFIT_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "TAXABLE_DIVIDEND_ON_SHARES", "TAXABLE_PART_OF_DIVIDEND_AND_DISTRIBUTION", "SHARE_OF_TAXABLE_PROFIT_NORWEGIAN_SDF", "SHARE_OF_TAXABLE_PROFIT_FOREIGN_SDF", "TAXABLE_PROFIT_REALIZATION_OF_NORWEGIAN_SDF", "TAXABLE_PROFIT_REALIZATION_OF_FOREIGN_SDF", "ADDITION_INTEREST_COST", "CORRECTION_PURPOSED_DIVIDEND", "TAXABLE_PROFIT_WITHDRAWAL_NORWEGIAN_TAX_AREA", "INCOME_SUPPLEMENT_FOR_CONVERSION_DIFFERENCE", "OTHER_INCOME_SUPPLEMENT", "RETURN_OF_INCOME_RELATED_DIVIDENDS", "PROFIT_AND_LOSS_GROUP_CONTRIBUTION", "ACCOUNTING_PROFIT_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "ACCOUNTING_PROFIT_SHARE_NORWEGIAN_SDF", "ACCOUNTING_PROFIT_SHARE_FOREIGN_SDF", "ACCOUNTING_GAIN_NORWEGIAN_SDF", "ACCOUNTING_GAIN_FOREIGN_SDF", "DEDUCTIBLE_LOSS_ON_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "SHARE_OF_DEDUCTIBLE_DEFICIT_NORWEGIAN_SDF", "SHARE_OF_DEDUCTIBLE_DEFICIT_FOREIGN_SDF", "DEDUCTIBLE_LOSS_ON_REALIZATION_NORWEGIAN_SDF", "DEDUCTIBLE_LOSS_ON_REALIZATION_FOREIGN_SDF", "DEDUCTIBLE_LOSS_ON_WITHDRAWAL_NORWEGIAN_TAX_AREA", "ISSUE_AND_ESTABLISHMENT_COST", "INCOME_DEDUCTION_FROM_ACCOUNTING_CURRENCY_TO_NOK", "OTHER_INCOME_DEDUCTION", "INCOME_ACCOUNT_DEFERRED_INCOME", "RETURN_VALUE_REDUCTION_COMPANY_PORTFOLIO", "INCOME_RECOGNITION_PARAGRAPH_10_TRANSACTIONS", "STANDARD_PRICE_ADDITION", "INTEREST_EXPENSE_IN_INCOME_STATEMENT", "INCOME_SUPPLEMENT_PRIVATE_USE_COMMERCIAL_VEHICLE", "INTEREST_INCOME_IN_INCOME_STATEMENT", "RETURN_VALUE_ADDITIONS_COMPANY_PORTFOLIO", "NOT_DEDUCTIBLE_COSTS_AND_LOSS_PETROLEUM_ABROAD", "TEMPLATE_DEDUCTION_TAXABLE_INCOME", "COST_ACCOUNTING_PARAGRAPH_10_TRANSACTIONS", "STANDARD_PRICE_DEDUCTION", "TAX_RETURN_DEDUCTIONS_FOU", "EXEMPT_INCOME_ACCORDINT_TO_PETROLEUM_TAX_LAW", "TAX_FREE_INCOME_RELATED_TO_EXTRACTION_PETROLEUM_ABROAD", "OWN_SICKNESS_BENEFITS_AS_INCOME_IN_ANNUAL_ACCOUNTS", "RETURN_ON_LIFE_INSURANCE_IN_ANNUAL_ACCOUNTS", "REVERSAL_OF_DEDUCTIONS_SCIENTIFIC_RESEARCH_AND_VOCATIONAL_TRAINING", "REVERSAL_INCREASE_VALUE_LINKED_TO_COMPANY_PORTFOLIO", "TEMPORARY_DIFFERENCES_TYPE", "OPENING_BALANCE_ACCOUNTABLE_VALUE", "CLOSING_BALANCE_ACCOUNTABLE_VALUE", "OPENING_BALANCE_TAX_VALUE", "CLOSING_BALANCE_TAX_VALUE", "OPENING_BALANCE_DIFFERENCES", "CLOSING_BALANCE_DIFFERENCES", "SHOW_PROFIT_AND_LOSS", "SHOW_ACCOMMODATION_AND_RESTAURANT", "IS_ACCOUNTABLE", "USE_ACCOUNTING_VALUES_IN_INVENTORIES", "USE_ACCOUNTING_VALUES_IN_CUSTOMER_RECEIVABLES", "SHOW_TANGIBLE_FIXED_ASSET", "SHOW_CAR", "SHOW_INVENTORIES", "SHOW_CUSTOMER_RECEIVABLES", "SHOW_CONCERN_RELATION", "OWN_BUSINESS_PROPERTIES", "OWN_ASSET_PAPER", "SHOW_SALARY_AND_PENSION_EXPENSES", "TRANSFERRED_BY", "TRANSFERRED_DATE", "IS_TAXABLE", "AUDITING_OBLIGATION", "VALIDATION_ONLY_ON_SUBMIT", "DATE_OF_DETERMINATION", "CONFIRMING_COMPANY_REPRESENTATIVE", "CONTACT_PERSON", "PARENT_COMPANY", "SMALL_ENTERPRISES", "PREPARED_BY_AUTHORIZED_ACCOUNTANT", "SERVICE_ASSISTANCE_USED", "ELECTRONIC_CASE_PROCESSING", "SUBMIT_WITHOUT_BUSINESS_SPECIFICATION", "SHOW_RESULT_AND_BALANCE_PREVIOUS_YEAR", "DATE_START", "DATE_END", "INCLUDE_PREVIOUS_YEAR_IN_RESULT", "DISTRIBUTE_INCOME_MODULE_INDUSTRY", "HIDE_TRANSFERRED_FROM_LAST_YEAR_NOTIFICATION", "RESEARCH_AND_DEVELOPMENT", "COMPANY_PARTICIPANT_ANS_DA", "CONTROLLED_TRANSACTION_AND_INBETWEEN", "LIMITATION_OF_DEDUCTION", "EXCEPTION_FOR_INTEREST_LIMITATION", "NUF_COMPANY_ID", "NUF_COMPANY_NAME", "NUF_COUNTRY_CODE", "TIMBER_ACCOUNT", "KLAGE_PAA_SKJOENNSFASTSETTING", "DEV_PILOT_TEST_ORG_NO", "HIDE_MOVE_AGRO_ACCOUNT_NUMBER_NOTIFICATION", "FOREST_FUND", "SUBMISSION_TO_LANDBRUKETS_DATAFLYT_DATE", "SUBMISSION_TO_LANDBRUKETS_DATAFLYT_BY", "SUBMISSION_TO_NIBIO_DATE", "SUBMISSION_TO_NIBIO_BY", "SHOW_ALL_POSTS_RESULT_AND_BALANCE", "REPORT_SIGNATURE_DATE", "REPORT_SIGNATURE_LOCATION", "REPORT_TOGGLE_DATE_LOCATION", "AGRICULTURAL_ACCOUNT", "AGRICULTURAL_ACCOUNT_USE_MULTIPLE_ACCOUNTS", "REPORT_SELECTED_STEP_FRONT_PAGE", "REPORT_SELECTED_STEP_CONTENT_TABLE", "REPORT_SELECTED_STEP_RESULT_AND_BALANCE", "REPORT_SELECTED_STEP_NOTES_FOR_SUBMISSION", "REPORT_SELECTED_STEP_NOTES_FOR_INTERNAL_USE", "REPORT_SELECTED_STEP_SIGNING", "YEAR_END_BRREG_DOC_ID", "YEAR_END_BRREG_DOC_FETCHER_NAME", "YEAR_END_DOCUMENTATION_ACCOMMODATION_AND_RESTAURANT", "YEAR_END_DOCUMENTATION_PROFIT_AND_LOSS_ACCOUNT", "YEAR_END_DOCUMENTATION_COMMERCIAL_VEHICLE", "YEAR_END_DOCUMENTATION_TANGIBLE_FIXED_ASSETS", "YEAR_END_DOCUMENTATION_INVENTORIES", "YEAR_END_DOCUMENTATION_ACCOUNTS_RECEIVABLE_FROM_CUSTOMERS", "YEAR_END_DOCUMENTATION_PROFIT_LOSS", "YEAR_END_DOCUMENTATION_BALANCE", "YEAR_END_DOCUMENTATION_PERSONAL_INCOME", "YEAR_END_DOCUMENTATION_PERMANENT_DIFFERENCES", "YEAR_END_DOCUMENTATION_TEMPORARY_DIFFERENCES", "YEAR_END_DOCUMENTATION_TAX_RELATED_RESULT", "YEAR_END_DOCUMENTATION_GROUP_CONTRIBUTIONS", "YEAR_END_DOCUMENTATION_EQUITY_RECONCILIATION", "YEAR_END_DOCUMENTATION_TAX_RETURN", "YEAR_END_DOCUMENTATION_DIVIDEND", "YEAR_END_DOCUMENTATION_DISPOSITIONS", "YEAR_END_DOCUMENTATION_PROPERTIES", "YEAR_END_DOCUMENTATION_SECURITIES", "YEAR_END_DOCUMENTATION_TAX_CALCULATION", "YEAR_END_DOCUMENTATION_AUDIT_REPORT", "YEAR_END_DOCUMENTATION_ANNUAL_REPORT", "YEAR_END_DOCUMENTATION_CASH_FLOW_STATEMENT", "YEAR_END_DOCUMENTATION_ANNEXES_TO_THE_ANNUAL_ACCOUNTS", "YEAR_END_DOCUMENTATION_SALARY_AND_PENSION_EXPENSES", "YEAR_END_DOCUMENTATION_COOPERATIVE_ENTERPRISE", "YEAR_END_DOCUMENTATION_OTHER_CIRCUMSTANCES", "YEAR_END_DOCUMENTATION_TIMBER_ACCOUNT", "YEAR_END_DOCUMENTATION_PARTICIPANT_ASSESSMENT", "YEAR_END_DOCUMENTATION_RESEARCH_AND_DEVELOPMENT", "YEAR_END_DOCUMENTATION_COMPANY_TAX_RETURN", "YEAR_END_DOCUMENTATION_PARTICIPANTS_TASK", "YEAR_END_DOCUMENTATION_CONTROLLED_TRANSACTIONS", "YEAR_END_DOCUMENTATION_LIMITATION_OF_DEDUCTION", "YEAR_END_DOCUMENTATION_SKJOENNSFASTSETTING", "YEAR_END_DOCUMENTATION_SKJOENNSFASTSETTING_ALTINN_ID", "YEAR_END_DOCUMENTATION_FOREST_FUND", "YEAR_END_DOCUMENTATION_ATTACHMENT_CATEGORY", "YEAR_END_DOCUMENTATION_DISTRIBUTE_CAPITAL_DEBT_WITH_SPOUSE", "YEAR_END_DOCUMENTATION_REINDEER_HUSBANDRY", "YEAR_END_DOCUMENT_SELECTED", "YEAR_END_DOCUMENTATION_ANNUALACCOUNTS_REPORT_GENERATED", "YEAR_END_DOCUMENTATION_AGRICULTURAL_ACCOUNT", "RECEIVER_ORG_NR", "RECEIVER_NAME", "CONCERN_CONNECTION", "VOTING_LIMIT", "DATE_OF_ACQUISITION", "RECEIVED_GROUP_CONTRIBUTIONS_WITH_TAX_AFFECTION", "RECEIVED_GROUP_CONTRIBUTIONS_WITHOUT_TAX_AFFECTION", "SUBMITTED_GROUP_CONTRIBUTIONS_WITH_TAX_AFFECTION", "SUBMITTED_GROUP_CONTRIBUTIONS_WITHOUT_TAX_AFFECTION", "RECEIVED_GROUP_CONTRIBUTIONS_FOREIGN_COMPANY_WITH_TAX_AFFECTION", "SUBMITTED_GROUP_CONTRIBUTIONS_FOREIGN_COMPANY_WITH_TAX_AFFECTION", "APPLICATION_OF_LOSS_CARRY_FORWARDS", "ACCUMULATED_LOSS_FROM_PREVIOUS_YEARS", "CORRECTIONS_AND_OTHER_CAPITAL", "CORRECTIONS_AND_OTHER_DEBT", "NUMBER_OF_SHARES", "TOTAL_SHARE_CAPITAL", "IS_PART_OF_GROUP_COMPANY", "IS_LISTED_ON_THE_STOCK_EXCHANGE", "IS_REORGANIZED_ACROSS_BORDERS", "HAS_RECEIVED_OR_TRANSFERRED_ASSETS", "HEAD_OF_GROUP_NAME", "HEAD_OF_GROUP_COUNTRY_CODE", "HEAD_OF_GROUP_LAST_YEAR_NAME", "HEAD_OF_GROUP_LAST_YEAR_COUNTRY_CODE", "FOREIGN_OWNERSHIP_COMPANY_NAME", "FOREIGN_OWNERSHIP_COMPANY_COUNTRY_CODE", "OWNS_MIN_50_PERCENT_OF_FOREIGN_COMPANY", "HAS_PERMANENT_ESTABLISHMENT_ABROAD", "COUNTRY_FOR_COUNTRY_REPORTABLE_ENTERPRISE_NAME", "COUNTRY_FOR_COUNTRY_REPORTABLE_ENTERPRISE_COUNTRY_CODE", "HAS_PERFORMANCE_BETWEEN_SHAREHOLDERS_AND_OTHER", "HAS_OUTSTANDING_PAYMENT_CLAIMS_RELATED_TO_ILLEGAL_STATE_AID", "IS_SMALL_OR_MEDIUM_SIZED_BUSINESS", "HAD_FINANCIAL_DIFFICULTIES_LAST_YEAR", "IS_GROUP_COMPANY", "HAS_RECEIVED_OTHER_PUBLIC_SUPPORT", "TAXABLE_VALUE_ON_OTHER_ASSETS", "ADDITIONS_NON_DEDUCTIBLE_LATE_PAYMENT", "SALES_WITH_MEMBERS_IN_OWN_COOPERATIVE", "RETROACTIVE_PAYMENT_MEMBERS_IN_OWN_COOPERATIVE", "CARRIED_FORWARD_DEDUCTION_LIMIT_LATE_PAYMENT_PREV_YEAR", "CARRY_FORWARD_DEDUCTION_LIMIT_LATE_PAYMENT", "TAXABLE_VALUE_ON_FORESTRY", "REINSTATED_LOSS_FROM_PRELIMINARY_ASSESSMENT_IN_LATER_YEARS", "HEAD_OF_GROUP_IDENTIFIER", "HEAD_OF_GROUP_LAST_YEAR_IDENTIFIER", "COUNTRY_FOR_COUNTRY_REPORTABLE_ENTERPRISE_IDENTIFIER", "NORWEGIAN_HEAD_OF_GROUP_NAME", "NORWEGIAN_HEAD_OF_GROUP_IDENTIFIER", "NORWEGIAN_HEAD_OF_GROUP_COUNTRY_CODE", "SHARE_OF_LOSS_OFFSET_AGAINST_PROFIT_TWO_PRECEDING_YEARS", "AID_SCHEME_TONNAGE_TAX_REGIME", "AID_SCHEME_RULES_FOR_ELECTRIC_DELIVERY_TRUCKS", "AID_SCHEME_FOR_LONG_TERM_INVESTMENTS", "AID_SCHEME_EMPLOYMENT_RELATED_OPTIONS_START_UP", "AID_SCHEME_TAX_FUN", "AID_SCHEME_FAVOURABLE_DEPRECIATION_RULES", "AID_SCHEME_REGIONALLY_DIFFERENTIATED_INSURANCE_CONTRIBUTIONS", "AID_SCHEME_FAVOURABLE_DETERMINED_LIST_PRICES_ELECTRIC_VEHICLES", "AID_SCHEME_VAT_EXEMPTION_TURNOVER_ELECTRIC_CARS", "AID_SCHEME_VAT_EXEMPTION_LEASING_ELECTRIC_CARS", "AID_SCHEME_VAT_EXEMPTION_TURNOVER_BATTERIES", "AID_SCHEME_VAT_EXEMPTION_TURNOVER_ELECTRIC_NEWS", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_INDUSTRIAL_SECTOR", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_DISTRICT_HEATING", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_TARGET_ZONE", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_DATA_CENTRES", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_COMMERCIAL_VESSELS", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_ENERGY_PRODUCTS", "AID_SCHEME_REDUCED_BASIC_TAX_MINERAL_OIL_WOOD_INDUSTRY", "AID_SCHEME_REDUCED_BASIC_TAX_MINERAL_OIL_PIGMENT_INDUSTRY", "AID_SCHEME_EXEMPTION_CO2_TAX_MINERAL_OIL", "AID_SCHEME_EXEMPTION_CO2_TAX_GAS", "AID_SCHEME_EXEMPTION_NOX_DUTY", "AID_SCHEME_EXEMPTION_TRANSFER_FEE", "AID_SCHEME_REDUCED_ROAD_TRAFFIC_INSURANCE_TAX", "OTHER_CORRECTIONS", "DEFERRED_TAX_ASSETS_IN_BALANCE", "SHARES_AND_SECURITIES_NAME", "SHARES_AND_SECURITIES_STOCK_TYPE", "SHARES_AND_SECURITIES_VAT_NUMBER", "SHARES_AND_SECURITIES_ISIN", "SHARES_AND_SECURITIES_COUNTRY_CODE", "SHARES_AND_SECURITIES_SHARE_CLASS", "SHARES_AND_SECURITIES_SHARES_BY_THE_START_OF_THE_YEAR", "SHARES_AND_SECURITIES_SHARES_BY_THE_END_OF_THE_YEAR", "SHARES_AND_SECURITIES_VALUE", "SHARES_AND_SECURITIES_TOTAL_VALUE", "SHARES_AND_SECURITIES_DIVIDEND", "SHARES_AND_SECURITIES_INTEREST_INCOME", "SHARES_AND_SECURITIES_PROFIT_REALISATION", "SHARES_AND_SECURITIES_LOSS_REALISATION", "SHARES_AND_SECURITIES_PROFIT_INTEREST", "SHARES_AND_SECURITIES_LOSS_INTEREST", "SHARES_AND_SECURITIES_EXEMPTION_METHOD", "SHARES_AND_SECURITIES_FINANCIAL_PRODUCT", "REAL_ESTATE_TYPE", "REAL_ESTATE_DESCRIPTION", "COMMERCIAL_PROPERTY_TYPE", "SHARE_OF_ASSET_VALUE", "INTERNAL_PROPERTY_IDENTIFIER", "ASSET_VALUE_FOR_ASSET_SHARE", "VALUE_BEFORE_VALUATION_DISCOUNT_ASSET_SHARE", "TOTAL_AREA", "CALCULATED_RENTAL_VALUE", "CALCULATED_VALUE_IS_OUTDATED", "REAL_ESTATE_SERG_NO", "REAL_ESTATE_ADDRESS", "REAL_ESTATE_ZIP_CODE", "REAL_ESTATE_POSTAL_PLACE_NAME", "REAL_ESTATE_COUNTRY_CODE", "REAL_ESTATE_MUNICIPALITY_NO", "REAL_ESTATE_MUNICIPALITY_NAME", "REAL_ESTATE_CADASTRAL_UNIT_NO", "REAL_ESTATE_PROPERTY_UNIT_NO", "REAL_ESTATE_LEASEHOLD_NO", "REAL_ESTATE_SECTION_NO", "REAL_ESTATE_OWNERSHIP_SHARE_PERCENTAGE", "REAL_ESTATE_PREV_YEAR_ASSET_VALUE", "REAL_ESTATE_EXPENSES_YEARLY", "REAL_ESTATE_EXPENSES_FARM_HOUSE_YEARLY", "REAL_ESTATE_EXPENSES_OTHER_PROPERTY_YEARLY", "REAL_ESTATE_DATE_DOCUMENTED", "REAL_ESTATE_MARKET_VALUE_MANUAL", "REAL_ESTATE_MARKET_VALUE_CALCULATED", "REAL_ESTATE_USE_VALUE_MARKET", "REAL_ESTATE_DWELLING_TYPE", "REAL_ESTATE_ASSOCIATION_OR_COOPERATIVE_DWELLING_OWNERSHIP_TYPE", "REAL_ESTATE_ASSOCIATION_OR_COOPERATIVE_DWELLING_OWNERSHIP_NAME", "REAL_ESTATE_ASSOCIATION_OR_COOPERATIVE_DWELLING_OWNERSHIP_ORG_NO", "REAL_ESTATE_ASSOCIATION_OR_COOPERATIVE_DWELLING_OWNERSHIP_SHARE_NO", "REAL_ESTATE_PRIMARY_SECONDARY_DWELLING_TYPE", "REAL_ESTATE_CONSTRUCTION_YEAR", "REAL_ESTATE_SELF_OWNED_OR_COOPERATIVE_DWELLING_CALCULATED_MARKET_VALUE", "REAL_ESTATE_RENTAL_AREA_TOTAL", "REAL_ESTATE_RENTAL_PERIOD_MONTHS", "REAL_ESTATE_RENTAL_INCOME_TOTAL_CALCULATED", "REAL_ESTATE_RENTAL_GROSS_ANNUAL_PREV_YEAR", "REAL_ESTATE_RENTAL_GROSS_ANNUAL_PRIOR_YEAR_TWO", "REAL_ESTATE_RENTAL_ASSET_VALUE_BASE", "REAL_ESTATE_RENTAL_GROSS_INCOME", "REAL_ESTATE_PREV_YEAR_ASSET_VALUE_MANUAL", "REAL_ESTATE_EXPENSES_YEARLY_MANUAL", "REAL_ESTATE_EXPENSES_FARM_HOUSE_YEARLY_MANUAL", "REAL_ESTATE_EXPENSES_OTHER_PROPERTY_YEARLY_MANUAL", "REAL_ESTATE_MULTI_UNIT_BUILDING_UNIT_ROW_ID", "REAL_ESTATE_MULTI_UNIT_BUILDING_UNIT_NO", "REAL_ESTATE_MULTI_UNIT_BUILDING_UNIT_AREA", "REAL_ESTATE_MULTI_UNIT_BUILDING_UNIT_CONSTRUCTION_YEAR", "REAL_ESTATE_MULTI_UNIT_BUILDING_UNIT_VALUE", "REAL_ESTATE_USE_INCREASED_CALCULATION_FACTOR", "YEARLY_DIVIDEND", "DIVIDEND_CREDIT", "DIVIDEND_SECURITY_OFFERED", "DIVIDEND_DISPOSITIONS", "PARTICIPANT_NAME", "PARTICIPANT_NUMBER", "PARTICIPANT_OWNERSHIP", "PARTICIPANT_REPORT_DISTRIBUTION_CASH_DISBURSEMENT_FROM_COMPANY", "PARTICIPANT_REPORT_DISTRIBUTION_VALUE_OF_ASSETS_OR_SERVICE_WITHDRAWN", "PARTICIPANT_REPORT_DISTRIBUTION_CAPITAL_REIMBURSEMENT", "PARTICIPANT_REPORT_SHIELDING_BASIS_OTHER_INITIAL_VALUE_CORRECTION", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_UNUSED_SHIELDING_FROM_PREVIOUS_YEAR", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_CORRECTION_FOR_INHERITANCE_OR_GIFT_IN_INCOME_YEAR", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_TRANSFERRED_SHIELDING_DEDUCTION_FROM_PREVIOUS_YEARS", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_TRANSFERRED_SHIELDING_DEDUCTION", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_OTHER_CORRECTION", "PARTICIPANT_REPORT_ADDITIONS_TO_ORDINARY_INCOME_OTHER_CORRECTION", "PARTICIPANT_REPORT_TAX_BASIS_SPECIFICATION_SHARE_OF_TAXABLE_EQUITY_AT_BEGINNING_OF_YEAR", "PARTICIPANT_REPORT_TAX_BASIS_SPECIFICATION_DEPOSIT", "PARTICIPANT_REPORT_TAX_BASIS_SPECIFICATION_OTHER_CORRECTION", "PARTICIPANT_REPORT_SHARES_REALIZED_OR_ACQUIRED", "PARTICIPANT_REPORT_PAID_IN_SHARE_OF_TAXABLE_EQUITY_AS_OF_BEGINNING_OF_YEAR", "PARTICIPANT_REPORT_PAID_IN_ACQUISITION_OF_SHARE", "PARTICIPANT_REPORT_PAID_IN_DISPOSAL_OF_SHARE", "PARTICIPANT_REPORT_PAID_IN_OTHER_CORRECTION", "PARTICIPANT_REPORT_RETAINED_EARNINGS_SHARE_OF_TAXABLE_EQUITY_AS_OF_BEGINNING_OF_YEAR", "PARTICIPANT_REPORT_RETAINED_EARNINGS_ACQUISITION_OF_SHARE", "PARTICIPANT_REPORT_RETAINED_EARNINGS_DISPOSAL_OF_SHARE", "PARTICIPANT_REPORT_RETAINED_EARNINGS_TAX_RESULT", "PARTICIPANT_REPORT_RETAINED_EARNINGS_TAX_FREE_INCOME", "PARTICIPANT_REPORT_RETAINED_EARNINGS_OTHER_CORRECTION", "PARTICIPANT_REPORT_RETAINED_EARNINGS_NON_DEDUCTIBLE_EXPENSES", "PARTICIPANT_REPORT_COMPENSATION_FOR_WORK_IN_OTHER_INDUSTRIES_INCLUDING_AGRICULTURE", "PARTICIPANT_REPORT_COMPENSATION_FOR_WORK_IN_FISHING_AND_HUNTING", "PARTICIPANT_REPORT_COMPENSATION_FOR_WORK_IN_FAMILY_KINDERGARTEN_AT_PARTICIPANTS_HOME", "PARTICIPANT_REPORT_AGRICULTURAL_DEDUCTION", "PARTICIPANT_REPORT_RENTAL_INCOME_FROM_AGRICULTURAL_OPERATIONS", "PARTICIPANT_REPORT_RESIDES_IN_NORDTROMS_OR_FINNMARK", "PARTICIPANT_DISPROPORTIONATE_DISTRIBUTION", "PARTICIPANT_DISPROPORTIONATE_DISTRIBUTION_SHARE_OF_RESULT", "PARTICIPANT_DISPROPORTIONATE_DISTRIBUTION_SHARE_OF_WEALTH", "PARTICIPANT_PRICE_MANAGEMENT_PRICING", "PARTICIPANT_PRICE_MANAGEMENT_REALIZED_SHARE_TAX_EQUITY", "PARTICIPANT_PRICE_MANAGEMENT_REALIZED_COST_PRICE", "PARTICIPANT_PRICE_MANAGEMENT_REALIZED_SHARE_OF_PRICE_ADJUSTMENT", "PARTICIPANT_PRICE_MANAGEMENT_ACCUMULATED_ADJUSTMENTS", "PARTICIPANT_ASSESSMENT_REPORT_COMPANY_NAME", "PARTICIPANT_ASSESSMENT_REPORT_ORG_NUMBER", "PARTICIPANT_ASSESSMENT_REPORT_MUNICIPALITY_ID", "PARTICIPANT_ASSESSMENT_REPORT_COUNTRY_CODE", "PARTICIPANT_ASSESSMENT_REPORT_VALUE_BEFORE_APPRECIATION_FOR_NET_ASSETS", "PARTICIPANT_ASSESSMENT_REPORT_DEBT", "PARTICIPANT_ASSESSMENT_REPORT_ORDINARY_INCOME", "PARTICIPANT_ASSESSMENT_REPORT_LOSS", "PARTICIPANT_ASSESSMENT_REPORT_PAYMENT_TO_PARTICIPANT", "PARTICIPANT_ASSESSMENT_REPORT_GAIN_ON_REALIZATION_OF_SHARE", "PARTICIPANT_ASSESSMENT_REPORT_LOSS_ON_REALIZATION_OF_SHARE", "PARTICIPANT_REPORT_ROE_TRANSFER_TYPE", "PARTICIPANT_REPORT_ROE_NAME", "PARTICIPANT_REPORT_ROE_IDENTIFICATION", "PARTICIPANT_REPORT_ROE_TRANSACTION_TYPE", "PARTICIPANT_REPORT_ROE_TIME", "PARTICIPANT_REPORT_ROE_AMOUNT", "PARTICIPANT_REPORT_ROE_REMUNERATION", "PARTICIPANT_REPORT_ROE_COSTS", "PARTICIPANT_REPORT_ROE_ADDITION_NON_DEDUCTIBLE_LOSS", "PARTICIPANT_REPORT_ROE_UNUSED_SHIELDING_PREVIOUS_YEARS", "PARTICIPANT_REPORT_ROE_OTHER_CORRECTIONS", "PARTICIPANT_REPORT_ROE_GAIN_LOSS_REALIZATION", "PARTICIPANT_REPORT_ROE_IS_COVERED_EXEMPTION_METHOD", "PARTICIPANT_REPORT_ROE_ACQUIRED_INITIAL_VALUE", "PARTICIPANT_REPORT_ROE_PRICE", "PARTICIPANT_REPORT_TAX_BASIS_SPECIFICATION_REALIZATION_OF_SHARE_VALUE", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_OFFSET_AGAINST_REALIZATION_GAIN", "PARTICIPANT_REPORT_SHIELDING_BASIS_REDUCTION_OF_USED_SHIELDING_DUE_TO_REALIZATION", "PARTICIPANT_REPORT_TAX_BASIS_SPECIFICATION_ACQUISITION_OF_SHARE_VALUE", "YEAR_END_ATTACHMENT_TOGGLE_ENABLED", "COOPERATIVE_ENTERPRISE_TAXABLE_BUSINESS_INCOME", "COOPERATIVE_ENTERPRISE_FROM_SALES_INVOLVING_MEMBER", "COOPERATIVE_ENTERPRISE_SALES_INVOLVING_MEMBER_SEPARATE", "COOPERATIVE_ENTERPRISE_SALES_INVOLVING_MEMBER_ANOTHER", "COOPERATIVE_ENTERPRISE_OTHER_SALES", "COOPERATIVE_ENTERPRISE_RETROACTIVE_PAYMENT_ETC_SEPARATE", "COOPERATIVE_ENTERPRISE_RETROACTIVE_PAYMENT_ETC_OTHER", "COOPERATIVE_ENTERPRISE_CONDITIONS_FOR_DEDUCTION_RETROACTIVE_PAYMENT_ARE_MET", "COOPERATIVE_ENTERPRISE_PURCHASE_INVOLVING_MEMBER_SEPARATE", "COOPERATIVE_ENTERPRISE_PURCHASE_INVOLVING_MEMBER_ANOTHER", "COOPERATIVE_ENTERPRISE_OTHER_PURCHASES", "COOPERATIVE_ENTERPRISE_DECIDED_PAID_BACK_PAYMENT", "COOPERATIVE_ENTERPRISE_CARRY_FORWARD_DEDUCTION_THIS_YEAR", "COOPERATIVE_ENTERPRISE_DECIDED_ALLOCATED_PROFIT", "COOPERATIVE_ENTERPRISE_COOPERATIVE_TYPE", "COOPERATIVE_ENTERPRISE_DEDUCTION_LIMIT_INCOME_YEAR", "COOPERATIVE_ENTERPRISE_DEDUCTION_LIMIT_PREVIOUS_YEAR", "OTHER_CIRCUMSTANCES_TOTAL_DISTRIBUTED_DIVIDEND", "OTHER_CIRCUMSTANCES_INTEREST_ON_EQUITY_CERTIFICATE", "OTHER_CIRCUMSTANCES_COMPANY_HAS_GRANTED_LOAN", "OTHER_CIRCUMSTANCES_SHAREHOLDER_HAS_GRANTED_LOAN", "OTHER_CIRCUMSTANCES_LOAN_AMOUNT_TO_SHAREHOLDER", "OTHER_CIRCUMSTANCES_LOAN_AMOUNT_TO_COMPANY", "OTHER_CIRCUMSTANCES_INTEREST_RECOGNISED_AS_INCOME", "OTHER_CIRCUMSTANCES_INTEREST_RECOGNISED_AS_EXPENSES", "OTHER_CIRCUMSTANCES_LOAN_BALANCE", "OTHER_CIRCUMSTANCES_COLLATERAL_AMOUNT", "OTHER_CIRCUMSTANCES_COLLATERAL_AMOUNT_INCOME_YEAR_TO_COMPANY", "OTHER_CIRCUMSTANCES_COLLATERAL_AMOUNT_INCOME_YEAR_TO_SHAREHOLDER", "OTHER_CIRCUMSTANCES_RENTAL_WITHDRAWAL_SALE_GRANTED", "OTHER_CIRCUMSTANCES_RENTAL_SALE_GRANTED", "OTHER_CIRCUMSTANCES_ASSET_TYPE", "OTHER_CIRCUMSTANCES_PRICING_METHOD", "OTHER_CIRCUMSTANCES_RENTAL_VALUE", "OTHER_CIRCUMSTANCES_VALUE_OF_SALE_OR_WITHDRAWAL", "RESEARCH_AND_DEVELOPMENT_PROJECT_NUMBER", "RESEARCH_AND_DEVELOPMENT_PROJECT_TITLE", "RESEARCH_AND_DEVELOPMENT_PROJECT_CATEGORY", "RESEARCH_AND_DEVELOPMENT_APPLICATION_APPROVED_DATE", "RESEARCH_AND_DEVELOPMENT_PROJECT_START_DATE", "RESEARCH_AND_DEVELOPMENT_PROJECT_END_DATE", "RESEARCH_AND_DEVELOPMENT_APPROVED_RND_INCENTIVE_START_YEAR", "RESEARCH_AND_DEVELOPMENT_APPROVED_RND_INCENTIVE_END_YEAR", "RESEARCH_AND_DEVELOPMENT_PROJECT_STATUS", "RESEARCH_AND_DEVELOPMENT_PROJECT_STATUS_DATE", "RESEARCH_AND_DEVELOPMENT_BUSINESS_CATEGORY", "RESEARCH_AND_DEVELOPMENT_IS_COLLABORATIVE_PROJECT_WITH_OTHER_ENTERPRISES", "RESEARCH_AND_DEVELOPMENT_HAS_EXTENSIVE_DISSEMINATION_THROUGH_CONFERENCES_PUBLICATIONS_ETC", "RESEARCH_AND_DEVELOPMENT_TOTAL_COSTS_PREVIOUS_YEARS", "RESEARCH_AND_DEVELOPMENT_TOTAL_GROSS_TAX_DEDUCTION_FROM_PREVIOUS_YEARS", "RESEARCH_AND_DEVELOPMENT_TOTAL_GROSS_TAX_DEDUCTION_FROM_INCOME_YEAR", "RESEARCH_AND_DEVELOPMENT_INCLUDED_PERSONNEL_COSTS_IN_INCOME_YEAR", "RESEARCH_AND_DEVELOPMENT_NUMBER_OF_OWN_HOURS_IN_INCOME_YEAR", "RESEARCH_AND_DEVELOPMENT_PUBLIC_SUPPORT_AS_REDUCED_WORKER_FEE", "RESEARCH_AND_DEVELOPMENT_WAS_IN_ECONOMIC_DIFFICULTIES_AT_APPLICATION_TIME", "RESEARCH_AND_DEVELOPMENT_UNDERLYING_DOCUMENTS_USED_FOR_ASSESSMENT", "RESEARCH_AND_DEVELOPMENT_UNDERLYING_DOCUMENTATION_DATE", "RESEARCH_AND_DEVELOPMENT_RESOLUTION_DATE", "RESEARCH_AND_DEVELOPMENT_RESOLUTION_TYPE", "RESEARCH_AND_DEVELOPMENT_RESOLUTION_DELIMITATION", "RESEARCH_AND_DEVELOPMENT_OTHER_PUBLIC_SUPPORT_PAYER_NAME", "RESEARCH_AND_DEVELOPMENT_OTHER_PUBLIC_SUPPORT_AMOUNT", "RESEARCH_AND_DEVELOPMENT_TOTAL_COSTS_EXCLUDED_FROM_TAX_DEDUCTION", "RESEARCH_AND_DEVELOPMENT_PROJECT_TO_BE_SIGNED_BY_AUDITOR", "RESEARCH_AND_DEVELOPMENT_STAKE_IN_COLLABORATIVE_PROJECT", "RESEARCH_AND_DEVELOPMENT_APPLIED_FOR_OTHER_PUBLIC_SUPPORT_IN_NORWAY", "RESEARCH_AND_DEVELOPMENT_WORK_PACKAGE_ID", "RESEARCH_AND_DEVELOPMENT_WORK_PACKAGE_TITLE", "RESEARCH_AND_DEVELOPMENT_WORK_PACKAGE_TOTAL_COST_FROM_PREVIOUS_YEAR", "RESEARCH_AND_DEVELOPMENT_WORK_PACKAGE_RECEIVED_PUBLIC_SUPPORT", "RESEARCH_AND_DEVELOPMENT_COLLABORATIVE_BUSINESS_ORG_NO", "RESEARCH_AND_DEVELOPMENT_COLLABORATIVE_BUSINESS_DESCRIPTION", "TIMBER_ACCOUNT_SHARE_OF_OPERATING_REVENUES_HUNTING_FISHING_ETC_MANUAL", "TIMBER_ACCOUNT_STANDARD_INCOME_FROM_BIOMASS_OR_WOOD_PRODUCTION_TRANSFERRED_AGRIGULTURE", "TIMBER_ACCOUNT_SHARE_OF_PROFIT_TO_REGISTER", "TIMBER_ACCOUNT_INCOMING_VALUE_FROM_AQUIRED_TIMBER_ACCOUNT", "TIMBER_ACCOUNT_VALUE_OF_SHARE_OF_REALIZED_TIMBER_ACCOUNT", "TIMBER_ACCOUNT_SHARE_OF_BASIS_NEXT_YEAR", "TIMBER_ACCOUNT_REMAINDER_NOT_TAXED_FELLING", "TIMBER_ACCOUNT_REMAINDER_INCLUDED_THIS_YEAR", "TIMBER_ACCOUNT_MUNICIPALITY_NO", "TIMBER_ACCOUNT_PAID_PUBLIC_CONTRIBUTION_FOREST_FUND", "TIMBER_ACCOUNT_SHARE_OF_OPERATING_REVENUES_HUNTING_FISHING_ETC", "CONTROLLED_TRANSACTIONS_EXEMPT_TRANSACTION_SHARING", "CONTROLLED_TRANSACTIONS_EXEMPT_PRICE_SHARING", "CONTROLLED_TRANSACTIONS_CONSOLIDATED_MARGIN_YEAR", "CONTROLLED_TRANSACTIONS_CONSOLIDATED_MARGIN_PERCENTAGE", "CONTROLLED_TRANSACTIONS_REPORTS_ONLY_PROVISION_INCOME", "CONTROLLED_TRANSACTIONS_COST_OF_IMMATERIAL_ASSETS", "CONTROLLED_TRANSACTIONS_NUMBER_OF_REGISTERED_PATENTS", "CONTROLLED_TRANSACTIONS_GROUP_HAS_BEEN_RESTRUCTURED", "CONTROLLED_TRANSACTIONS_COMPANY_HAS_SERVICED_OTHER_COMPANY_IN_GROUP_FOR_FREE", "CONTROLLED_TRANSACTIONS_COMPANY_IS_GUARANTOR_FOR_AGREEMENTS_BY_OTHER_COMPANIES_IN_SAME_GROUP", "CONTROLLED_TRANSACTIONS_RELATED_COMPANY_IDENTIFIER", "CONTROLLED_TRANSACTIONS_RELATED_COMPANY_NAME", "CONTROLLED_TRANSACTIONS_RELATED_COMPANY_COUNTRY", "CONTROLLED_TRANSACTIONS_FUNCTION_AND_RISK_FUNCTION_TYPE", "CONTROLLED_TRANSACTIONS_FUNCTION_AND_RISK_RISK_TYPE", "CONTROLLED_TRANSACTIONS_FUNCTION_AND_RISK_DESCRIPTION", "CONTROLLED_TRANSACTIONS_COMPANY_SPECIFICATION_COMPANY_IDENTIFIER", "CONTROLLED_TRANSACTIONS_COMPANY_SPECIFICATION_COMPANY_NAME", "CONTROLLED_TRANSACTIONS_COMPANY_SPECIFICATION_COMPANY_COUNTRY", "CONTROLLED_TRANSACTIONS_TRANSACTION_TYPE", "CONTROLLED_TRANSACTIONS_TRANSACTION_DESCRIPTION", "CONTROLLED_TRANSACTIONS_TRANSACTION_AMOUNT", "CONTROLLED_TRANSACTIONS_OUTSTANDING_ACCOUNT", "CONTROLLED_TRANSACTIONS_OUTSTANDING_AMOUNT", "CONTROLLED_TRANSACTIONS_OUTSTANDING_COUNTRY_CODE", "CONTROLLED_TRANSACTIONS_TRANSACTION_COUNTRY_CODE", "CONTROLLED_TRANSACTIONS_RESULT_AS_PERCENTAGE_OF_GROSS_REVENUE", "CONTROLLED_TRANSACTIONS_MAIN_BUSINESS_ACTIVITY", "CONTROLLED_TRANSACTIONS_NUMBER_OF_ENTITIES_WITH_CONTROLLED_TRANSACTIONS_IN_NORWAY", "CONTROLLED_TRANSACTIONS_NUMBER_OF_ENTITIES_WITH_CONTROLLED_TRANSACTIONS_OUTSIDE_NORWAY", "CONTROLLED_TRANSACTIONS_COMPANY_HAS_BEEN_SERVICED_BY_OTHER_COMPANY_IN_GROUP_FOR_FREE", "CONTROLLED_TRANSACTIONS_HAS_CONTROLLED_TRANSACTIONS_EXCEEDING_LIMIT", "CONTROLLED_TRANSACTIONS_IS_OBLIGED_TO_DOCUMENT", "INTEREST_LIMITATION_COMPANY_COMPLIANCE_WITH_INTEREST_LIMITATION", "INTEREST_LIMITATION_NET_INTEREST_COSTS_NORWEGIAN_GROUP_EXCEEDS_25MNOK", "INTEREST_LIMITATION_COMPANY_USES_EXCEPTION_RULE", "INTEREST_LIMITATION_GROUP_APEX_COMPANY_NAME", "INTEREST_LIMITATION_GROUP_APEX_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_GROUP_APEX_COUNTRY_CODE", "INTEREST_LIMITATION_NORWEGIAN_PART_OF_GROUP_REPORTED_ANOTHER_COMPANY", "INTEREST_LIMITATION_NORWEGIAN_PART_OF_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_NORWEGIAN_PART_OF_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_NORWEGIAN_PART_OF_GROUP_COUNTRY_CODE", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_CORRECTION_OF_INTEREST_EXPENSES", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_CORRECTION_OF_INTEREST_INCOME", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_GUARANTEE_COMMISSIONS_ON_DEBT", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_LOSS_ON_REALIZATION_OF_PREMIUM_DISCOUNT_BONDS", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_GAIN_ON_REALIZATION_OF_PREMIUM_DISCOUNT_BONDS", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_LOSS_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_COMPANIES_IN_SAME_GROUP_COSTS_FOR_GUARANTEE_COMMISSION", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_COMPANY_IN_SAME_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_COMPANY_IN_SAME_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_COMPANY_IN_SAME_GROUP_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_COMPANY_IN_SAME_GROUP_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_GROUP_GUARANTOR_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_GROUP_GUARANTOR_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_GROUP_GUARANTOR_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_GROUP_GUARANTOR_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_WITH_OUTSTANDING_CLAIM_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_WITH_OUTSTANDING_CLAIM_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_WITH_OUTSTANDING_CLAIM_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_WITH_OUTSTANDING_CLAIM_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANY_IN_SAME_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANY_IN_SAME_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANY_IN_SAME_GROUP_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANY_IN_SAME_GROUP_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANIES_IN_SAME_GROUP_LOSS_FOR_HOLDER_ON_REALIZATION_OF_PREMIUM_DISCOUNT_BOND", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANIES_IN_SAME_GROUP_GAIN_FOR_HOLDER_UPON_REALIZATION_OF_PREMIUM_DISCOUNT_BOND", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANIES_IN_SAME_GROUP_LOSS_FOR_HOLDER_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANIES_IN_SAME_GROUP_GAIN_FOR_HOLDER_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_GROUP_GUARANTOR_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_GROUP_GUARANTOR_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_GROUP_GUARANTOR_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_GROUP_GUARANTOR_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_WITH_OUTSTANDING_CLAIM_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_WITH_OUTSTANDING_CLAIM_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_WITH_OUTSTANDING_CLAIM_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_WITH_OUTSTANDING_CLAIM_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_COSTS_FOR_GUARANTEE_COMMISSION", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_LOSS_FOR_HOLDER_ON_REALIZATION_OF_PREMIUM_DISCOUNT_BOND", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_GAIN_FOR_HOLDER_UPON_REALIZATION_OF_PREMIUM_DISCOUNT_BOND", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_LOSS_FOR_HOLDER_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_GAIN_FOR_HOLDER_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_COMPANIES_INCLUDED_IN_NORWEGIAN_PART_OF_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_COMPANIES_INCLUDED_IN_NORWEGIAN_PART_OF_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_COMPANIES_INCLUDED_IN_NORWEGIAN_PART_OF_GROUP_NET_INTEREST_COST", "INTEREST_LIMITATION_COMPANIES_INCLUDED_IN_NORWEGIAN_PART_OF_GROUP_NET_DEDUCTIBLE_INTEREST_COST", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_GAIN_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_CALCULATION_OF_INTEREST_DEDUCTION_LIMIT_AMORTIZED_LEASE_COST", "INTEREST_LIMITATION_CALCULATION_OF_INTEREST_DEDUCTION_LIMIT_DEDUCTION_FOR_GROUP_CONTRIBUTIONS_NOT_INCLUDED_IN_CALCULATION_BASIS", "FORWARDING_DISALLOWED_INTEREST_DEDUCTION_INCOME_YEAR", "FORWARDING_DISALLOWED_INTEREST_DEDUCTION_CARRIED_FORWARD_FROM_PREVIOUS_YEAR", "INTEREST_LIMITATION_COMPANY_CARRIED_FORWARD_INTEREST_DEDUCTIONS_FROM_PREVIOUS_YEARS", "TAX_ASSESSMENT_NEGATIVE_PERSONAL_INCOME_PREVIOUS_YEAR_OWNER", "TAX_ASSESSMENT_NEGATIVE_PERSONAL_INCOME_PREVIOUS_YEAR_SPOUSE", "TAX_ASSESSMENT_COORDINATION_OTHER_PERSONAL_INCOME_OWNER", "TAX_ASSESSMENT_COORDINATION_OTHER_PERSONAL_INCOME_SPOUSE", "TAX_ASSESSMENT_COORDINATION_COORDINATION_GENERAL_PARTNERSHIP_OWNER", "TAX_ASSESSMENT_COORDINATION_COORDINATION_GENERAL_PARTNERSHIP_SPOUSE", "TAX_ASSESSMENT_SALARY_INCOME_OWNER", "TAX_ASSESSMENT_SALARY_INCOME_SPOUSE", "TAX_ASSESSMENT_SICK_PAYABLE_FISHING_ETC_OWNER", "TAX_ASSESSMENT_SICK_PAYABLE_FISHING_ETC_SPOUSE", "TAX_ASSESSMENT_SICK_PAYABLE_AGRICULTURE_OWNER", "TAX_ASSESSMENT_SICK_PAYABLE_AGRICULTURE_SPOUSE", "TAX_ASSESSMENT_SICK_PAYABLE_OTHER_OWNER", "TAX_ASSESSMENT_SICK_PAYABLE_OTHER_SPOUSE", "TAX_ASSESSMENT_OTHER_PENSIONABLE_INCOME_OWNER", "TAX_ASSESSMENT_OTHER_PENSIONABLE_INCOME_SPOUSE", "TAX_ASSESSMENT_CONDITIONS_ARE_SPECIAL_ALLOWANCE_AGRICULTURE_MET", "TAX_ASSESSMENT_SHARE_FROM_SDF", "REINDEER_HUSBANDRY", "REINDEER_HUSBANDRY_CAPITAL_COSTS_MINUS_CAPITAL_REVENUES", "REINDEER_HUSBANDRY_CORRECTED_BUSINESS_INCOME_TWO_YEARS_AGO", "REINDEER_HUSBANDRY_CORRECTED_BUSINESS_INCOME_ONE_YEAR_AGO", "REINDEER_HUSBANDRY_WITHDRAWAL", "REINDEER_HUSBANDRY_DEPOSIT", "AGRICULTURAL_ACCOUNT_DEPARTMENTS", "AGRICULTURAL_ACCOUNT_SHARE_OF_OPERATING_COSTS", "AGRICULTURAL_ACCOUNT_INCOME_FROM_BIOMASS_OR_WOOD_PRODUCTION", "AGRICULTURAL_ACCOUNT_OPERATIONAL_ENTITY", "AGRICULTURAL_ACCOUNT_MUNICIPALITY", "AGRICULTURAL_ACCOUNT_TRANSFER_TO_AGRICULTURAL_ACCOUNT", "AGRICULTURAL_ACCOUNT_INHERITED_UPON_INHERITANCE_GENERATIONAL_CHANGE", "AGRICULTURAL_ACCOUNT_REALIZED_UPON_INHERITANCE_GENERATIONAL_CHANGE", "AGRICULTURAL_ACCOUNT_SHARE_OF_BASIS_NEXT_YEAR", "AGRICULTURAL_ACCOUNT_SHARE_OF_OPERATING_COSTS_MANUAL", "AGRICULTURAL_ACCOUNT_OWN_CORRECTIONS_INCOME", "AGRICULTURAL_ACCOUNT_OWN_CORRECTIONS_INCOME_MANUAL" ] }, "postValue" : { "type" : "number", "readOnly" : true } } }, "ResponseWrapperTaxReturnOverview" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/TaxReturnOverview" } } }, "TaxReturn" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "name" : { "type" : "string", "readOnly" : true }, "grouping" : { "type" : "string", "readOnly" : true }, "closingBalance" : { "type" : "number", "readOnly" : true } } }, "TaxReturnOverview" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "showConcernRelation" : { "type" : "boolean", "readOnly" : true }, "showForestry" : { "type" : "boolean", "readOnly" : true }, "businessIncome" : { "type" : "number", "readOnly" : true }, "groupContributionReceived" : { "type" : "number", "readOnly" : true }, "groupContributionReceivedGrouping" : { "type" : "string", "readOnly" : true }, "paidGroupContribution" : { "type" : "number", "readOnly" : true }, "paidGroupContributionGrouping" : { "type" : "string", "readOnly" : true }, "obtainedPrivateAgreementAndDebtForgiveness" : { "type" : "number", "readOnly" : true }, "obtainedPrivateAgreementAndDebtForgivenessGrouping" : { "type" : "string", "readOnly" : true }, "taxableProfitForTheYear" : { "type" : "number", "readOnly" : true }, "taxableProfitToTaxReturn" : { "type" : "number", "readOnly" : true }, "accumulatedLossFromPreviousYear" : { "type" : "number", "readOnly" : true }, "lossesInBusinessAndRealEstate" : { "type" : "number", "readOnly" : true }, "useOfLossCarryForwards" : { "type" : "number", "readOnly" : true }, "accumulatedLossForNextYear" : { "type" : "number", "readOnly" : true }, "taxValueTangibleFixedAssets" : { "type" : "number", "readOnly" : true }, "sumAmountAnsDaGroup" : { "type" : "number", "readOnly" : true }, "sumTotalWealthDistribution" : { "type" : "number", "readOnly" : true }, "taxValueInventories" : { "type" : "number", "readOnly" : true }, "taxValueCustomerReceivables" : { "type" : "number", "readOnly" : true }, "negativeTaxValueCustomerReceivables" : { "type" : "number", "readOnly" : true }, "sumGrossAssets" : { "type" : "number", "readOnly" : true }, "totalDebtInAccounts" : { "type" : "number", "readOnly" : true }, "taxToPay" : { "type" : "number", "readOnly" : true }, "sumDebt" : { "type" : "number", "readOnly" : true }, "totalTaxValue" : { "type" : "number", "readOnly" : true }, "reductionOfAssetValue" : { "type" : "number", "readOnly" : true }, "correctedAssetValue" : { "type" : "number", "readOnly" : true }, "valuePerShare" : { "type" : "number", "readOnly" : true }, "totalValueSharesAndSecurities" : { "type" : "number", "readOnly" : true }, "totalValueRealEstate" : { "type" : "number", "readOnly" : true }, "posts" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/GenericData" } }, "capitalAndDebt" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/TaxReturn" } }, "aidSchemes" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/AidScheme" } }, "taxValueTangibleFixedAssetsAfterValuationDiscount" : { "type" : "number", "readOnly" : true }, "tangibleFixedAssetsValuationDiscount" : { "type" : "number", "readOnly" : true }, "taxValueInventoriesAfterValuationDiscount" : { "type" : "number", "readOnly" : true }, "inventoriesValuationDiscount" : { "type" : "number", "readOnly" : true }, "taxValueCustomerReceivablesAfterValuationDiscount" : { "type" : "number", "readOnly" : true }, "customerReceivablesValuationDiscount" : { "type" : "number", "readOnly" : true }, "taxValueSharesAndSecuritiesAfterValuationDiscount" : { "type" : "number", "readOnly" : true }, "sharesAndSecuritiesValuationDiscount" : { "type" : "number", "readOnly" : true }, "taxValueRealEstateAfterValuationDiscount" : { "type" : "number", "readOnly" : true }, "realEstateValuationDiscount" : { "type" : "number", "readOnly" : true }, "taxValueSdf" : { "type" : "number", "readOnly" : true }, "taxValueSdfAfterValuationDiscount" : { "type" : "number", "readOnly" : true }, "sdfDebt" : { "type" : "number", "readOnly" : true }, "sdfValuationDiscount" : { "type" : "number", "readOnly" : true }, "taxValueForestryAfterValuationDiscount" : { "type" : "number", "readOnly" : true }, "forestryValuationDiscount" : { "type" : "number", "readOnly" : true }, "reductionDebtValuationDiscount" : { "type" : "number", "readOnly" : true } } }, "CompaniesIncludedInNorwegianPartOfGroup" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "groupId" : { "type" : "integer", "description" : "Group ID", "format" : "int32" }, "subGroupId" : { "type" : "integer", "description" : "Sub group ID", "format" : "int32" }, "posts" : { "type" : "array", "description" : "Associated posts", "items" : { "$ref" : "#/components/schemas/GenericData" } }, "companyName" : { "type" : "string", "description" : "Company name" }, "organizationNumber" : { "type" : "string", "description" : "Organization number" }, "netInterestCost" : { "type" : "number", "description" : "Net interest cost" }, "netDeductibleInterestCost" : { "type" : "number", "description" : "Net deductible interest cost" } }, "description" : "Companies included in the Norwegian part of the group" }, "ForwardingDisallowedInterestDeduction" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "groupId" : { "type" : "integer", "description" : "Group ID", "format" : "int32" }, "subGroupId" : { "type" : "integer", "description" : "Sub group ID", "format" : "int32" }, "posts" : { "type" : "array", "description" : "Associated posts", "items" : { "$ref" : "#/components/schemas/GenericData" } }, "incomeYear" : { "minimum" : 0, "type" : "integer", "description" : "Income year", "format" : "int32" }, "carriedForwardFromPreviousYear" : { "type" : "number", "description" : "Carried forward from previous year" }, "deductibleThisYear" : { "type" : "number", "description" : "Deductible this year", "readOnly" : true }, "remainingCarriedForward" : { "type" : "number", "description" : "Remaining carried forward", "readOnly" : true } }, "description" : "Forwarding disallowed interest deductions" }, "InterestExpensesToCompaniesInSameGroup" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "groupId" : { "type" : "integer", "description" : "Group ID", "format" : "int32" }, "subGroupId" : { "type" : "integer", "description" : "Sub group ID", "format" : "int32" }, "posts" : { "type" : "array", "description" : "Associated posts", "items" : { "$ref" : "#/components/schemas/GenericData" } }, "interestExpensesToCompanies" : { "type" : "array", "description" : "Interest expenses to companies in the same group", "items" : { "$ref" : "#/components/schemas/InterestExpensesToCompanyInSameGroup" } }, "interestExpensesToOthersGroupGuarantor" : { "type" : "array", "description" : "Interest expenses to other group guarantor", "items" : { "$ref" : "#/components/schemas/InterestExpensesToOtherGroupGuarantor" } }, "interestExpensesToOthersWithOutstandingClaim" : { "type" : "array", "description" : "Interest expenses to other companies with outstanding claims", "items" : { "$ref" : "#/components/schemas/InterestExpensesToOtherWithOutstandingClaim" } }, "totalInterestExpenses" : { "type" : "number", "description" : "Total interest expenses", "readOnly" : true }, "costsForGuaranteeCommission" : { "type" : "number", "description" : "Costs for guarantee commission" }, "totalInterestExpensesIncludingGuaranteeCosts" : { "type" : "number", "description" : "Total interest expenses including guarantee costs", "readOnly" : true } } }, "InterestExpensesToCompanyInSameGroup" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "groupId" : { "type" : "integer", "description" : "Group ID", "format" : "int32" }, "subGroupId" : { "type" : "integer", "description" : "Sub group ID", "format" : "int32" }, "posts" : { "type" : "array", "description" : "Associated posts", "items" : { "$ref" : "#/components/schemas/GenericData" } }, "companyName" : { "type" : "string", "description" : "Company name" }, "organizationNumber" : { "type" : "string", "description" : "Organization number" }, "countryCode" : { "type" : "string", "description" : "Country code" }, "interestTransactions" : { "type" : "number", "description" : "Interest transactions" } }, "description" : "Interest expenses to companies in the same group" }, "InterestExpensesToOtherGroupGuarantor" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "groupId" : { "type" : "integer", "description" : "Group ID", "format" : "int32" }, "subGroupId" : { "type" : "integer", "description" : "Sub group ID", "format" : "int32" }, "posts" : { "type" : "array", "description" : "Associated posts", "items" : { "$ref" : "#/components/schemas/GenericData" } }, "companyName" : { "type" : "string", "description" : "Company name" }, "organizationNumber" : { "type" : "string", "description" : "Organization number" }, "countryCode" : { "type" : "string", "description" : "Country code" }, "interestTransactions" : { "type" : "number", "description" : "Interest transactions" } }, "description" : "Interest expenses to other group guarantor" }, "InterestExpensesToOtherWithOutstandingClaim" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "groupId" : { "type" : "integer", "description" : "Group ID", "format" : "int32" }, "subGroupId" : { "type" : "integer", "description" : "Sub group ID", "format" : "int32" }, "posts" : { "type" : "array", "description" : "Associated posts", "items" : { "$ref" : "#/components/schemas/GenericData" } }, "companyName" : { "type" : "string", "description" : "Company name" }, "organizationNumber" : { "type" : "string", "description" : "Organization number" }, "countryCode" : { "type" : "string", "description" : "Country code" }, "interestTransactions" : { "type" : "number", "description" : "Interest transactions" } }, "description" : "Interest expenses to other companies with outstanding claims" }, "InterestExpensesToRelatedPartiesOutsideGroup" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "groupId" : { "type" : "integer", "description" : "Group ID", "format" : "int32" }, "subGroupId" : { "type" : "integer", "description" : "Sub group ID", "format" : "int32" }, "posts" : { "type" : "array", "description" : "Associated posts", "items" : { "$ref" : "#/components/schemas/GenericData" } }, "interestExpensesToCompanies" : { "type" : "array", "description" : "Interest expenses to companies in the same group", "items" : { "$ref" : "#/components/schemas/InterestExpensesToRelatedPartyOutsideGroup" } }, "interestExpensesToOthersGroupGuarantor" : { "type" : "array", "description" : "Interest expenses to other group guarantor", "items" : { "$ref" : "#/components/schemas/InterestExpensesToRelatedPartyOutsideGroupOtherGroupGuarantor" } }, "interestExpensesToOthersWithOutstandingClaim" : { "type" : "array", "description" : "Interest expenses to other companies with outstanding claims", "items" : { "$ref" : "#/components/schemas/InterestExpensesToRelatedPartyOutsideGroupOtherWithOutstandingClaim" } }, "totalInterestExpenses" : { "type" : "number", "description" : "Total interest expenses", "readOnly" : true }, "costsForGuaranteeCommission" : { "type" : "number", "description" : "Costs for guarantee commission" }, "totalInterestExpensesIncludingGuaranteeCosts" : { "type" : "number", "description" : "Total interest expenses including guarantee costs", "readOnly" : true } } }, "InterestExpensesToRelatedPartyOutsideGroup" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "groupId" : { "type" : "integer", "description" : "Group ID", "format" : "int32" }, "subGroupId" : { "type" : "integer", "description" : "Sub group ID", "format" : "int32" }, "posts" : { "type" : "array", "description" : "Associated posts", "items" : { "$ref" : "#/components/schemas/GenericData" } }, "companyName" : { "type" : "string", "description" : "Company name" }, "organizationNumber" : { "type" : "string", "description" : "Organization number" }, "countryCode" : { "type" : "string", "description" : "Country code" }, "interestTransactions" : { "type" : "number", "description" : "Interest transactions" } }, "description" : "Interest expenses to companies in the same group" }, "InterestExpensesToRelatedPartyOutsideGroupOtherGroupGuarantor" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "groupId" : { "type" : "integer", "description" : "Group ID", "format" : "int32" }, "subGroupId" : { "type" : "integer", "description" : "Sub group ID", "format" : "int32" }, "posts" : { "type" : "array", "description" : "Associated posts", "items" : { "$ref" : "#/components/schemas/GenericData" } }, "companyName" : { "type" : "string", "description" : "Company name" }, "organizationNumber" : { "type" : "string", "description" : "Organization number" }, "countryCode" : { "type" : "string", "description" : "Country code" }, "interestTransactions" : { "type" : "number", "description" : "Interest transactions" } }, "description" : "Interest expenses to other group guarantor" }, "InterestExpensesToRelatedPartyOutsideGroupOtherWithOutstandingClaim" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "groupId" : { "type" : "integer", "description" : "Group ID", "format" : "int32" }, "subGroupId" : { "type" : "integer", "description" : "Sub group ID", "format" : "int32" }, "posts" : { "type" : "array", "description" : "Associated posts", "items" : { "$ref" : "#/components/schemas/GenericData" } }, "companyName" : { "type" : "string", "description" : "Company name" }, "organizationNumber" : { "type" : "string", "description" : "Organization number" }, "countryCode" : { "type" : "string", "description" : "Country code" }, "interestTransactions" : { "type" : "number", "description" : "Interest transactions" } }, "description" : "Interest expenses to other companies with outstanding claims" }, "InterestIncomeFromCompaniesInSameGroup" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "groupId" : { "type" : "integer", "description" : "Group ID", "format" : "int32" }, "subGroupId" : { "type" : "integer", "description" : "Sub group ID", "format" : "int32" }, "posts" : { "type" : "array", "description" : "Associated posts", "items" : { "$ref" : "#/components/schemas/GenericData" } }, "interestIncomeFromCompanies" : { "type" : "array", "description" : "Interest income from companies in the same group", "items" : { "$ref" : "#/components/schemas/InterestIncomeFromCompanyInSameGroup" } }, "totalInterestIncome" : { "type" : "number", "description" : "Total interest income", "readOnly" : true }, "lossForHolderOnRealizationOfPremiumDiscountBonds" : { "type" : "number", "description" : "Loss for holder on realization of premium discount bonds" }, "gainForHolderUponRealizationOfPremiumDiscountBonds" : { "type" : "number", "description" : "Gain for holder upon realization of premium discount bonds" }, "lossForHolderOnRealizationOfCompositeVolumeDebtInstruments" : { "type" : "number", "description" : "Loss for holder on realization of composite volume debt instruments" }, "gainForHolderOnRealizationOfCompositeVolumeDebtInstruments" : { "type" : "number", "description" : "Gain for holder on realization of composite volume debt instruments" }, "totalInterestIncomeEtc" : { "type" : "number", "description" : "Total interest income etc", "readOnly" : true }, "netInterestExpensesToCompanies" : { "type" : "number", "description" : "Net interest expenses to companies", "readOnly" : true } } }, "InterestIncomeFromCompanyInSameGroup" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "groupId" : { "type" : "integer", "description" : "Group ID", "format" : "int32" }, "subGroupId" : { "type" : "integer", "description" : "Sub group ID", "format" : "int32" }, "posts" : { "type" : "array", "description" : "Associated posts", "items" : { "$ref" : "#/components/schemas/GenericData" } }, "companyName" : { "type" : "string", "description" : "Company name" }, "organizationNumber" : { "type" : "string", "description" : "Organization number" }, "countryCode" : { "type" : "string", "description" : "Country code" }, "interestTransactions" : { "type" : "number", "description" : "Interest transactions" } }, "description" : "Interest income from companies in the same group" }, "InterestIncomeFromRelatedPartiesOutsideGroup" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "groupId" : { "type" : "integer", "description" : "Group ID", "format" : "int32" }, "subGroupId" : { "type" : "integer", "description" : "Sub group ID", "format" : "int32" }, "posts" : { "type" : "array", "description" : "Associated posts", "items" : { "$ref" : "#/components/schemas/GenericData" } }, "interestIncomeFromCompanies" : { "type" : "array", "description" : "Interest income from companies in the same group", "items" : { "$ref" : "#/components/schemas/InterestIncomeFromRelatedPartyOutsideGroup" } }, "totalInterestIncome" : { "type" : "number", "description" : "Total interest income", "readOnly" : true }, "lossForHolderOnRealizationOfPremiumDiscountBonds" : { "type" : "number", "description" : "Loss for holder on realization of premium discount bonds" }, "gainForHolderUponRealizationOfPremiumDiscountBonds" : { "type" : "number", "description" : "Gain for holder upon realization of premium discount bonds" }, "lossForHolderOnRealizationOfCompositeVolumeDebtInstruments" : { "type" : "number", "description" : "Loss for holder on realization of composite volume debt instruments" }, "gainForHolderOnRealizationOfCompositeVolumeDebtInstruments" : { "type" : "number", "description" : "Gain for holder on realization of composite volume debt instruments" }, "totalInterestIncomeEtc" : { "type" : "number", "description" : "Total interest income etc", "readOnly" : true }, "netInterestExpensesToCompanies" : { "type" : "number", "description" : "Net interest expenses to companies", "readOnly" : true } } }, "InterestIncomeFromRelatedPartyOutsideGroup" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "groupId" : { "type" : "integer", "description" : "Group ID", "format" : "int32" }, "subGroupId" : { "type" : "integer", "description" : "Sub group ID", "format" : "int32" }, "posts" : { "type" : "array", "description" : "Associated posts", "items" : { "$ref" : "#/components/schemas/GenericData" } }, "companyName" : { "type" : "string", "description" : "Company name" }, "organizationNumber" : { "type" : "string", "description" : "Organization number" }, "countryCode" : { "type" : "string", "description" : "Country code" }, "interestTransactions" : { "type" : "number", "description" : "Interest transactions" } }, "description" : "Interest income from companies in the same group" }, "InterestLimitation" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "groupId" : { "type" : "integer", "description" : "Group ID", "format" : "int32" }, "subGroupId" : { "type" : "integer", "description" : "Sub group ID", "format" : "int32" }, "posts" : { "type" : "array", "description" : "Associated posts", "items" : { "$ref" : "#/components/schemas/GenericData" } }, "companyComplianceWithInterestLimitation" : { "type" : "boolean" }, "netInterestCostsNorwegianGroupExceeds25MNOK" : { "type" : "boolean" }, "companyUsesExceptionRule" : { "type" : "boolean" }, "companyCarriedForwardInterestDeductionsFromPreviousYears" : { "type" : "boolean" }, "groupApex" : { "$ref" : "#/components/schemas/InterestLimitationGroupApex" }, "norwegianPartOfGroup" : { "$ref" : "#/components/schemas/InterestLimitationNorwegianPartOfGroup" }, "calculationOfTotalNetCosts" : { "$ref" : "#/components/schemas/InterestLimitationCalculationOfTotalNetCosts" }, "interestExpensesToCompaniesInSameGroup" : { "$ref" : "#/components/schemas/InterestExpensesToCompaniesInSameGroup" }, "interestIncomeFromCompaniesInSameGroup" : { "$ref" : "#/components/schemas/InterestIncomeFromCompaniesInSameGroup" }, "interestExpensesToRelatedPartiesOutsideGroup" : { "$ref" : "#/components/schemas/InterestExpensesToRelatedPartiesOutsideGroup" }, "interestIncomeFromRelatedPartiesOutsideGroup" : { "$ref" : "#/components/schemas/InterestIncomeFromRelatedPartiesOutsideGroup" }, "basisForCalculationOfInterestDeductionLimit" : { "$ref" : "#/components/schemas/InterestLimitationCalculationOfInterestDeductionLimit" }, "forwardingDisallowedInterestDeductions" : { "type" : "array", "description" : "Forwarding disallowed interest deductions", "items" : { "$ref" : "#/components/schemas/ForwardingDisallowedInterestDeduction" } }, "netInterestCosts" : { "type" : "number", "description" : "Net interest cost from calculation of total net costs", "readOnly" : true }, "interestDeductionLimit" : { "type" : "number", "description" : "Interest deduction limit", "readOnly" : true }, "additionsOrDeductionsInIncomeDifference" : { "type" : "number", "description" : "Additions or deductions in income difference", "readOnly" : true }, "incomeAdditionForExceedingInterestDeductionLimit" : { "type" : "number", "description" : "Income addition for exceeding interest deduction limit", "readOnly" : true }, "reversedIncomeAddition" : { "type" : "number", "description" : "Reversed income addition", "readOnly" : true }, "incomeAdditionForInterestDeductionDenialToRelatedParties" : { "type" : "number", "description" : "Income addition for interest deduction denial to related parties", "readOnly" : true }, "additionToIncome" : { "type" : "number", "description" : "Addition to income", "readOnly" : true }, "deductionFromIncome" : { "type" : "number", "description" : "Deduction from income", "readOnly" : true }, "incomeAdjustment" : { "type" : "number", "description" : "Income adjustment", "readOnly" : true }, "carriedForwardFromPreviousYears" : { "type" : "number", "description" : "Income adjustment", "readOnly" : true }, "interestExpensesForCarryForward" : { "type" : "number", "description" : "Interest expenses for carry forward", "readOnly" : true } } }, "InterestLimitationCalculationOfInterestDeductionLimit" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "groupId" : { "type" : "integer", "description" : "Group ID", "format" : "int32" }, "subGroupId" : { "type" : "integer", "description" : "Sub group ID", "format" : "int32" }, "posts" : { "type" : "array", "description" : "Associated posts", "items" : { "$ref" : "#/components/schemas/GenericData" } }, "thisYearsResultFromTaxReturn" : { "type" : "number", "description" : "This year result from tax return" }, "givenGroupContribution" : { "type" : "number", "description" : "Given group contribution" }, "additionsForTaxDepreciationFromFixedAssets" : { "type" : "number", "description" : "Additions for tax depreciation from fixed assets" }, "directCompensationForDepreciatedAsset" : { "type" : "number", "description" : "Direct compensation for depreciated assets" }, "amortizedLeaseCost" : { "type" : "number", "description" : "Amortized lease cost" }, "deductionForGroupContributionsNotIncludedInCalculationBasis" : { "type" : "number", "description" : "Deduction for group contributions not included in calculation basis" }, "basisForCalculationOfInterestDeductionLimit" : { "type" : "number", "description" : "Basis for calculation of interest deduction limit", "readOnly" : true }, "netInterestCosts" : { "type" : "number", "description" : "Net interest costs", "readOnly" : true } } }, "InterestLimitationCalculationOfTotalNetCosts" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "groupId" : { "type" : "integer", "description" : "Group ID", "format" : "int32" }, "subGroupId" : { "type" : "integer", "description" : "Sub group ID", "format" : "int32" }, "posts" : { "type" : "array", "description" : "Associated posts", "items" : { "$ref" : "#/components/schemas/GenericData" } }, "totalInterestExpensesFromAccount" : { "type" : "number", "description" : "Total interest expenses from account 815x" }, "totalInterestIncomeFromAccount" : { "type" : "number", "description" : "Total interest income from account 805x" }, "correctionOfInterestExpenses" : { "type" : "number", "description" : "Correction of interest expenses" }, "correctionOfInterestIncome" : { "type" : "number", "description" : "Correction Of Interest Income" }, "guaranteeCommissionsOnDebt" : { "type" : "number", "description" : "Guarantee commissions on debt" }, "lossOnRealizationOfPremiumDiscountBonds" : { "type" : "number", "description" : "Loss on realization of premium discount bonds" }, "gainOnRealizationOfPremiumDiscountBonds" : { "type" : "number", "description" : "Gain on realization of premium discount bonds" }, "lossOnRealizationOfCompositeVolumeDebtInstruments" : { "type" : "number", "description" : "Loss on realization of composite volume debt instruments" }, "gainOnRealizationOfCompositeVolumeDebtInstruments" : { "type" : "number", "description" : "Gain on realization of composite volume debt instruments" }, "netInterestCosts" : { "type" : "number", "description" : "Net interest costs", "readOnly" : true } } }, "InterestLimitationGroupApex" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "groupId" : { "type" : "integer", "description" : "Group ID", "format" : "int32" }, "subGroupId" : { "type" : "integer", "description" : "Sub group ID", "format" : "int32" }, "posts" : { "type" : "array", "description" : "Associated posts", "items" : { "$ref" : "#/components/schemas/GenericData" } }, "companyName" : { "type" : "string", "description" : "Company name" }, "organizationNumber" : { "type" : "string", "description" : "Organization number" }, "countryCode" : { "type" : "string", "description" : "Country code" } } }, "InterestLimitationNorwegianPartOfGroup" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "groupId" : { "type" : "integer", "description" : "Group ID", "format" : "int32" }, "subGroupId" : { "type" : "integer", "description" : "Sub group ID", "format" : "int32" }, "posts" : { "type" : "array", "description" : "Associated posts", "items" : { "$ref" : "#/components/schemas/GenericData" } }, "infoNorwegianPartOfGroupReportedAnotherCompany" : { "type" : "boolean", "description" : "Information about the Norwegian group reported by another company" }, "companyName" : { "type" : "string", "description" : "Company name" }, "organizationNumber" : { "type" : "string", "description" : "Organization number" }, "countryCode" : { "type" : "string", "description" : "Country code" }, "companiesIncludedInNorwegianPartOfGroup" : { "type" : "array", "description" : "Companies included in the Norwegian part of the group", "items" : { "$ref" : "#/components/schemas/CompaniesIncludedInNorwegianPartOfGroup" } } } }, "ResponseWrapperInterestLimitation" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/InterestLimitation" } } }, "ResearchAndDevelopment2024" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "groupId" : { "type" : "integer", "description" : "Group ID", "format" : "int32" }, "subGroupId" : { "type" : "integer", "description" : "Sub group ID", "format" : "int32" }, "posts" : { "type" : "array", "description" : "Associated posts", "items" : { "$ref" : "#/components/schemas/GenericData" } }, "projectNumber" : { "type" : "string", "description" : "Project Number" }, "projectTitle" : { "type" : "string", "description" : "Project Title" }, "projectStatus" : { "type" : "string", "description" : "Project Status", "enum" : [ "NONE", "APPLICATION_REJECTED", "APPLICATION_APPROVED", "COMPLAINT_RECEIVED", "PROJECT_CANCELLED_BY_NFR", "APPROVAL_RESCINDED", "FINISHED", "CANCELLED", "WITHDRAWN", "PROCESSING_AFTER_APPROVED_COMPLAINT", "ADMINISTRATIVELY_APPROVED_COMPLAINT" ] }, "approvedRndIncentiveStartYear" : { "minimum" : 0, "type" : "integer", "description" : "Approved R&D Incentive Start Year", "format" : "int32" }, "approvedRndIncentiveEndYear" : { "minimum" : 0, "type" : "integer", "description" : "Approved R&D Incentive End Year", "format" : "int32" }, "businessCategory" : { "type" : "string", "description" : "Business Category", "enum" : [ "NONE", "SMALL_BUSINESS", "MEDIUM_BUSINESS", "LARGE_BUSINESS" ] }, "collaborativeProjectWithOtherEnterprises" : { "type" : "string", "description" : "Is Collaborative Project With Other Enterprises", "enum" : [ "NONE", "NO", "YES" ] }, "stakeInCollaborativeProject" : { "type" : "number", "description" : "Stake in a collaborative project as percent" }, "hasExtensiveDisseminationThroughConferencesPublicationsEtc" : { "type" : "string", "description" : "Has Extensive Dissemination Through Conferences Publications Etc", "enum" : [ "NONE", "NO", "YES" ] }, "appliedForOtherPublicAidInNorway" : { "type" : "string", "description" : "Has applied for other public aid in Norway", "enum" : [ "NONE", "NO", "YES" ] }, "collaborativeBusinesses" : { "type" : "array", "description" : "List of businesses which is collaborating on the project", "items" : { "$ref" : "#/components/schemas/ResearchAndDevelopmentCollaborativeBusiness" } }, "workPackages" : { "type" : "array", "description" : "List of specifications of work packages", "items" : { "$ref" : "#/components/schemas/ResearchAndDevelopmentWorkPackage" } }, "totalCostForProjectPeriod" : { "type" : "number", "description" : "The total cost of the project since it's infancy" }, "totalGrossTaxDeductionFromPreviousYears" : { "type" : "number", "description" : "Total Gross Tax Deduction From Previous Years" }, "otherPublicSupportList" : { "type" : "array", "description" : "List of other public support the project has received", "items" : { "$ref" : "#/components/schemas/ResearchAndDevelopmentOtherPublicSupport" } }, "publicSupportAsReducedWorkerFee" : { "type" : "number", "description" : "Public Support As Reduced Worker Fee" }, "totalGrossPublicSupportInProjectPeriod" : { "type" : "number", "description" : "Total Gross Public Support In Project Period", "readOnly" : true }, "taxDeductionForProject" : { "type" : "number", "description" : "Tax deduction for the project" }, "addedTaxForProject" : { "type" : "number", "description" : "Additional tax for the project" }, "maxApprovedGrossAmountOfPublicSupport" : { "type" : "number", "description" : "Max approved gross amount public support" }, "grossAmountTaxExemptionForYear" : { "type" : "number", "description" : "Gross value tax reduction for current year" }, "grossAmountTaxExemptionForPreviousYear" : { "type" : "number", "description" : "Gross value tax reduction for previous year" }, "amountOfSupportExceedingApprovedAmount" : { "type" : "number", "description" : "Assigned support beyond max gross amount public support" }, "amountOfSupportExceedingApprovedAmountThisYear" : { "type" : "number", "description" : "Assigned support beyond max gross amount public support this year" }, "remainingAidGrossValue" : { "type" : "number", "description" : "Remaining aid after this year's deductions" }, "taxDeductionForReductionAgainstOtherStateAid" : { "type" : "number", "description" : "Net tax deduction for reduction against other state aid" }, "wasInEconomicDifficultiesAtApplicationTime" : { "type" : "string", "description" : "Was In Economic Difficulties At Application Time", "enum" : [ "NONE", "NO", "YES" ] }, "underlyingDocumentsUsedForAssessment" : { "type" : "string", "description" : "Underlying Documents Used For Assessment", "enum" : [ "NONE", "INTERIM_BALANCE", "ANNUAL_ACCOUNTS" ] }, "underlyingDocumentationDate" : { "type" : "string", "description" : "Underlying Documentation Date", "example" : "2024-04-29" }, "projectToBeSignedByAuditor" : { "type" : "string", "description" : "Project to be signed by auditor", "enum" : [ "NONE", "NO", "YES" ] }, "netAmountAidAwarded" : { "type" : "number", "description" : "Net value of aid awarded" } } }, "ResearchAndDevelopmentCollaborativeBusiness" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "groupId" : { "type" : "integer", "description" : "Group ID", "format" : "int32" }, "subGroupId" : { "type" : "integer", "description" : "Sub group ID", "format" : "int32" }, "posts" : { "type" : "array", "description" : "Associated posts", "items" : { "$ref" : "#/components/schemas/GenericData" } }, "organizationNumber" : { "type" : "string", "description" : "Organization Number" }, "description" : { "type" : "string", "description" : "Description" } }, "description" : "List of businesses which is collaborating on the project" }, "ResearchAndDevelopmentOtherPublicSupport" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "groupId" : { "type" : "integer", "description" : "Group ID", "format" : "int32" }, "subGroupId" : { "type" : "integer", "description" : "Sub group ID", "format" : "int32" }, "posts" : { "type" : "array", "description" : "Associated posts", "items" : { "$ref" : "#/components/schemas/GenericData" } }, "payerName" : { "type" : "string", "description" : "Payer name" }, "amount" : { "type" : "number", "description" : "Amount" } }, "description" : "Other Public Supports" }, "ResearchAndDevelopmentWorkPackage" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "groupId" : { "type" : "integer", "description" : "Group ID", "format" : "int32" }, "subGroupId" : { "type" : "integer", "description" : "Sub group ID", "format" : "int32" }, "posts" : { "type" : "array", "description" : "Associated posts", "items" : { "$ref" : "#/components/schemas/GenericData" } }, "packageId" : { "type" : "string", "description" : "ID of the work package" }, "packageTitle" : { "type" : "string", "description" : "The title of the package" }, "projectCategory" : { "type" : "string", "description" : "The category of the project", "enum" : [ "NONE", "RESEARCH", "DEVELOPMENT" ] }, "costInIncomeYear" : { "type" : "number", "description" : "Cost In Income Year" }, "includedPersonnelCostsInIncomeYear" : { "type" : "number", "description" : "Included Personnel Costs In Income Year" }, "numberOfOwnHoursInIncomeYear" : { "minimum" : 0, "type" : "integer", "description" : "Number Of Own Hours In Income Year", "format" : "int64" }, "totalCostsFromPreviousYears" : { "type" : "number", "description" : "Total Costs Previous Years" }, "maxApprovedPublicSupportAsShareOfTotalCost" : { "type" : "number", "description" : "Maximum Approved Public Support As A Share Of Total Costs", "readOnly" : true } }, "description" : "List of specifications of work packages" }, "ListResponseResearchAndDevelopment2024" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ResearchAndDevelopment2024" } } } }, "ResponseWrapperResearchAndDevelopment2024" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ResearchAndDevelopment2024" } } }, "ResearchAndDevelopment" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "groupId" : { "type" : "integer", "description" : "Group ID", "format" : "int32" }, "subGroupId" : { "type" : "integer", "description" : "Sub group ID", "format" : "int32" }, "posts" : { "type" : "array", "description" : "Associated posts", "items" : { "$ref" : "#/components/schemas/GenericData" } }, "projectNumber" : { "type" : "string", "description" : "Project Number" }, "projectTitle" : { "type" : "string", "description" : "Project Title" }, "projectCategory" : { "type" : "string", "description" : "Project Category", "enum" : [ "NONE", "RESEARCH", "DEVELOPMENT" ] }, "applicationApprovedDate" : { "type" : "string", "description" : "Application approved date", "example" : "2024-04-29" }, "projectStartDate" : { "type" : "string", "description" : "Project start date", "example" : "2024-04-29" }, "projectEndDate" : { "type" : "string", "description" : "Project end date", "example" : "2024-04-29" }, "approvedRndIncentiveStartYear" : { "minimum" : 0, "type" : "integer", "description" : "Approved R&D Incentive Start Year", "format" : "int32" }, "approvedRndIncentiveEndYear" : { "minimum" : 0, "type" : "integer", "description" : "Approved R&D Incentive End Year", "format" : "int32" }, "projectStatus" : { "type" : "string", "description" : "Project Status", "enum" : [ "NONE", "APPLICATION_REJECTED", "APPLICATION_APPROVED", "COMPLAINT_RECEIVED", "PROJECT_CANCELLED_BY_NFR", "APPROVAL_RESCINDED", "FINISHED", "CANCELLED", "WITHDRAWN", "PROCESSING_AFTER_APPROVED_COMPLAINT", "ADMINISTRATIVELY_APPROVED_COMPLAINT" ] }, "projectStatusDate" : { "type" : "string", "description" : "Project status date", "example" : "2024-04-29" }, "resolutions" : { "type" : "array", "description" : "Resolutions", "items" : { "$ref" : "#/components/schemas/ResearchAndDevelopmentResolution" } }, "businessCategory" : { "type" : "string", "description" : "Business Category", "enum" : [ "NONE", "SMALL_BUSINESS", "MEDIUM_BUSINESS", "LARGE_BUSINESS" ] }, "isCollaborativeProjectWIthOtherEnterprises" : { "type" : "string", "description" : "Is Collaborative Project With Other Enterprises", "enum" : [ "NONE", "NO", "YES" ] }, "hasExtensiveDisseminationThroughConferencesPublicationsEtc" : { "type" : "string", "description" : "Has Extensive Dissemination Through Conferences Publications Etc", "enum" : [ "NONE", "NO", "YES" ] }, "maximumApprovedPublicSupportAsAShareOfTotalCosts" : { "type" : "number", "description" : "Maximum Approved Public Support As A Share Of Total Costs", "readOnly" : true }, "totalCostsPreviousYears" : { "type" : "number", "description" : "Total Costs Previous Years" }, "totalGrossTaxDeductionFromPreviousYears" : { "type" : "number", "description" : "Total Gross Tax Deduction From Previous Years" }, "costInIncomeYear" : { "type" : "number", "description" : "Cost In Income Year" }, "includedPersonnelCostsInIncomeYear" : { "type" : "number", "description" : "Included Personnel Costs In Income Year" }, "numberOfOwnHoursInIncomeYear" : { "minimum" : 0, "type" : "integer", "description" : "Number Of Own Hours In Income Year", "format" : "int32" }, "otherPublicSupports" : { "type" : "array", "description" : "Other Public Supports", "items" : { "$ref" : "#/components/schemas/ResearchAndDevelopmentOtherPublicSupport" } }, "publicSupportAsReducedWorkerFee" : { "type" : "number", "description" : "Public Support As Reduced Worker Fee" }, "totalGrossPublicSupportInProjectPeriod" : { "type" : "number", "description" : "Total Gross Public Support In Project Period", "readOnly" : true }, "wasInEconomicDifficultiesAtApplicationTime" : { "type" : "string", "description" : "Was In Economic Difficulties At Application Time", "enum" : [ "NONE", "NO", "YES" ] }, "underlyingDocumentsUsedForAssessment" : { "type" : "string", "description" : "Underlying Documents Used For Assessment", "enum" : [ "NONE", "INTERIM_BALANCE", "ANNUAL_ACCOUNTS" ] }, "underlyingDocumentationDate" : { "type" : "string", "description" : "Underlying Documentation Date", "example" : "2024-04-29" }, "totalCostsExcludedFromTaxDeduction" : { "type" : "number", "description" : "Total costs excluded from tax deduction" }, "totalCostsForEntireProjectPeriod" : { "type" : "number", "description" : "Total costs for entire project period", "readOnly" : true }, "maxApprovedGrossAmountPublicSupport" : { "type" : "number", "description" : "Max approved gross amount public support" }, "assignedSupportBeyondMaxGrossAmountPublicSupport" : { "type" : "number", "description" : "Assigned support beyond max gross amount public support" }, "netTaxDeductionBeforeReductionAgainstOtherPublicSupport" : { "type" : "number", "description" : "Net tax deduction before reduction against other public support" }, "taxDeductionForTheProject" : { "type" : "number", "description" : "Tax deduction for the project" }, "additionalTaxForTheProject" : { "type" : "number", "description" : "Additional tax for the project" }, "projectToBeSignedByAuditor" : { "type" : "string", "description" : "Project to be signed by auditor", "enum" : [ "NONE", "NO", "YES" ] }, "grossValueTaxDeduction" : { "type" : "number", "description" : "Gross value tax reduction for current year" }, "allocatedSupportAmount" : { "type" : "number", "description" : "Net tax deduction after reduction against other public support", "readOnly" : true } } }, "ResearchAndDevelopmentResolution" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "groupId" : { "type" : "integer", "description" : "Group ID", "format" : "int32" }, "subGroupId" : { "type" : "integer", "description" : "Sub group ID", "format" : "int32" }, "posts" : { "type" : "array", "description" : "Associated posts", "items" : { "$ref" : "#/components/schemas/GenericData" } }, "date" : { "type" : "string", "description" : "The date of the resolution" }, "type" : { "type" : "string", "description" : "The type of the resolution", "enum" : [ "NONE", "DELIMITATION", "PROCESSING_AFTER_APPROVED_COMPLAINT", "APPROVAL_RESCINDED", "ADMINISTRATIVELY_APPROVED_COMPLAINT", "COMPLAINT_RECEIVED", "PROJECT_CANCELLED", "FINAL_REPORT_APPROVED", "FINAL_REPORT_SENT", "FINAL_REPORT_RETURNED", "FINAL_REPORT_PENDING", "APPLICATION_REJECTED", "APPLICATION_APPROVED", "ANNUAL_REPORT_APPROVED", "ANNUAL_REPORT_SENT", "ANNUAL_REPORT_RETURNED", "ANNUAL_REPORT_PENDING" ] }, "delimitation" : { "type" : "string", "description" : "The delimitation of the resolution" } }, "description" : "Resolutions" }, "ListResponseResearchAndDevelopment" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ResearchAndDevelopment" } } } }, "ResponseWrapperResearchAndDevelopment" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ResearchAndDevelopment" } } }, "ResponseWrapperListDepartment" : { "type" : "object", "properties" : { "value" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/Department" } } } }, "ResponseWrapperAgriculturalAccountOverview" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/AgriculturalAccountOverview" } } }, "ControlledTransactions2024" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "groupId" : { "type" : "integer", "description" : "Group ID", "format" : "int32" }, "subGroupId" : { "type" : "integer", "description" : "Sub group ID", "format" : "int32" }, "posts" : { "type" : "array", "description" : "Associated posts", "items" : { "$ref" : "#/components/schemas/GenericData" } }, "controlledTransactionsExceedingLimit" : { "type" : "boolean", "description" : "Has controlled transaction exceeding the set limit" }, "obligedToDocument" : { "type" : "boolean", "description" : "The company is obliged to document controlled transactions" }, "consolidatedMarginPercentage" : { "type" : "number", "description" : "Percentage of consolidated margin" }, "costOfImmaterialAssets" : { "type" : "number", "description" : "The total cost related to development of the company's immaterial assets" }, "numberOfRegisteredPatents" : { "minimum" : 0, "type" : "integer", "description" : "The number of patents registered by the company", "format" : "int32" }, "groupBeenRestructured" : { "type" : "boolean", "description" : "Whether or not the group related to the company has undergone restructuring" }, "companyServicedOtherCompanyInGroupForFree" : { "type" : "boolean", "description" : "Whether or not the company has serviced another company in the same group for free" }, "companyHasBeenServicedByOtherCompanyInGroupForFree" : { "type" : "boolean", "description" : "Whether or not the company has been serviced by another company in the same group for free" }, "companyGuarantorForAgreementsByOtherCompaniesInSameGroup" : { "type" : "boolean", "description" : "Whether or not the company acts as a guarantor for an agreement by another company in the same group" }, "resultAsPercentageOfGrossRevenue" : { "type" : "number", "description" : "Yearly result as the percentage of total gross revenue" }, "summary" : { "$ref" : "#/components/schemas/ControlledTransactionsSummary" }, "numberOfEntitiesWithControlledTransactionsInNorway" : { "minimum" : 0, "type" : "integer", "description" : "Number of entities with controlled transactions in norway", "format" : "int64" }, "numberOfEntitiesWithControlledTransactionsOutsideNorway" : { "minimum" : 0, "type" : "integer", "description" : "Number of entities with controlled transactions outside of norway", "format" : "int64" }, "businessActivities" : { "type" : "array", "description" : "List of business activities", "items" : { "$ref" : "#/components/schemas/ControlledTransactionsBusinessActivity" } }, "transactions" : { "type" : "array", "description" : "List of transactions", "items" : { "$ref" : "#/components/schemas/ControlledTransactionsTransaction" } }, "outstandingBalances" : { "type" : "array", "description" : "List of outstanding balances", "items" : { "$ref" : "#/components/schemas/ControlledTransactionsOutstanding" } } } }, "ControlledTransactionsBusinessActivity" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "groupId" : { "type" : "integer", "description" : "Group ID", "format" : "int32" }, "subGroupId" : { "type" : "integer", "description" : "Sub group ID", "format" : "int32" }, "posts" : { "type" : "array", "description" : "Associated posts", "items" : { "$ref" : "#/components/schemas/GenericData" } }, "mainBusinessActivity" : { "type" : "string", "description" : "The main type of business activity" } }, "description" : "List of business activities" }, "ResponseWrapperControlledTransactions2024" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ControlledTransactions2024" } } }, "CooperativeEnterpriseOverview" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "totalSales" : { "type" : "number", "readOnly" : true }, "shareOfSales" : { "type" : "number", "readOnly" : true }, "totalRetroactivePayment" : { "type" : "number", "readOnly" : true }, "taxableBusinessIncome" : { "type" : "number", "readOnly" : true }, "totalPurchases" : { "type" : "number", "readOnly" : true }, "shareOfPurchases" : { "type" : "number", "readOnly" : true }, "totalCarryForwardDeductionLimit" : { "type" : "number", "readOnly" : true }, "posts" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/GenericData" } } } }, "ResponseWrapperCooperativeEnterpriseOverview" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/CooperativeEnterpriseOverview" } } }, "OtherCircumstancesOverview" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "posts" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/GenericData" } }, "assetsCompanyPosts" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/RealizationAndRentalOfAssets" } }, "assetsShareholderPosts" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/RealizationAndRentalOfAssets" } } } }, "RealizationAndRentalOfAssets" : { "type" : "object", "properties" : { "groupId" : { "type" : "number", "readOnly" : true }, "genericDataType" : { "type" : "string", "readOnly" : true, "enum" : [ "MISC", "TRANSPORT", "ACCOMMODATION_AND_RESTAURANT", "PROFIT_AND_LOSS", "CUSTOMER_RECEIVABLE", "INVENTORIES", "TANGIBLE_FIXED_ASSETS", "RECONCILIATION_OF_EQUITY", "PERMANENT_DIFFERENCES", "TEMPORARY_DIFFERENCES", "DOCUMENT_DOWNLOADED", "GROUP_CONTRIBUTIONS", "TAX_RETURN", "TAX_CALCULATIONS", "DOCUMENTATION", "SHARES_AND_SECURITIES", "REAL_ESTATE", "PARTICIPANT", "SALARY_AND_PENSION_EXPENSES", "COOPERATIVE_ENTERPRISE", "OTHER_CIRCUMSTANCES", "RESEARCH_AND_DEVELOPMENT", "TIMBER_ACCOUNT", "CONTROLLED_TRANSACTIONS", "PARTICIPANT_ASSESSMENT_REPORT", "CONTROLLED_TRANSACTIONS_COMPANY_SPECIFICATION", "INTEREST_LIMITATION", "DOCUMENT_WITH_ALTINN_ID", "FOREST_FUND", "TAX_ASSESSMENT", "DISTRIBUTION_OF_CAPITAL_DEBT", "REINDEER_HUSBANDRY", "LANDBRUKETS_DATAFLYT", "AGRICULTURAL_ACCOUNT" ] }, "genericDataSubType" : { "type" : "string", "readOnly" : true, "enum" : [ "NONE", "NOT_LICENSED", "FREIGHT_TRANSPORT", "TAXI", "ACQUISITION_AND_REALIZATION", "PRODUCT_TYPE_INVENTORY", "CASH_REGISTER_SYSTEM", "PRIVATE_WITHDRAWAL_OF_GOODS", "ENTERTAINMENT", "MULTI_UNIT_BUILDING_UNIT", "RENTAL_WITHDRAWAL_SALE_COMPANY", "RENTAL_WITHDRAWAL_SALE_SHAREHOLDER", "RESOLUTION", "WORK_PACKAGE", "COLLABORATIVE_BUSINESS", "OTHER_PUBLIC_SUPPORT", "BUSINESS_ACTIVITY", "RELATED_COMPANY", "FUNCTION_AND_RISK", "TRANSACTION", "OUTSTANDING", "INTEREST_EXPENSES_TO_COMPANY_IN_SAME_GROUP", "INTEREST_EXPENSES_TO_OTHER_GROUP_GUARANTOR", "INTEREST_EXPENSES_TO_OTHER_WITH_OUTSTANDING_CLAIM", "COMPANIES_INCLUDED_IN_NORWEGIAN_PART_OF_GROUP", "INTEREST_INCOME_FROM_COMPANY_IN_SAME_GROUP", "INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP", "INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_GROUP_GUARANTOR", "INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_WITH_OUTSTANDING_CLAIM", "INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP", "FORWARDING_DISALLOWED_INTEREST_DEDUCTION" ] }, "genericDataSubTypeGroupId" : { "type" : "number", "readOnly" : true }, "assetType" : { "type" : "string", "readOnly" : true, "enum" : [ "EMPTY", "GOODS", "RESIDENTIAL_PROPERTY", "HOLIDAY_PROPERTY", "OTHER_PROPERTY", "CAR", "MOTORHOMES", "MOTORCYCLES", "OTHER_VEHICLES", "BOAT", "HELICOPTER", "PLANE", "OTHER_WEALTH" ] }, "pricingMethod" : { "type" : "string", "readOnly" : true, "enum" : [ "SELF_ASSESSED_VALUE", "VALUATION_BY_A_VALUER", "VALUATION_BY_A_THIRD_PARTY", "OTHER_VALUATION" ] }, "rentalValue" : { "type" : "number", "readOnly" : true }, "valueOfSaleOrWithdrawal" : { "type" : "number", "readOnly" : true } } }, "ResponseWrapperOtherCircumstancesOverview" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/OtherCircumstancesOverview" } } }, "ParticipantReportRoECreate" : { "type" : "object", "properties" : { "year" : { "type" : "integer", "description" : "Year", "format" : "int32" }, "groupId" : { "type" : "integer", "description" : "Group id", "format" : "int32" } } }, "ParticipantReport" : { "type" : "object", "properties" : { "participant" : { "$ref" : "#/components/schemas/Participant" }, "shareOfAssetsLiabilities" : { "type" : "number", "description" : "Share of assets and liabilities", "readOnly" : true }, "shareOfDeficitSurplus" : { "type" : "number", "description" : "Share of deficit and surplus", "readOnly" : true }, "totalLaborRemuneration" : { "type" : "number", "description" : "Total labor remuneration", "readOnly" : true }, "calculatedTotalCapital" : { "type" : "number", "description" : "Total calculated capital", "readOnly" : true }, "sharesRealizedOrAcquired" : { "type" : "boolean", "description" : "Shares realized or acquired", "readOnly" : true }, "residentInNordTromsOrFinnmark" : { "type" : "boolean", "description" : "Resides in Nord Troms or Finnnmark", "readOnly" : true }, "compensation" : { "type" : "number", "description" : "Compensation", "readOnly" : true }, "agriculture" : { "$ref" : "#/components/schemas/ParticipantReportAgriculture" }, "distribution" : { "$ref" : "#/components/schemas/ParticipantReportDistribution" }, "calculationOfShieldingBasis" : { "$ref" : "#/components/schemas/ParticipantReportShieldingBasis" }, "calculationOfShieldingDeduction" : { "$ref" : "#/components/schemas/ParticipantReportShieldingDeduction" }, "calculationOfAdditionsToOrdinaryIncome" : { "$ref" : "#/components/schemas/ParticipantReportAdditionsToOrdinaryIncome" }, "specificationOfTaxableBasis" : { "$ref" : "#/components/schemas/ParticipantReportTaxBasisSpecification" }, "paidIn" : { "$ref" : "#/components/schemas/ParticipantReportPaidIn" }, "retainedEarnings" : { "$ref" : "#/components/schemas/ParticipantReportRetainedEarnings" }, "acquisitionAndRealization" : { "type" : "array", "description" : "Acquisition and Realization", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ParticipantReportAcquisitionAndRealization" } }, "priceAdjustmentManagement" : { "$ref" : "#/components/schemas/ParticipantReportPriceAdjustmentManagement" } } }, "ParticipantReportAcquisitionAndRealization" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "groupId" : { "type" : "integer", "description" : "Group ID", "format" : "int32" }, "subGroupId" : { "type" : "integer", "description" : "Sub group ID", "format" : "int32" }, "posts" : { "type" : "array", "description" : "Associated posts", "items" : { "$ref" : "#/components/schemas/GenericData" } }, "transferType" : { "type" : "string", "description" : "Acquisition and realization types", "readOnly" : true }, "transactionType" : { "type" : "string", "description" : "Realization and acquisition transaction type codelist", "readOnly" : true }, "name" : { "type" : "string", "description" : "Name", "readOnly" : true }, "identification" : { "type" : "string", "description" : "Identification", "readOnly" : true }, "time" : { "type" : "string", "description" : "Time", "readOnly" : true }, "amount" : { "type" : "number", "description" : "Amount", "readOnly" : true }, "remuneration" : { "type" : "number", "description" : "Remuneration", "readOnly" : true }, "costs" : { "type" : "number", "description" : "Costs", "readOnly" : true }, "additionNonDeductibleLoss" : { "type" : "number", "description" : "Addition non deductible loss", "readOnly" : true }, "unusedShieldingPreviousYears" : { "type" : "number", "description" : "Unused shielding previous years", "readOnly" : true }, "otherCorrections" : { "type" : "number", "description" : "Other corrections", "readOnly" : true }, "gainLossRealization" : { "type" : "number", "description" : "Gain loss realization", "readOnly" : true }, "isCoveredExemptionMethod" : { "type" : "boolean", "writeOnly" : true }, "acquiredInitialValue" : { "type" : "number", "description" : "Acquired initial value", "readOnly" : true }, "price" : { "type" : "number", "description" : "Price", "readOnly" : true }, "initialValueRealizedShares" : { "type" : "number", "description" : "Initial value realized shares", "readOnly" : true }, "temporaryGainLossRealization" : { "type" : "number", "description" : "Temporary gain loss realization", "readOnly" : true }, "coveredExemptionMethod" : { "type" : "boolean" } }, "description" : "Acquisition and Realization", "readOnly" : true }, "ParticipantReportAdditionsToOrdinaryIncome" : { "type" : "object", "properties" : { "distributionAfterTax" : { "type" : "number", "description" : "Distribution after tax", "readOnly" : true }, "otherCorrection" : { "type" : "number", "description" : "Other correction", "readOnly" : true }, "shieldingDeductionOffsetAgainstDistribution" : { "type" : "number", "description" : "Shielding deduction offset against distribution", "readOnly" : true }, "additionsToOrdinaryIncome" : { "type" : "number", "description" : "Additions to ordinary income", "readOnly" : true } }, "description" : "Calculation of additions to ordinary income", "readOnly" : true }, "ParticipantReportAgriculture" : { "type" : "object", "properties" : { "basisForCalculationOfAgriculturalDeduction" : { "type" : "number", "description" : "Basis for calculation of agricultural deduction", "readOnly" : true }, "rentalIncomeFromAgriculturalOperations" : { "type" : "number", "description" : "Rental income from agricultural operations", "readOnly" : true } }, "description" : "Agriculture", "readOnly" : true }, "ParticipantReportDistribution" : { "type" : "object", "properties" : { "cashDisbursementFromCompany" : { "type" : "number", "description" : "Cash disbursement from company", "readOnly" : true }, "valueOfAssetsOrServicesWithdrawn" : { "type" : "number", "description" : "Value of assets or services withdrawn", "readOnly" : true }, "capitalReimbursement" : { "type" : "number", "description" : "Capital reimbursement", "readOnly" : true }, "distributionBeforeTaxAndShielding" : { "type" : "number", "description" : "Distribution before tax and shielding", "readOnly" : true }, "taxOnProfitShare" : { "type" : "number", "description" : "Tax on profit share", "readOnly" : true }, "netAmount" : { "type" : "number", "description" : "Net amount", "readOnly" : true }, "taxBenefitFromLoss" : { "type" : "number", "description" : "Tax benefit from loss", "readOnly" : true } }, "description" : "Distribution", "readOnly" : true }, "ParticipantReportPaidIn" : { "type" : "object", "properties" : { "shareOfTaxableEquityPreviousYear" : { "type" : "number", "description" : "Share of taxable equity previous year", "readOnly" : true }, "shareOfTaxableEquityBeginningOfYear" : { "type" : "number", "description" : "Share of taxable equity at beginning of year", "readOnly" : true }, "acquisitionOfShare" : { "type" : "number", "description" : "Acquisition of share", "readOnly" : true }, "disposalOfShare" : { "type" : "number", "description" : "Disposal of share", "readOnly" : true }, "deposit" : { "type" : "number", "description" : "Deposit", "readOnly" : true }, "otherCorrection" : { "type" : "number", "description" : "Other correction", "readOnly" : true }, "repayment" : { "type" : "number", "description" : "Repayment", "readOnly" : true }, "improperDeposit" : { "type" : "number", "description" : "Inadvertent deposit", "readOnly" : true }, "taxBenefitFromLoss" : { "type" : "number", "description" : "Tax benefit from loss", "readOnly" : true }, "taxCapitalEquityAsOfEndOfYear" : { "type" : "number", "description" : "Tax capital equity as of end of year", "readOnly" : true } }, "description" : "Paid in capital", "readOnly" : true }, "ParticipantReportPriceAdjustmentManagement" : { "type" : "object", "properties" : { "pricingAdjustmentPreviousYear" : { "type" : "number", "description" : "Pricing adjustment previous year", "readOnly" : true }, "pricingAdjustment" : { "type" : "number", "description" : "Pricing adjustment", "readOnly" : true }, "realizedShareOfPriceAdjustment" : { "type" : "number", "description" : "Realized share of price adjustment", "readOnly" : true }, "realizedShareCostPrice" : { "type" : "number", "description" : "Realized share cost price", "readOnly" : true }, "realizedShareTaxEquity" : { "type" : "number", "description" : "Realized share tax equity", "readOnly" : true }, "accumulatedAdjustments" : { "type" : "number", "description" : "Accumulated adjustments", "readOnly" : true } }, "description" : "Price adjustment management", "readOnly" : true }, "ParticipantReportRetainedEarnings" : { "type" : "object", "properties" : { "retainedEarningsPreviousYear" : { "type" : "number", "description" : "Retained earnings previous year", "readOnly" : true }, "retainedEarningsBeginningOfYear" : { "type" : "number", "description" : "Retained earnings at beginning of year", "readOnly" : true }, "acquisitionOfShare" : { "type" : "number", "readOnly" : true }, "disposalOfShare" : { "type" : "number", "readOnly" : true }, "taxResult" : { "type" : "number", "readOnly" : true }, "taxFreeIncome" : { "type" : "number", "readOnly" : true }, "otherCorrection" : { "type" : "number", "readOnly" : true }, "dividend" : { "type" : "number", "readOnly" : true }, "improperDeposit" : { "type" : "number", "readOnly" : true }, "taxBenefitFromLoss" : { "type" : "number", "readOnly" : true }, "nondeductibleExpenses" : { "type" : "number", "readOnly" : true }, "taxCapitalEquityAsOfEndOfYear" : { "type" : "number", "readOnly" : true } }, "description" : "Retained earnings", "readOnly" : true }, "ParticipantReportShieldingBasis" : { "type" : "object", "properties" : { "otherInitialValueCorrection" : { "type" : "number", "description" : "Other initial value correction", "readOnly" : true }, "adjustedInitialValue" : { "type" : "number", "description" : "Adjusted initial value", "readOnly" : true }, "unusedShieldingFromPreviousYear" : { "type" : "number", "description" : "Unused shielding from previous year", "readOnly" : true }, "reductionOfUnusedShieldingDueToRealization" : { "type" : "number", "description" : "Reduction of unused shielding due to realization", "readOnly" : true }, "shieldingBasis" : { "type" : "number", "description" : "Shielding basis", "readOnly" : true } }, "description" : "Calculation of shielding basis", "readOnly" : true }, "ParticipantReportShieldingDeduction" : { "type" : "object", "properties" : { "unusedShieldingPreviousYear" : { "type" : "number", "description" : "Unused shielding previous year", "readOnly" : true }, "unusedShieldingBeginningOfYear" : { "type" : "number", "description" : "Unused shielding at beginning of year", "readOnly" : true }, "correctionForInheritanceOrGiftInIncomeYear" : { "type" : "number", "description" : "Correction for inheritance or gift in income year", "readOnly" : true }, "transferredShieldingDeductionFromPreviousYears" : { "type" : "number", "description" : "Transferred shielding deduction from previous years", "readOnly" : true }, "correctedUnusedShieldingFromPreviousYears" : { "type" : "number", "description" : "Corrected unused shielding from previous years", "readOnly" : true }, "currentYearShieldingDeduction" : { "type" : "number", "description" : "Current year shielding deduction", "readOnly" : true }, "transferredShieldingDeduction" : { "type" : "number", "description" : "Transferred shielding deduction", "readOnly" : true }, "otherCorrection" : { "type" : "number", "description" : "Other correction", "readOnly" : true }, "totalShieldingForApplicationAndContinuation" : { "type" : "number", "description" : "Total shielding for application and continuation", "readOnly" : true }, "offsetAgainstDistribution" : { "type" : "number", "description" : "Offset against distribution", "readOnly" : true }, "offsetAgainstRealizationGain" : { "type" : "number", "description" : "Offset against realization gain", "readOnly" : true }, "continuationOfUnusedShieldingDeductionToNextYear" : { "type" : "number", "description" : "Continuation of unused shielding deduction to next year", "readOnly" : true } }, "description" : "Calculation of shielding deduction", "readOnly" : true }, "ParticipantReportTaxBasisSpecification" : { "type" : "object", "properties" : { "shareOfTaxableEquityPreviousYear" : { "type" : "number", "description" : "Share of taxable equity previous year", "readOnly" : true }, "shareOfTaxableEquityAtBeginningOfYear" : { "type" : "number", "description" : "Share of taxable equity at beginning of year", "readOnly" : true }, "deposit" : { "type" : "number", "description" : "Deposit", "readOnly" : true }, "otherCorrection" : { "type" : "number", "description" : "Other correction", "readOnly" : true }, "acquisitionOfShare" : { "type" : "number", "description" : "Acquisition of share", "readOnly" : true }, "realizationOfShare" : { "type" : "number", "description" : "Realization of share", "readOnly" : true }, "capitalReimbursement" : { "type" : "number", "description" : "Capital reimbursement", "readOnly" : true }, "subTotal" : { "type" : "number", "description" : "Sub total", "readOnly" : true }, "improperDeposit" : { "type" : "number", "description" : "Informal deposit", "readOnly" : true }, "taxBenefitFromLoss" : { "type" : "number", "description" : "Tax benefit from loss", "readOnly" : true }, "taxEquityYearEnd" : { "type" : "number", "description" : "Tax equity year end", "readOnly" : true } }, "description" : "Specification of taxable basis", "readOnly" : true }, "ResponseWrapperParticipantReport" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ParticipantReport" } } }, "ParticipantReportPost" : { "type" : "object", "properties" : { "year" : { "type" : "integer", "description" : "Year", "format" : "int32" }, "groupId" : { "type" : "integer", "description" : "Group id", "format" : "int32" }, "dataSubType" : { "type" : "string", "description" : "Sub group id", "enum" : [ "NONE", "NOT_LICENSED", "FREIGHT_TRANSPORT", "TAXI", "ACQUISITION_AND_REALIZATION", "PRODUCT_TYPE_INVENTORY", "CASH_REGISTER_SYSTEM", "PRIVATE_WITHDRAWAL_OF_GOODS", "ENTERTAINMENT", "MULTI_UNIT_BUILDING_UNIT", "RENTAL_WITHDRAWAL_SALE_COMPANY", "RENTAL_WITHDRAWAL_SALE_SHAREHOLDER", "RESOLUTION", "WORK_PACKAGE", "COLLABORATIVE_BUSINESS", "OTHER_PUBLIC_SUPPORT", "BUSINESS_ACTIVITY", "RELATED_COMPANY", "FUNCTION_AND_RISK", "TRANSACTION", "OUTSTANDING", "INTEREST_EXPENSES_TO_COMPANY_IN_SAME_GROUP", "INTEREST_EXPENSES_TO_OTHER_GROUP_GUARANTOR", "INTEREST_EXPENSES_TO_OTHER_WITH_OUTSTANDING_CLAIM", "COMPANIES_INCLUDED_IN_NORWEGIAN_PART_OF_GROUP", "INTEREST_INCOME_FROM_COMPANY_IN_SAME_GROUP", "INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP", "INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_GROUP_GUARANTOR", "INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_WITH_OUTSTANDING_CLAIM", "INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP", "FORWARDING_DISALLOWED_INTEREST_DEDUCTION" ] }, "dataSubTypeGroupId" : { "minimum" : 0, "type" : "integer", "description" : "Group id", "format" : "int32" }, "postType" : { "type" : "string", "description" : "Post type", "enum" : [ "REGISTRATION_NUMBER", "DESCRIPTION", "VEHICLE_TYPE", "YEAR_OF_INITIAL_REGISTRATION", "LIST_PRICE", "DATE_FROM", "DATE_TO", "LICENCE", "LICENCE_NUMBER", "IS_ELECTRONIC_VEHICLE_LOGBOOK_LOGGED", "NO_OF_KILOMETRES_TOTAL", "OPERATING_EXPENSES", "LEASING_RENT", "IS_COMPANY_VEHICLE_USED_PRIVATE", "NO_OF_KILOMETRES_PRIVATE", "DEPRECIATION_PRIVATE_USE", "REVERSED_VEHICLE_EXPENSES", "FUEL_COST", "MAINTENANCE_COST", "COST_OF_INSURANCE_AND_TAX", "CAR_DEPARTMENT", "NO_OF_LITER_FUEL", "TAXIMETER_TYPE", "INCOME_PERSONAL_TRANSPORT", "INCOME_GOODS_TRANSPORT", "DRIVING_INCOME_PAYED_IN_CASH", "DRIVING_INCOME_INVOICED_PUBLIC_AGENCIES", "TIP_PAYED_WITH_CARD_OR_INVOICE", "TIP_PAYED_IN_CASH", "NO_OF_KILOMETRES_SCHOOL_CHILDREN", "NO_OF_KILOMETRES_WITH_PASSENGER", "FLOP_TRIP_AMOUNT", "IS_CONNECTED_TO_CENTRAL", "ID_FOR_PROFIT_AND_LOSS_ACCOUNT", "DESCRIPTION_PROFIT_AND_LOSS_ACCOUNT", "MUNICIPALITY_NUMBER", "OPENING_BALANCE", "PROFIT_SALES_WITHDRAWAL_OTHER_REALIZATIONS", "LOSS_SALES_WITHDRAWAL_OTHER_REALIZATIONS", "PROFIT_REALIZATIONS_LIVESTOCK", "VALUE_ACQUIRED_PROFIT_AND_LOSS_ACCOUNT", "VALUE_REALIZED_PROFIT_AND_LOSS_ACCOUNT", "ANNUAL_INCOME_RECOGNITION_OR_DEDUCTION_BASIS", "PERCENTAGE_PROFIT_AND_LOSS_ACCOUNT", "ANNUAL_INCOME_RECOGNITION", "ANNUAL_DEDUCTION", "CLOSING_BALANCE", "IS_REGARDING_REALIZATION_SEPARATED_PLOT_AGRICULTURE_OR_FORESTRY", "IS_REGARDING_REALIZATION_WHOLE_AGRICULTURE_OR_FORESTRY_BUSINESS", "PROFIT_AND_LOSS_DEPARTMENT", "ID_FOR_ACCOMMODATION_AND_RESTAURANT", "COVER_CHARGE_SUBJECT_TO_VAT", "COVER_CHARGE_NOT_SUBJECT_TO_VAT", "COVER_CHARGE", "DESCRIPTION_ACCOMMODATION_AND_RESTAURANT", "MUST_BE_CONFIRMED_BY_AUDITOR", "PRODUCT_TYPE", "OPENING_STOCK", "CLOSING_STOCK", "PURCHASE_OF_GOODS", "COST_OF_GOODS_SOLD", "SALES_REVENUE_AND_WITHDRAWALS", "SALES_REVENUE_IN_CASH", "CASH_REGISTER_SYSTEM_YEAR_OF_INITIAL_REGISTRATION", "CASH_REGISTER_SYSTEM_TYPE", "WITHDRAWAL_OF_PRODUCTS_VALUED_AT_TURNOVER", "PRIVATE_WITHDRAWAL_ENTERED_ON_PRIVATE_ACCOUNT", "TOTAL_WITHDRAWAL_PRODUCTS_ENTERED_AS_SALES_REVENUE", "WITHDRAWAL_COST_FOR_ENTERTAINMENT", "WITHDRAWAL_VALUE_VALUED_AT_MARKET_VALUE", "MARKUP_WITHDRAWAL_COST_FOR_ENTERTAINMENT", "TOTAL_WITHDRAWAL_COST_FOR_ENTERTAINMENT", "OPENING_BALANCE_CREDIT_SALES", "CLOSING_BALANCE_CREDIT_SALES", "OPENING_BALANCE_WRITE_DOWN_NEW_COMPANY", "CLOSING_BALANCE_WRITE_DOWN_NEW_COMPANY", "SALARY_AND_PENSION_EXPENSES_ACCOUNT_ID", "SALARY_AND_PENSION_EXPENSES_ACCOUNT_ADDITION", "SALARY_AND_PENSION_EXPENSES_ACCOUNT_DEDUCTION", "SALARY_AND_PENSION_EXPENSES_ACCOUNT_REPORTED_BENEFIT", "SALARY_AND_PENSION_EXPENSES_MANUAL_FILLING", "EMPLOYERS_PAYMENT_OF_SUBSIDY", "TOTAL_AMOUNT_CREDITED_TO_NATURAL_BENEFITS", "BASIS_FOR_INCREASED_EMPLOYERS_TAX", "SALARY_AND_PENSION_EXPENSES_MANUAL_ACCOUNT_DESCRIPTION", "SALARY_AND_PENSION_EXPENSES_MANUAL_ACCOUNT_EXPENSED_BENEFIT", "OPENING_BALANCE_RAW_MATERIAL_AND_SEMI_FINISHED_PRODUCTS", "CLOSING_BALANCE_RAW_MATERIAL_AND_SEMI_FINISHED_PRODUCTS", "OPENING_BALANCE_PRODUCT_UNDER_MANUFACTURING", "CLOSING_BALANCE_PRODUCT_UNDER_MANUFACTURING", "OPENING_BALANCE_INVENTORIES_FINISHED_ITEM", "CLOSING_BALANCE_INVENTORIES_FINISHED_ITEM", "OPENING_BALANCE_PURCHASED_ITEM_FOR_RESALE", "CLOSING_BALANCE_PURCHASED_ITEM_FOR_RESALE", "OPENING_BALANCE_SELF_PRODUCED_PRODUCT_OWN_PRODUCTUION", "CLOSING_BALANCE_SELF_PRODUCED_PRODUCT_OWN_PRODUCTUION", "OPENING_BALANCE_LIVESTOCK", "CLOSING_BALANCE_LIVESTOCK", "ACCOUNT_INVENTORY_BALANCE_ACCOUNT_ID", "ACCOUNT_INVENTORY_BALANCE_DEPARTMENT_ID", "ACCOUNT_INVENTORY_BALANCE_UNIT_RATE", "ACCOUNT_INVENTORY_BALANCE_BALANCE_OUT_QUANTITY", "ACCOUNT_INVENTORY_BALANCE_BALANCE_OUT", "TANGIBLE_FIXED_ASSETS_TYPE", "OPENING_BALANCE_TANGIBLE_FIXED_ASSETS", "TAX_DEPRECIATION_PERCENTAGE", "STRAIGHT_LINE_DEPRECIATION", "PROFIT_TRANSFERRED_TO_PROFIT_AND_LOSS_ACCOUNT", "LOSS_TRANSFERRED_TO_PROFIT_AND_LOSS_ACCOUNT", "ACQUISITION_COST", "LIFETIME", "ACQUISITION_DATE", "REALISATION_DATE", "IS_COMMERCIAL_BUILDING_ACQUIRED_BEFORE_1984", "HISTORICAL_COST_PRICE", "WRITTEN_DOWN_VALUE_PR_01011984", "LOWER_LIMIT_DEPRECIATION", "IS_PHYSICAL_OPERATING_ASSETS_IN_BALANCE_SHEET", "FACILITY_TYPE", "DEPRECIATION_PERCENTAGE", "CASH_DEPOSITS", "CONTRIBUTIONS_IN_KIND", "CAPITAL_REDUCTION_DISTRIBUTED_SHARED_CAPITAL_CASH", "CAPITAL_REDUCTION_DISTRIBUTED_SHARED_CAPITAL_OTHER_ASSETS", "DEBT_WAVING", "BUYING_OWN_SHARES", "SELLING_OWN_SHARES", "DEBT_CONVERSION_TO_EQUITY", "POSITIVE_DIFF_BETWEEN_ALLOCATED_AND_DISTRIBUTED_DIVIDEND", "NEGATIVE_DIFF_BETWEEN_ALLOCATED_AND_DISTRIBUTED_DIVIDEND", "OTHER_NEGATIVE_CHANGE_IN_EQUITY", "LATE_PAYMENT", "OTHER_INTEREST_INCOME", "OTHER_INTEREST_EXPENSE", "INCOME_FROM_OTHER_INVESTMENTS_AND_DIVIDENDS", "PROFIT_ON_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "LOSS_ON_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "PRIVATE_ACCOUNT", "DEDUCTIBLE_COST_OF_USING_A_PRIVATE_CAR", "OTHER_TAX_FREE_INCOME", "OTHERNON_DEDUCTIBLECOST", "TAX_FREE_PROFIT_FROM_THE_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "NON_DEDUCTIBLE_LOSS_ON_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "TAX_FREE_PART_OF_DIVIDENDS_AND_DISTRIBUTIONS", "RETURN_OF_PROFITS_TO_ISDF", "RETURN_OF_DEFICIT_TO_ISDF", "CASH_PAYMENT", "WITHDRAWAL_OF_ASSETS_AND_SERVICES", "OTHER_WITHDRAWALS_AND_DISTRIBUTIONS", "OTHER_POSTIVE_CHANGE_IN_EQUITY", "OTHER_POSITIVE_CHANGE_IN_EQUITY", "NONE_DEDUCTIBLE_COST", "POSITIVE_TAX_COST", "INTEREST_EXPENSE_FIXED_TAX", "SHARE_OF_LOSS_FROM_INVESTMENT", "REVERSAL_OF_IMPAIRMENT", "ACCOUNTING_IMPAIRMENT", "ACCOUNTING_LOSS", "ACCOUNTING_DEFICIT_NORWEGIAN_SDF", "ACCOUNTING_DEFICIT_FOREIGN_SDF", "ACCOUNTING_LOSS_NORWEGIAN_SDF", "ACCOUNTING_LOSS_FOREIGN_SDF", "RETURNED_DEBT_INTEREST", "TAXABLE_PROFIT_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "TAXABLE_DIVIDEND_ON_SHARES", "TAXABLE_PART_OF_DIVIDEND_AND_DISTRIBUTION", "SHARE_OF_TAXABLE_PROFIT_NORWEGIAN_SDF", "SHARE_OF_TAXABLE_PROFIT_FOREIGN_SDF", "TAXABLE_PROFIT_REALIZATION_OF_NORWEGIAN_SDF", "TAXABLE_PROFIT_REALIZATION_OF_FOREIGN_SDF", "ADDITION_INTEREST_COST", "CORRECTION_PURPOSED_DIVIDEND", "TAXABLE_PROFIT_WITHDRAWAL_NORWEGIAN_TAX_AREA", "INCOME_SUPPLEMENT_FOR_CONVERSION_DIFFERENCE", "OTHER_INCOME_SUPPLEMENT", "RETURN_OF_INCOME_RELATED_DIVIDENDS", "PROFIT_AND_LOSS_GROUP_CONTRIBUTION", "ACCOUNTING_PROFIT_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "ACCOUNTING_PROFIT_SHARE_NORWEGIAN_SDF", "ACCOUNTING_PROFIT_SHARE_FOREIGN_SDF", "ACCOUNTING_GAIN_NORWEGIAN_SDF", "ACCOUNTING_GAIN_FOREIGN_SDF", "DEDUCTIBLE_LOSS_ON_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "SHARE_OF_DEDUCTIBLE_DEFICIT_NORWEGIAN_SDF", "SHARE_OF_DEDUCTIBLE_DEFICIT_FOREIGN_SDF", "DEDUCTIBLE_LOSS_ON_REALIZATION_NORWEGIAN_SDF", "DEDUCTIBLE_LOSS_ON_REALIZATION_FOREIGN_SDF", "DEDUCTIBLE_LOSS_ON_WITHDRAWAL_NORWEGIAN_TAX_AREA", "ISSUE_AND_ESTABLISHMENT_COST", "INCOME_DEDUCTION_FROM_ACCOUNTING_CURRENCY_TO_NOK", "OTHER_INCOME_DEDUCTION", "INCOME_ACCOUNT_DEFERRED_INCOME", "RETURN_VALUE_REDUCTION_COMPANY_PORTFOLIO", "INCOME_RECOGNITION_PARAGRAPH_10_TRANSACTIONS", "STANDARD_PRICE_ADDITION", "INTEREST_EXPENSE_IN_INCOME_STATEMENT", "INCOME_SUPPLEMENT_PRIVATE_USE_COMMERCIAL_VEHICLE", "INTEREST_INCOME_IN_INCOME_STATEMENT", "RETURN_VALUE_ADDITIONS_COMPANY_PORTFOLIO", "NOT_DEDUCTIBLE_COSTS_AND_LOSS_PETROLEUM_ABROAD", "TEMPLATE_DEDUCTION_TAXABLE_INCOME", "COST_ACCOUNTING_PARAGRAPH_10_TRANSACTIONS", "STANDARD_PRICE_DEDUCTION", "TAX_RETURN_DEDUCTIONS_FOU", "EXEMPT_INCOME_ACCORDINT_TO_PETROLEUM_TAX_LAW", "TAX_FREE_INCOME_RELATED_TO_EXTRACTION_PETROLEUM_ABROAD", "OWN_SICKNESS_BENEFITS_AS_INCOME_IN_ANNUAL_ACCOUNTS", "RETURN_ON_LIFE_INSURANCE_IN_ANNUAL_ACCOUNTS", "REVERSAL_OF_DEDUCTIONS_SCIENTIFIC_RESEARCH_AND_VOCATIONAL_TRAINING", "REVERSAL_INCREASE_VALUE_LINKED_TO_COMPANY_PORTFOLIO", "TEMPORARY_DIFFERENCES_TYPE", "OPENING_BALANCE_ACCOUNTABLE_VALUE", "CLOSING_BALANCE_ACCOUNTABLE_VALUE", "OPENING_BALANCE_TAX_VALUE", "CLOSING_BALANCE_TAX_VALUE", "OPENING_BALANCE_DIFFERENCES", "CLOSING_BALANCE_DIFFERENCES", "SHOW_PROFIT_AND_LOSS", "SHOW_ACCOMMODATION_AND_RESTAURANT", "IS_ACCOUNTABLE", "USE_ACCOUNTING_VALUES_IN_INVENTORIES", "USE_ACCOUNTING_VALUES_IN_CUSTOMER_RECEIVABLES", "SHOW_TANGIBLE_FIXED_ASSET", "SHOW_CAR", "SHOW_INVENTORIES", "SHOW_CUSTOMER_RECEIVABLES", "SHOW_CONCERN_RELATION", "OWN_BUSINESS_PROPERTIES", "OWN_ASSET_PAPER", "SHOW_SALARY_AND_PENSION_EXPENSES", "TRANSFERRED_BY", "TRANSFERRED_DATE", "IS_TAXABLE", "AUDITING_OBLIGATION", "VALIDATION_ONLY_ON_SUBMIT", "DATE_OF_DETERMINATION", "CONFIRMING_COMPANY_REPRESENTATIVE", "CONTACT_PERSON", "PARENT_COMPANY", "SMALL_ENTERPRISES", "PREPARED_BY_AUTHORIZED_ACCOUNTANT", "SERVICE_ASSISTANCE_USED", "ELECTRONIC_CASE_PROCESSING", "SUBMIT_WITHOUT_BUSINESS_SPECIFICATION", "SHOW_RESULT_AND_BALANCE_PREVIOUS_YEAR", "DATE_START", "DATE_END", "INCLUDE_PREVIOUS_YEAR_IN_RESULT", "DISTRIBUTE_INCOME_MODULE_INDUSTRY", "HIDE_TRANSFERRED_FROM_LAST_YEAR_NOTIFICATION", "RESEARCH_AND_DEVELOPMENT", "COMPANY_PARTICIPANT_ANS_DA", "CONTROLLED_TRANSACTION_AND_INBETWEEN", "LIMITATION_OF_DEDUCTION", "EXCEPTION_FOR_INTEREST_LIMITATION", "NUF_COMPANY_ID", "NUF_COMPANY_NAME", "NUF_COUNTRY_CODE", "TIMBER_ACCOUNT", "KLAGE_PAA_SKJOENNSFASTSETTING", "DEV_PILOT_TEST_ORG_NO", "HIDE_MOVE_AGRO_ACCOUNT_NUMBER_NOTIFICATION", "FOREST_FUND", "SUBMISSION_TO_LANDBRUKETS_DATAFLYT_DATE", "SUBMISSION_TO_LANDBRUKETS_DATAFLYT_BY", "SUBMISSION_TO_NIBIO_DATE", "SUBMISSION_TO_NIBIO_BY", "SHOW_ALL_POSTS_RESULT_AND_BALANCE", "REPORT_SIGNATURE_DATE", "REPORT_SIGNATURE_LOCATION", "REPORT_TOGGLE_DATE_LOCATION", "AGRICULTURAL_ACCOUNT", "AGRICULTURAL_ACCOUNT_USE_MULTIPLE_ACCOUNTS", "REPORT_SELECTED_STEP_FRONT_PAGE", "REPORT_SELECTED_STEP_CONTENT_TABLE", "REPORT_SELECTED_STEP_RESULT_AND_BALANCE", "REPORT_SELECTED_STEP_NOTES_FOR_SUBMISSION", "REPORT_SELECTED_STEP_NOTES_FOR_INTERNAL_USE", "REPORT_SELECTED_STEP_SIGNING", "YEAR_END_BRREG_DOC_ID", "YEAR_END_BRREG_DOC_FETCHER_NAME", "YEAR_END_DOCUMENTATION_ACCOMMODATION_AND_RESTAURANT", "YEAR_END_DOCUMENTATION_PROFIT_AND_LOSS_ACCOUNT", "YEAR_END_DOCUMENTATION_COMMERCIAL_VEHICLE", "YEAR_END_DOCUMENTATION_TANGIBLE_FIXED_ASSETS", "YEAR_END_DOCUMENTATION_INVENTORIES", "YEAR_END_DOCUMENTATION_ACCOUNTS_RECEIVABLE_FROM_CUSTOMERS", "YEAR_END_DOCUMENTATION_PROFIT_LOSS", "YEAR_END_DOCUMENTATION_BALANCE", "YEAR_END_DOCUMENTATION_PERSONAL_INCOME", "YEAR_END_DOCUMENTATION_PERMANENT_DIFFERENCES", "YEAR_END_DOCUMENTATION_TEMPORARY_DIFFERENCES", "YEAR_END_DOCUMENTATION_TAX_RELATED_RESULT", "YEAR_END_DOCUMENTATION_GROUP_CONTRIBUTIONS", "YEAR_END_DOCUMENTATION_EQUITY_RECONCILIATION", "YEAR_END_DOCUMENTATION_TAX_RETURN", "YEAR_END_DOCUMENTATION_DIVIDEND", "YEAR_END_DOCUMENTATION_DISPOSITIONS", "YEAR_END_DOCUMENTATION_PROPERTIES", "YEAR_END_DOCUMENTATION_SECURITIES", "YEAR_END_DOCUMENTATION_TAX_CALCULATION", "YEAR_END_DOCUMENTATION_AUDIT_REPORT", "YEAR_END_DOCUMENTATION_ANNUAL_REPORT", "YEAR_END_DOCUMENTATION_CASH_FLOW_STATEMENT", "YEAR_END_DOCUMENTATION_ANNEXES_TO_THE_ANNUAL_ACCOUNTS", "YEAR_END_DOCUMENTATION_SALARY_AND_PENSION_EXPENSES", "YEAR_END_DOCUMENTATION_COOPERATIVE_ENTERPRISE", "YEAR_END_DOCUMENTATION_OTHER_CIRCUMSTANCES", "YEAR_END_DOCUMENTATION_TIMBER_ACCOUNT", "YEAR_END_DOCUMENTATION_PARTICIPANT_ASSESSMENT", "YEAR_END_DOCUMENTATION_RESEARCH_AND_DEVELOPMENT", "YEAR_END_DOCUMENTATION_COMPANY_TAX_RETURN", "YEAR_END_DOCUMENTATION_PARTICIPANTS_TASK", "YEAR_END_DOCUMENTATION_CONTROLLED_TRANSACTIONS", "YEAR_END_DOCUMENTATION_LIMITATION_OF_DEDUCTION", "YEAR_END_DOCUMENTATION_SKJOENNSFASTSETTING", "YEAR_END_DOCUMENTATION_SKJOENNSFASTSETTING_ALTINN_ID", "YEAR_END_DOCUMENTATION_FOREST_FUND", "YEAR_END_DOCUMENTATION_ATTACHMENT_CATEGORY", "YEAR_END_DOCUMENTATION_DISTRIBUTE_CAPITAL_DEBT_WITH_SPOUSE", "YEAR_END_DOCUMENTATION_REINDEER_HUSBANDRY", "YEAR_END_DOCUMENT_SELECTED", "YEAR_END_DOCUMENTATION_ANNUALACCOUNTS_REPORT_GENERATED", "YEAR_END_DOCUMENTATION_AGRICULTURAL_ACCOUNT", "RECEIVER_ORG_NR", "RECEIVER_NAME", "CONCERN_CONNECTION", "VOTING_LIMIT", "DATE_OF_ACQUISITION", "RECEIVED_GROUP_CONTRIBUTIONS_WITH_TAX_AFFECTION", "RECEIVED_GROUP_CONTRIBUTIONS_WITHOUT_TAX_AFFECTION", "SUBMITTED_GROUP_CONTRIBUTIONS_WITH_TAX_AFFECTION", "SUBMITTED_GROUP_CONTRIBUTIONS_WITHOUT_TAX_AFFECTION", "RECEIVED_GROUP_CONTRIBUTIONS_FOREIGN_COMPANY_WITH_TAX_AFFECTION", "SUBMITTED_GROUP_CONTRIBUTIONS_FOREIGN_COMPANY_WITH_TAX_AFFECTION", "APPLICATION_OF_LOSS_CARRY_FORWARDS", "ACCUMULATED_LOSS_FROM_PREVIOUS_YEARS", "CORRECTIONS_AND_OTHER_CAPITAL", "CORRECTIONS_AND_OTHER_DEBT", "NUMBER_OF_SHARES", "TOTAL_SHARE_CAPITAL", "IS_PART_OF_GROUP_COMPANY", "IS_LISTED_ON_THE_STOCK_EXCHANGE", "IS_REORGANIZED_ACROSS_BORDERS", "HAS_RECEIVED_OR_TRANSFERRED_ASSETS", "HEAD_OF_GROUP_NAME", "HEAD_OF_GROUP_COUNTRY_CODE", "HEAD_OF_GROUP_LAST_YEAR_NAME", "HEAD_OF_GROUP_LAST_YEAR_COUNTRY_CODE", "FOREIGN_OWNERSHIP_COMPANY_NAME", "FOREIGN_OWNERSHIP_COMPANY_COUNTRY_CODE", "OWNS_MIN_50_PERCENT_OF_FOREIGN_COMPANY", "HAS_PERMANENT_ESTABLISHMENT_ABROAD", "COUNTRY_FOR_COUNTRY_REPORTABLE_ENTERPRISE_NAME", "COUNTRY_FOR_COUNTRY_REPORTABLE_ENTERPRISE_COUNTRY_CODE", "HAS_PERFORMANCE_BETWEEN_SHAREHOLDERS_AND_OTHER", "HAS_OUTSTANDING_PAYMENT_CLAIMS_RELATED_TO_ILLEGAL_STATE_AID", "IS_SMALL_OR_MEDIUM_SIZED_BUSINESS", "HAD_FINANCIAL_DIFFICULTIES_LAST_YEAR", "IS_GROUP_COMPANY", "HAS_RECEIVED_OTHER_PUBLIC_SUPPORT", "TAXABLE_VALUE_ON_OTHER_ASSETS", "ADDITIONS_NON_DEDUCTIBLE_LATE_PAYMENT", "SALES_WITH_MEMBERS_IN_OWN_COOPERATIVE", "RETROACTIVE_PAYMENT_MEMBERS_IN_OWN_COOPERATIVE", "CARRIED_FORWARD_DEDUCTION_LIMIT_LATE_PAYMENT_PREV_YEAR", "CARRY_FORWARD_DEDUCTION_LIMIT_LATE_PAYMENT", "TAXABLE_VALUE_ON_FORESTRY", "REINSTATED_LOSS_FROM_PRELIMINARY_ASSESSMENT_IN_LATER_YEARS", "HEAD_OF_GROUP_IDENTIFIER", "HEAD_OF_GROUP_LAST_YEAR_IDENTIFIER", "COUNTRY_FOR_COUNTRY_REPORTABLE_ENTERPRISE_IDENTIFIER", "NORWEGIAN_HEAD_OF_GROUP_NAME", "NORWEGIAN_HEAD_OF_GROUP_IDENTIFIER", "NORWEGIAN_HEAD_OF_GROUP_COUNTRY_CODE", "SHARE_OF_LOSS_OFFSET_AGAINST_PROFIT_TWO_PRECEDING_YEARS", "AID_SCHEME_TONNAGE_TAX_REGIME", "AID_SCHEME_RULES_FOR_ELECTRIC_DELIVERY_TRUCKS", "AID_SCHEME_FOR_LONG_TERM_INVESTMENTS", "AID_SCHEME_EMPLOYMENT_RELATED_OPTIONS_START_UP", "AID_SCHEME_TAX_FUN", "AID_SCHEME_FAVOURABLE_DEPRECIATION_RULES", "AID_SCHEME_REGIONALLY_DIFFERENTIATED_INSURANCE_CONTRIBUTIONS", "AID_SCHEME_FAVOURABLE_DETERMINED_LIST_PRICES_ELECTRIC_VEHICLES", "AID_SCHEME_VAT_EXEMPTION_TURNOVER_ELECTRIC_CARS", "AID_SCHEME_VAT_EXEMPTION_LEASING_ELECTRIC_CARS", "AID_SCHEME_VAT_EXEMPTION_TURNOVER_BATTERIES", "AID_SCHEME_VAT_EXEMPTION_TURNOVER_ELECTRIC_NEWS", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_INDUSTRIAL_SECTOR", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_DISTRICT_HEATING", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_TARGET_ZONE", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_DATA_CENTRES", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_COMMERCIAL_VESSELS", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_ENERGY_PRODUCTS", "AID_SCHEME_REDUCED_BASIC_TAX_MINERAL_OIL_WOOD_INDUSTRY", "AID_SCHEME_REDUCED_BASIC_TAX_MINERAL_OIL_PIGMENT_INDUSTRY", "AID_SCHEME_EXEMPTION_CO2_TAX_MINERAL_OIL", "AID_SCHEME_EXEMPTION_CO2_TAX_GAS", "AID_SCHEME_EXEMPTION_NOX_DUTY", "AID_SCHEME_EXEMPTION_TRANSFER_FEE", "AID_SCHEME_REDUCED_ROAD_TRAFFIC_INSURANCE_TAX", "OTHER_CORRECTIONS", "DEFERRED_TAX_ASSETS_IN_BALANCE", "SHARES_AND_SECURITIES_NAME", "SHARES_AND_SECURITIES_STOCK_TYPE", "SHARES_AND_SECURITIES_VAT_NUMBER", "SHARES_AND_SECURITIES_ISIN", "SHARES_AND_SECURITIES_COUNTRY_CODE", "SHARES_AND_SECURITIES_SHARE_CLASS", "SHARES_AND_SECURITIES_SHARES_BY_THE_START_OF_THE_YEAR", "SHARES_AND_SECURITIES_SHARES_BY_THE_END_OF_THE_YEAR", "SHARES_AND_SECURITIES_VALUE", "SHARES_AND_SECURITIES_TOTAL_VALUE", "SHARES_AND_SECURITIES_DIVIDEND", "SHARES_AND_SECURITIES_INTEREST_INCOME", "SHARES_AND_SECURITIES_PROFIT_REALISATION", "SHARES_AND_SECURITIES_LOSS_REALISATION", "SHARES_AND_SECURITIES_PROFIT_INTEREST", "SHARES_AND_SECURITIES_LOSS_INTEREST", "SHARES_AND_SECURITIES_EXEMPTION_METHOD", "SHARES_AND_SECURITIES_FINANCIAL_PRODUCT", "REAL_ESTATE_TYPE", "REAL_ESTATE_DESCRIPTION", "COMMERCIAL_PROPERTY_TYPE", "SHARE_OF_ASSET_VALUE", "INTERNAL_PROPERTY_IDENTIFIER", "ASSET_VALUE_FOR_ASSET_SHARE", "VALUE_BEFORE_VALUATION_DISCOUNT_ASSET_SHARE", "TOTAL_AREA", "CALCULATED_RENTAL_VALUE", "CALCULATED_VALUE_IS_OUTDATED", "REAL_ESTATE_SERG_NO", "REAL_ESTATE_ADDRESS", "REAL_ESTATE_ZIP_CODE", "REAL_ESTATE_POSTAL_PLACE_NAME", "REAL_ESTATE_COUNTRY_CODE", "REAL_ESTATE_MUNICIPALITY_NO", "REAL_ESTATE_MUNICIPALITY_NAME", "REAL_ESTATE_CADASTRAL_UNIT_NO", "REAL_ESTATE_PROPERTY_UNIT_NO", "REAL_ESTATE_LEASEHOLD_NO", "REAL_ESTATE_SECTION_NO", "REAL_ESTATE_OWNERSHIP_SHARE_PERCENTAGE", "REAL_ESTATE_PREV_YEAR_ASSET_VALUE", "REAL_ESTATE_EXPENSES_YEARLY", "REAL_ESTATE_EXPENSES_FARM_HOUSE_YEARLY", "REAL_ESTATE_EXPENSES_OTHER_PROPERTY_YEARLY", "REAL_ESTATE_DATE_DOCUMENTED", "REAL_ESTATE_MARKET_VALUE_MANUAL", "REAL_ESTATE_MARKET_VALUE_CALCULATED", "REAL_ESTATE_USE_VALUE_MARKET", "REAL_ESTATE_DWELLING_TYPE", "REAL_ESTATE_ASSOCIATION_OR_COOPERATIVE_DWELLING_OWNERSHIP_TYPE", "REAL_ESTATE_ASSOCIATION_OR_COOPERATIVE_DWELLING_OWNERSHIP_NAME", "REAL_ESTATE_ASSOCIATION_OR_COOPERATIVE_DWELLING_OWNERSHIP_ORG_NO", "REAL_ESTATE_ASSOCIATION_OR_COOPERATIVE_DWELLING_OWNERSHIP_SHARE_NO", "REAL_ESTATE_PRIMARY_SECONDARY_DWELLING_TYPE", "REAL_ESTATE_CONSTRUCTION_YEAR", "REAL_ESTATE_SELF_OWNED_OR_COOPERATIVE_DWELLING_CALCULATED_MARKET_VALUE", "REAL_ESTATE_RENTAL_AREA_TOTAL", "REAL_ESTATE_RENTAL_PERIOD_MONTHS", "REAL_ESTATE_RENTAL_INCOME_TOTAL_CALCULATED", "REAL_ESTATE_RENTAL_GROSS_ANNUAL_PREV_YEAR", "REAL_ESTATE_RENTAL_GROSS_ANNUAL_PRIOR_YEAR_TWO", "REAL_ESTATE_RENTAL_ASSET_VALUE_BASE", "REAL_ESTATE_RENTAL_GROSS_INCOME", "REAL_ESTATE_PREV_YEAR_ASSET_VALUE_MANUAL", "REAL_ESTATE_EXPENSES_YEARLY_MANUAL", "REAL_ESTATE_EXPENSES_FARM_HOUSE_YEARLY_MANUAL", "REAL_ESTATE_EXPENSES_OTHER_PROPERTY_YEARLY_MANUAL", "REAL_ESTATE_MULTI_UNIT_BUILDING_UNIT_ROW_ID", "REAL_ESTATE_MULTI_UNIT_BUILDING_UNIT_NO", "REAL_ESTATE_MULTI_UNIT_BUILDING_UNIT_AREA", "REAL_ESTATE_MULTI_UNIT_BUILDING_UNIT_CONSTRUCTION_YEAR", "REAL_ESTATE_MULTI_UNIT_BUILDING_UNIT_VALUE", "REAL_ESTATE_USE_INCREASED_CALCULATION_FACTOR", "YEARLY_DIVIDEND", "DIVIDEND_CREDIT", "DIVIDEND_SECURITY_OFFERED", "DIVIDEND_DISPOSITIONS", "PARTICIPANT_NAME", "PARTICIPANT_NUMBER", "PARTICIPANT_OWNERSHIP", "PARTICIPANT_REPORT_DISTRIBUTION_CASH_DISBURSEMENT_FROM_COMPANY", "PARTICIPANT_REPORT_DISTRIBUTION_VALUE_OF_ASSETS_OR_SERVICE_WITHDRAWN", "PARTICIPANT_REPORT_DISTRIBUTION_CAPITAL_REIMBURSEMENT", "PARTICIPANT_REPORT_SHIELDING_BASIS_OTHER_INITIAL_VALUE_CORRECTION", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_UNUSED_SHIELDING_FROM_PREVIOUS_YEAR", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_CORRECTION_FOR_INHERITANCE_OR_GIFT_IN_INCOME_YEAR", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_TRANSFERRED_SHIELDING_DEDUCTION_FROM_PREVIOUS_YEARS", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_TRANSFERRED_SHIELDING_DEDUCTION", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_OTHER_CORRECTION", "PARTICIPANT_REPORT_ADDITIONS_TO_ORDINARY_INCOME_OTHER_CORRECTION", "PARTICIPANT_REPORT_TAX_BASIS_SPECIFICATION_SHARE_OF_TAXABLE_EQUITY_AT_BEGINNING_OF_YEAR", "PARTICIPANT_REPORT_TAX_BASIS_SPECIFICATION_DEPOSIT", "PARTICIPANT_REPORT_TAX_BASIS_SPECIFICATION_OTHER_CORRECTION", "PARTICIPANT_REPORT_SHARES_REALIZED_OR_ACQUIRED", "PARTICIPANT_REPORT_PAID_IN_SHARE_OF_TAXABLE_EQUITY_AS_OF_BEGINNING_OF_YEAR", "PARTICIPANT_REPORT_PAID_IN_ACQUISITION_OF_SHARE", "PARTICIPANT_REPORT_PAID_IN_DISPOSAL_OF_SHARE", "PARTICIPANT_REPORT_PAID_IN_OTHER_CORRECTION", "PARTICIPANT_REPORT_RETAINED_EARNINGS_SHARE_OF_TAXABLE_EQUITY_AS_OF_BEGINNING_OF_YEAR", "PARTICIPANT_REPORT_RETAINED_EARNINGS_ACQUISITION_OF_SHARE", "PARTICIPANT_REPORT_RETAINED_EARNINGS_DISPOSAL_OF_SHARE", "PARTICIPANT_REPORT_RETAINED_EARNINGS_TAX_RESULT", "PARTICIPANT_REPORT_RETAINED_EARNINGS_TAX_FREE_INCOME", "PARTICIPANT_REPORT_RETAINED_EARNINGS_OTHER_CORRECTION", "PARTICIPANT_REPORT_RETAINED_EARNINGS_NON_DEDUCTIBLE_EXPENSES", "PARTICIPANT_REPORT_COMPENSATION_FOR_WORK_IN_OTHER_INDUSTRIES_INCLUDING_AGRICULTURE", "PARTICIPANT_REPORT_COMPENSATION_FOR_WORK_IN_FISHING_AND_HUNTING", "PARTICIPANT_REPORT_COMPENSATION_FOR_WORK_IN_FAMILY_KINDERGARTEN_AT_PARTICIPANTS_HOME", "PARTICIPANT_REPORT_AGRICULTURAL_DEDUCTION", "PARTICIPANT_REPORT_RENTAL_INCOME_FROM_AGRICULTURAL_OPERATIONS", "PARTICIPANT_REPORT_RESIDES_IN_NORDTROMS_OR_FINNMARK", "PARTICIPANT_DISPROPORTIONATE_DISTRIBUTION", "PARTICIPANT_DISPROPORTIONATE_DISTRIBUTION_SHARE_OF_RESULT", "PARTICIPANT_DISPROPORTIONATE_DISTRIBUTION_SHARE_OF_WEALTH", "PARTICIPANT_PRICE_MANAGEMENT_PRICING", "PARTICIPANT_PRICE_MANAGEMENT_REALIZED_SHARE_TAX_EQUITY", "PARTICIPANT_PRICE_MANAGEMENT_REALIZED_COST_PRICE", "PARTICIPANT_PRICE_MANAGEMENT_REALIZED_SHARE_OF_PRICE_ADJUSTMENT", "PARTICIPANT_PRICE_MANAGEMENT_ACCUMULATED_ADJUSTMENTS", "PARTICIPANT_ASSESSMENT_REPORT_COMPANY_NAME", "PARTICIPANT_ASSESSMENT_REPORT_ORG_NUMBER", "PARTICIPANT_ASSESSMENT_REPORT_MUNICIPALITY_ID", "PARTICIPANT_ASSESSMENT_REPORT_COUNTRY_CODE", "PARTICIPANT_ASSESSMENT_REPORT_VALUE_BEFORE_APPRECIATION_FOR_NET_ASSETS", "PARTICIPANT_ASSESSMENT_REPORT_DEBT", "PARTICIPANT_ASSESSMENT_REPORT_ORDINARY_INCOME", "PARTICIPANT_ASSESSMENT_REPORT_LOSS", "PARTICIPANT_ASSESSMENT_REPORT_PAYMENT_TO_PARTICIPANT", "PARTICIPANT_ASSESSMENT_REPORT_GAIN_ON_REALIZATION_OF_SHARE", "PARTICIPANT_ASSESSMENT_REPORT_LOSS_ON_REALIZATION_OF_SHARE", "PARTICIPANT_REPORT_ROE_TRANSFER_TYPE", "PARTICIPANT_REPORT_ROE_NAME", "PARTICIPANT_REPORT_ROE_IDENTIFICATION", "PARTICIPANT_REPORT_ROE_TRANSACTION_TYPE", "PARTICIPANT_REPORT_ROE_TIME", "PARTICIPANT_REPORT_ROE_AMOUNT", "PARTICIPANT_REPORT_ROE_REMUNERATION", "PARTICIPANT_REPORT_ROE_COSTS", "PARTICIPANT_REPORT_ROE_ADDITION_NON_DEDUCTIBLE_LOSS", "PARTICIPANT_REPORT_ROE_UNUSED_SHIELDING_PREVIOUS_YEARS", "PARTICIPANT_REPORT_ROE_OTHER_CORRECTIONS", "PARTICIPANT_REPORT_ROE_GAIN_LOSS_REALIZATION", "PARTICIPANT_REPORT_ROE_IS_COVERED_EXEMPTION_METHOD", "PARTICIPANT_REPORT_ROE_ACQUIRED_INITIAL_VALUE", "PARTICIPANT_REPORT_ROE_PRICE", "PARTICIPANT_REPORT_TAX_BASIS_SPECIFICATION_REALIZATION_OF_SHARE_VALUE", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_OFFSET_AGAINST_REALIZATION_GAIN", "PARTICIPANT_REPORT_SHIELDING_BASIS_REDUCTION_OF_USED_SHIELDING_DUE_TO_REALIZATION", "PARTICIPANT_REPORT_TAX_BASIS_SPECIFICATION_ACQUISITION_OF_SHARE_VALUE", "YEAR_END_ATTACHMENT_TOGGLE_ENABLED", "COOPERATIVE_ENTERPRISE_TAXABLE_BUSINESS_INCOME", "COOPERATIVE_ENTERPRISE_FROM_SALES_INVOLVING_MEMBER", "COOPERATIVE_ENTERPRISE_SALES_INVOLVING_MEMBER_SEPARATE", "COOPERATIVE_ENTERPRISE_SALES_INVOLVING_MEMBER_ANOTHER", "COOPERATIVE_ENTERPRISE_OTHER_SALES", "COOPERATIVE_ENTERPRISE_RETROACTIVE_PAYMENT_ETC_SEPARATE", "COOPERATIVE_ENTERPRISE_RETROACTIVE_PAYMENT_ETC_OTHER", "COOPERATIVE_ENTERPRISE_CONDITIONS_FOR_DEDUCTION_RETROACTIVE_PAYMENT_ARE_MET", "COOPERATIVE_ENTERPRISE_PURCHASE_INVOLVING_MEMBER_SEPARATE", "COOPERATIVE_ENTERPRISE_PURCHASE_INVOLVING_MEMBER_ANOTHER", "COOPERATIVE_ENTERPRISE_OTHER_PURCHASES", "COOPERATIVE_ENTERPRISE_DECIDED_PAID_BACK_PAYMENT", "COOPERATIVE_ENTERPRISE_CARRY_FORWARD_DEDUCTION_THIS_YEAR", "COOPERATIVE_ENTERPRISE_DECIDED_ALLOCATED_PROFIT", "COOPERATIVE_ENTERPRISE_COOPERATIVE_TYPE", "COOPERATIVE_ENTERPRISE_DEDUCTION_LIMIT_INCOME_YEAR", "COOPERATIVE_ENTERPRISE_DEDUCTION_LIMIT_PREVIOUS_YEAR", "OTHER_CIRCUMSTANCES_TOTAL_DISTRIBUTED_DIVIDEND", "OTHER_CIRCUMSTANCES_INTEREST_ON_EQUITY_CERTIFICATE", "OTHER_CIRCUMSTANCES_COMPANY_HAS_GRANTED_LOAN", "OTHER_CIRCUMSTANCES_SHAREHOLDER_HAS_GRANTED_LOAN", "OTHER_CIRCUMSTANCES_LOAN_AMOUNT_TO_SHAREHOLDER", "OTHER_CIRCUMSTANCES_LOAN_AMOUNT_TO_COMPANY", "OTHER_CIRCUMSTANCES_INTEREST_RECOGNISED_AS_INCOME", "OTHER_CIRCUMSTANCES_INTEREST_RECOGNISED_AS_EXPENSES", "OTHER_CIRCUMSTANCES_LOAN_BALANCE", "OTHER_CIRCUMSTANCES_COLLATERAL_AMOUNT", "OTHER_CIRCUMSTANCES_COLLATERAL_AMOUNT_INCOME_YEAR_TO_COMPANY", "OTHER_CIRCUMSTANCES_COLLATERAL_AMOUNT_INCOME_YEAR_TO_SHAREHOLDER", "OTHER_CIRCUMSTANCES_RENTAL_WITHDRAWAL_SALE_GRANTED", "OTHER_CIRCUMSTANCES_RENTAL_SALE_GRANTED", "OTHER_CIRCUMSTANCES_ASSET_TYPE", "OTHER_CIRCUMSTANCES_PRICING_METHOD", "OTHER_CIRCUMSTANCES_RENTAL_VALUE", "OTHER_CIRCUMSTANCES_VALUE_OF_SALE_OR_WITHDRAWAL", "RESEARCH_AND_DEVELOPMENT_PROJECT_NUMBER", "RESEARCH_AND_DEVELOPMENT_PROJECT_TITLE", "RESEARCH_AND_DEVELOPMENT_PROJECT_CATEGORY", "RESEARCH_AND_DEVELOPMENT_APPLICATION_APPROVED_DATE", "RESEARCH_AND_DEVELOPMENT_PROJECT_START_DATE", "RESEARCH_AND_DEVELOPMENT_PROJECT_END_DATE", "RESEARCH_AND_DEVELOPMENT_APPROVED_RND_INCENTIVE_START_YEAR", "RESEARCH_AND_DEVELOPMENT_APPROVED_RND_INCENTIVE_END_YEAR", "RESEARCH_AND_DEVELOPMENT_PROJECT_STATUS", "RESEARCH_AND_DEVELOPMENT_PROJECT_STATUS_DATE", "RESEARCH_AND_DEVELOPMENT_BUSINESS_CATEGORY", "RESEARCH_AND_DEVELOPMENT_IS_COLLABORATIVE_PROJECT_WITH_OTHER_ENTERPRISES", "RESEARCH_AND_DEVELOPMENT_HAS_EXTENSIVE_DISSEMINATION_THROUGH_CONFERENCES_PUBLICATIONS_ETC", "RESEARCH_AND_DEVELOPMENT_TOTAL_COSTS_PREVIOUS_YEARS", "RESEARCH_AND_DEVELOPMENT_TOTAL_GROSS_TAX_DEDUCTION_FROM_PREVIOUS_YEARS", "RESEARCH_AND_DEVELOPMENT_TOTAL_GROSS_TAX_DEDUCTION_FROM_INCOME_YEAR", "RESEARCH_AND_DEVELOPMENT_INCLUDED_PERSONNEL_COSTS_IN_INCOME_YEAR", "RESEARCH_AND_DEVELOPMENT_NUMBER_OF_OWN_HOURS_IN_INCOME_YEAR", "RESEARCH_AND_DEVELOPMENT_PUBLIC_SUPPORT_AS_REDUCED_WORKER_FEE", "RESEARCH_AND_DEVELOPMENT_WAS_IN_ECONOMIC_DIFFICULTIES_AT_APPLICATION_TIME", "RESEARCH_AND_DEVELOPMENT_UNDERLYING_DOCUMENTS_USED_FOR_ASSESSMENT", "RESEARCH_AND_DEVELOPMENT_UNDERLYING_DOCUMENTATION_DATE", "RESEARCH_AND_DEVELOPMENT_RESOLUTION_DATE", "RESEARCH_AND_DEVELOPMENT_RESOLUTION_TYPE", "RESEARCH_AND_DEVELOPMENT_RESOLUTION_DELIMITATION", "RESEARCH_AND_DEVELOPMENT_OTHER_PUBLIC_SUPPORT_PAYER_NAME", "RESEARCH_AND_DEVELOPMENT_OTHER_PUBLIC_SUPPORT_AMOUNT", "RESEARCH_AND_DEVELOPMENT_TOTAL_COSTS_EXCLUDED_FROM_TAX_DEDUCTION", "RESEARCH_AND_DEVELOPMENT_PROJECT_TO_BE_SIGNED_BY_AUDITOR", "RESEARCH_AND_DEVELOPMENT_STAKE_IN_COLLABORATIVE_PROJECT", "RESEARCH_AND_DEVELOPMENT_APPLIED_FOR_OTHER_PUBLIC_SUPPORT_IN_NORWAY", "RESEARCH_AND_DEVELOPMENT_WORK_PACKAGE_ID", "RESEARCH_AND_DEVELOPMENT_WORK_PACKAGE_TITLE", "RESEARCH_AND_DEVELOPMENT_WORK_PACKAGE_TOTAL_COST_FROM_PREVIOUS_YEAR", "RESEARCH_AND_DEVELOPMENT_WORK_PACKAGE_RECEIVED_PUBLIC_SUPPORT", "RESEARCH_AND_DEVELOPMENT_COLLABORATIVE_BUSINESS_ORG_NO", "RESEARCH_AND_DEVELOPMENT_COLLABORATIVE_BUSINESS_DESCRIPTION", "TIMBER_ACCOUNT_SHARE_OF_OPERATING_REVENUES_HUNTING_FISHING_ETC_MANUAL", "TIMBER_ACCOUNT_STANDARD_INCOME_FROM_BIOMASS_OR_WOOD_PRODUCTION_TRANSFERRED_AGRIGULTURE", "TIMBER_ACCOUNT_SHARE_OF_PROFIT_TO_REGISTER", "TIMBER_ACCOUNT_INCOMING_VALUE_FROM_AQUIRED_TIMBER_ACCOUNT", "TIMBER_ACCOUNT_VALUE_OF_SHARE_OF_REALIZED_TIMBER_ACCOUNT", "TIMBER_ACCOUNT_SHARE_OF_BASIS_NEXT_YEAR", "TIMBER_ACCOUNT_REMAINDER_NOT_TAXED_FELLING", "TIMBER_ACCOUNT_REMAINDER_INCLUDED_THIS_YEAR", "TIMBER_ACCOUNT_MUNICIPALITY_NO", "TIMBER_ACCOUNT_PAID_PUBLIC_CONTRIBUTION_FOREST_FUND", "TIMBER_ACCOUNT_SHARE_OF_OPERATING_REVENUES_HUNTING_FISHING_ETC", "CONTROLLED_TRANSACTIONS_EXEMPT_TRANSACTION_SHARING", "CONTROLLED_TRANSACTIONS_EXEMPT_PRICE_SHARING", "CONTROLLED_TRANSACTIONS_CONSOLIDATED_MARGIN_YEAR", "CONTROLLED_TRANSACTIONS_CONSOLIDATED_MARGIN_PERCENTAGE", "CONTROLLED_TRANSACTIONS_REPORTS_ONLY_PROVISION_INCOME", "CONTROLLED_TRANSACTIONS_COST_OF_IMMATERIAL_ASSETS", "CONTROLLED_TRANSACTIONS_NUMBER_OF_REGISTERED_PATENTS", "CONTROLLED_TRANSACTIONS_GROUP_HAS_BEEN_RESTRUCTURED", "CONTROLLED_TRANSACTIONS_COMPANY_HAS_SERVICED_OTHER_COMPANY_IN_GROUP_FOR_FREE", "CONTROLLED_TRANSACTIONS_COMPANY_IS_GUARANTOR_FOR_AGREEMENTS_BY_OTHER_COMPANIES_IN_SAME_GROUP", "CONTROLLED_TRANSACTIONS_RELATED_COMPANY_IDENTIFIER", "CONTROLLED_TRANSACTIONS_RELATED_COMPANY_NAME", "CONTROLLED_TRANSACTIONS_RELATED_COMPANY_COUNTRY", "CONTROLLED_TRANSACTIONS_FUNCTION_AND_RISK_FUNCTION_TYPE", "CONTROLLED_TRANSACTIONS_FUNCTION_AND_RISK_RISK_TYPE", "CONTROLLED_TRANSACTIONS_FUNCTION_AND_RISK_DESCRIPTION", "CONTROLLED_TRANSACTIONS_COMPANY_SPECIFICATION_COMPANY_IDENTIFIER", "CONTROLLED_TRANSACTIONS_COMPANY_SPECIFICATION_COMPANY_NAME", "CONTROLLED_TRANSACTIONS_COMPANY_SPECIFICATION_COMPANY_COUNTRY", "CONTROLLED_TRANSACTIONS_TRANSACTION_TYPE", "CONTROLLED_TRANSACTIONS_TRANSACTION_DESCRIPTION", "CONTROLLED_TRANSACTIONS_TRANSACTION_AMOUNT", "CONTROLLED_TRANSACTIONS_OUTSTANDING_ACCOUNT", "CONTROLLED_TRANSACTIONS_OUTSTANDING_AMOUNT", "CONTROLLED_TRANSACTIONS_OUTSTANDING_COUNTRY_CODE", "CONTROLLED_TRANSACTIONS_TRANSACTION_COUNTRY_CODE", "CONTROLLED_TRANSACTIONS_RESULT_AS_PERCENTAGE_OF_GROSS_REVENUE", "CONTROLLED_TRANSACTIONS_MAIN_BUSINESS_ACTIVITY", "CONTROLLED_TRANSACTIONS_NUMBER_OF_ENTITIES_WITH_CONTROLLED_TRANSACTIONS_IN_NORWAY", "CONTROLLED_TRANSACTIONS_NUMBER_OF_ENTITIES_WITH_CONTROLLED_TRANSACTIONS_OUTSIDE_NORWAY", "CONTROLLED_TRANSACTIONS_COMPANY_HAS_BEEN_SERVICED_BY_OTHER_COMPANY_IN_GROUP_FOR_FREE", "CONTROLLED_TRANSACTIONS_HAS_CONTROLLED_TRANSACTIONS_EXCEEDING_LIMIT", "CONTROLLED_TRANSACTIONS_IS_OBLIGED_TO_DOCUMENT", "INTEREST_LIMITATION_COMPANY_COMPLIANCE_WITH_INTEREST_LIMITATION", "INTEREST_LIMITATION_NET_INTEREST_COSTS_NORWEGIAN_GROUP_EXCEEDS_25MNOK", "INTEREST_LIMITATION_COMPANY_USES_EXCEPTION_RULE", "INTEREST_LIMITATION_GROUP_APEX_COMPANY_NAME", "INTEREST_LIMITATION_GROUP_APEX_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_GROUP_APEX_COUNTRY_CODE", "INTEREST_LIMITATION_NORWEGIAN_PART_OF_GROUP_REPORTED_ANOTHER_COMPANY", "INTEREST_LIMITATION_NORWEGIAN_PART_OF_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_NORWEGIAN_PART_OF_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_NORWEGIAN_PART_OF_GROUP_COUNTRY_CODE", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_CORRECTION_OF_INTEREST_EXPENSES", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_CORRECTION_OF_INTEREST_INCOME", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_GUARANTEE_COMMISSIONS_ON_DEBT", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_LOSS_ON_REALIZATION_OF_PREMIUM_DISCOUNT_BONDS", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_GAIN_ON_REALIZATION_OF_PREMIUM_DISCOUNT_BONDS", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_LOSS_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_COMPANIES_IN_SAME_GROUP_COSTS_FOR_GUARANTEE_COMMISSION", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_COMPANY_IN_SAME_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_COMPANY_IN_SAME_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_COMPANY_IN_SAME_GROUP_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_COMPANY_IN_SAME_GROUP_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_GROUP_GUARANTOR_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_GROUP_GUARANTOR_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_GROUP_GUARANTOR_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_GROUP_GUARANTOR_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_WITH_OUTSTANDING_CLAIM_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_WITH_OUTSTANDING_CLAIM_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_WITH_OUTSTANDING_CLAIM_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_WITH_OUTSTANDING_CLAIM_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANY_IN_SAME_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANY_IN_SAME_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANY_IN_SAME_GROUP_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANY_IN_SAME_GROUP_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANIES_IN_SAME_GROUP_LOSS_FOR_HOLDER_ON_REALIZATION_OF_PREMIUM_DISCOUNT_BOND", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANIES_IN_SAME_GROUP_GAIN_FOR_HOLDER_UPON_REALIZATION_OF_PREMIUM_DISCOUNT_BOND", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANIES_IN_SAME_GROUP_LOSS_FOR_HOLDER_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANIES_IN_SAME_GROUP_GAIN_FOR_HOLDER_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_GROUP_GUARANTOR_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_GROUP_GUARANTOR_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_GROUP_GUARANTOR_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_GROUP_GUARANTOR_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_WITH_OUTSTANDING_CLAIM_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_WITH_OUTSTANDING_CLAIM_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_WITH_OUTSTANDING_CLAIM_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_WITH_OUTSTANDING_CLAIM_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_COSTS_FOR_GUARANTEE_COMMISSION", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_LOSS_FOR_HOLDER_ON_REALIZATION_OF_PREMIUM_DISCOUNT_BOND", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_GAIN_FOR_HOLDER_UPON_REALIZATION_OF_PREMIUM_DISCOUNT_BOND", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_LOSS_FOR_HOLDER_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_GAIN_FOR_HOLDER_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_COMPANIES_INCLUDED_IN_NORWEGIAN_PART_OF_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_COMPANIES_INCLUDED_IN_NORWEGIAN_PART_OF_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_COMPANIES_INCLUDED_IN_NORWEGIAN_PART_OF_GROUP_NET_INTEREST_COST", "INTEREST_LIMITATION_COMPANIES_INCLUDED_IN_NORWEGIAN_PART_OF_GROUP_NET_DEDUCTIBLE_INTEREST_COST", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_GAIN_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_CALCULATION_OF_INTEREST_DEDUCTION_LIMIT_AMORTIZED_LEASE_COST", "INTEREST_LIMITATION_CALCULATION_OF_INTEREST_DEDUCTION_LIMIT_DEDUCTION_FOR_GROUP_CONTRIBUTIONS_NOT_INCLUDED_IN_CALCULATION_BASIS", "FORWARDING_DISALLOWED_INTEREST_DEDUCTION_INCOME_YEAR", "FORWARDING_DISALLOWED_INTEREST_DEDUCTION_CARRIED_FORWARD_FROM_PREVIOUS_YEAR", "INTEREST_LIMITATION_COMPANY_CARRIED_FORWARD_INTEREST_DEDUCTIONS_FROM_PREVIOUS_YEARS", "TAX_ASSESSMENT_NEGATIVE_PERSONAL_INCOME_PREVIOUS_YEAR_OWNER", "TAX_ASSESSMENT_NEGATIVE_PERSONAL_INCOME_PREVIOUS_YEAR_SPOUSE", "TAX_ASSESSMENT_COORDINATION_OTHER_PERSONAL_INCOME_OWNER", "TAX_ASSESSMENT_COORDINATION_OTHER_PERSONAL_INCOME_SPOUSE", "TAX_ASSESSMENT_COORDINATION_COORDINATION_GENERAL_PARTNERSHIP_OWNER", "TAX_ASSESSMENT_COORDINATION_COORDINATION_GENERAL_PARTNERSHIP_SPOUSE", "TAX_ASSESSMENT_SALARY_INCOME_OWNER", "TAX_ASSESSMENT_SALARY_INCOME_SPOUSE", "TAX_ASSESSMENT_SICK_PAYABLE_FISHING_ETC_OWNER", "TAX_ASSESSMENT_SICK_PAYABLE_FISHING_ETC_SPOUSE", "TAX_ASSESSMENT_SICK_PAYABLE_AGRICULTURE_OWNER", "TAX_ASSESSMENT_SICK_PAYABLE_AGRICULTURE_SPOUSE", "TAX_ASSESSMENT_SICK_PAYABLE_OTHER_OWNER", "TAX_ASSESSMENT_SICK_PAYABLE_OTHER_SPOUSE", "TAX_ASSESSMENT_OTHER_PENSIONABLE_INCOME_OWNER", "TAX_ASSESSMENT_OTHER_PENSIONABLE_INCOME_SPOUSE", "TAX_ASSESSMENT_CONDITIONS_ARE_SPECIAL_ALLOWANCE_AGRICULTURE_MET", "TAX_ASSESSMENT_SHARE_FROM_SDF", "REINDEER_HUSBANDRY", "REINDEER_HUSBANDRY_CAPITAL_COSTS_MINUS_CAPITAL_REVENUES", "REINDEER_HUSBANDRY_CORRECTED_BUSINESS_INCOME_TWO_YEARS_AGO", "REINDEER_HUSBANDRY_CORRECTED_BUSINESS_INCOME_ONE_YEAR_AGO", "REINDEER_HUSBANDRY_WITHDRAWAL", "REINDEER_HUSBANDRY_DEPOSIT", "AGRICULTURAL_ACCOUNT_DEPARTMENTS", "AGRICULTURAL_ACCOUNT_SHARE_OF_OPERATING_COSTS", "AGRICULTURAL_ACCOUNT_INCOME_FROM_BIOMASS_OR_WOOD_PRODUCTION", "AGRICULTURAL_ACCOUNT_OPERATIONAL_ENTITY", "AGRICULTURAL_ACCOUNT_MUNICIPALITY", "AGRICULTURAL_ACCOUNT_TRANSFER_TO_AGRICULTURAL_ACCOUNT", "AGRICULTURAL_ACCOUNT_INHERITED_UPON_INHERITANCE_GENERATIONAL_CHANGE", "AGRICULTURAL_ACCOUNT_REALIZED_UPON_INHERITANCE_GENERATIONAL_CHANGE", "AGRICULTURAL_ACCOUNT_SHARE_OF_BASIS_NEXT_YEAR", "AGRICULTURAL_ACCOUNT_SHARE_OF_OPERATING_COSTS_MANUAL", "AGRICULTURAL_ACCOUNT_OWN_CORRECTIONS_INCOME", "AGRICULTURAL_ACCOUNT_OWN_CORRECTIONS_INCOME_MANUAL" ] }, "postValue" : { "type" : "string", "description" : "Post value" } } }, "ListResponseSalaryAndPensionAccountInfo" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/SalaryAndPensionAccountInfo" } } } }, "SalaryAndPensionAccountInfo" : { "type" : "object", "properties" : { "account" : { "$ref" : "#/components/schemas/Account" }, "groupId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "outgoingBalance" : { "type" : "number", "readOnly" : true }, "additions" : { "type" : "number", "readOnly" : true }, "deductions" : { "type" : "number", "readOnly" : true }, "totalNotifiableBenefits" : { "type" : "number", "readOnly" : true }, "benefitSubjectToEmployerTax" : { "type" : "number", "readOnly" : true } }, "readOnly" : true }, "ResponseWrapperSalaryAndPensionManualAccount" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/SalaryAndPensionManualAccount" } } }, "SalaryAndPensionManualAccount" : { "type" : "object", "properties" : { "description" : { "type" : "string", "readOnly" : true }, "groupId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "outgoingBalance" : { "type" : "number", "readOnly" : true }, "additions" : { "type" : "number", "readOnly" : true }, "deductions" : { "type" : "number", "readOnly" : true }, "totalNotifiableBenefits" : { "type" : "number", "readOnly" : true }, "benefitSubjectToEmployerTax" : { "type" : "number", "readOnly" : true } } }, "ResponseWrapperSalaryAndPensionSums" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/SalaryAndPensionSums" } } }, "SalaryAndPensionSums" : { "type" : "object", "properties" : { "outgoingBalance" : { "type" : "number", "readOnly" : true }, "additions" : { "type" : "number", "readOnly" : true }, "deductions" : { "type" : "number", "readOnly" : true }, "totalNotifiableBenefits" : { "type" : "number", "readOnly" : true }, "benefitSubjectToEmployerTax" : { "type" : "number", "readOnly" : true } } }, "ResponseWrapperTimberAccountOverview" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/TimberAccountOverview" } } }, "GenericDataRate" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "year" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "rateType" : { "type" : "string", "readOnly" : true }, "rate" : { "type" : "number", "readOnly" : true }, "ratePreviousYear" : { "type" : "number" } }, "readOnly" : true }, "ListResponseGenericDataRate" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/GenericDataRate" } } } }, "IncomeStatement" : { "type" : "object", "properties" : { "businessIncome" : { "type" : "number", "readOnly" : true }, "taxableBusinessIncome" : { "type" : "number", "readOnly" : true }, "totalAddition" : { "type" : "number", "readOnly" : true }, "totalDeduction" : { "type" : "number", "readOnly" : true }, "changes" : { "type" : "number", "readOnly" : true }, "receivedGroupContribution" : { "type" : "number", "readOnly" : true }, "payedGroupContribution" : { "type" : "number", "readOnly" : true } } }, "ResponseWrapperIncomeStatement" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/IncomeStatement" } } }, "InventoryUnitRateCompanySpecific" : { "type" : "object", "properties" : { "year" : { "type" : "integer", "description" : "Year", "format" : "int32", "readOnly" : true }, "account" : { "$ref" : "#/components/schemas/Account" }, "rate" : { "type" : "number", "description" : "Rate" }, "standardRate" : { "type" : "number", "description" : "Standard rate from Skatteetaten's takseringsregler", "readOnly" : true }, "productUnit" : { "$ref" : "#/components/schemas/ProductUnit" } }, "description" : "unit rate" }, "ResponseWrapperInventoryUnitRateCompanySpecific" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/InventoryUnitRateCompanySpecific" } } }, "InventoryUnitRate" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "accountNumber" : { "type" : "integer", "description" : "account number", "format" : "int32", "readOnly" : true }, "year" : { "type" : "integer", "description" : "year", "format" : "int32", "readOnly" : true }, "rate" : { "type" : "number", "description" : "rate", "readOnly" : true }, "productUnit" : { "$ref" : "#/components/schemas/ProductUnitMaster" } }, "readOnly" : true }, "ListResponseInventoryUnitRate" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/InventoryUnitRate" } } } }, "Grouping" : { "type" : "object", "properties" : { "grouping" : { "type" : "string", "description" : "grouping", "readOnly" : true }, "businessActivityType" : { "type" : "string", "description" : "business activity type", "readOnly" : true, "enum" : [ "OTHER_COMMERCIAL_ACTIVITIES", "OTHER_COMMERCIAL_ACTIVITIES_2", "OTHER_COMMERCIAL_ACTIVITIES_3", "OTHER_COMMERCIAL_ACTIVITIES_4", "AGRICULTURE_HORTICULTURE_FUR_FARMING", "FISHING_AND_HUNTING_AT_SEA", "REINDEER_HUSBANDRY", "FAMILY_DAY_CARE_CENTRE_IN_OWN_HOME", "SLATE_QUARRYING", "FORESTRY", "NOT_INDUSTRY" ] } }, "description" : "groupings", "readOnly" : true }, "InventoryGrouping" : { "type" : "object", "properties" : { "year" : { "type" : "integer", "description" : "year", "format" : "int32" }, "path" : { "type" : "string", "description" : "path" }, "description" : { "type" : "string", "readOnly" : true }, "groupings" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Grouping" } }, "taxableBalanceIn" : { "type" : "number", "description" : "Taxable balance in" }, "taxableBalanceOut" : { "type" : "number", "description" : "Taxable balance out" } } }, "ListResponseInventoryGrouping" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/InventoryGrouping" } } } }, "AccountInventoryBalance" : { "type" : "object", "properties" : { "year" : { "minimum" : 0, "type" : "integer", "description" : "Year", "format" : "int32" }, "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "groupId" : { "minimum" : 0, "type" : "integer", "description" : "Group id", "format" : "int32" }, "subGroupId" : { "minimum" : 0, "type" : "integer", "description" : "Sub group id", "format" : "int32" }, "account" : { "$ref" : "#/components/schemas/Account" }, "department" : { "$ref" : "#/components/schemas/Department" }, "balanceInQuantity" : { "type" : "number", "description" : "incoming quantity balance" }, "balanceIn" : { "type" : "number", "description" : "incoming balance" }, "balanceChangeQuantity" : { "type" : "number", "description" : "quantity balance change", "readOnly" : true }, "unitRate" : { "$ref" : "#/components/schemas/InventoryUnitRateCompanySpecific" }, "balanceOutQuantity" : { "type" : "number", "description" : "outgoing quantity balance" }, "bookedBalanceOutQuantity" : { "type" : "number", "description" : "booked outgoing quantity balance" }, "balanceOut" : { "type" : "number", "description" : "outgoing balance" }, "bookedBalanceOut" : { "type" : "number", "description" : "booked outgoing balance" }, "balanceChange" : { "type" : "number", "description" : "balance change", "readOnly" : true }, "modifiedUnitRate" : { "type" : "number", "description" : "modified unit rate" }, "modifiedBalanceOutQuantity" : { "type" : "number", "description" : "modified balance out quantity" }, "modifiedBalanceOut" : { "type" : "number", "description" : "modified balance out" } }, "readOnly" : true }, "ListResponseAccountInventoryBalance" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/AccountInventoryBalance" } } } }, "ResponseWrapperInventoryGrouping" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/InventoryGrouping" } } }, "ResponseWrapperAccountInventoryBalance" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/AccountInventoryBalance" } } }, "ListResponseMapping" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Mapping" } } } }, "Mapping" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "year" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "type" : { "type" : "string", "readOnly" : true }, "post" : { "type" : "string", "readOnly" : true }, "subPost" : { "type" : "string", "readOnly" : true }, "groupNumber" : { "type" : "string", "readOnly" : true }, "negate" : { "type" : "boolean", "readOnly" : true }, "excludeFromTaxReturn" : { "type" : "boolean", "readOnly" : true }, "groupingEnk" : { "type" : "string", "readOnly" : true }, "groupingAs" : { "type" : "string", "readOnly" : true }, "groupingAns" : { "type" : "string", "readOnly" : true }, "groupingSa" : { "type" : "string", "readOnly" : true }, "groupingAgricultureEnk" : { "type" : "string", "readOnly" : true }, "groupingForestryEnk" : { "type" : "string", "readOnly" : true }, "groupingAgricultureAs" : { "type" : "string", "readOnly" : true }, "groupingForestryAs" : { "type" : "string", "readOnly" : true }, "groupingAgricultureAns" : { "type" : "string", "readOnly" : true }, "groupingForestryAns" : { "type" : "string", "readOnly" : true }, "negatePreviousYear" : { "type" : "boolean" }, "excludeFromTaxReturnPreviousYear" : { "type" : "boolean" }, "groupingEnkPreviousYear" : { "type" : "string" }, "groupingAsPreviousYear" : { "type" : "string" }, "groupingAnsPreviousYear" : { "type" : "string" }, "groupingSaPreviousYear" : { "type" : "string" }, "groupingAgricultureEnkPreviousYear" : { "type" : "string", "readOnly" : true }, "groupingForestryEnkPreviousYear" : { "type" : "string", "readOnly" : true }, "groupingAgricultureAsPreviousYear" : { "type" : "string", "readOnly" : true }, "groupingForestryAsPreviousYear" : { "type" : "string", "readOnly" : true }, "groupingAgricultureAnsPreviousYear" : { "type" : "string", "readOnly" : true }, "groupingForestryAnsPreviousYear" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "ListResponseYearEndReportMunicipality" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/YearEndReportMunicipality" } } } }, "YearEndReportMunicipality" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "name" : { "type" : "string", "readOnly" : true }, "number" : { "type" : "string", "readOnly" : true }, "displayName" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "NoteEntriesOverview" : { "type" : "object", "properties" : { "entries" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/NoteEntry" } }, "reportNotes" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/YearEndReportNote" } }, "displayOrder" : { "type" : "array", "items" : { "type" : "integer", "format" : "int64" } } } }, "NoteEntry" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "note" : { "$ref" : "#/components/schemas/YearEndReportNote" }, "grouping" : { "maxLength" : 255, "minLength" : 0, "type" : "string" }, "number" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "updatedBy" : { "maxLength" : 255, "minLength" : 0, "type" : "string" }, "updatedOn" : { "type" : "string", "description" : "The date time the note was last updated" } } }, "ResponseWrapperNoteEntriesOverview" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/NoteEntriesOverview" } } }, "YearEndReportNote" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "name" : { "type" : "string" }, "isMandatory" : { "type" : "boolean" }, "grouping" : { "type" : "string", "readOnly" : true }, "isMandatoryPreviousYear" : { "type" : "boolean" }, "groupingPreviousYear" : { "type" : "string" } } }, "NotePost" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "noteEntryId" : { "type" : "integer", "description" : "Note entry ID", "format" : "int64", "readOnly" : true }, "postType" : { "type" : "string", "enum" : [ "ID_FOR_NOTE", "IS_CHECKED", "UPDATED_BY", "UPDATED_DATE", "ACCOUNTS", "USE_ACCOUNTING_VALUES", "ACCOUNTING_PRINCIPLES_FREE_TEXT", "ACCOUNTING_PRINCIPLES_USE_DEFAULT_TEXT", "STILL_IN_BUSINESS", "STILL_IN_BUSINESS_INFO", "NUMBER_OF_MAN_YEARS", "OPENING_BALANCE_SALARY", "CLOSING_BALANCE_SALARY", "OPENING_BALANCE_NATIONAL_INSURANCE_CONTRIBUTIONS", "CLOSING_BALANCE_NATIONAL_INSURANCE_CONTRIBUTIONS", "OPENING_BALANCE_PENSION_COST", "CLOSING_BALANCE_PENSION_COST", "OPENING_BALANCE_OTHER_BENEFITS", "CLOSING_BALANCE_OTHER_BENEFITS", "ABOUT_MAN_YEARS_AND_SALARY", "USE_ACCOUNTING_VALUES_SPECIFICATION_OF_RESULT_ACCOUNTING", "EXTRAORDINARY_INCOME_AND_COST", "EXTRAORDINARY_INCOME_AND_COST_DESCRIPTION", "EXTRAORDINARY_INCOME_AND_COST_AMOUNT", "EXTRAORDINARY_INCOME_AND_COST_ENTRY_INCOME", "EXTRAORDINARY_INCOME_AND_COST_ENTRY_EXPENSE", "EXTRAORDINARY_INCOME_AND_COST_ADDITIONAL_INFORMATION", "FIXED_ASSETS_OPENING_ACQUISITION_COST_TANGIBLE_FIXED_ASSETS", "FIXED_ASSETS_OPENING_ACQUISITION_COST_INTANGIBLE_ASSETS", "FIXED_ASSETS_INFLOW_IN_THE_YEAR_TANGIBLE_FIXED_ASSETS", "FIXED_ASSETS_INFLOW_IN_THE_YEAR_INTANGIBLE_ASSETS", "FIXED_ASSETS_DISPOSAL_IN_THE_YEAR_TANGIBLE_FIXED_ASSETS", "FIXED_ASSETS_DISPOSAL_IN_THE_YEAR_INTANGIBLE_ASSETS", "FIXED_ASSETS_CLOSING_ACQUISITION_COST", "FIXED_ASSETS_TOTAL_DEPRECIATIONS_TANGIBLE_FIXED_ASSETS", "FIXED_ASSETS_TOTAL_DEPRECIATIONS_INTANGIBLE_ASSETS", "FIXED_ASSETS_CLOSING_CAPITALISED_VALUE", "FIXED_ASSETS_DEPRECIATIONS_TANGIBLE_FIXED_ASSETS", "FIXED_ASSETS_DEPRECIATIONS_INTANGIBLE_ASSETS", "FIXED_ASSETS_ECONOMIC_LIFE", "FIXED_ASSETS_DEPRECIATION_SCHEDULE_INTANGIBLE_ASSETS", "FIXED_ASSETS_ACQUISITION_COST", "FIXED_ASSETS_GOODWILL", "FIXED_ASSETS_DEPRECIATION_SCHEDULE", "FIXED_ASSETS_ADDITIONAL_INFORMATION", "FIXED_ASSETS_USE_ACCOUNTING_VALUES", "GROUP", "GROUP_INVESTMENTS", "GROUP_OPENING_BALANCE", "GROUP_REVENUE_RECOGNIZED_AS_INCOME", "GROUP_OTHER_CHANGES", "GROUP_CLOSING_BALANCE", "GROUP_ADDED_VALUE", "GROUP_DEPRECIATION_OF_ADDED_VALUES", "GROUP_GOODWILL", "GROUP_DEPRECIATION_OF_GOODWILL", "GROUP_TOTAL_ACQUISITION_COST", "GROUP_TOTAL_CAPITALIZED_EQUITY", "GROUP_IS_SUBSIDIARY", "GROUP_NAME_OF_PARENT_COMPANY", "GROUP_BUSINESS_OFFICE_PARENT_COMPANY", "GROUP_EXCLUDED_FROM_CONSOLIDATION", "GROUP_EXCLUDED_FROM_CONSOLIDATION_JUSTIFICATION", "GROUP_TRANSACTIONS_WITH_SUBSIDIARIES", "GROUP_INTERNAL_GAIN_TRANSACTIONS", "GROUP_RECEIVABLES_AND_LIABILITIES", "OPENING_BALANCE_RECEIVABLES_TOTAL_AMOUNT_CORPORATE", "CLOSING_BALANCE_RECEIVABLES_TOTAL_AMOUNT_CORPORATE", "OPENING_BALANCE_RECEIVABLES_TOTAL_AMOUNT_COMPANY", "CLOSING_BALANCE_RECEIVABLES_TOTAL_AMOUNT_COMPANY", "OPENING_BALANCE_RECEIVABLES_TOTAL_AMOUNT_CONTROLLED_COMPANY", "CLOSING_BALANCE_RECEIVABLES_TOTAL_AMOUNT_CONTROLLED_COMPANY", "OPENING_BALANCE_LONG_TERM_TOTAL_AMOUNT_CORPORATE", "CLOSING_BALANCE_LONG_TERM_TOTAL_AMOUNT_CORPORATE", "OPENING_BALANCE_LONG_TERM_TOTAL_AMOUNT_COMPANY", "CLOSING_BALANCE_LONG_TERM_TOTAL_AMOUNT_COMPANY", "OPENING_BALANCE_LONG_TERM_TOTAL_AMOUNT_CONTROLLED_COMPANY", "CLOSING_BALANCE_LONG_TERM_TOTAL_AMOUNT_CONTROLLED_COMPANY", "OPENING_BALANCE_SHORT_TERM_TOTAL_AMOUNT_CORPORATE", "CLOSING_BALANCE_SHORT_TERM_TOTAL_AMOUNT_CORPORATE", "OPENING_BALANCE_SHORT_TERM_TOTAL_AMOUNT_COMPANY", "CLOSING_BALANCE_SHORT_TERM_TOTAL_AMOUNT_COMPANY", "OPENING_BALANCE_SHORT_TERM_TOTAL_AMOUNT_CONTROLLED_COMPANY", "CLOSING_BALANCE_SHORT_TERM_TOTAL_AMOUNT_CONTROLLED_COMPANY", "OPENING_BALANCE_MORTGAGED_ASSETS", "OPENING_BALANCE_OTHER_COLLATERAL", "OPENING_BALANCE_GUANRANTEES", "GROUP_RECEIVABLES_AND_LIABILITIES_ADDITIONAL_INFO", "RECEIVABLES_FALL_DUE_LATER_THAN_ONE_YEAR", "RECEIVABLES_ADDITIONAL_INFORMATION", "ACTUAL_VALUE_FINACIAL_INSTRUMENTS", "ACTUAL_VALUE_FINACIAL_INSTRUMENTS_ASSET", "ACTUAL_VALUE_FINACIAL_INSTRUMENTS_REAL_VALUE", "ACTUAL_VALUE_FINACIAL_INSTRUMENTS_VALUE_ADJUSTMENT", "ACTUAL_VALUE_FINACIAL_INSTRUMENTS_ADDITIONAL_INFORMATION", "ACTUAL_VALUE_FINACIAL_INSTRUMENTS_DESCRIPTION", "HOLDING_OWN_SHARES", "HOLDING_OWN_SHARES_NUMBER_OF_SHARES", "HOLDING_OWN_SHARES_NOMINAL_VALUE_OF_SHARES", "HOLDING_OWN_SHARES_PART_OF_SHARE_CAPITAL", "OWN_SHARES_ACQUISITIONS_NUMBER_OF_SHARES_ACQUIRED", "PARENT_COMPANY_SHARES_ACQUISITIONS_NUMBER_OF_SHARES_ACQUIRED", "OWN_SHARES_ACQUISITIONS_REMUNERATION", "PARENT_COMPANY_SHARES_ACQUISITIONS_REMUNERATION", "OWN_SHARES_ACQUISITIONS_PART_OF_SHARE_CAPITAL", "PARENT_COMPANY_SHARES_ACQUISITIONS_PART_OF_SHARE_CAPITAL", "OWN_SHARES_ACQUISITIONS_BACKGROUND_ACQUISITIONS", "PARENT_COMPANY_SHARES_ACQUISITIONS_BACKGROUND_ACQUISITIONS", "OWN_SHARES_DISPOSAL_NUMBER_OF_SHARES_ACQUIRED", "OWN_SHARES_DISPOSAL_NUMBER_OF_SHARES_DISPOSED", "PARENT_COMPANY_SHARES_DISPOSAL_NUMBER_OF_SHARES_ACQUIRED", "PARENT_COMPANY_SHARES_DISPOSAL_NUMBER_OF_SHARES_DISPOSED", "OWN_SHARES_DISPOSAL_REMUNERATION", "OWN_SHARES_DISPOSAL_REMUNERATION_", "PARENT_COMPANY_SHARES_DISPOSAL_REMUNERATION", "PARENT_COMPANY_SHARES_DISPOSAL_REMUNERATION_", "OWN_SHARES_DISPOSAL_PART_OF_SHARE_CAPITAL", "OWN_SHARES_DISPOSAL_PART_OF_SHARE_CAPITAL_", "PARENT_COMPANY_SHARES_DISPOSAL_PART_OF_SHARE_CAPITAL", "PARENT_COMPANY_SHARES_DISPOSAL_PART_OF_SHARE_CAPITAL_", "HOLDING_OWN_SHARES_THIS_YEARS_PAYOUT", "HOLDING_OWN_SHARES_PROVISION_FOR_THE_YEAR", "HOLDING_OWN_SHARES_PROVISIONS", "HOLDING_OWN_SHARES_ADDITIONAL_INFORMATION", "DEBT_DUE_FOR_PAYMENT", "DEBT_SECURED_BY_MORTGAGE", "DEBT_CAPITALISED_VALUE", "DEBT_TOTAL_NON_RECOGNIZED_WARRANTY_OBLIGATIONS", "DEBT_WARRANTY_OBLIGATIONS", "DEBT_ADDITIONAL_INFORMATION", "LOAN_AND_PROVISION_OF_SECURITY_IS_GRANTED", "LOAN_AND_PROVISION_OF_SECURITY_TOTAL_LOAN_BOARD_MEMBERS", "LOAN_AND_PROVISION_OF_SECURITY_TOTAL_LOAN_MEMBERS_OF_OTHER_BODIES", "LOAN_AND_PROVISION_OF_SECURITY_PROVISION_OF_COLLATERAL_BOARD_MEMBERS", "LOAN_AND_PROVISION_OF_SECURITY_PROVISION_OF_COLLATERAL_MEMBERS_OF_OTHER_BODIES", "LOAN_AND_PROVISION_OF_SECURITY_INTEREST_RATE_BOARD_MEMBERS", "LOAN_AND_PROVISION_OF_SECURITY_INTEREST_RATE_MEMBERS_OF_OTHER_BODIES", "LOAN_AND_PROVISION_OF_SECURITY_MAIN_TERMS_BOARD_MEMBERS", "LOAN_AND_PROVISION_OF_SECURITY_MAIN_TERMS_MEMBERS_OF_OTHER_BODIES", "LOAN_AND_PROVISION_OF_SECURITY_REIMBURSED_AMOUNT_BOARD_MEMBERS", "LOAN_AND_PROVISION_OF_SECURITY_REIMBURSED_AMOUNT_MEMBERS_OF_OTHER_BODIES", "LOAN_AND_PROVISION_OF_SECURITY_DEDUCTED_AMOUNT_BOARD_MEMBERS", "LOAN_AND_PROVISION_OF_SECURITY_DEDUCTED_AMOUNT_MEMBERS_OF_OTHER_BODIES", "LOAN_AND_PROVISION_OF_SECURITY_WAIVED_AMOUNTS_BOARD_MEMBERS", "LOAN_AND_PROVISION_OF_SECURITY_WAIVED_AMOUNTS_MEMBERS_OF_OTHER_BODIES", "LOAN_AND_PROVISION_OF_SECURITY_ADDITIONAL_INFORMATION", "FREE_NOTE_FREE_TEXT", "CUSTOM_GROUPING", "NOTE_INTERNAL" ] }, "postValue" : { "type" : "string" }, "postMediumTextValue" : { "type" : "string" }, "postName" : { "type" : "string", "description" : "Manual post name, not stored in database" } } }, "ResponseWrapperListNotePost" : { "type" : "object", "properties" : { "value" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/NotePost" } } } }, "ResponseWrapperListNoteEntry" : { "type" : "object", "properties" : { "value" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/NoteEntry" } } } }, "ResponseWrapperNoteEntry" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/NoteEntry" } } }, "ResponseWrapperNotePost" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/NotePost" } } }, "ListResponseNotePost" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/NotePost" } } } }, "ResponseWrapperListResponseNotePost" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ListResponseNotePost" } } }, "ResponseWrapperYearEndReportNote" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/YearEndReportNote" } } }, "ListResponseYearEndReportNote" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/YearEndReportNote" } } } }, "ResponseWrapperListYearEndAnnualAccountsCode" : { "type" : "object", "properties" : { "value" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/YearEndAnnualAccountsCode" } } } }, "ExtraordinaryIncomeAndCost" : { "type" : "object", "properties" : { "note" : { "$ref" : "#/components/schemas/YearEndReportNote" }, "notePostType" : { "type" : "string", "readOnly" : true, "enum" : [ "ID_FOR_NOTE", "IS_CHECKED", "UPDATED_BY", "UPDATED_DATE", "ACCOUNTS", "USE_ACCOUNTING_VALUES", "ACCOUNTING_PRINCIPLES_FREE_TEXT", "ACCOUNTING_PRINCIPLES_USE_DEFAULT_TEXT", "STILL_IN_BUSINESS", "STILL_IN_BUSINESS_INFO", "NUMBER_OF_MAN_YEARS", "OPENING_BALANCE_SALARY", "CLOSING_BALANCE_SALARY", "OPENING_BALANCE_NATIONAL_INSURANCE_CONTRIBUTIONS", "CLOSING_BALANCE_NATIONAL_INSURANCE_CONTRIBUTIONS", "OPENING_BALANCE_PENSION_COST", "CLOSING_BALANCE_PENSION_COST", "OPENING_BALANCE_OTHER_BENEFITS", "CLOSING_BALANCE_OTHER_BENEFITS", "ABOUT_MAN_YEARS_AND_SALARY", "USE_ACCOUNTING_VALUES_SPECIFICATION_OF_RESULT_ACCOUNTING", "EXTRAORDINARY_INCOME_AND_COST", "EXTRAORDINARY_INCOME_AND_COST_DESCRIPTION", "EXTRAORDINARY_INCOME_AND_COST_AMOUNT", "EXTRAORDINARY_INCOME_AND_COST_ENTRY_INCOME", "EXTRAORDINARY_INCOME_AND_COST_ENTRY_EXPENSE", "EXTRAORDINARY_INCOME_AND_COST_ADDITIONAL_INFORMATION", "FIXED_ASSETS_OPENING_ACQUISITION_COST_TANGIBLE_FIXED_ASSETS", "FIXED_ASSETS_OPENING_ACQUISITION_COST_INTANGIBLE_ASSETS", "FIXED_ASSETS_INFLOW_IN_THE_YEAR_TANGIBLE_FIXED_ASSETS", "FIXED_ASSETS_INFLOW_IN_THE_YEAR_INTANGIBLE_ASSETS", "FIXED_ASSETS_DISPOSAL_IN_THE_YEAR_TANGIBLE_FIXED_ASSETS", "FIXED_ASSETS_DISPOSAL_IN_THE_YEAR_INTANGIBLE_ASSETS", "FIXED_ASSETS_CLOSING_ACQUISITION_COST", "FIXED_ASSETS_TOTAL_DEPRECIATIONS_TANGIBLE_FIXED_ASSETS", "FIXED_ASSETS_TOTAL_DEPRECIATIONS_INTANGIBLE_ASSETS", "FIXED_ASSETS_CLOSING_CAPITALISED_VALUE", "FIXED_ASSETS_DEPRECIATIONS_TANGIBLE_FIXED_ASSETS", "FIXED_ASSETS_DEPRECIATIONS_INTANGIBLE_ASSETS", "FIXED_ASSETS_ECONOMIC_LIFE", "FIXED_ASSETS_DEPRECIATION_SCHEDULE_INTANGIBLE_ASSETS", "FIXED_ASSETS_ACQUISITION_COST", "FIXED_ASSETS_GOODWILL", "FIXED_ASSETS_DEPRECIATION_SCHEDULE", "FIXED_ASSETS_ADDITIONAL_INFORMATION", "FIXED_ASSETS_USE_ACCOUNTING_VALUES", "GROUP", "GROUP_INVESTMENTS", "GROUP_OPENING_BALANCE", "GROUP_REVENUE_RECOGNIZED_AS_INCOME", "GROUP_OTHER_CHANGES", "GROUP_CLOSING_BALANCE", "GROUP_ADDED_VALUE", "GROUP_DEPRECIATION_OF_ADDED_VALUES", "GROUP_GOODWILL", "GROUP_DEPRECIATION_OF_GOODWILL", "GROUP_TOTAL_ACQUISITION_COST", "GROUP_TOTAL_CAPITALIZED_EQUITY", "GROUP_IS_SUBSIDIARY", "GROUP_NAME_OF_PARENT_COMPANY", "GROUP_BUSINESS_OFFICE_PARENT_COMPANY", "GROUP_EXCLUDED_FROM_CONSOLIDATION", "GROUP_EXCLUDED_FROM_CONSOLIDATION_JUSTIFICATION", "GROUP_TRANSACTIONS_WITH_SUBSIDIARIES", "GROUP_INTERNAL_GAIN_TRANSACTIONS", "GROUP_RECEIVABLES_AND_LIABILITIES", "OPENING_BALANCE_RECEIVABLES_TOTAL_AMOUNT_CORPORATE", "CLOSING_BALANCE_RECEIVABLES_TOTAL_AMOUNT_CORPORATE", "OPENING_BALANCE_RECEIVABLES_TOTAL_AMOUNT_COMPANY", "CLOSING_BALANCE_RECEIVABLES_TOTAL_AMOUNT_COMPANY", "OPENING_BALANCE_RECEIVABLES_TOTAL_AMOUNT_CONTROLLED_COMPANY", "CLOSING_BALANCE_RECEIVABLES_TOTAL_AMOUNT_CONTROLLED_COMPANY", "OPENING_BALANCE_LONG_TERM_TOTAL_AMOUNT_CORPORATE", "CLOSING_BALANCE_LONG_TERM_TOTAL_AMOUNT_CORPORATE", "OPENING_BALANCE_LONG_TERM_TOTAL_AMOUNT_COMPANY", "CLOSING_BALANCE_LONG_TERM_TOTAL_AMOUNT_COMPANY", "OPENING_BALANCE_LONG_TERM_TOTAL_AMOUNT_CONTROLLED_COMPANY", "CLOSING_BALANCE_LONG_TERM_TOTAL_AMOUNT_CONTROLLED_COMPANY", "OPENING_BALANCE_SHORT_TERM_TOTAL_AMOUNT_CORPORATE", "CLOSING_BALANCE_SHORT_TERM_TOTAL_AMOUNT_CORPORATE", "OPENING_BALANCE_SHORT_TERM_TOTAL_AMOUNT_COMPANY", "CLOSING_BALANCE_SHORT_TERM_TOTAL_AMOUNT_COMPANY", "OPENING_BALANCE_SHORT_TERM_TOTAL_AMOUNT_CONTROLLED_COMPANY", "CLOSING_BALANCE_SHORT_TERM_TOTAL_AMOUNT_CONTROLLED_COMPANY", "OPENING_BALANCE_MORTGAGED_ASSETS", "OPENING_BALANCE_OTHER_COLLATERAL", "OPENING_BALANCE_GUANRANTEES", "GROUP_RECEIVABLES_AND_LIABILITIES_ADDITIONAL_INFO", "RECEIVABLES_FALL_DUE_LATER_THAN_ONE_YEAR", "RECEIVABLES_ADDITIONAL_INFORMATION", "ACTUAL_VALUE_FINACIAL_INSTRUMENTS", "ACTUAL_VALUE_FINACIAL_INSTRUMENTS_ASSET", "ACTUAL_VALUE_FINACIAL_INSTRUMENTS_REAL_VALUE", "ACTUAL_VALUE_FINACIAL_INSTRUMENTS_VALUE_ADJUSTMENT", "ACTUAL_VALUE_FINACIAL_INSTRUMENTS_ADDITIONAL_INFORMATION", "ACTUAL_VALUE_FINACIAL_INSTRUMENTS_DESCRIPTION", "HOLDING_OWN_SHARES", "HOLDING_OWN_SHARES_NUMBER_OF_SHARES", "HOLDING_OWN_SHARES_NOMINAL_VALUE_OF_SHARES", "HOLDING_OWN_SHARES_PART_OF_SHARE_CAPITAL", "OWN_SHARES_ACQUISITIONS_NUMBER_OF_SHARES_ACQUIRED", "PARENT_COMPANY_SHARES_ACQUISITIONS_NUMBER_OF_SHARES_ACQUIRED", "OWN_SHARES_ACQUISITIONS_REMUNERATION", "PARENT_COMPANY_SHARES_ACQUISITIONS_REMUNERATION", "OWN_SHARES_ACQUISITIONS_PART_OF_SHARE_CAPITAL", "PARENT_COMPANY_SHARES_ACQUISITIONS_PART_OF_SHARE_CAPITAL", "OWN_SHARES_ACQUISITIONS_BACKGROUND_ACQUISITIONS", "PARENT_COMPANY_SHARES_ACQUISITIONS_BACKGROUND_ACQUISITIONS", "OWN_SHARES_DISPOSAL_NUMBER_OF_SHARES_ACQUIRED", "OWN_SHARES_DISPOSAL_NUMBER_OF_SHARES_DISPOSED", "PARENT_COMPANY_SHARES_DISPOSAL_NUMBER_OF_SHARES_ACQUIRED", "PARENT_COMPANY_SHARES_DISPOSAL_NUMBER_OF_SHARES_DISPOSED", "OWN_SHARES_DISPOSAL_REMUNERATION", "OWN_SHARES_DISPOSAL_REMUNERATION_", "PARENT_COMPANY_SHARES_DISPOSAL_REMUNERATION", "PARENT_COMPANY_SHARES_DISPOSAL_REMUNERATION_", "OWN_SHARES_DISPOSAL_PART_OF_SHARE_CAPITAL", "OWN_SHARES_DISPOSAL_PART_OF_SHARE_CAPITAL_", "PARENT_COMPANY_SHARES_DISPOSAL_PART_OF_SHARE_CAPITAL", "PARENT_COMPANY_SHARES_DISPOSAL_PART_OF_SHARE_CAPITAL_", "HOLDING_OWN_SHARES_THIS_YEARS_PAYOUT", "HOLDING_OWN_SHARES_PROVISION_FOR_THE_YEAR", "HOLDING_OWN_SHARES_PROVISIONS", "HOLDING_OWN_SHARES_ADDITIONAL_INFORMATION", "DEBT_DUE_FOR_PAYMENT", "DEBT_SECURED_BY_MORTGAGE", "DEBT_CAPITALISED_VALUE", "DEBT_TOTAL_NON_RECOGNIZED_WARRANTY_OBLIGATIONS", "DEBT_WARRANTY_OBLIGATIONS", "DEBT_ADDITIONAL_INFORMATION", "LOAN_AND_PROVISION_OF_SECURITY_IS_GRANTED", "LOAN_AND_PROVISION_OF_SECURITY_TOTAL_LOAN_BOARD_MEMBERS", "LOAN_AND_PROVISION_OF_SECURITY_TOTAL_LOAN_MEMBERS_OF_OTHER_BODIES", "LOAN_AND_PROVISION_OF_SECURITY_PROVISION_OF_COLLATERAL_BOARD_MEMBERS", "LOAN_AND_PROVISION_OF_SECURITY_PROVISION_OF_COLLATERAL_MEMBERS_OF_OTHER_BODIES", "LOAN_AND_PROVISION_OF_SECURITY_INTEREST_RATE_BOARD_MEMBERS", "LOAN_AND_PROVISION_OF_SECURITY_INTEREST_RATE_MEMBERS_OF_OTHER_BODIES", "LOAN_AND_PROVISION_OF_SECURITY_MAIN_TERMS_BOARD_MEMBERS", "LOAN_AND_PROVISION_OF_SECURITY_MAIN_TERMS_MEMBERS_OF_OTHER_BODIES", "LOAN_AND_PROVISION_OF_SECURITY_REIMBURSED_AMOUNT_BOARD_MEMBERS", "LOAN_AND_PROVISION_OF_SECURITY_REIMBURSED_AMOUNT_MEMBERS_OF_OTHER_BODIES", "LOAN_AND_PROVISION_OF_SECURITY_DEDUCTED_AMOUNT_BOARD_MEMBERS", "LOAN_AND_PROVISION_OF_SECURITY_DEDUCTED_AMOUNT_MEMBERS_OF_OTHER_BODIES", "LOAN_AND_PROVISION_OF_SECURITY_WAIVED_AMOUNTS_BOARD_MEMBERS", "LOAN_AND_PROVISION_OF_SECURITY_WAIVED_AMOUNTS_MEMBERS_OF_OTHER_BODIES", "LOAN_AND_PROVISION_OF_SECURITY_ADDITIONAL_INFORMATION", "FREE_NOTE_FREE_TEXT", "CUSTOM_GROUPING", "NOTE_INTERNAL" ] }, "noteGroupType" : { "type" : "string", "readOnly" : true, "enum" : [ "EXTRAORDINARY_INCOME_GROUP", "EXTRAORDINARY_COST_GROUP", "GROUP_GROUP", "ACTUAL_VALUE_FINACIAL_INSTRUMENTS_GROUP" ] }, "noteSubTypeGroupId" : { "type" : "number", "readOnly" : true }, "description" : { "type" : "number", "readOnly" : true }, "amount" : { "type" : "number", "readOnly" : true } } }, "FinacialInstrumentAsset" : { "type" : "object", "properties" : { "note" : { "$ref" : "#/components/schemas/YearEndReportNote" }, "notePostType" : { "type" : "string", "readOnly" : true, "enum" : [ "ID_FOR_NOTE", "IS_CHECKED", "UPDATED_BY", "UPDATED_DATE", "ACCOUNTS", "USE_ACCOUNTING_VALUES", "ACCOUNTING_PRINCIPLES_FREE_TEXT", "ACCOUNTING_PRINCIPLES_USE_DEFAULT_TEXT", "STILL_IN_BUSINESS", "STILL_IN_BUSINESS_INFO", "NUMBER_OF_MAN_YEARS", "OPENING_BALANCE_SALARY", "CLOSING_BALANCE_SALARY", "OPENING_BALANCE_NATIONAL_INSURANCE_CONTRIBUTIONS", "CLOSING_BALANCE_NATIONAL_INSURANCE_CONTRIBUTIONS", "OPENING_BALANCE_PENSION_COST", "CLOSING_BALANCE_PENSION_COST", "OPENING_BALANCE_OTHER_BENEFITS", "CLOSING_BALANCE_OTHER_BENEFITS", "ABOUT_MAN_YEARS_AND_SALARY", "USE_ACCOUNTING_VALUES_SPECIFICATION_OF_RESULT_ACCOUNTING", "EXTRAORDINARY_INCOME_AND_COST", "EXTRAORDINARY_INCOME_AND_COST_DESCRIPTION", "EXTRAORDINARY_INCOME_AND_COST_AMOUNT", "EXTRAORDINARY_INCOME_AND_COST_ENTRY_INCOME", "EXTRAORDINARY_INCOME_AND_COST_ENTRY_EXPENSE", "EXTRAORDINARY_INCOME_AND_COST_ADDITIONAL_INFORMATION", "FIXED_ASSETS_OPENING_ACQUISITION_COST_TANGIBLE_FIXED_ASSETS", "FIXED_ASSETS_OPENING_ACQUISITION_COST_INTANGIBLE_ASSETS", "FIXED_ASSETS_INFLOW_IN_THE_YEAR_TANGIBLE_FIXED_ASSETS", "FIXED_ASSETS_INFLOW_IN_THE_YEAR_INTANGIBLE_ASSETS", "FIXED_ASSETS_DISPOSAL_IN_THE_YEAR_TANGIBLE_FIXED_ASSETS", "FIXED_ASSETS_DISPOSAL_IN_THE_YEAR_INTANGIBLE_ASSETS", "FIXED_ASSETS_CLOSING_ACQUISITION_COST", "FIXED_ASSETS_TOTAL_DEPRECIATIONS_TANGIBLE_FIXED_ASSETS", "FIXED_ASSETS_TOTAL_DEPRECIATIONS_INTANGIBLE_ASSETS", "FIXED_ASSETS_CLOSING_CAPITALISED_VALUE", "FIXED_ASSETS_DEPRECIATIONS_TANGIBLE_FIXED_ASSETS", "FIXED_ASSETS_DEPRECIATIONS_INTANGIBLE_ASSETS", "FIXED_ASSETS_ECONOMIC_LIFE", "FIXED_ASSETS_DEPRECIATION_SCHEDULE_INTANGIBLE_ASSETS", "FIXED_ASSETS_ACQUISITION_COST", "FIXED_ASSETS_GOODWILL", "FIXED_ASSETS_DEPRECIATION_SCHEDULE", "FIXED_ASSETS_ADDITIONAL_INFORMATION", "FIXED_ASSETS_USE_ACCOUNTING_VALUES", "GROUP", "GROUP_INVESTMENTS", "GROUP_OPENING_BALANCE", "GROUP_REVENUE_RECOGNIZED_AS_INCOME", "GROUP_OTHER_CHANGES", "GROUP_CLOSING_BALANCE", "GROUP_ADDED_VALUE", "GROUP_DEPRECIATION_OF_ADDED_VALUES", "GROUP_GOODWILL", "GROUP_DEPRECIATION_OF_GOODWILL", "GROUP_TOTAL_ACQUISITION_COST", "GROUP_TOTAL_CAPITALIZED_EQUITY", "GROUP_IS_SUBSIDIARY", "GROUP_NAME_OF_PARENT_COMPANY", "GROUP_BUSINESS_OFFICE_PARENT_COMPANY", "GROUP_EXCLUDED_FROM_CONSOLIDATION", "GROUP_EXCLUDED_FROM_CONSOLIDATION_JUSTIFICATION", "GROUP_TRANSACTIONS_WITH_SUBSIDIARIES", "GROUP_INTERNAL_GAIN_TRANSACTIONS", "GROUP_RECEIVABLES_AND_LIABILITIES", "OPENING_BALANCE_RECEIVABLES_TOTAL_AMOUNT_CORPORATE", "CLOSING_BALANCE_RECEIVABLES_TOTAL_AMOUNT_CORPORATE", "OPENING_BALANCE_RECEIVABLES_TOTAL_AMOUNT_COMPANY", "CLOSING_BALANCE_RECEIVABLES_TOTAL_AMOUNT_COMPANY", "OPENING_BALANCE_RECEIVABLES_TOTAL_AMOUNT_CONTROLLED_COMPANY", "CLOSING_BALANCE_RECEIVABLES_TOTAL_AMOUNT_CONTROLLED_COMPANY", "OPENING_BALANCE_LONG_TERM_TOTAL_AMOUNT_CORPORATE", "CLOSING_BALANCE_LONG_TERM_TOTAL_AMOUNT_CORPORATE", "OPENING_BALANCE_LONG_TERM_TOTAL_AMOUNT_COMPANY", "CLOSING_BALANCE_LONG_TERM_TOTAL_AMOUNT_COMPANY", "OPENING_BALANCE_LONG_TERM_TOTAL_AMOUNT_CONTROLLED_COMPANY", "CLOSING_BALANCE_LONG_TERM_TOTAL_AMOUNT_CONTROLLED_COMPANY", "OPENING_BALANCE_SHORT_TERM_TOTAL_AMOUNT_CORPORATE", "CLOSING_BALANCE_SHORT_TERM_TOTAL_AMOUNT_CORPORATE", "OPENING_BALANCE_SHORT_TERM_TOTAL_AMOUNT_COMPANY", "CLOSING_BALANCE_SHORT_TERM_TOTAL_AMOUNT_COMPANY", "OPENING_BALANCE_SHORT_TERM_TOTAL_AMOUNT_CONTROLLED_COMPANY", "CLOSING_BALANCE_SHORT_TERM_TOTAL_AMOUNT_CONTROLLED_COMPANY", "OPENING_BALANCE_MORTGAGED_ASSETS", "OPENING_BALANCE_OTHER_COLLATERAL", "OPENING_BALANCE_GUANRANTEES", "GROUP_RECEIVABLES_AND_LIABILITIES_ADDITIONAL_INFO", "RECEIVABLES_FALL_DUE_LATER_THAN_ONE_YEAR", "RECEIVABLES_ADDITIONAL_INFORMATION", "ACTUAL_VALUE_FINACIAL_INSTRUMENTS", "ACTUAL_VALUE_FINACIAL_INSTRUMENTS_ASSET", "ACTUAL_VALUE_FINACIAL_INSTRUMENTS_REAL_VALUE", "ACTUAL_VALUE_FINACIAL_INSTRUMENTS_VALUE_ADJUSTMENT", "ACTUAL_VALUE_FINACIAL_INSTRUMENTS_ADDITIONAL_INFORMATION", "ACTUAL_VALUE_FINACIAL_INSTRUMENTS_DESCRIPTION", "HOLDING_OWN_SHARES", "HOLDING_OWN_SHARES_NUMBER_OF_SHARES", "HOLDING_OWN_SHARES_NOMINAL_VALUE_OF_SHARES", "HOLDING_OWN_SHARES_PART_OF_SHARE_CAPITAL", "OWN_SHARES_ACQUISITIONS_NUMBER_OF_SHARES_ACQUIRED", "PARENT_COMPANY_SHARES_ACQUISITIONS_NUMBER_OF_SHARES_ACQUIRED", "OWN_SHARES_ACQUISITIONS_REMUNERATION", "PARENT_COMPANY_SHARES_ACQUISITIONS_REMUNERATION", "OWN_SHARES_ACQUISITIONS_PART_OF_SHARE_CAPITAL", "PARENT_COMPANY_SHARES_ACQUISITIONS_PART_OF_SHARE_CAPITAL", "OWN_SHARES_ACQUISITIONS_BACKGROUND_ACQUISITIONS", "PARENT_COMPANY_SHARES_ACQUISITIONS_BACKGROUND_ACQUISITIONS", "OWN_SHARES_DISPOSAL_NUMBER_OF_SHARES_ACQUIRED", "OWN_SHARES_DISPOSAL_NUMBER_OF_SHARES_DISPOSED", "PARENT_COMPANY_SHARES_DISPOSAL_NUMBER_OF_SHARES_ACQUIRED", "PARENT_COMPANY_SHARES_DISPOSAL_NUMBER_OF_SHARES_DISPOSED", "OWN_SHARES_DISPOSAL_REMUNERATION", "OWN_SHARES_DISPOSAL_REMUNERATION_", "PARENT_COMPANY_SHARES_DISPOSAL_REMUNERATION", "PARENT_COMPANY_SHARES_DISPOSAL_REMUNERATION_", "OWN_SHARES_DISPOSAL_PART_OF_SHARE_CAPITAL", "OWN_SHARES_DISPOSAL_PART_OF_SHARE_CAPITAL_", "PARENT_COMPANY_SHARES_DISPOSAL_PART_OF_SHARE_CAPITAL", "PARENT_COMPANY_SHARES_DISPOSAL_PART_OF_SHARE_CAPITAL_", "HOLDING_OWN_SHARES_THIS_YEARS_PAYOUT", "HOLDING_OWN_SHARES_PROVISION_FOR_THE_YEAR", "HOLDING_OWN_SHARES_PROVISIONS", "HOLDING_OWN_SHARES_ADDITIONAL_INFORMATION", "DEBT_DUE_FOR_PAYMENT", "DEBT_SECURED_BY_MORTGAGE", "DEBT_CAPITALISED_VALUE", "DEBT_TOTAL_NON_RECOGNIZED_WARRANTY_OBLIGATIONS", "DEBT_WARRANTY_OBLIGATIONS", "DEBT_ADDITIONAL_INFORMATION", "LOAN_AND_PROVISION_OF_SECURITY_IS_GRANTED", "LOAN_AND_PROVISION_OF_SECURITY_TOTAL_LOAN_BOARD_MEMBERS", "LOAN_AND_PROVISION_OF_SECURITY_TOTAL_LOAN_MEMBERS_OF_OTHER_BODIES", "LOAN_AND_PROVISION_OF_SECURITY_PROVISION_OF_COLLATERAL_BOARD_MEMBERS", "LOAN_AND_PROVISION_OF_SECURITY_PROVISION_OF_COLLATERAL_MEMBERS_OF_OTHER_BODIES", "LOAN_AND_PROVISION_OF_SECURITY_INTEREST_RATE_BOARD_MEMBERS", "LOAN_AND_PROVISION_OF_SECURITY_INTEREST_RATE_MEMBERS_OF_OTHER_BODIES", "LOAN_AND_PROVISION_OF_SECURITY_MAIN_TERMS_BOARD_MEMBERS", "LOAN_AND_PROVISION_OF_SECURITY_MAIN_TERMS_MEMBERS_OF_OTHER_BODIES", "LOAN_AND_PROVISION_OF_SECURITY_REIMBURSED_AMOUNT_BOARD_MEMBERS", "LOAN_AND_PROVISION_OF_SECURITY_REIMBURSED_AMOUNT_MEMBERS_OF_OTHER_BODIES", "LOAN_AND_PROVISION_OF_SECURITY_DEDUCTED_AMOUNT_BOARD_MEMBERS", "LOAN_AND_PROVISION_OF_SECURITY_DEDUCTED_AMOUNT_MEMBERS_OF_OTHER_BODIES", "LOAN_AND_PROVISION_OF_SECURITY_WAIVED_AMOUNTS_BOARD_MEMBERS", "LOAN_AND_PROVISION_OF_SECURITY_WAIVED_AMOUNTS_MEMBERS_OF_OTHER_BODIES", "LOAN_AND_PROVISION_OF_SECURITY_ADDITIONAL_INFORMATION", "FREE_NOTE_FREE_TEXT", "CUSTOM_GROUPING", "NOTE_INTERNAL" ] }, "noteGroupType" : { "type" : "string", "readOnly" : true, "enum" : [ "EXTRAORDINARY_INCOME_GROUP", "EXTRAORDINARY_COST_GROUP", "GROUP_GROUP", "ACTUAL_VALUE_FINACIAL_INSTRUMENTS_GROUP" ] }, "noteSubTypeGroupId" : { "type" : "number", "readOnly" : true }, "asset" : { "type" : "number", "readOnly" : true }, "realValue" : { "type" : "number", "readOnly" : true }, "valueAdjustment" : { "type" : "number", "readOnly" : true } } }, "GroupInvestment" : { "type" : "object", "properties" : { "note" : { "$ref" : "#/components/schemas/YearEndReportNote" }, "notePostType" : { "type" : "string", "readOnly" : true, "enum" : [ "ID_FOR_NOTE", "IS_CHECKED", "UPDATED_BY", "UPDATED_DATE", "ACCOUNTS", "USE_ACCOUNTING_VALUES", "ACCOUNTING_PRINCIPLES_FREE_TEXT", "ACCOUNTING_PRINCIPLES_USE_DEFAULT_TEXT", "STILL_IN_BUSINESS", "STILL_IN_BUSINESS_INFO", "NUMBER_OF_MAN_YEARS", "OPENING_BALANCE_SALARY", "CLOSING_BALANCE_SALARY", "OPENING_BALANCE_NATIONAL_INSURANCE_CONTRIBUTIONS", "CLOSING_BALANCE_NATIONAL_INSURANCE_CONTRIBUTIONS", "OPENING_BALANCE_PENSION_COST", "CLOSING_BALANCE_PENSION_COST", "OPENING_BALANCE_OTHER_BENEFITS", "CLOSING_BALANCE_OTHER_BENEFITS", "ABOUT_MAN_YEARS_AND_SALARY", "USE_ACCOUNTING_VALUES_SPECIFICATION_OF_RESULT_ACCOUNTING", "EXTRAORDINARY_INCOME_AND_COST", "EXTRAORDINARY_INCOME_AND_COST_DESCRIPTION", "EXTRAORDINARY_INCOME_AND_COST_AMOUNT", "EXTRAORDINARY_INCOME_AND_COST_ENTRY_INCOME", "EXTRAORDINARY_INCOME_AND_COST_ENTRY_EXPENSE", "EXTRAORDINARY_INCOME_AND_COST_ADDITIONAL_INFORMATION", "FIXED_ASSETS_OPENING_ACQUISITION_COST_TANGIBLE_FIXED_ASSETS", "FIXED_ASSETS_OPENING_ACQUISITION_COST_INTANGIBLE_ASSETS", "FIXED_ASSETS_INFLOW_IN_THE_YEAR_TANGIBLE_FIXED_ASSETS", "FIXED_ASSETS_INFLOW_IN_THE_YEAR_INTANGIBLE_ASSETS", "FIXED_ASSETS_DISPOSAL_IN_THE_YEAR_TANGIBLE_FIXED_ASSETS", "FIXED_ASSETS_DISPOSAL_IN_THE_YEAR_INTANGIBLE_ASSETS", "FIXED_ASSETS_CLOSING_ACQUISITION_COST", "FIXED_ASSETS_TOTAL_DEPRECIATIONS_TANGIBLE_FIXED_ASSETS", "FIXED_ASSETS_TOTAL_DEPRECIATIONS_INTANGIBLE_ASSETS", "FIXED_ASSETS_CLOSING_CAPITALISED_VALUE", "FIXED_ASSETS_DEPRECIATIONS_TANGIBLE_FIXED_ASSETS", "FIXED_ASSETS_DEPRECIATIONS_INTANGIBLE_ASSETS", "FIXED_ASSETS_ECONOMIC_LIFE", "FIXED_ASSETS_DEPRECIATION_SCHEDULE_INTANGIBLE_ASSETS", "FIXED_ASSETS_ACQUISITION_COST", "FIXED_ASSETS_GOODWILL", "FIXED_ASSETS_DEPRECIATION_SCHEDULE", "FIXED_ASSETS_ADDITIONAL_INFORMATION", "FIXED_ASSETS_USE_ACCOUNTING_VALUES", "GROUP", "GROUP_INVESTMENTS", "GROUP_OPENING_BALANCE", "GROUP_REVENUE_RECOGNIZED_AS_INCOME", "GROUP_OTHER_CHANGES", "GROUP_CLOSING_BALANCE", "GROUP_ADDED_VALUE", "GROUP_DEPRECIATION_OF_ADDED_VALUES", "GROUP_GOODWILL", "GROUP_DEPRECIATION_OF_GOODWILL", "GROUP_TOTAL_ACQUISITION_COST", "GROUP_TOTAL_CAPITALIZED_EQUITY", "GROUP_IS_SUBSIDIARY", "GROUP_NAME_OF_PARENT_COMPANY", "GROUP_BUSINESS_OFFICE_PARENT_COMPANY", "GROUP_EXCLUDED_FROM_CONSOLIDATION", "GROUP_EXCLUDED_FROM_CONSOLIDATION_JUSTIFICATION", "GROUP_TRANSACTIONS_WITH_SUBSIDIARIES", "GROUP_INTERNAL_GAIN_TRANSACTIONS", "GROUP_RECEIVABLES_AND_LIABILITIES", "OPENING_BALANCE_RECEIVABLES_TOTAL_AMOUNT_CORPORATE", "CLOSING_BALANCE_RECEIVABLES_TOTAL_AMOUNT_CORPORATE", "OPENING_BALANCE_RECEIVABLES_TOTAL_AMOUNT_COMPANY", "CLOSING_BALANCE_RECEIVABLES_TOTAL_AMOUNT_COMPANY", "OPENING_BALANCE_RECEIVABLES_TOTAL_AMOUNT_CONTROLLED_COMPANY", "CLOSING_BALANCE_RECEIVABLES_TOTAL_AMOUNT_CONTROLLED_COMPANY", "OPENING_BALANCE_LONG_TERM_TOTAL_AMOUNT_CORPORATE", "CLOSING_BALANCE_LONG_TERM_TOTAL_AMOUNT_CORPORATE", "OPENING_BALANCE_LONG_TERM_TOTAL_AMOUNT_COMPANY", "CLOSING_BALANCE_LONG_TERM_TOTAL_AMOUNT_COMPANY", "OPENING_BALANCE_LONG_TERM_TOTAL_AMOUNT_CONTROLLED_COMPANY", "CLOSING_BALANCE_LONG_TERM_TOTAL_AMOUNT_CONTROLLED_COMPANY", "OPENING_BALANCE_SHORT_TERM_TOTAL_AMOUNT_CORPORATE", "CLOSING_BALANCE_SHORT_TERM_TOTAL_AMOUNT_CORPORATE", "OPENING_BALANCE_SHORT_TERM_TOTAL_AMOUNT_COMPANY", "CLOSING_BALANCE_SHORT_TERM_TOTAL_AMOUNT_COMPANY", "OPENING_BALANCE_SHORT_TERM_TOTAL_AMOUNT_CONTROLLED_COMPANY", "CLOSING_BALANCE_SHORT_TERM_TOTAL_AMOUNT_CONTROLLED_COMPANY", "OPENING_BALANCE_MORTGAGED_ASSETS", "OPENING_BALANCE_OTHER_COLLATERAL", "OPENING_BALANCE_GUANRANTEES", "GROUP_RECEIVABLES_AND_LIABILITIES_ADDITIONAL_INFO", "RECEIVABLES_FALL_DUE_LATER_THAN_ONE_YEAR", "RECEIVABLES_ADDITIONAL_INFORMATION", "ACTUAL_VALUE_FINACIAL_INSTRUMENTS", "ACTUAL_VALUE_FINACIAL_INSTRUMENTS_ASSET", "ACTUAL_VALUE_FINACIAL_INSTRUMENTS_REAL_VALUE", "ACTUAL_VALUE_FINACIAL_INSTRUMENTS_VALUE_ADJUSTMENT", "ACTUAL_VALUE_FINACIAL_INSTRUMENTS_ADDITIONAL_INFORMATION", "ACTUAL_VALUE_FINACIAL_INSTRUMENTS_DESCRIPTION", "HOLDING_OWN_SHARES", "HOLDING_OWN_SHARES_NUMBER_OF_SHARES", "HOLDING_OWN_SHARES_NOMINAL_VALUE_OF_SHARES", "HOLDING_OWN_SHARES_PART_OF_SHARE_CAPITAL", "OWN_SHARES_ACQUISITIONS_NUMBER_OF_SHARES_ACQUIRED", "PARENT_COMPANY_SHARES_ACQUISITIONS_NUMBER_OF_SHARES_ACQUIRED", "OWN_SHARES_ACQUISITIONS_REMUNERATION", "PARENT_COMPANY_SHARES_ACQUISITIONS_REMUNERATION", "OWN_SHARES_ACQUISITIONS_PART_OF_SHARE_CAPITAL", "PARENT_COMPANY_SHARES_ACQUISITIONS_PART_OF_SHARE_CAPITAL", "OWN_SHARES_ACQUISITIONS_BACKGROUND_ACQUISITIONS", "PARENT_COMPANY_SHARES_ACQUISITIONS_BACKGROUND_ACQUISITIONS", "OWN_SHARES_DISPOSAL_NUMBER_OF_SHARES_ACQUIRED", "OWN_SHARES_DISPOSAL_NUMBER_OF_SHARES_DISPOSED", "PARENT_COMPANY_SHARES_DISPOSAL_NUMBER_OF_SHARES_ACQUIRED", "PARENT_COMPANY_SHARES_DISPOSAL_NUMBER_OF_SHARES_DISPOSED", "OWN_SHARES_DISPOSAL_REMUNERATION", "OWN_SHARES_DISPOSAL_REMUNERATION_", "PARENT_COMPANY_SHARES_DISPOSAL_REMUNERATION", "PARENT_COMPANY_SHARES_DISPOSAL_REMUNERATION_", "OWN_SHARES_DISPOSAL_PART_OF_SHARE_CAPITAL", "OWN_SHARES_DISPOSAL_PART_OF_SHARE_CAPITAL_", "PARENT_COMPANY_SHARES_DISPOSAL_PART_OF_SHARE_CAPITAL", "PARENT_COMPANY_SHARES_DISPOSAL_PART_OF_SHARE_CAPITAL_", "HOLDING_OWN_SHARES_THIS_YEARS_PAYOUT", "HOLDING_OWN_SHARES_PROVISION_FOR_THE_YEAR", "HOLDING_OWN_SHARES_PROVISIONS", "HOLDING_OWN_SHARES_ADDITIONAL_INFORMATION", "DEBT_DUE_FOR_PAYMENT", "DEBT_SECURED_BY_MORTGAGE", "DEBT_CAPITALISED_VALUE", "DEBT_TOTAL_NON_RECOGNIZED_WARRANTY_OBLIGATIONS", "DEBT_WARRANTY_OBLIGATIONS", "DEBT_ADDITIONAL_INFORMATION", "LOAN_AND_PROVISION_OF_SECURITY_IS_GRANTED", "LOAN_AND_PROVISION_OF_SECURITY_TOTAL_LOAN_BOARD_MEMBERS", "LOAN_AND_PROVISION_OF_SECURITY_TOTAL_LOAN_MEMBERS_OF_OTHER_BODIES", "LOAN_AND_PROVISION_OF_SECURITY_PROVISION_OF_COLLATERAL_BOARD_MEMBERS", "LOAN_AND_PROVISION_OF_SECURITY_PROVISION_OF_COLLATERAL_MEMBERS_OF_OTHER_BODIES", "LOAN_AND_PROVISION_OF_SECURITY_INTEREST_RATE_BOARD_MEMBERS", "LOAN_AND_PROVISION_OF_SECURITY_INTEREST_RATE_MEMBERS_OF_OTHER_BODIES", "LOAN_AND_PROVISION_OF_SECURITY_MAIN_TERMS_BOARD_MEMBERS", "LOAN_AND_PROVISION_OF_SECURITY_MAIN_TERMS_MEMBERS_OF_OTHER_BODIES", "LOAN_AND_PROVISION_OF_SECURITY_REIMBURSED_AMOUNT_BOARD_MEMBERS", "LOAN_AND_PROVISION_OF_SECURITY_REIMBURSED_AMOUNT_MEMBERS_OF_OTHER_BODIES", "LOAN_AND_PROVISION_OF_SECURITY_DEDUCTED_AMOUNT_BOARD_MEMBERS", "LOAN_AND_PROVISION_OF_SECURITY_DEDUCTED_AMOUNT_MEMBERS_OF_OTHER_BODIES", "LOAN_AND_PROVISION_OF_SECURITY_WAIVED_AMOUNTS_BOARD_MEMBERS", "LOAN_AND_PROVISION_OF_SECURITY_WAIVED_AMOUNTS_MEMBERS_OF_OTHER_BODIES", "LOAN_AND_PROVISION_OF_SECURITY_ADDITIONAL_INFORMATION", "FREE_NOTE_FREE_TEXT", "CUSTOM_GROUPING", "NOTE_INTERNAL" ] }, "noteGroupType" : { "type" : "string", "readOnly" : true, "enum" : [ "EXTRAORDINARY_INCOME_GROUP", "EXTRAORDINARY_COST_GROUP", "GROUP_GROUP", "ACTUAL_VALUE_FINACIAL_INSTRUMENTS_GROUP" ] }, "noteSubTypeGroupId" : { "type" : "number", "readOnly" : true }, "investment" : { "type" : "number", "readOnly" : true }, "openingBalance" : { "type" : "number", "readOnly" : true }, "revenueRecognizedAsIncome" : { "type" : "number", "readOnly" : true }, "otherChanges" : { "type" : "number", "readOnly" : true }, "closingBalance" : { "type" : "number", "readOnly" : true } } }, "NoteContainer" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "note" : { "$ref" : "#/components/schemas/YearEndReportNote" }, "noteNumber" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "posts" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/YearEndReportNoteData" } }, "accountingPosts" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/YearEndReportAccountingNoteData" } }, "closingSumSalary" : { "type" : "number", "readOnly" : true }, "openingSumSalary" : { "type" : "number", "readOnly" : true }, "extraordinaryIncomePosts" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ExtraordinaryIncomeAndCost" } }, "extraordinaryCostPosts" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ExtraordinaryIncomeAndCost" } }, "sumExtraordinaryIncome" : { "type" : "number", "readOnly" : true }, "sumExtraordinaryCost" : { "type" : "number", "readOnly" : true }, "acquisitionCostTangibleFixedAssets" : { "type" : "number", "readOnly" : true }, "acquisitionCostIntangibleAssets" : { "type" : "number", "readOnly" : true }, "capitalisedValueTangibleFixedAssets" : { "type" : "number", "readOnly" : true }, "capitalisedValueIntangibleAssets" : { "type" : "number", "readOnly" : true }, "investmentsPosts" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/GroupInvestment" } }, "assetPosts" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/FinacialInstrumentAsset" } }, "sumRealValue" : { "type" : "number", "readOnly" : true }, "sumValueAdjustment" : { "type" : "number", "readOnly" : true }, "noteTextLibrary" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/NoteTextLibrary" } } } }, "NoteOverview" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "noteContainers" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/NoteContainer" } } } }, "NoteTextLibrary" : { "type" : "object", "properties" : { "note" : { "$ref" : "#/components/schemas/YearEndReportNote" }, "notePostType" : { "type" : "string", "readOnly" : true, "enum" : [ "ID_FOR_NOTE", "IS_CHECKED", "UPDATED_BY", "UPDATED_DATE", "ACCOUNTS", "USE_ACCOUNTING_VALUES", "ACCOUNTING_PRINCIPLES_FREE_TEXT", "ACCOUNTING_PRINCIPLES_USE_DEFAULT_TEXT", "STILL_IN_BUSINESS", "STILL_IN_BUSINESS_INFO", "NUMBER_OF_MAN_YEARS", "OPENING_BALANCE_SALARY", "CLOSING_BALANCE_SALARY", "OPENING_BALANCE_NATIONAL_INSURANCE_CONTRIBUTIONS", "CLOSING_BALANCE_NATIONAL_INSURANCE_CONTRIBUTIONS", "OPENING_BALANCE_PENSION_COST", "CLOSING_BALANCE_PENSION_COST", "OPENING_BALANCE_OTHER_BENEFITS", "CLOSING_BALANCE_OTHER_BENEFITS", "ABOUT_MAN_YEARS_AND_SALARY", "USE_ACCOUNTING_VALUES_SPECIFICATION_OF_RESULT_ACCOUNTING", "EXTRAORDINARY_INCOME_AND_COST", "EXTRAORDINARY_INCOME_AND_COST_DESCRIPTION", "EXTRAORDINARY_INCOME_AND_COST_AMOUNT", "EXTRAORDINARY_INCOME_AND_COST_ENTRY_INCOME", "EXTRAORDINARY_INCOME_AND_COST_ENTRY_EXPENSE", "EXTRAORDINARY_INCOME_AND_COST_ADDITIONAL_INFORMATION", "FIXED_ASSETS_OPENING_ACQUISITION_COST_TANGIBLE_FIXED_ASSETS", "FIXED_ASSETS_OPENING_ACQUISITION_COST_INTANGIBLE_ASSETS", "FIXED_ASSETS_INFLOW_IN_THE_YEAR_TANGIBLE_FIXED_ASSETS", "FIXED_ASSETS_INFLOW_IN_THE_YEAR_INTANGIBLE_ASSETS", "FIXED_ASSETS_DISPOSAL_IN_THE_YEAR_TANGIBLE_FIXED_ASSETS", "FIXED_ASSETS_DISPOSAL_IN_THE_YEAR_INTANGIBLE_ASSETS", "FIXED_ASSETS_CLOSING_ACQUISITION_COST", "FIXED_ASSETS_TOTAL_DEPRECIATIONS_TANGIBLE_FIXED_ASSETS", "FIXED_ASSETS_TOTAL_DEPRECIATIONS_INTANGIBLE_ASSETS", "FIXED_ASSETS_CLOSING_CAPITALISED_VALUE", "FIXED_ASSETS_DEPRECIATIONS_TANGIBLE_FIXED_ASSETS", "FIXED_ASSETS_DEPRECIATIONS_INTANGIBLE_ASSETS", "FIXED_ASSETS_ECONOMIC_LIFE", "FIXED_ASSETS_DEPRECIATION_SCHEDULE_INTANGIBLE_ASSETS", "FIXED_ASSETS_ACQUISITION_COST", "FIXED_ASSETS_GOODWILL", "FIXED_ASSETS_DEPRECIATION_SCHEDULE", "FIXED_ASSETS_ADDITIONAL_INFORMATION", "FIXED_ASSETS_USE_ACCOUNTING_VALUES", "GROUP", "GROUP_INVESTMENTS", "GROUP_OPENING_BALANCE", "GROUP_REVENUE_RECOGNIZED_AS_INCOME", "GROUP_OTHER_CHANGES", "GROUP_CLOSING_BALANCE", "GROUP_ADDED_VALUE", "GROUP_DEPRECIATION_OF_ADDED_VALUES", "GROUP_GOODWILL", "GROUP_DEPRECIATION_OF_GOODWILL", "GROUP_TOTAL_ACQUISITION_COST", "GROUP_TOTAL_CAPITALIZED_EQUITY", "GROUP_IS_SUBSIDIARY", "GROUP_NAME_OF_PARENT_COMPANY", "GROUP_BUSINESS_OFFICE_PARENT_COMPANY", "GROUP_EXCLUDED_FROM_CONSOLIDATION", "GROUP_EXCLUDED_FROM_CONSOLIDATION_JUSTIFICATION", "GROUP_TRANSACTIONS_WITH_SUBSIDIARIES", "GROUP_INTERNAL_GAIN_TRANSACTIONS", "GROUP_RECEIVABLES_AND_LIABILITIES", "OPENING_BALANCE_RECEIVABLES_TOTAL_AMOUNT_CORPORATE", "CLOSING_BALANCE_RECEIVABLES_TOTAL_AMOUNT_CORPORATE", "OPENING_BALANCE_RECEIVABLES_TOTAL_AMOUNT_COMPANY", "CLOSING_BALANCE_RECEIVABLES_TOTAL_AMOUNT_COMPANY", "OPENING_BALANCE_RECEIVABLES_TOTAL_AMOUNT_CONTROLLED_COMPANY", "CLOSING_BALANCE_RECEIVABLES_TOTAL_AMOUNT_CONTROLLED_COMPANY", "OPENING_BALANCE_LONG_TERM_TOTAL_AMOUNT_CORPORATE", "CLOSING_BALANCE_LONG_TERM_TOTAL_AMOUNT_CORPORATE", "OPENING_BALANCE_LONG_TERM_TOTAL_AMOUNT_COMPANY", "CLOSING_BALANCE_LONG_TERM_TOTAL_AMOUNT_COMPANY", "OPENING_BALANCE_LONG_TERM_TOTAL_AMOUNT_CONTROLLED_COMPANY", "CLOSING_BALANCE_LONG_TERM_TOTAL_AMOUNT_CONTROLLED_COMPANY", "OPENING_BALANCE_SHORT_TERM_TOTAL_AMOUNT_CORPORATE", "CLOSING_BALANCE_SHORT_TERM_TOTAL_AMOUNT_CORPORATE", "OPENING_BALANCE_SHORT_TERM_TOTAL_AMOUNT_COMPANY", "CLOSING_BALANCE_SHORT_TERM_TOTAL_AMOUNT_COMPANY", "OPENING_BALANCE_SHORT_TERM_TOTAL_AMOUNT_CONTROLLED_COMPANY", "CLOSING_BALANCE_SHORT_TERM_TOTAL_AMOUNT_CONTROLLED_COMPANY", "OPENING_BALANCE_MORTGAGED_ASSETS", "OPENING_BALANCE_OTHER_COLLATERAL", "OPENING_BALANCE_GUANRANTEES", "GROUP_RECEIVABLES_AND_LIABILITIES_ADDITIONAL_INFO", "RECEIVABLES_FALL_DUE_LATER_THAN_ONE_YEAR", "RECEIVABLES_ADDITIONAL_INFORMATION", "ACTUAL_VALUE_FINACIAL_INSTRUMENTS", "ACTUAL_VALUE_FINACIAL_INSTRUMENTS_ASSET", "ACTUAL_VALUE_FINACIAL_INSTRUMENTS_REAL_VALUE", "ACTUAL_VALUE_FINACIAL_INSTRUMENTS_VALUE_ADJUSTMENT", "ACTUAL_VALUE_FINACIAL_INSTRUMENTS_ADDITIONAL_INFORMATION", "ACTUAL_VALUE_FINACIAL_INSTRUMENTS_DESCRIPTION", "HOLDING_OWN_SHARES", "HOLDING_OWN_SHARES_NUMBER_OF_SHARES", "HOLDING_OWN_SHARES_NOMINAL_VALUE_OF_SHARES", "HOLDING_OWN_SHARES_PART_OF_SHARE_CAPITAL", "OWN_SHARES_ACQUISITIONS_NUMBER_OF_SHARES_ACQUIRED", "PARENT_COMPANY_SHARES_ACQUISITIONS_NUMBER_OF_SHARES_ACQUIRED", "OWN_SHARES_ACQUISITIONS_REMUNERATION", "PARENT_COMPANY_SHARES_ACQUISITIONS_REMUNERATION", "OWN_SHARES_ACQUISITIONS_PART_OF_SHARE_CAPITAL", "PARENT_COMPANY_SHARES_ACQUISITIONS_PART_OF_SHARE_CAPITAL", "OWN_SHARES_ACQUISITIONS_BACKGROUND_ACQUISITIONS", "PARENT_COMPANY_SHARES_ACQUISITIONS_BACKGROUND_ACQUISITIONS", "OWN_SHARES_DISPOSAL_NUMBER_OF_SHARES_ACQUIRED", "OWN_SHARES_DISPOSAL_NUMBER_OF_SHARES_DISPOSED", "PARENT_COMPANY_SHARES_DISPOSAL_NUMBER_OF_SHARES_ACQUIRED", "PARENT_COMPANY_SHARES_DISPOSAL_NUMBER_OF_SHARES_DISPOSED", "OWN_SHARES_DISPOSAL_REMUNERATION", "OWN_SHARES_DISPOSAL_REMUNERATION_", "PARENT_COMPANY_SHARES_DISPOSAL_REMUNERATION", "PARENT_COMPANY_SHARES_DISPOSAL_REMUNERATION_", "OWN_SHARES_DISPOSAL_PART_OF_SHARE_CAPITAL", "OWN_SHARES_DISPOSAL_PART_OF_SHARE_CAPITAL_", "PARENT_COMPANY_SHARES_DISPOSAL_PART_OF_SHARE_CAPITAL", "PARENT_COMPANY_SHARES_DISPOSAL_PART_OF_SHARE_CAPITAL_", "HOLDING_OWN_SHARES_THIS_YEARS_PAYOUT", "HOLDING_OWN_SHARES_PROVISION_FOR_THE_YEAR", "HOLDING_OWN_SHARES_PROVISIONS", "HOLDING_OWN_SHARES_ADDITIONAL_INFORMATION", "DEBT_DUE_FOR_PAYMENT", "DEBT_SECURED_BY_MORTGAGE", "DEBT_CAPITALISED_VALUE", "DEBT_TOTAL_NON_RECOGNIZED_WARRANTY_OBLIGATIONS", "DEBT_WARRANTY_OBLIGATIONS", "DEBT_ADDITIONAL_INFORMATION", "LOAN_AND_PROVISION_OF_SECURITY_IS_GRANTED", "LOAN_AND_PROVISION_OF_SECURITY_TOTAL_LOAN_BOARD_MEMBERS", "LOAN_AND_PROVISION_OF_SECURITY_TOTAL_LOAN_MEMBERS_OF_OTHER_BODIES", "LOAN_AND_PROVISION_OF_SECURITY_PROVISION_OF_COLLATERAL_BOARD_MEMBERS", "LOAN_AND_PROVISION_OF_SECURITY_PROVISION_OF_COLLATERAL_MEMBERS_OF_OTHER_BODIES", "LOAN_AND_PROVISION_OF_SECURITY_INTEREST_RATE_BOARD_MEMBERS", "LOAN_AND_PROVISION_OF_SECURITY_INTEREST_RATE_MEMBERS_OF_OTHER_BODIES", "LOAN_AND_PROVISION_OF_SECURITY_MAIN_TERMS_BOARD_MEMBERS", "LOAN_AND_PROVISION_OF_SECURITY_MAIN_TERMS_MEMBERS_OF_OTHER_BODIES", "LOAN_AND_PROVISION_OF_SECURITY_REIMBURSED_AMOUNT_BOARD_MEMBERS", "LOAN_AND_PROVISION_OF_SECURITY_REIMBURSED_AMOUNT_MEMBERS_OF_OTHER_BODIES", "LOAN_AND_PROVISION_OF_SECURITY_DEDUCTED_AMOUNT_BOARD_MEMBERS", "LOAN_AND_PROVISION_OF_SECURITY_DEDUCTED_AMOUNT_MEMBERS_OF_OTHER_BODIES", "LOAN_AND_PROVISION_OF_SECURITY_WAIVED_AMOUNTS_BOARD_MEMBERS", "LOAN_AND_PROVISION_OF_SECURITY_WAIVED_AMOUNTS_MEMBERS_OF_OTHER_BODIES", "LOAN_AND_PROVISION_OF_SECURITY_ADDITIONAL_INFORMATION", "FREE_NOTE_FREE_TEXT", "CUSTOM_GROUPING", "NOTE_INTERNAL" ] }, "notePostName" : { "type" : "string", "readOnly" : true }, "posts" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/YearEndReportNoteData" } }, "accountingOpeningBalance" : { "type" : "number", "readOnly" : true }, "accountingClosingBalance" : { "type" : "number", "readOnly" : true } } }, "ResponseWrapperNoteOverview" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/NoteOverview" } } }, "YearEndReportAccountingNoteData" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "note" : { "$ref" : "#/components/schemas/YearEndReportNote" }, "noteGroupType" : { "type" : "string", "readOnly" : true, "enum" : [ "EXTRAORDINARY_INCOME_GROUP", "EXTRAORDINARY_COST_GROUP", "GROUP_GROUP", "ACTUAL_VALUE_FINACIAL_INSTRUMENTS_GROUP" ] }, "noteSubTypeGroupId" : { "type" : "number", "readOnly" : true }, "postType" : { "type" : "string", "readOnly" : true, "enum" : [ "ID_FOR_NOTE", "IS_CHECKED", "UPDATED_BY", "UPDATED_DATE", "ACCOUNTS", "USE_ACCOUNTING_VALUES", "ACCOUNTING_PRINCIPLES_FREE_TEXT", "ACCOUNTING_PRINCIPLES_USE_DEFAULT_TEXT", "STILL_IN_BUSINESS", "STILL_IN_BUSINESS_INFO", "NUMBER_OF_MAN_YEARS", "OPENING_BALANCE_SALARY", "CLOSING_BALANCE_SALARY", "OPENING_BALANCE_NATIONAL_INSURANCE_CONTRIBUTIONS", "CLOSING_BALANCE_NATIONAL_INSURANCE_CONTRIBUTIONS", "OPENING_BALANCE_PENSION_COST", "CLOSING_BALANCE_PENSION_COST", "OPENING_BALANCE_OTHER_BENEFITS", "CLOSING_BALANCE_OTHER_BENEFITS", "ABOUT_MAN_YEARS_AND_SALARY", "USE_ACCOUNTING_VALUES_SPECIFICATION_OF_RESULT_ACCOUNTING", "EXTRAORDINARY_INCOME_AND_COST", "EXTRAORDINARY_INCOME_AND_COST_DESCRIPTION", "EXTRAORDINARY_INCOME_AND_COST_AMOUNT", "EXTRAORDINARY_INCOME_AND_COST_ENTRY_INCOME", "EXTRAORDINARY_INCOME_AND_COST_ENTRY_EXPENSE", "EXTRAORDINARY_INCOME_AND_COST_ADDITIONAL_INFORMATION", "FIXED_ASSETS_OPENING_ACQUISITION_COST_TANGIBLE_FIXED_ASSETS", "FIXED_ASSETS_OPENING_ACQUISITION_COST_INTANGIBLE_ASSETS", "FIXED_ASSETS_INFLOW_IN_THE_YEAR_TANGIBLE_FIXED_ASSETS", "FIXED_ASSETS_INFLOW_IN_THE_YEAR_INTANGIBLE_ASSETS", "FIXED_ASSETS_DISPOSAL_IN_THE_YEAR_TANGIBLE_FIXED_ASSETS", "FIXED_ASSETS_DISPOSAL_IN_THE_YEAR_INTANGIBLE_ASSETS", "FIXED_ASSETS_CLOSING_ACQUISITION_COST", "FIXED_ASSETS_TOTAL_DEPRECIATIONS_TANGIBLE_FIXED_ASSETS", "FIXED_ASSETS_TOTAL_DEPRECIATIONS_INTANGIBLE_ASSETS", "FIXED_ASSETS_CLOSING_CAPITALISED_VALUE", "FIXED_ASSETS_DEPRECIATIONS_TANGIBLE_FIXED_ASSETS", "FIXED_ASSETS_DEPRECIATIONS_INTANGIBLE_ASSETS", "FIXED_ASSETS_ECONOMIC_LIFE", "FIXED_ASSETS_DEPRECIATION_SCHEDULE_INTANGIBLE_ASSETS", "FIXED_ASSETS_ACQUISITION_COST", "FIXED_ASSETS_GOODWILL", "FIXED_ASSETS_DEPRECIATION_SCHEDULE", "FIXED_ASSETS_ADDITIONAL_INFORMATION", "FIXED_ASSETS_USE_ACCOUNTING_VALUES", "GROUP", "GROUP_INVESTMENTS", "GROUP_OPENING_BALANCE", "GROUP_REVENUE_RECOGNIZED_AS_INCOME", "GROUP_OTHER_CHANGES", "GROUP_CLOSING_BALANCE", "GROUP_ADDED_VALUE", "GROUP_DEPRECIATION_OF_ADDED_VALUES", "GROUP_GOODWILL", "GROUP_DEPRECIATION_OF_GOODWILL", "GROUP_TOTAL_ACQUISITION_COST", "GROUP_TOTAL_CAPITALIZED_EQUITY", "GROUP_IS_SUBSIDIARY", "GROUP_NAME_OF_PARENT_COMPANY", "GROUP_BUSINESS_OFFICE_PARENT_COMPANY", "GROUP_EXCLUDED_FROM_CONSOLIDATION", "GROUP_EXCLUDED_FROM_CONSOLIDATION_JUSTIFICATION", "GROUP_TRANSACTIONS_WITH_SUBSIDIARIES", "GROUP_INTERNAL_GAIN_TRANSACTIONS", "GROUP_RECEIVABLES_AND_LIABILITIES", "OPENING_BALANCE_RECEIVABLES_TOTAL_AMOUNT_CORPORATE", "CLOSING_BALANCE_RECEIVABLES_TOTAL_AMOUNT_CORPORATE", "OPENING_BALANCE_RECEIVABLES_TOTAL_AMOUNT_COMPANY", "CLOSING_BALANCE_RECEIVABLES_TOTAL_AMOUNT_COMPANY", "OPENING_BALANCE_RECEIVABLES_TOTAL_AMOUNT_CONTROLLED_COMPANY", "CLOSING_BALANCE_RECEIVABLES_TOTAL_AMOUNT_CONTROLLED_COMPANY", "OPENING_BALANCE_LONG_TERM_TOTAL_AMOUNT_CORPORATE", "CLOSING_BALANCE_LONG_TERM_TOTAL_AMOUNT_CORPORATE", "OPENING_BALANCE_LONG_TERM_TOTAL_AMOUNT_COMPANY", "CLOSING_BALANCE_LONG_TERM_TOTAL_AMOUNT_COMPANY", "OPENING_BALANCE_LONG_TERM_TOTAL_AMOUNT_CONTROLLED_COMPANY", "CLOSING_BALANCE_LONG_TERM_TOTAL_AMOUNT_CONTROLLED_COMPANY", "OPENING_BALANCE_SHORT_TERM_TOTAL_AMOUNT_CORPORATE", "CLOSING_BALANCE_SHORT_TERM_TOTAL_AMOUNT_CORPORATE", "OPENING_BALANCE_SHORT_TERM_TOTAL_AMOUNT_COMPANY", "CLOSING_BALANCE_SHORT_TERM_TOTAL_AMOUNT_COMPANY", "OPENING_BALANCE_SHORT_TERM_TOTAL_AMOUNT_CONTROLLED_COMPANY", "CLOSING_BALANCE_SHORT_TERM_TOTAL_AMOUNT_CONTROLLED_COMPANY", "OPENING_BALANCE_MORTGAGED_ASSETS", "OPENING_BALANCE_OTHER_COLLATERAL", "OPENING_BALANCE_GUANRANTEES", "GROUP_RECEIVABLES_AND_LIABILITIES_ADDITIONAL_INFO", "RECEIVABLES_FALL_DUE_LATER_THAN_ONE_YEAR", "RECEIVABLES_ADDITIONAL_INFORMATION", "ACTUAL_VALUE_FINACIAL_INSTRUMENTS", "ACTUAL_VALUE_FINACIAL_INSTRUMENTS_ASSET", "ACTUAL_VALUE_FINACIAL_INSTRUMENTS_REAL_VALUE", "ACTUAL_VALUE_FINACIAL_INSTRUMENTS_VALUE_ADJUSTMENT", "ACTUAL_VALUE_FINACIAL_INSTRUMENTS_ADDITIONAL_INFORMATION", "ACTUAL_VALUE_FINACIAL_INSTRUMENTS_DESCRIPTION", "HOLDING_OWN_SHARES", "HOLDING_OWN_SHARES_NUMBER_OF_SHARES", "HOLDING_OWN_SHARES_NOMINAL_VALUE_OF_SHARES", "HOLDING_OWN_SHARES_PART_OF_SHARE_CAPITAL", "OWN_SHARES_ACQUISITIONS_NUMBER_OF_SHARES_ACQUIRED", "PARENT_COMPANY_SHARES_ACQUISITIONS_NUMBER_OF_SHARES_ACQUIRED", "OWN_SHARES_ACQUISITIONS_REMUNERATION", "PARENT_COMPANY_SHARES_ACQUISITIONS_REMUNERATION", "OWN_SHARES_ACQUISITIONS_PART_OF_SHARE_CAPITAL", "PARENT_COMPANY_SHARES_ACQUISITIONS_PART_OF_SHARE_CAPITAL", "OWN_SHARES_ACQUISITIONS_BACKGROUND_ACQUISITIONS", "PARENT_COMPANY_SHARES_ACQUISITIONS_BACKGROUND_ACQUISITIONS", "OWN_SHARES_DISPOSAL_NUMBER_OF_SHARES_ACQUIRED", "OWN_SHARES_DISPOSAL_NUMBER_OF_SHARES_DISPOSED", "PARENT_COMPANY_SHARES_DISPOSAL_NUMBER_OF_SHARES_ACQUIRED", "PARENT_COMPANY_SHARES_DISPOSAL_NUMBER_OF_SHARES_DISPOSED", "OWN_SHARES_DISPOSAL_REMUNERATION", "OWN_SHARES_DISPOSAL_REMUNERATION_", "PARENT_COMPANY_SHARES_DISPOSAL_REMUNERATION", "PARENT_COMPANY_SHARES_DISPOSAL_REMUNERATION_", "OWN_SHARES_DISPOSAL_PART_OF_SHARE_CAPITAL", "OWN_SHARES_DISPOSAL_PART_OF_SHARE_CAPITAL_", "PARENT_COMPANY_SHARES_DISPOSAL_PART_OF_SHARE_CAPITAL", "PARENT_COMPANY_SHARES_DISPOSAL_PART_OF_SHARE_CAPITAL_", "HOLDING_OWN_SHARES_THIS_YEARS_PAYOUT", "HOLDING_OWN_SHARES_PROVISION_FOR_THE_YEAR", "HOLDING_OWN_SHARES_PROVISIONS", "HOLDING_OWN_SHARES_ADDITIONAL_INFORMATION", "DEBT_DUE_FOR_PAYMENT", "DEBT_SECURED_BY_MORTGAGE", "DEBT_CAPITALISED_VALUE", "DEBT_TOTAL_NON_RECOGNIZED_WARRANTY_OBLIGATIONS", "DEBT_WARRANTY_OBLIGATIONS", "DEBT_ADDITIONAL_INFORMATION", "LOAN_AND_PROVISION_OF_SECURITY_IS_GRANTED", "LOAN_AND_PROVISION_OF_SECURITY_TOTAL_LOAN_BOARD_MEMBERS", "LOAN_AND_PROVISION_OF_SECURITY_TOTAL_LOAN_MEMBERS_OF_OTHER_BODIES", "LOAN_AND_PROVISION_OF_SECURITY_PROVISION_OF_COLLATERAL_BOARD_MEMBERS", "LOAN_AND_PROVISION_OF_SECURITY_PROVISION_OF_COLLATERAL_MEMBERS_OF_OTHER_BODIES", "LOAN_AND_PROVISION_OF_SECURITY_INTEREST_RATE_BOARD_MEMBERS", "LOAN_AND_PROVISION_OF_SECURITY_INTEREST_RATE_MEMBERS_OF_OTHER_BODIES", "LOAN_AND_PROVISION_OF_SECURITY_MAIN_TERMS_BOARD_MEMBERS", "LOAN_AND_PROVISION_OF_SECURITY_MAIN_TERMS_MEMBERS_OF_OTHER_BODIES", "LOAN_AND_PROVISION_OF_SECURITY_REIMBURSED_AMOUNT_BOARD_MEMBERS", "LOAN_AND_PROVISION_OF_SECURITY_REIMBURSED_AMOUNT_MEMBERS_OF_OTHER_BODIES", "LOAN_AND_PROVISION_OF_SECURITY_DEDUCTED_AMOUNT_BOARD_MEMBERS", "LOAN_AND_PROVISION_OF_SECURITY_DEDUCTED_AMOUNT_MEMBERS_OF_OTHER_BODIES", "LOAN_AND_PROVISION_OF_SECURITY_WAIVED_AMOUNTS_BOARD_MEMBERS", "LOAN_AND_PROVISION_OF_SECURITY_WAIVED_AMOUNTS_MEMBERS_OF_OTHER_BODIES", "LOAN_AND_PROVISION_OF_SECURITY_ADDITIONAL_INFORMATION", "FREE_NOTE_FREE_TEXT", "CUSTOM_GROUPING", "NOTE_INTERNAL" ] }, "postValue" : { "type" : "number", "readOnly" : true }, "postMediumTextValue" : { "type" : "number", "readOnly" : true } } }, "YearEndReportNoteData" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "note" : { "$ref" : "#/components/schemas/YearEndReportNote" }, "noteGroupType" : { "type" : "string", "enum" : [ "EXTRAORDINARY_INCOME_GROUP", "EXTRAORDINARY_COST_GROUP", "GROUP_GROUP", "ACTUAL_VALUE_FINACIAL_INSTRUMENTS_GROUP" ] }, "noteSubTypeGroupId" : { "type" : "integer", "format" : "int32" }, "postType" : { "type" : "string", "enum" : [ "ID_FOR_NOTE", "IS_CHECKED", "UPDATED_BY", "UPDATED_DATE", "ACCOUNTS", "USE_ACCOUNTING_VALUES", "ACCOUNTING_PRINCIPLES_FREE_TEXT", "ACCOUNTING_PRINCIPLES_USE_DEFAULT_TEXT", "STILL_IN_BUSINESS", "STILL_IN_BUSINESS_INFO", "NUMBER_OF_MAN_YEARS", "OPENING_BALANCE_SALARY", "CLOSING_BALANCE_SALARY", "OPENING_BALANCE_NATIONAL_INSURANCE_CONTRIBUTIONS", "CLOSING_BALANCE_NATIONAL_INSURANCE_CONTRIBUTIONS", "OPENING_BALANCE_PENSION_COST", "CLOSING_BALANCE_PENSION_COST", "OPENING_BALANCE_OTHER_BENEFITS", "CLOSING_BALANCE_OTHER_BENEFITS", "ABOUT_MAN_YEARS_AND_SALARY", "USE_ACCOUNTING_VALUES_SPECIFICATION_OF_RESULT_ACCOUNTING", "EXTRAORDINARY_INCOME_AND_COST", "EXTRAORDINARY_INCOME_AND_COST_DESCRIPTION", "EXTRAORDINARY_INCOME_AND_COST_AMOUNT", "EXTRAORDINARY_INCOME_AND_COST_ENTRY_INCOME", "EXTRAORDINARY_INCOME_AND_COST_ENTRY_EXPENSE", "EXTRAORDINARY_INCOME_AND_COST_ADDITIONAL_INFORMATION", "FIXED_ASSETS_OPENING_ACQUISITION_COST_TANGIBLE_FIXED_ASSETS", "FIXED_ASSETS_OPENING_ACQUISITION_COST_INTANGIBLE_ASSETS", "FIXED_ASSETS_INFLOW_IN_THE_YEAR_TANGIBLE_FIXED_ASSETS", "FIXED_ASSETS_INFLOW_IN_THE_YEAR_INTANGIBLE_ASSETS", "FIXED_ASSETS_DISPOSAL_IN_THE_YEAR_TANGIBLE_FIXED_ASSETS", "FIXED_ASSETS_DISPOSAL_IN_THE_YEAR_INTANGIBLE_ASSETS", "FIXED_ASSETS_CLOSING_ACQUISITION_COST", "FIXED_ASSETS_TOTAL_DEPRECIATIONS_TANGIBLE_FIXED_ASSETS", "FIXED_ASSETS_TOTAL_DEPRECIATIONS_INTANGIBLE_ASSETS", "FIXED_ASSETS_CLOSING_CAPITALISED_VALUE", "FIXED_ASSETS_DEPRECIATIONS_TANGIBLE_FIXED_ASSETS", "FIXED_ASSETS_DEPRECIATIONS_INTANGIBLE_ASSETS", "FIXED_ASSETS_ECONOMIC_LIFE", "FIXED_ASSETS_DEPRECIATION_SCHEDULE_INTANGIBLE_ASSETS", "FIXED_ASSETS_ACQUISITION_COST", "FIXED_ASSETS_GOODWILL", "FIXED_ASSETS_DEPRECIATION_SCHEDULE", "FIXED_ASSETS_ADDITIONAL_INFORMATION", "FIXED_ASSETS_USE_ACCOUNTING_VALUES", "GROUP", "GROUP_INVESTMENTS", "GROUP_OPENING_BALANCE", "GROUP_REVENUE_RECOGNIZED_AS_INCOME", "GROUP_OTHER_CHANGES", "GROUP_CLOSING_BALANCE", "GROUP_ADDED_VALUE", "GROUP_DEPRECIATION_OF_ADDED_VALUES", "GROUP_GOODWILL", "GROUP_DEPRECIATION_OF_GOODWILL", "GROUP_TOTAL_ACQUISITION_COST", "GROUP_TOTAL_CAPITALIZED_EQUITY", "GROUP_IS_SUBSIDIARY", "GROUP_NAME_OF_PARENT_COMPANY", "GROUP_BUSINESS_OFFICE_PARENT_COMPANY", "GROUP_EXCLUDED_FROM_CONSOLIDATION", "GROUP_EXCLUDED_FROM_CONSOLIDATION_JUSTIFICATION", "GROUP_TRANSACTIONS_WITH_SUBSIDIARIES", "GROUP_INTERNAL_GAIN_TRANSACTIONS", "GROUP_RECEIVABLES_AND_LIABILITIES", "OPENING_BALANCE_RECEIVABLES_TOTAL_AMOUNT_CORPORATE", "CLOSING_BALANCE_RECEIVABLES_TOTAL_AMOUNT_CORPORATE", "OPENING_BALANCE_RECEIVABLES_TOTAL_AMOUNT_COMPANY", "CLOSING_BALANCE_RECEIVABLES_TOTAL_AMOUNT_COMPANY", "OPENING_BALANCE_RECEIVABLES_TOTAL_AMOUNT_CONTROLLED_COMPANY", "CLOSING_BALANCE_RECEIVABLES_TOTAL_AMOUNT_CONTROLLED_COMPANY", "OPENING_BALANCE_LONG_TERM_TOTAL_AMOUNT_CORPORATE", "CLOSING_BALANCE_LONG_TERM_TOTAL_AMOUNT_CORPORATE", "OPENING_BALANCE_LONG_TERM_TOTAL_AMOUNT_COMPANY", "CLOSING_BALANCE_LONG_TERM_TOTAL_AMOUNT_COMPANY", "OPENING_BALANCE_LONG_TERM_TOTAL_AMOUNT_CONTROLLED_COMPANY", "CLOSING_BALANCE_LONG_TERM_TOTAL_AMOUNT_CONTROLLED_COMPANY", "OPENING_BALANCE_SHORT_TERM_TOTAL_AMOUNT_CORPORATE", "CLOSING_BALANCE_SHORT_TERM_TOTAL_AMOUNT_CORPORATE", "OPENING_BALANCE_SHORT_TERM_TOTAL_AMOUNT_COMPANY", "CLOSING_BALANCE_SHORT_TERM_TOTAL_AMOUNT_COMPANY", "OPENING_BALANCE_SHORT_TERM_TOTAL_AMOUNT_CONTROLLED_COMPANY", "CLOSING_BALANCE_SHORT_TERM_TOTAL_AMOUNT_CONTROLLED_COMPANY", "OPENING_BALANCE_MORTGAGED_ASSETS", "OPENING_BALANCE_OTHER_COLLATERAL", "OPENING_BALANCE_GUANRANTEES", "GROUP_RECEIVABLES_AND_LIABILITIES_ADDITIONAL_INFO", "RECEIVABLES_FALL_DUE_LATER_THAN_ONE_YEAR", "RECEIVABLES_ADDITIONAL_INFORMATION", "ACTUAL_VALUE_FINACIAL_INSTRUMENTS", "ACTUAL_VALUE_FINACIAL_INSTRUMENTS_ASSET", "ACTUAL_VALUE_FINACIAL_INSTRUMENTS_REAL_VALUE", "ACTUAL_VALUE_FINACIAL_INSTRUMENTS_VALUE_ADJUSTMENT", "ACTUAL_VALUE_FINACIAL_INSTRUMENTS_ADDITIONAL_INFORMATION", "ACTUAL_VALUE_FINACIAL_INSTRUMENTS_DESCRIPTION", "HOLDING_OWN_SHARES", "HOLDING_OWN_SHARES_NUMBER_OF_SHARES", "HOLDING_OWN_SHARES_NOMINAL_VALUE_OF_SHARES", "HOLDING_OWN_SHARES_PART_OF_SHARE_CAPITAL", "OWN_SHARES_ACQUISITIONS_NUMBER_OF_SHARES_ACQUIRED", "PARENT_COMPANY_SHARES_ACQUISITIONS_NUMBER_OF_SHARES_ACQUIRED", "OWN_SHARES_ACQUISITIONS_REMUNERATION", "PARENT_COMPANY_SHARES_ACQUISITIONS_REMUNERATION", "OWN_SHARES_ACQUISITIONS_PART_OF_SHARE_CAPITAL", "PARENT_COMPANY_SHARES_ACQUISITIONS_PART_OF_SHARE_CAPITAL", "OWN_SHARES_ACQUISITIONS_BACKGROUND_ACQUISITIONS", "PARENT_COMPANY_SHARES_ACQUISITIONS_BACKGROUND_ACQUISITIONS", "OWN_SHARES_DISPOSAL_NUMBER_OF_SHARES_ACQUIRED", "OWN_SHARES_DISPOSAL_NUMBER_OF_SHARES_DISPOSED", "PARENT_COMPANY_SHARES_DISPOSAL_NUMBER_OF_SHARES_ACQUIRED", "PARENT_COMPANY_SHARES_DISPOSAL_NUMBER_OF_SHARES_DISPOSED", "OWN_SHARES_DISPOSAL_REMUNERATION", "OWN_SHARES_DISPOSAL_REMUNERATION_", "PARENT_COMPANY_SHARES_DISPOSAL_REMUNERATION", "PARENT_COMPANY_SHARES_DISPOSAL_REMUNERATION_", "OWN_SHARES_DISPOSAL_PART_OF_SHARE_CAPITAL", "OWN_SHARES_DISPOSAL_PART_OF_SHARE_CAPITAL_", "PARENT_COMPANY_SHARES_DISPOSAL_PART_OF_SHARE_CAPITAL", "PARENT_COMPANY_SHARES_DISPOSAL_PART_OF_SHARE_CAPITAL_", "HOLDING_OWN_SHARES_THIS_YEARS_PAYOUT", "HOLDING_OWN_SHARES_PROVISION_FOR_THE_YEAR", "HOLDING_OWN_SHARES_PROVISIONS", "HOLDING_OWN_SHARES_ADDITIONAL_INFORMATION", "DEBT_DUE_FOR_PAYMENT", "DEBT_SECURED_BY_MORTGAGE", "DEBT_CAPITALISED_VALUE", "DEBT_TOTAL_NON_RECOGNIZED_WARRANTY_OBLIGATIONS", "DEBT_WARRANTY_OBLIGATIONS", "DEBT_ADDITIONAL_INFORMATION", "LOAN_AND_PROVISION_OF_SECURITY_IS_GRANTED", "LOAN_AND_PROVISION_OF_SECURITY_TOTAL_LOAN_BOARD_MEMBERS", "LOAN_AND_PROVISION_OF_SECURITY_TOTAL_LOAN_MEMBERS_OF_OTHER_BODIES", "LOAN_AND_PROVISION_OF_SECURITY_PROVISION_OF_COLLATERAL_BOARD_MEMBERS", "LOAN_AND_PROVISION_OF_SECURITY_PROVISION_OF_COLLATERAL_MEMBERS_OF_OTHER_BODIES", "LOAN_AND_PROVISION_OF_SECURITY_INTEREST_RATE_BOARD_MEMBERS", "LOAN_AND_PROVISION_OF_SECURITY_INTEREST_RATE_MEMBERS_OF_OTHER_BODIES", "LOAN_AND_PROVISION_OF_SECURITY_MAIN_TERMS_BOARD_MEMBERS", "LOAN_AND_PROVISION_OF_SECURITY_MAIN_TERMS_MEMBERS_OF_OTHER_BODIES", "LOAN_AND_PROVISION_OF_SECURITY_REIMBURSED_AMOUNT_BOARD_MEMBERS", "LOAN_AND_PROVISION_OF_SECURITY_REIMBURSED_AMOUNT_MEMBERS_OF_OTHER_BODIES", "LOAN_AND_PROVISION_OF_SECURITY_DEDUCTED_AMOUNT_BOARD_MEMBERS", "LOAN_AND_PROVISION_OF_SECURITY_DEDUCTED_AMOUNT_MEMBERS_OF_OTHER_BODIES", "LOAN_AND_PROVISION_OF_SECURITY_WAIVED_AMOUNTS_BOARD_MEMBERS", "LOAN_AND_PROVISION_OF_SECURITY_WAIVED_AMOUNTS_MEMBERS_OF_OTHER_BODIES", "LOAN_AND_PROVISION_OF_SECURITY_ADDITIONAL_INFORMATION", "FREE_NOTE_FREE_TEXT", "CUSTOM_GROUPING", "NOTE_INTERNAL" ] }, "postValue" : { "type" : "string" }, "postMediumTextValue" : { "type" : "string" } } }, "ResponseWrapperNoteContainer" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/NoteContainer" } } }, "ParticipantAssessmentReport" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "groupId" : { "type" : "integer", "description" : "Group ID", "format" : "int32" }, "subGroupId" : { "type" : "integer", "description" : "Sub group ID", "format" : "int32" }, "posts" : { "type" : "array", "description" : "Associated posts", "items" : { "$ref" : "#/components/schemas/GenericData" } }, "companyName" : { "type" : "string", "description" : "Company name" }, "orgNumber" : { "type" : "string", "description" : "Organization number" }, "municipalityNumber" : { "type" : "string", "description" : "Municipality number" }, "countryCode" : { "type" : "string", "description" : "Country code" }, "valueBeforeAppreciationForNetAssets" : { "type" : "number", "description" : "Value before appreciation for net assets" }, "debt" : { "type" : "number", "description" : "Debt" }, "ordinaryIncome" : { "type" : "number", "description" : "Ordinary income" }, "loss" : { "type" : "number", "description" : "Loss" }, "paymentToParticipant" : { "type" : "number", "description" : "Payment to participant" }, "gainOnRealizationOfShare" : { "type" : "number", "description" : "Gain on realization of share" }, "lossOnRealizationOfShare" : { "type" : "number", "description" : "Loss on realization of share" } } }, "ListResponseParticipantAssessmentReport" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ParticipantAssessmentReport" } } } }, "ResponseWrapperParticipantAssessmentReport" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ParticipantAssessmentReport" } } }, "BalanceGroup" : { "type" : "object", "properties" : { "name" : { "type" : "string", "readOnly" : true }, "type" : { "type" : "string", "readOnly" : true }, "grouping" : { "type" : "string", "readOnly" : true }, "openingBalance" : { "type" : "number", "readOnly" : true }, "closingBalance" : { "type" : "number", "readOnly" : true }, "manuallyCorrectedOpeningBalance" : { "type" : "number", "readOnly" : true }, "manuallyCorrectedClosingBalance" : { "type" : "number", "readOnly" : true }, "manualCorrections" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ManualCorrection" } }, "negate" : { "type" : "boolean", "description" : "The amount from the balance are not prefixed. This property indicates if the value should be negated or not.", "readOnly" : true } } }, "ManualCorrection" : { "type" : "object", "properties" : { "postId" : { "type" : "integer", "description" : "postTypeId", "format" : "int64", "readOnly" : true }, "name" : { "type" : "string", "description" : "name", "readOnly" : true }, "incomeGroupId" : { "type" : "integer", "description" : "incomeGroupId", "format" : "int32", "readOnly" : true }, "grouping" : { "type" : "string", "description" : "grouping", "readOnly" : true }, "postType" : { "type" : "string", "description" : "Post type", "enum" : [ "INTEREST_ON_ENTERPRISE_DEBT", "CAPITAL_INCOME", "CAPITAL_EXPENSES", "REDUCTION_AMOUNT_FOR_RENTED_PROPERTY", "GAINS_FROM_REALISATION_AGRICULTURE_OR_FORESTRY", "NUMBER_OF_MONTHS_WITH_OPERATIONS", "RISK_FREE_INTEREST_RATE", "ENTERPRISE_DEBT_OB", "ENTERPRISE_DEBT_CB", "PROFIT_SHARE_SPOUSE", "NEGATIVE_PERSONAL_INCOME_PREVIOUS_YEAR", "COORDINATION_ENK", "COORDINATION_ANS_DA", "COORDINATION_LOTT", "NEGATIVE_PERSONAL_INCOME_CARRIED_FORWARD_NEXT_YEAR", "BUSINESS_TYPE_DESCRIPTION", "INDUSTRY_TYPE", "INCOME_AMOUNT_FROM_PROFIT_AND_LOSS_ACCOUNT", "DEDUCTED_AMOUNT_FROM_PROFIT_AND_LOSS_ACCOUNT", "MILK_QUOTA", "MANUALLY_CORRECT_RISK_FREE_AMOUNT", "BALANCE_GROUP_A_OPENING_BALANCE", "BALANCE_GROUP_A_CLOSING_BALANCE", "BALANCE_GROUP_B_OPENING_BALANCE", "BALANCE_GROUP_B_CLOSING_BALANCE", "BALANCE_GROUP_C_OPENING_BALANCE", "BALANCE_GROUP_C_CLOSING_BALANCE", "BALANCE_GROUP_D_OPENING_BALANCE", "BALANCE_GROUP_D_CLOSING_BALANCE", "BALANCE_GROUP_E_OPENING_BALANCE", "BALANCE_GROUP_E_CLOSING_BALANCE", "BALANCE_GROUP_F_OPENING_BALANCE", "BALANCE_GROUP_F_CLOSING_BALANCE", "BALANCE_GROUP_G_OPENING_BALANCE", "BALANCE_GROUP_G_CLOSING_BALANCE", "BALANCE_GROUP_H_OPENING_BALANCE", "BALANCE_GROUP_H_CLOSING_BALANCE", "BALANCE_GROUP_I_OPENING_BALANCE", "BALANCE_GROUP_I_CLOSING_BALANCE", "BALANCE_GROUP_J_OPENING_BALANCE", "BALANCE_GROUP_J_CLOSING_BALANCE", "STRAIGHT_LINE_DEPRECIATION_FIXED_ASSETS_OPENING_BALANCE", "STRAIGHT_LINE_DEPRECIATION_FIXED_ASSETS_CLOSING_BALANCE", "NON_DEPRECIABLE_FIXED_ASSETS_OPENING_BALANCE", "NON_DEPRECIABLE_FIXED_ASSETS_CLOSING_BALANCE", "ACQUIRED_INTELLECTUAL_PROPERTY_OPENING_BALANCE", "ACQUIRED_INTELLECTUAL_PROPERTY_CLOSING_BALANCE", "ACTIVATED_RESEARCH_AND_DEVELOPMENT_COST_OPENING_BALANCE", "ACTIVATED_RESEARCH_AND_DEVELOPMENT_COST_CLOSING_BALANCE", "INVENTORIES_OPENING_BALANCE", "INVENTORIES_CLOSING_BALANCE", "CUSTOMER_REVEIVABLES_OPENING_BALANCE", "CUSTOMER_REVEIVABLES_CLOSING_BALANCE", "DEBTS_TO_SUPPLIERS_OPENING_BALANCE", "DEBTS_TO_SUPPLIERS_CLOSING_BALANCE", "ENTERPRISE_DEBT_OPENING_BALANCE", "ENTERPRISE_DEBT_CLOSING_BALANCE", "DISTRIBUTE_INCOME", "NEGATIVE_PERSONAL_INCOME_PREVIOUS_YEAR_SPOUSE", "COORDINATION_ENK_SPOUSE", "COORDINATION_ANS_DA_SPOUSE", "COORDINATION_LOTT_SPOUSE", "NEGATIVE_PERSONAL_INCOME_CARRIED_FORWARD_NEXT_YEAR_SPOUSE", "DISTRIBUTE_CAPITAL_DEBT_WITH_SPOUSE" ] }, "postValue" : { "type" : "string", "description" : "Post value" } }, "description" : "List of manual corrections", "readOnly" : true }, "PersonalIncome" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "incomeGroupId" : { "type" : "integer", "format" : "int32" }, "businessActivityType" : { "type" : "string", "enum" : [ "OTHER_COMMERCIAL_ACTIVITIES", "OTHER_COMMERCIAL_ACTIVITIES_2", "OTHER_COMMERCIAL_ACTIVITIES_3", "OTHER_COMMERCIAL_ACTIVITIES_4", "AGRICULTURE_HORTICULTURE_FUR_FARMING", "FISHING_AND_HUNTING_AT_SEA", "REINDEER_HUSBANDRY", "FAMILY_DAY_CARE_CENTRE_IN_OWN_HOME", "SLATE_QUARRYING", "FORESTRY", "NOT_INDUSTRY" ] }, "postType" : { "type" : "string", "enum" : [ "INTEREST_ON_ENTERPRISE_DEBT", "CAPITAL_INCOME", "CAPITAL_EXPENSES", "REDUCTION_AMOUNT_FOR_RENTED_PROPERTY", "GAINS_FROM_REALISATION_AGRICULTURE_OR_FORESTRY", "NUMBER_OF_MONTHS_WITH_OPERATIONS", "RISK_FREE_INTEREST_RATE", "ENTERPRISE_DEBT_OB", "ENTERPRISE_DEBT_CB", "PROFIT_SHARE_SPOUSE", "NEGATIVE_PERSONAL_INCOME_PREVIOUS_YEAR", "COORDINATION_ENK", "COORDINATION_ANS_DA", "COORDINATION_LOTT", "NEGATIVE_PERSONAL_INCOME_CARRIED_FORWARD_NEXT_YEAR", "BUSINESS_TYPE_DESCRIPTION", "INDUSTRY_TYPE", "INCOME_AMOUNT_FROM_PROFIT_AND_LOSS_ACCOUNT", "DEDUCTED_AMOUNT_FROM_PROFIT_AND_LOSS_ACCOUNT", "MILK_QUOTA", "MANUALLY_CORRECT_RISK_FREE_AMOUNT", "BALANCE_GROUP_A_OPENING_BALANCE", "BALANCE_GROUP_A_CLOSING_BALANCE", "BALANCE_GROUP_B_OPENING_BALANCE", "BALANCE_GROUP_B_CLOSING_BALANCE", "BALANCE_GROUP_C_OPENING_BALANCE", "BALANCE_GROUP_C_CLOSING_BALANCE", "BALANCE_GROUP_D_OPENING_BALANCE", "BALANCE_GROUP_D_CLOSING_BALANCE", "BALANCE_GROUP_E_OPENING_BALANCE", "BALANCE_GROUP_E_CLOSING_BALANCE", "BALANCE_GROUP_F_OPENING_BALANCE", "BALANCE_GROUP_F_CLOSING_BALANCE", "BALANCE_GROUP_G_OPENING_BALANCE", "BALANCE_GROUP_G_CLOSING_BALANCE", "BALANCE_GROUP_H_OPENING_BALANCE", "BALANCE_GROUP_H_CLOSING_BALANCE", "BALANCE_GROUP_I_OPENING_BALANCE", "BALANCE_GROUP_I_CLOSING_BALANCE", "BALANCE_GROUP_J_OPENING_BALANCE", "BALANCE_GROUP_J_CLOSING_BALANCE", "STRAIGHT_LINE_DEPRECIATION_FIXED_ASSETS_OPENING_BALANCE", "STRAIGHT_LINE_DEPRECIATION_FIXED_ASSETS_CLOSING_BALANCE", "NON_DEPRECIABLE_FIXED_ASSETS_OPENING_BALANCE", "NON_DEPRECIABLE_FIXED_ASSETS_CLOSING_BALANCE", "ACQUIRED_INTELLECTUAL_PROPERTY_OPENING_BALANCE", "ACQUIRED_INTELLECTUAL_PROPERTY_CLOSING_BALANCE", "ACTIVATED_RESEARCH_AND_DEVELOPMENT_COST_OPENING_BALANCE", "ACTIVATED_RESEARCH_AND_DEVELOPMENT_COST_CLOSING_BALANCE", "INVENTORIES_OPENING_BALANCE", "INVENTORIES_CLOSING_BALANCE", "CUSTOMER_REVEIVABLES_OPENING_BALANCE", "CUSTOMER_REVEIVABLES_CLOSING_BALANCE", "DEBTS_TO_SUPPLIERS_OPENING_BALANCE", "DEBTS_TO_SUPPLIERS_CLOSING_BALANCE", "ENTERPRISE_DEBT_OPENING_BALANCE", "ENTERPRISE_DEBT_CLOSING_BALANCE", "DISTRIBUTE_INCOME", "NEGATIVE_PERSONAL_INCOME_PREVIOUS_YEAR_SPOUSE", "COORDINATION_ENK_SPOUSE", "COORDINATION_ANS_DA_SPOUSE", "COORDINATION_LOTT_SPOUSE", "NEGATIVE_PERSONAL_INCOME_CARRIED_FORWARD_NEXT_YEAR_SPOUSE", "DISTRIBUTE_CAPITAL_DEBT_WITH_SPOUSE" ] }, "postValue" : { "type" : "string" } } }, "PersonalIncomeOverview" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "incomeGroupId" : { "minimum" : 0, "type" : "integer", "format" : "int32" }, "businessActivityType" : { "type" : "string", "enum" : [ "OTHER_COMMERCIAL_ACTIVITIES", "OTHER_COMMERCIAL_ACTIVITIES_2", "OTHER_COMMERCIAL_ACTIVITIES_3", "OTHER_COMMERCIAL_ACTIVITIES_4", "AGRICULTURE_HORTICULTURE_FUR_FARMING", "FISHING_AND_HUNTING_AT_SEA", "REINDEER_HUSBANDRY", "FAMILY_DAY_CARE_CENTRE_IN_OWN_HOME", "SLATE_QUARRYING", "FORESTRY", "NOT_INDUSTRY" ] }, "industryId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "businessActivityTitle" : { "type" : "string", "readOnly" : true }, "businessActivityDescription" : { "type" : "string", "readOnly" : true }, "businessIncome" : { "type" : "number", "readOnly" : true }, "businessIncomeForestry" : { "type" : "number", "readOnly" : true }, "businessIncomeAgriculture" : { "type" : "number", "readOnly" : true }, "businessIncomeForestryAndAgriculture" : { "type" : "number", "readOnly" : true }, "biomassCorrectionForestry" : { "type" : "number", "readOnly" : true }, "biomassCorrectionAgriculture" : { "type" : "number", "readOnly" : true }, "correctionReindeerHusbandry" : { "type" : "number", "readOnly" : true }, "hideFromPersonalIncome" : { "type" : "boolean", "readOnly" : true }, "showForestryAndAgricultureCombo" : { "type" : "boolean", "readOnly" : true }, "spouseSharingPercentage" : { "type" : "number", "readOnly" : true }, "businessIncomeAfterSharedWithSpouse" : { "type" : "number", "readOnly" : true }, "businessIncomeAfterSharedWithSpouseForestry" : { "type" : "number", "readOnly" : true }, "businessIncomeAfterSharedWithSpouseAgriculture" : { "type" : "number", "readOnly" : true }, "businessIncomeAfterCorrections" : { "type" : "number", "readOnly" : true }, "correctedBusinessIncome" : { "type" : "number", "readOnly" : true }, "deductionsForRiskFreeReturn" : { "type" : "number", "readOnly" : true }, "riskFreeReturn" : { "type" : "number", "readOnly" : true }, "validBasisForRiskFreeReturn" : { "type" : "boolean", "readOnly" : true }, "personalIncomeForTheYear" : { "type" : "number", "readOnly" : true }, "afterSharedWithSpouse" : { "type" : "number", "readOnly" : true }, "calculatedPersonalIncomeSpouse" : { "type" : "number", "readOnly" : true }, "calculatedBusinessIncomeSpouse" : { "type" : "number", "readOnly" : true }, "calculatedBusinessIncomeSpouseForestry" : { "type" : "number", "readOnly" : true }, "calculatedBusinessIncomeSpouseAgriculture" : { "type" : "number", "readOnly" : true }, "afterCoordination" : { "type" : "number", "readOnly" : true }, "sumOpeningBalanceBeforeEnterpriseDebt" : { "type" : "number", "readOnly" : true }, "sumClosingBalanceBeforeEnterpriseDebt" : { "type" : "number", "readOnly" : true }, "sumOpeningBalanceAfterEnterpriseDebt" : { "type" : "number", "readOnly" : true }, "sumClosingBalanceAfterEnterpriseDebt" : { "type" : "number", "readOnly" : true }, "basisForRiskFreeReturnExEnterpriseDebt" : { "type" : "number", "readOnly" : true }, "basisEnterpriseDebt" : { "type" : "number", "readOnly" : true }, "basisForRiskFreeReturnIncEnterpriseDebt" : { "type" : "number", "readOnly" : true }, "sumManualCorrectionsOpeningBalanceBeforeEnterpriseDebt" : { "type" : "number", "readOnly" : true }, "sumManualCorrectionsClosingBalanceBeforeEnterpriseDebt" : { "type" : "number", "readOnly" : true }, "balanceGroups" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/BalanceGroup" } }, "posts" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/PersonalIncome" } } } }, "ResponseWrapperListPersonalIncomeOverview" : { "type" : "object", "properties" : { "value" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/PersonalIncomeOverview" } } } }, "ResponseWrapperPersonalIncomeOverview" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/PersonalIncomeOverview" } } }, "PostPrefill" : { "type" : "object", "properties" : { "year" : { "type" : "integer", "description" : "Year where subject should be prefilled", "format" : "int32" }, "subject" : { "type" : "string", "description" : "Subject to prefill", "enum" : [ "REAL_ESTATE", "SHARES_AND_SECURITIES", "RESEARCH_AND_DEVELOPMENT" ] } } }, "ResponseWrapperTaxAdminCalculatedMarketValue" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/TaxAdminCalculatedMarketValue" } } }, "TaxAdminCalculatedMarketValue" : { "type" : "object", "properties" : { "marketValue" : { "type" : "number", "readOnly" : true } } }, "ResponseWrapperTaxAdminCalculatedRentalValue" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/TaxAdminCalculatedRentalValue" } } }, "TaxAdminCalculatedRentalValue" : { "type" : "object", "properties" : { "rentalValue" : { "type" : "number", "readOnly" : true } } }, "ResponseWrapperTaxAdminSearchResponse" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/TaxAdminSearchResponse" } } }, "TaxAdminPhysicalAddress" : { "type" : "object", "properties" : { "sergPropertyIdentifier" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "uniquePropertyIdentifier" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "addressName" : { "type" : "string", "readOnly" : true }, "houseNo" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "zipCode" : { "type" : "string", "readOnly" : true }, "postalPlaceName" : { "type" : "string", "readOnly" : true }, "highlight" : { "type" : "string", "readOnly" : true }, "properties" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/TaxAdminProperty" } } }, "readOnly" : true }, "TaxAdminProperty" : { "type" : "object", "properties" : { "sergPropertyIdentifier" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "uniquePropertyIdentifier" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "propertyCreatedDate" : { "type" : "string", "readOnly" : true }, "municipalityNo" : { "type" : "string", "readOnly" : true }, "municipalityName" : { "type" : "string", "readOnly" : true }, "cadastralUnitNo" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "propertyUnitNo" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "leaseholdNo" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "sectionNo" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "historical" : { "type" : "boolean", "readOnly" : true }, "highlight" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "TaxAdminSearchResponse" : { "type" : "object", "properties" : { "resultSize" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "properties" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/TaxAdminProperty" } }, "physicalAddresses" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/TaxAdminPhysicalAddress" } }, "searchStart" : { "type" : "string", "readOnly" : true }, "searchEnd" : { "type" : "string", "readOnly" : true } } }, "ReindeerHusbandry" : { "type" : "object", "properties" : { "businessIncomeThisIndustry" : { "type" : "number", "description" : "Business income this industry", "readOnly" : true }, "capitalCostsMinusCapitalRevenues" : { "type" : "number", "description" : "Capital costs minus capital revenues", "readOnly" : true }, "amountFromProfitAndLoss" : { "type" : "number", "description" : "Business income this industry", "readOnly" : true }, "correctedBusinessIncomeThisIndustry" : { "type" : "number", "description" : "Corrected business income this industry", "readOnly" : true }, "correctedBusinessIncomeTwoYearsAgo" : { "type" : "number", "description" : "Corrected business income two years ago", "readOnly" : true }, "correctedBusinessIncomeOneYearAgo" : { "type" : "number", "description" : "Corrected business income one year ago", "readOnly" : true }, "averageCorrectedBusinessIncome" : { "type" : "number", "description" : "Average business income", "readOnly" : true }, "difference" : { "type" : "number", "description" : "Difference", "readOnly" : true }, "withdrawal" : { "type" : "number", "description" : "Withdrawal", "readOnly" : true }, "deposit" : { "type" : "number", "description" : "Deposit", "readOnly" : true }, "change" : { "type" : "number", "description" : "Change", "readOnly" : true }, "correctedBusinessIncome" : { "type" : "number", "description" : "Corrected business income", "readOnly" : true }, "businessIncome" : { "type" : "number", "description" : "Business income", "readOnly" : true } } }, "ResponseWrapperReindeerHusbandry" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ReindeerHusbandry" } } }, "ListResponseRiskFreeInterestRate" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/RiskFreeInterestRate" } } } }, "RiskFreeInterestRate" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "year" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "companyType" : { "minimum" : 0, "type" : "integer", "format" : "int32", "readOnly" : true }, "rate" : { "type" : "number", "readOnly" : true } }, "readOnly" : true }, "ResponseWrapperListTangibleFixedAssetOverview" : { "type" : "object", "properties" : { "value" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/TangibleFixedAssetOverview" } } } }, "TangibleFixedAssetOverview" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "incomeGroupId" : { "minimum" : 0, "type" : "integer", "format" : "int32" }, "businessActivityType" : { "type" : "string", "enum" : [ "OTHER_COMMERCIAL_ACTIVITIES", "OTHER_COMMERCIAL_ACTIVITIES_2", "OTHER_COMMERCIAL_ACTIVITIES_3", "OTHER_COMMERCIAL_ACTIVITIES_4", "AGRICULTURE_HORTICULTURE_FUR_FARMING", "FISHING_AND_HUNTING_AT_SEA", "REINDEER_HUSBANDRY", "FAMILY_DAY_CARE_CENTRE_IN_OWN_HOME", "SLATE_QUARRYING", "FORESTRY", "NOT_INDUSTRY" ] }, "industryId" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "businessActivityDescription" : { "type" : "string", "readOnly" : true }, "posts" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/TangibleFixedAsset" } } } }, "ResponseWrapperTaxAssessment" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/TaxAssessment" } } }, "TaxAssessment" : { "type" : "object", "properties" : { "assessmentPersonalIncomes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/TaxAssessmentPersonalIncome" } }, "keyFigures" : { "$ref" : "#/components/schemas/TaxAssessmentKeyFigures" }, "nonPostedDetails" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/TaxAssessmentNonPostedDetail" } }, "agriculture" : { "$ref" : "#/components/schemas/TaxAssessmentAgriculture" }, "taxCalculation" : { "$ref" : "#/components/schemas/TaxAssessmentTaxCalculation" } } }, "TaxAssessmentAgriculture" : { "type" : "object", "properties" : { "businessIncome" : { "type" : "number", "readOnly" : true }, "shareFromSdf" : { "type" : "number", "readOnly" : true }, "calculationBasis" : { "type" : "number", "readOnly" : true }, "calculatedAmount" : { "type" : "number", "readOnly" : true }, "maxSpecialAllowance" : { "type" : "number", "readOnly" : true }, "unusedSpecialAllowance" : { "type" : "number", "readOnly" : true } }, "description" : "Key figures", "readOnly" : true }, "TaxAssessmentBracketTax" : { "type" : "object", "properties" : { "step" : { "type" : "number", "readOnly" : true }, "rate" : { "type" : "number", "readOnly" : true }, "maxAmount" : { "type" : "number", "readOnly" : true }, "basisAmountOwner" : { "type" : "number", "readOnly" : true }, "calculatedTaxOwner" : { "type" : "number", "readOnly" : true }, "residualAmountOwner" : { "type" : "number", "readOnly" : true }, "amountBeforeNextTaxStepOwner" : { "type" : "number", "readOnly" : true }, "basisAmountSpouse" : { "type" : "number", "readOnly" : true }, "calculatedTaxSpouse" : { "type" : "number", "readOnly" : true }, "residualAmountSpouse" : { "type" : "number", "readOnly" : true }, "amountBeforeNextTaxStepSpouse" : { "type" : "number", "readOnly" : true } }, "description" : "Bracket tax", "readOnly" : true }, "TaxAssessmentKeyFigures" : { "type" : "object", "properties" : { "personalIncome" : { "type" : "number", "readOnly" : true }, "personalIncomeSpouse" : { "type" : "number", "readOnly" : true }, "salaryIncome" : { "type" : "number", "readOnly" : true }, "salaryIncomeSpouse" : { "type" : "number", "readOnly" : true }, "pensionableIncome" : { "type" : "number", "readOnly" : true }, "pensionableIncomeSpouse" : { "type" : "number", "readOnly" : true }, "sickPayFishingHuntingEtc" : { "type" : "number", "readOnly" : true }, "sickPayFishingHuntingEtcSpouse" : { "type" : "number", "readOnly" : true }, "sickPayAgriculture" : { "type" : "number", "readOnly" : true }, "sickPayAgricultureSpouse" : { "type" : "number", "readOnly" : true }, "sickPayOther" : { "type" : "number", "readOnly" : true }, "sickPayOtherSpouse" : { "type" : "number", "readOnly" : true }, "basisSickPayAndBracketTax" : { "type" : "number", "readOnly" : true }, "basisSickPayAndBracketTaxSpouse" : { "type" : "number", "readOnly" : true } }, "description" : "Key figures", "readOnly" : true }, "TaxAssessmentNonPostedDetail" : { "type" : "object", "properties" : { "step" : { "type" : "string" }, "industry" : { "type" : "string" }, "postedAmount" : { "type" : "number", "readOnly" : true }, "calculatedAmount" : { "type" : "number", "readOnly" : true }, "notPostedAmount" : { "type" : "number", "readOnly" : true } }, "description" : "Non posted details", "readOnly" : true }, "TaxAssessmentPersonalIncome" : { "type" : "object", "properties" : { "businessActivityTypeDescription" : { "type" : "string" }, "correctedBusinessIncome" : { "type" : "number", "readOnly" : true }, "riskFreeReturn" : { "type" : "number", "readOnly" : true }, "deductionsForRiskFreeReturn" : { "type" : "number", "readOnly" : true }, "spouseSharingPercentage" : { "type" : "number", "readOnly" : true }, "personalIncomeForTheYear" : { "type" : "number", "readOnly" : true }, "afterSharedWithSpouse" : { "type" : "number", "readOnly" : true }, "calculatedPersonalIncomeSpouse" : { "type" : "number", "readOnly" : true }, "personalIncomeGroupId" : { "type" : "number", "readOnly" : true }, "negativePersonalIncomePreviousYearOwner" : { "type" : "number", "readOnly" : true }, "negativePersonalIncomePreviousYearSpouse" : { "type" : "number", "readOnly" : true }, "coordinationOtherPersonalIncomeOwner" : { "type" : "number", "readOnly" : true }, "coordinationOtherPersonalIncomeSpouse" : { "type" : "number", "readOnly" : true }, "coordinationCoordinationGeneralPartnershipOwner" : { "type" : "number", "readOnly" : true }, "coordinationCoordinationGeneralPartnershipSpouse" : { "type" : "number", "readOnly" : true }, "annualPersonalIncomeOwner" : { "type" : "number", "readOnly" : true }, "annualPersonalIncomeSpouse" : { "type" : "number", "readOnly" : true } }, "description" : "Personal income", "readOnly" : true }, "TaxAssessmentTaxCalculation" : { "type" : "object", "properties" : { "bracketTax" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/TaxAssessmentBracketTax" } }, "sumBasisOwner" : { "type" : "number", "readOnly" : true }, "sumCalculatedTaxOwner" : { "type" : "number", "readOnly" : true }, "amountBeforeNextTaxStepOwner" : { "type" : "number", "readOnly" : true }, "sumBasisSpouse" : { "type" : "number", "readOnly" : true }, "sumCalculatedTaxSpouse" : { "type" : "number", "readOnly" : true }, "amountBeforeNextTaxStepSpouse" : { "type" : "number", "readOnly" : true } }, "description" : "Tax calculation", "readOnly" : true }, "ResponseWrapperYearEndShareholderRegister" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/YearEndShareholderRegister" } } }, "ShareholderRegisterSubmissionResult" : { "type" : "object", "properties" : { "failureStep" : { "type" : "string", "enum" : [ "0", "1", "2", "3", "255" ] }, "failureCategory" : { "type" : "string", "enum" : [ "0", "1", "2", "3", "4" ] }, "failureMainMessage" : { "type" : "string" }, "receptionReceipt" : { "$ref" : "#/components/schemas/Altinn2ReceptionReceipt" } } }, "YearEndShareholderRegister" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "year" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "sentDate" : { "type" : "string" }, "status" : { "type" : "string", "enum" : [ "0", "1", "2", "4", "20", "21", "70", "71" ] }, "submissionInProgress" : { "type" : "boolean" }, "submissionAttemptDate" : { "type" : "string" }, "submissionResult" : { "$ref" : "#/components/schemas/ShareholderRegisterSubmissionResult" } } }, "ResponseWrapperShareholderRegisterPrefillResult" : { "type" : "object", "properties" : { "value" : { "type" : "string", "enum" : [ "SUCCESS", "NO_DATA", "UNSUPPORTED_YEAR", "ERROR" ] } } }, "ResponseWrapperShareholder" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/Shareholder" } } }, "Shareholder" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "shareholderNumber" : { "type" : "string" }, "shareholderName" : { "type" : "string" }, "email" : { "type" : "string" }, "phoneNumber" : { "type" : "string" }, "address1" : { "type" : "string" }, "address2" : { "type" : "string" }, "postalCode" : { "type" : "string" }, "city" : { "type" : "string" }, "country" : { "$ref" : "#/components/schemas/Country" }, "municipality" : { "$ref" : "#/components/schemas/Municipality" }, "bankAccountNumber" : { "type" : "string" }, "startingYear" : { "type" : "integer", "format" : "int32" }, "pictureId" : { "type" : "integer", "format" : "int32" }, "note" : { "type" : "string" }, "isActive" : { "type" : "boolean", "description" : "The shareholder is active.", "readOnly" : true }, "numberOfSharesLastYear" : { "type" : "number", "readOnly" : true }, "numberOfSharesThisYear" : { "type" : "number", "readOnly" : true }, "ownershipLastYear" : { "type" : "number", "readOnly" : true }, "ownershipThisYear" : { "type" : "number", "readOnly" : true }, "isDeletable" : { "type" : "boolean", "description" : "The shareholder is active.", "readOnly" : true } }, "readOnly" : true }, "ResponseWrapperShareholderOverviewDTO" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ShareholderOverviewDTO" } } }, "ShareholderOverviewDTO" : { "type" : "object", "properties" : { "shareholders" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Shareholder" } }, "sumNumberOfSharesThisYear" : { "type" : "number", "readOnly" : true }, "sumNumberOfSharesLastYear" : { "type" : "number", "readOnly" : true }, "sumOwnershipThisYear" : { "type" : "number", "readOnly" : true }, "sumOwnershipLastYear" : { "type" : "number", "readOnly" : true } } }, "ResponseWrapperShareholderRegisterData" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ShareholderRegisterData" } } }, "ShareholderRegisterData" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "groupId" : { "type" : "integer", "format" : "int32" }, "shareholderRegisterDataType" : { "type" : "string", "enum" : [ "COMPANY_INFO", "CONTACT_INFO", "SHAREHOLDER_INFO", "EVENT_AND_TRANSACTION" ] }, "shareholderRegisterDataSubType" : { "type" : "string", "enum" : [ "NONE", "COMPANY_KEY_INFO", "COMPANY_EVENT", "SHAREHOLDER_INFO" ] }, "shareholderRegisterDataSubSubType" : { "type" : "string", "enum" : [ "NONE", "EVENT_SHAREHOLDER" ] }, "subTypeGroupId" : { "type" : "integer", "format" : "int32" }, "subSubTypeGroupId" : { "type" : "integer", "format" : "int32" }, "postType" : { "type" : "string", "enum" : [ "SHARE_CLASS", "OPENING_BALANCE_SHARE_CAPITAL", "OPENING_BALANCE_NOMINAL_VALUE_PER_SHARE", "OPENING_BALANCE_NUMBER_OF_SHARES", "OPENING_BALANCE_PAID_SHARE_CAPITAL", "CLOSING_BALANCE_PREMIUM_PAID", "EVENT_TYPE", "EVENT_DATE", "EVENT_DISTRIBUTED_TOTAL", "EVENT_SHAREHOLDER_ID", "SHAREHOLDER_NO_OF_SHARES", "DISTRIBUTE_MANUALLY", "EVENT_TIME", "FOUNDATION_PAID_UP_SHARE_CAPITAL", "FOUNDATION_PAID_UP_PREMIUM", "FOUNDATION_NO_OF_SHARES", "SHAREHOLDER_DISTRIBUTED_DIVIDEND", "EVENT_SHARE_CLASS", "CONTACT_NAME", "CONTACT_ROLE", "CONTACT_EMAIL", "CONTACT_PHONE", "SHAREHOLDER_ID", "NO_OF_SHARES_LAST_YEAR", "UPDATED_BY", "UPDATED_DATE", "SHAREHOLDER_SHARE_CLASS", "TRANSACTION_TYPE", "TRANSACTION_DATE", "TRANSACTION_TIME", "SELLER_ID", "BUYER_ID", "TRANSACTION_NUMBER_OF_SHARES", "REMUNERATION", "TRANSACTION_SHARE_CLASS" ] }, "postValue" : { "type" : "string" }, "altinnValue" : { "type" : "string" } }, "readOnly" : true }, "CompanyInfo" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "groupId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "shareClass" : { "type" : "string", "readOnly" : true, "enum" : [ "ALL", "ORDINARY", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "PREFERENCE", "EXTRAORDINARY", "DUMMY" ] }, "shareClassDisplayName" : { "type" : "string", "readOnly" : true }, "keyInfo" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/KeyInfo" } }, "timestamp" : { "type" : "string", "readOnly" : true }, "sumDividend" : { "type" : "number", "readOnly" : true }, "numberOfShares" : { "type" : "number", "readOnly" : true }, "hasRegisteredFoundationInfo" : { "type" : "boolean", "readOnly" : true }, "isDeletable" : { "type" : "boolean", "readOnly" : true }, "dividendType" : { "type" : "string", "enum" : [ "0", "1", "2" ] } } }, "CompanyInfoOverview" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "sumOpeningBalanceShareCapital" : { "type" : "number", "readOnly" : true }, "sumClosingBalanceShareCapital" : { "type" : "number", "readOnly" : true }, "companyInfo" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/CompanyInfo" } } } }, "KeyInfo" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "id" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "name" : { "type" : "string", "readOnly" : true }, "postType" : { "type" : "string", "readOnly" : true, "enum" : [ "SHARE_CLASS", "OPENING_BALANCE_SHARE_CAPITAL", "OPENING_BALANCE_NOMINAL_VALUE_PER_SHARE", "OPENING_BALANCE_NUMBER_OF_SHARES", "OPENING_BALANCE_PAID_SHARE_CAPITAL", "CLOSING_BALANCE_PREMIUM_PAID", "EVENT_TYPE", "EVENT_DATE", "EVENT_DISTRIBUTED_TOTAL", "EVENT_SHAREHOLDER_ID", "SHAREHOLDER_NO_OF_SHARES", "DISTRIBUTE_MANUALLY", "EVENT_TIME", "FOUNDATION_PAID_UP_SHARE_CAPITAL", "FOUNDATION_PAID_UP_PREMIUM", "FOUNDATION_NO_OF_SHARES", "SHAREHOLDER_DISTRIBUTED_DIVIDEND", "EVENT_SHARE_CLASS", "CONTACT_NAME", "CONTACT_ROLE", "CONTACT_EMAIL", "CONTACT_PHONE", "SHAREHOLDER_ID", "NO_OF_SHARES_LAST_YEAR", "UPDATED_BY", "UPDATED_DATE", "SHAREHOLDER_SHARE_CLASS", "TRANSACTION_TYPE", "TRANSACTION_DATE", "TRANSACTION_TIME", "SELLER_ID", "BUYER_ID", "TRANSACTION_NUMBER_OF_SHARES", "REMUNERATION", "TRANSACTION_SHARE_CLASS" ] }, "openingBalance" : { "type" : "number", "readOnly" : true }, "closingBalance" : { "type" : "number", "readOnly" : true }, "altinnValue" : { "type" : "number", "readOnly" : true } }, "readOnly" : true }, "ResponseWrapperCompanyInfoOverview" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/CompanyInfoOverview" } } }, "ContactInfo" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "name" : { "$ref" : "#/components/schemas/ShareholderRegisterData" }, "email" : { "$ref" : "#/components/schemas/ShareholderRegisterData" }, "role" : { "$ref" : "#/components/schemas/ShareholderRegisterData" }, "phone" : { "$ref" : "#/components/schemas/ShareholderRegisterData" } } }, "ResponseWrapperContactInfo" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ContactInfo" } } }, "CompanyEvent" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "shareClassGroupId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "eventGroupId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "eventType" : { "type" : "string", "readOnly" : true }, "date" : { "$ref" : "#/components/schemas/ShareholderRegisterData" }, "time" : { "$ref" : "#/components/schemas/ShareholderRegisterData" }, "shareClass" : { "type" : "string", "readOnly" : true, "enum" : [ "ALL", "ORDINARY", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "PREFERENCE", "EXTRAORDINARY", "DUMMY" ] }, "shareClassDisplayName" : { "type" : "string", "readOnly" : true }, "distributeManually" : { "$ref" : "#/components/schemas/ShareholderRegisterData" }, "distributedTotal" : { "$ref" : "#/components/schemas/ShareholderRegisterData" }, "numberOfShares" : { "type" : "number", "readOnly" : true }, "distributedPerShare" : { "type" : "number", "readOnly" : true }, "shareholderInfo" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/EventShareholderInfo" } }, "paidUpPremium" : { "$ref" : "#/components/schemas/ShareholderRegisterData" }, "paidUpShareCapital" : { "$ref" : "#/components/schemas/ShareholderRegisterData" }, "foundationNumberOfShares" : { "$ref" : "#/components/schemas/ShareholderRegisterData" } } }, "EventShareholderInfo" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "eventShareholderGroupId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "shareholder" : { "$ref" : "#/components/schemas/Shareholder" }, "numberOfShares" : { "$ref" : "#/components/schemas/ShareholderRegisterData" }, "calculatedNumberOfShares" : { "type" : "number", "readOnly" : true }, "distributedDividend" : { "$ref" : "#/components/schemas/ShareholderRegisterData" }, "calculatedDistributedDividend" : { "type" : "number", "readOnly" : true } }, "readOnly" : true }, "ListResponseCompanyEvent" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/CompanyEvent" } } } }, "ListResponseShareClass" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ShareClass" } } } }, "ShareClass" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "type" : { "type" : "string", "readOnly" : true }, "id" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "name" : { "type" : "string", "readOnly" : true }, "technicalName" : { "type" : "string", "readOnly" : true } }, "readOnly" : true }, "ListResponseShareholderInfo" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ShareholderInfo" } } } }, "ShareholderInfo" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "id" : { "type" : "integer", "description" : "Id of shareholder register data to update", "format" : "int32", "readOnly" : true }, "shareholder" : { "$ref" : "#/components/schemas/Shareholder" }, "groupId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "shareClass" : { "type" : "string", "readOnly" : true, "enum" : [ "ALL", "ORDINARY", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "PREFERENCE", "EXTRAORDINARY", "DUMMY" ] }, "shareClassDisplayName" : { "type" : "string", "readOnly" : true }, "numberOfSharesLastYear" : { "$ref" : "#/components/schemas/ShareholderRegisterData" }, "numberOfSharesThisYear" : { "type" : "number", "readOnly" : true }, "ownershipLastYear" : { "type" : "number", "readOnly" : true }, "ownershipThisYear" : { "type" : "number", "readOnly" : true }, "readOnly" : { "type" : "boolean", "readOnly" : true } }, "readOnly" : true }, "ResponseWrapperSubmissionValidation" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/SubmissionValidation" } } }, "SubmissionValidation" : { "type" : "object", "properties" : { "missingPreviouslySubmittedShareClasses" : { "type" : "array", "readOnly" : true, "items" : { "type" : "string" } }, "hasRemovedShareClasses" : { "type" : "boolean", "readOnly" : true } } }, "ResponseWrapperTransaction" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/Transaction" } } }, "Transaction" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "transactionGroupId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "date" : { "$ref" : "#/components/schemas/ShareholderRegisterData" }, "time" : { "$ref" : "#/components/schemas/ShareholderRegisterData" }, "shareClass" : { "type" : "string", "readOnly" : true, "enum" : [ "ALL", "ORDINARY", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "PREFERENCE", "EXTRAORDINARY", "DUMMY" ] }, "type" : { "$ref" : "#/components/schemas/ShareholderRegisterData" }, "seller" : { "$ref" : "#/components/schemas/ShareholderRegisterData" }, "buyer" : { "$ref" : "#/components/schemas/ShareholderRegisterData" }, "numberOfShares" : { "$ref" : "#/components/schemas/ShareholderRegisterData" }, "remuneration" : { "$ref" : "#/components/schemas/ShareholderRegisterData" } } }, "ListResponseShareholderTransaction" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ShareholderTransaction" } } } }, "ShareholderTransaction" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "transactionGroupId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "foundationGroupId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "date" : { "type" : "string", "readOnly" : true }, "time" : { "type" : "string", "readOnly" : true }, "shareClass" : { "type" : "string", "readOnly" : true, "enum" : [ "ALL", "ORDINARY", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "PREFERENCE", "EXTRAORDINARY", "DUMMY" ] }, "shareClassDisplayName" : { "type" : "string", "readOnly" : true }, "type" : { "type" : "string", "readOnly" : true }, "name" : { "type" : "string", "readOnly" : true }, "counterpart" : { "type" : "string", "readOnly" : true }, "role" : { "type" : "string", "readOnly" : true }, "numberOfShares" : { "type" : "number", "readOnly" : true }, "remuneration" : { "type" : "number", "readOnly" : true }, "numberOfSharesBefore" : { "type" : "number", "readOnly" : true }, "numberOfSharesAfter" : { "type" : "number", "readOnly" : true } }, "readOnly" : true }, "ListResponseValidationMessages" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ValidationMessages" } } } }, "ValidationMessages" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "shareClassDisplayName" : { "type" : "string", "readOnly" : true }, "isValidOpeningBalanceShareCapital" : { "type" : "boolean", "readOnly" : true }, "isValidClosingBalanceShareCapital" : { "type" : "boolean", "readOnly" : true }, "isValidDisbributedOpeningBalanceShareCapital" : { "type" : "boolean", "readOnly" : true }, "isValidDisbributedClosingBalanceShareCapital" : { "type" : "boolean", "readOnly" : true }, "isDuplicatedTimestamp" : { "type" : "boolean", "readOnly" : true }, "isEventBeforeFoundation" : { "type" : "boolean", "readOnly" : true }, "invalidShareholderNumbers" : { "type" : "array", "readOnly" : true, "items" : { "type" : "string" } } }, "readOnly" : true }, "ResponseWrapperShareholderRegisterDataOverview" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ShareholderRegisterDataOverview" } } }, "ShareholderRegisterDataOverview" : { "type" : "object", "properties" : { "yearEndReport" : { "$ref" : "#/components/schemas/YearEndReport" }, "groupId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "shareholderRegisterDataType" : { "type" : "string", "readOnly" : true, "enum" : [ "COMPANY_INFO", "CONTACT_INFO", "SHAREHOLDER_INFO", "EVENT_AND_TRANSACTION" ] }, "shareholderRegisterDataTypeGroupId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "posts" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ShareholderRegisterData" } }, "events" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/CompanyEvent" } }, "transactions" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/Transaction" } }, "shareClass" : { "type" : "string", "readOnly" : true, "enum" : [ "ALL", "ORDINARY", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "PREFERENCE", "EXTRAORDINARY", "DUMMY" ] }, "objectIdentifier" : { "type" : "string", "readOnly" : true } } }, "ResponseWrapperCompanyEvent" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/CompanyEvent" } } }, "ListResponseYearEndReportStepItem" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/YearEndReportStepItem" } } } }, "YearEndReportStepItem" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "description" : "Step item id", "format" : "int32", "readOnly" : true }, "title" : { "type" : "string", "description" : "Title of step item", "readOnly" : true } }, "readOnly" : true }, "ListResponseWhatToReportToggle" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/WhatToReportToggle" } } } }, "WhatToReportToggle" : { "type" : "object", "properties" : { "postType" : { "type" : "string", "description" : "The generic data post type responsible for manual check", "readOnly" : true, "enum" : [ "REGISTRATION_NUMBER", "DESCRIPTION", "VEHICLE_TYPE", "YEAR_OF_INITIAL_REGISTRATION", "LIST_PRICE", "DATE_FROM", "DATE_TO", "LICENCE", "LICENCE_NUMBER", "IS_ELECTRONIC_VEHICLE_LOGBOOK_LOGGED", "NO_OF_KILOMETRES_TOTAL", "OPERATING_EXPENSES", "LEASING_RENT", "IS_COMPANY_VEHICLE_USED_PRIVATE", "NO_OF_KILOMETRES_PRIVATE", "DEPRECIATION_PRIVATE_USE", "REVERSED_VEHICLE_EXPENSES", "FUEL_COST", "MAINTENANCE_COST", "COST_OF_INSURANCE_AND_TAX", "CAR_DEPARTMENT", "NO_OF_LITER_FUEL", "TAXIMETER_TYPE", "INCOME_PERSONAL_TRANSPORT", "INCOME_GOODS_TRANSPORT", "DRIVING_INCOME_PAYED_IN_CASH", "DRIVING_INCOME_INVOICED_PUBLIC_AGENCIES", "TIP_PAYED_WITH_CARD_OR_INVOICE", "TIP_PAYED_IN_CASH", "NO_OF_KILOMETRES_SCHOOL_CHILDREN", "NO_OF_KILOMETRES_WITH_PASSENGER", "FLOP_TRIP_AMOUNT", "IS_CONNECTED_TO_CENTRAL", "ID_FOR_PROFIT_AND_LOSS_ACCOUNT", "DESCRIPTION_PROFIT_AND_LOSS_ACCOUNT", "MUNICIPALITY_NUMBER", "OPENING_BALANCE", "PROFIT_SALES_WITHDRAWAL_OTHER_REALIZATIONS", "LOSS_SALES_WITHDRAWAL_OTHER_REALIZATIONS", "PROFIT_REALIZATIONS_LIVESTOCK", "VALUE_ACQUIRED_PROFIT_AND_LOSS_ACCOUNT", "VALUE_REALIZED_PROFIT_AND_LOSS_ACCOUNT", "ANNUAL_INCOME_RECOGNITION_OR_DEDUCTION_BASIS", "PERCENTAGE_PROFIT_AND_LOSS_ACCOUNT", "ANNUAL_INCOME_RECOGNITION", "ANNUAL_DEDUCTION", "CLOSING_BALANCE", "IS_REGARDING_REALIZATION_SEPARATED_PLOT_AGRICULTURE_OR_FORESTRY", "IS_REGARDING_REALIZATION_WHOLE_AGRICULTURE_OR_FORESTRY_BUSINESS", "PROFIT_AND_LOSS_DEPARTMENT", "ID_FOR_ACCOMMODATION_AND_RESTAURANT", "COVER_CHARGE_SUBJECT_TO_VAT", "COVER_CHARGE_NOT_SUBJECT_TO_VAT", "COVER_CHARGE", "DESCRIPTION_ACCOMMODATION_AND_RESTAURANT", "MUST_BE_CONFIRMED_BY_AUDITOR", "PRODUCT_TYPE", "OPENING_STOCK", "CLOSING_STOCK", "PURCHASE_OF_GOODS", "COST_OF_GOODS_SOLD", "SALES_REVENUE_AND_WITHDRAWALS", "SALES_REVENUE_IN_CASH", "CASH_REGISTER_SYSTEM_YEAR_OF_INITIAL_REGISTRATION", "CASH_REGISTER_SYSTEM_TYPE", "WITHDRAWAL_OF_PRODUCTS_VALUED_AT_TURNOVER", "PRIVATE_WITHDRAWAL_ENTERED_ON_PRIVATE_ACCOUNT", "TOTAL_WITHDRAWAL_PRODUCTS_ENTERED_AS_SALES_REVENUE", "WITHDRAWAL_COST_FOR_ENTERTAINMENT", "WITHDRAWAL_VALUE_VALUED_AT_MARKET_VALUE", "MARKUP_WITHDRAWAL_COST_FOR_ENTERTAINMENT", "TOTAL_WITHDRAWAL_COST_FOR_ENTERTAINMENT", "OPENING_BALANCE_CREDIT_SALES", "CLOSING_BALANCE_CREDIT_SALES", "OPENING_BALANCE_WRITE_DOWN_NEW_COMPANY", "CLOSING_BALANCE_WRITE_DOWN_NEW_COMPANY", "SALARY_AND_PENSION_EXPENSES_ACCOUNT_ID", "SALARY_AND_PENSION_EXPENSES_ACCOUNT_ADDITION", "SALARY_AND_PENSION_EXPENSES_ACCOUNT_DEDUCTION", "SALARY_AND_PENSION_EXPENSES_ACCOUNT_REPORTED_BENEFIT", "SALARY_AND_PENSION_EXPENSES_MANUAL_FILLING", "EMPLOYERS_PAYMENT_OF_SUBSIDY", "TOTAL_AMOUNT_CREDITED_TO_NATURAL_BENEFITS", "BASIS_FOR_INCREASED_EMPLOYERS_TAX", "SALARY_AND_PENSION_EXPENSES_MANUAL_ACCOUNT_DESCRIPTION", "SALARY_AND_PENSION_EXPENSES_MANUAL_ACCOUNT_EXPENSED_BENEFIT", "OPENING_BALANCE_RAW_MATERIAL_AND_SEMI_FINISHED_PRODUCTS", "CLOSING_BALANCE_RAW_MATERIAL_AND_SEMI_FINISHED_PRODUCTS", "OPENING_BALANCE_PRODUCT_UNDER_MANUFACTURING", "CLOSING_BALANCE_PRODUCT_UNDER_MANUFACTURING", "OPENING_BALANCE_INVENTORIES_FINISHED_ITEM", "CLOSING_BALANCE_INVENTORIES_FINISHED_ITEM", "OPENING_BALANCE_PURCHASED_ITEM_FOR_RESALE", "CLOSING_BALANCE_PURCHASED_ITEM_FOR_RESALE", "OPENING_BALANCE_SELF_PRODUCED_PRODUCT_OWN_PRODUCTUION", "CLOSING_BALANCE_SELF_PRODUCED_PRODUCT_OWN_PRODUCTUION", "OPENING_BALANCE_LIVESTOCK", "CLOSING_BALANCE_LIVESTOCK", "ACCOUNT_INVENTORY_BALANCE_ACCOUNT_ID", "ACCOUNT_INVENTORY_BALANCE_DEPARTMENT_ID", "ACCOUNT_INVENTORY_BALANCE_UNIT_RATE", "ACCOUNT_INVENTORY_BALANCE_BALANCE_OUT_QUANTITY", "ACCOUNT_INVENTORY_BALANCE_BALANCE_OUT", "TANGIBLE_FIXED_ASSETS_TYPE", "OPENING_BALANCE_TANGIBLE_FIXED_ASSETS", "TAX_DEPRECIATION_PERCENTAGE", "STRAIGHT_LINE_DEPRECIATION", "PROFIT_TRANSFERRED_TO_PROFIT_AND_LOSS_ACCOUNT", "LOSS_TRANSFERRED_TO_PROFIT_AND_LOSS_ACCOUNT", "ACQUISITION_COST", "LIFETIME", "ACQUISITION_DATE", "REALISATION_DATE", "IS_COMMERCIAL_BUILDING_ACQUIRED_BEFORE_1984", "HISTORICAL_COST_PRICE", "WRITTEN_DOWN_VALUE_PR_01011984", "LOWER_LIMIT_DEPRECIATION", "IS_PHYSICAL_OPERATING_ASSETS_IN_BALANCE_SHEET", "FACILITY_TYPE", "DEPRECIATION_PERCENTAGE", "CASH_DEPOSITS", "CONTRIBUTIONS_IN_KIND", "CAPITAL_REDUCTION_DISTRIBUTED_SHARED_CAPITAL_CASH", "CAPITAL_REDUCTION_DISTRIBUTED_SHARED_CAPITAL_OTHER_ASSETS", "DEBT_WAVING", "BUYING_OWN_SHARES", "SELLING_OWN_SHARES", "DEBT_CONVERSION_TO_EQUITY", "POSITIVE_DIFF_BETWEEN_ALLOCATED_AND_DISTRIBUTED_DIVIDEND", "NEGATIVE_DIFF_BETWEEN_ALLOCATED_AND_DISTRIBUTED_DIVIDEND", "OTHER_NEGATIVE_CHANGE_IN_EQUITY", "LATE_PAYMENT", "OTHER_INTEREST_INCOME", "OTHER_INTEREST_EXPENSE", "INCOME_FROM_OTHER_INVESTMENTS_AND_DIVIDENDS", "PROFIT_ON_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "LOSS_ON_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "PRIVATE_ACCOUNT", "DEDUCTIBLE_COST_OF_USING_A_PRIVATE_CAR", "OTHER_TAX_FREE_INCOME", "OTHERNON_DEDUCTIBLECOST", "TAX_FREE_PROFIT_FROM_THE_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "NON_DEDUCTIBLE_LOSS_ON_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "TAX_FREE_PART_OF_DIVIDENDS_AND_DISTRIBUTIONS", "RETURN_OF_PROFITS_TO_ISDF", "RETURN_OF_DEFICIT_TO_ISDF", "CASH_PAYMENT", "WITHDRAWAL_OF_ASSETS_AND_SERVICES", "OTHER_WITHDRAWALS_AND_DISTRIBUTIONS", "OTHER_POSTIVE_CHANGE_IN_EQUITY", "OTHER_POSITIVE_CHANGE_IN_EQUITY", "NONE_DEDUCTIBLE_COST", "POSITIVE_TAX_COST", "INTEREST_EXPENSE_FIXED_TAX", "SHARE_OF_LOSS_FROM_INVESTMENT", "REVERSAL_OF_IMPAIRMENT", "ACCOUNTING_IMPAIRMENT", "ACCOUNTING_LOSS", "ACCOUNTING_DEFICIT_NORWEGIAN_SDF", "ACCOUNTING_DEFICIT_FOREIGN_SDF", "ACCOUNTING_LOSS_NORWEGIAN_SDF", "ACCOUNTING_LOSS_FOREIGN_SDF", "RETURNED_DEBT_INTEREST", "TAXABLE_PROFIT_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "TAXABLE_DIVIDEND_ON_SHARES", "TAXABLE_PART_OF_DIVIDEND_AND_DISTRIBUTION", "SHARE_OF_TAXABLE_PROFIT_NORWEGIAN_SDF", "SHARE_OF_TAXABLE_PROFIT_FOREIGN_SDF", "TAXABLE_PROFIT_REALIZATION_OF_NORWEGIAN_SDF", "TAXABLE_PROFIT_REALIZATION_OF_FOREIGN_SDF", "ADDITION_INTEREST_COST", "CORRECTION_PURPOSED_DIVIDEND", "TAXABLE_PROFIT_WITHDRAWAL_NORWEGIAN_TAX_AREA", "INCOME_SUPPLEMENT_FOR_CONVERSION_DIFFERENCE", "OTHER_INCOME_SUPPLEMENT", "RETURN_OF_INCOME_RELATED_DIVIDENDS", "PROFIT_AND_LOSS_GROUP_CONTRIBUTION", "ACCOUNTING_PROFIT_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "ACCOUNTING_PROFIT_SHARE_NORWEGIAN_SDF", "ACCOUNTING_PROFIT_SHARE_FOREIGN_SDF", "ACCOUNTING_GAIN_NORWEGIAN_SDF", "ACCOUNTING_GAIN_FOREIGN_SDF", "DEDUCTIBLE_LOSS_ON_REALIZATION_OF_FINANCIAL_INSTRUMENTS", "SHARE_OF_DEDUCTIBLE_DEFICIT_NORWEGIAN_SDF", "SHARE_OF_DEDUCTIBLE_DEFICIT_FOREIGN_SDF", "DEDUCTIBLE_LOSS_ON_REALIZATION_NORWEGIAN_SDF", "DEDUCTIBLE_LOSS_ON_REALIZATION_FOREIGN_SDF", "DEDUCTIBLE_LOSS_ON_WITHDRAWAL_NORWEGIAN_TAX_AREA", "ISSUE_AND_ESTABLISHMENT_COST", "INCOME_DEDUCTION_FROM_ACCOUNTING_CURRENCY_TO_NOK", "OTHER_INCOME_DEDUCTION", "INCOME_ACCOUNT_DEFERRED_INCOME", "RETURN_VALUE_REDUCTION_COMPANY_PORTFOLIO", "INCOME_RECOGNITION_PARAGRAPH_10_TRANSACTIONS", "STANDARD_PRICE_ADDITION", "INTEREST_EXPENSE_IN_INCOME_STATEMENT", "INCOME_SUPPLEMENT_PRIVATE_USE_COMMERCIAL_VEHICLE", "INTEREST_INCOME_IN_INCOME_STATEMENT", "RETURN_VALUE_ADDITIONS_COMPANY_PORTFOLIO", "NOT_DEDUCTIBLE_COSTS_AND_LOSS_PETROLEUM_ABROAD", "TEMPLATE_DEDUCTION_TAXABLE_INCOME", "COST_ACCOUNTING_PARAGRAPH_10_TRANSACTIONS", "STANDARD_PRICE_DEDUCTION", "TAX_RETURN_DEDUCTIONS_FOU", "EXEMPT_INCOME_ACCORDINT_TO_PETROLEUM_TAX_LAW", "TAX_FREE_INCOME_RELATED_TO_EXTRACTION_PETROLEUM_ABROAD", "OWN_SICKNESS_BENEFITS_AS_INCOME_IN_ANNUAL_ACCOUNTS", "RETURN_ON_LIFE_INSURANCE_IN_ANNUAL_ACCOUNTS", "REVERSAL_OF_DEDUCTIONS_SCIENTIFIC_RESEARCH_AND_VOCATIONAL_TRAINING", "REVERSAL_INCREASE_VALUE_LINKED_TO_COMPANY_PORTFOLIO", "TEMPORARY_DIFFERENCES_TYPE", "OPENING_BALANCE_ACCOUNTABLE_VALUE", "CLOSING_BALANCE_ACCOUNTABLE_VALUE", "OPENING_BALANCE_TAX_VALUE", "CLOSING_BALANCE_TAX_VALUE", "OPENING_BALANCE_DIFFERENCES", "CLOSING_BALANCE_DIFFERENCES", "SHOW_PROFIT_AND_LOSS", "SHOW_ACCOMMODATION_AND_RESTAURANT", "IS_ACCOUNTABLE", "USE_ACCOUNTING_VALUES_IN_INVENTORIES", "USE_ACCOUNTING_VALUES_IN_CUSTOMER_RECEIVABLES", "SHOW_TANGIBLE_FIXED_ASSET", "SHOW_CAR", "SHOW_INVENTORIES", "SHOW_CUSTOMER_RECEIVABLES", "SHOW_CONCERN_RELATION", "OWN_BUSINESS_PROPERTIES", "OWN_ASSET_PAPER", "SHOW_SALARY_AND_PENSION_EXPENSES", "TRANSFERRED_BY", "TRANSFERRED_DATE", "IS_TAXABLE", "AUDITING_OBLIGATION", "VALIDATION_ONLY_ON_SUBMIT", "DATE_OF_DETERMINATION", "CONFIRMING_COMPANY_REPRESENTATIVE", "CONTACT_PERSON", "PARENT_COMPANY", "SMALL_ENTERPRISES", "PREPARED_BY_AUTHORIZED_ACCOUNTANT", "SERVICE_ASSISTANCE_USED", "ELECTRONIC_CASE_PROCESSING", "SUBMIT_WITHOUT_BUSINESS_SPECIFICATION", "SHOW_RESULT_AND_BALANCE_PREVIOUS_YEAR", "DATE_START", "DATE_END", "INCLUDE_PREVIOUS_YEAR_IN_RESULT", "DISTRIBUTE_INCOME_MODULE_INDUSTRY", "HIDE_TRANSFERRED_FROM_LAST_YEAR_NOTIFICATION", "RESEARCH_AND_DEVELOPMENT", "COMPANY_PARTICIPANT_ANS_DA", "CONTROLLED_TRANSACTION_AND_INBETWEEN", "LIMITATION_OF_DEDUCTION", "EXCEPTION_FOR_INTEREST_LIMITATION", "NUF_COMPANY_ID", "NUF_COMPANY_NAME", "NUF_COUNTRY_CODE", "TIMBER_ACCOUNT", "KLAGE_PAA_SKJOENNSFASTSETTING", "DEV_PILOT_TEST_ORG_NO", "HIDE_MOVE_AGRO_ACCOUNT_NUMBER_NOTIFICATION", "FOREST_FUND", "SUBMISSION_TO_LANDBRUKETS_DATAFLYT_DATE", "SUBMISSION_TO_LANDBRUKETS_DATAFLYT_BY", "SUBMISSION_TO_NIBIO_DATE", "SUBMISSION_TO_NIBIO_BY", "SHOW_ALL_POSTS_RESULT_AND_BALANCE", "REPORT_SIGNATURE_DATE", "REPORT_SIGNATURE_LOCATION", "REPORT_TOGGLE_DATE_LOCATION", "AGRICULTURAL_ACCOUNT", "AGRICULTURAL_ACCOUNT_USE_MULTIPLE_ACCOUNTS", "REPORT_SELECTED_STEP_FRONT_PAGE", "REPORT_SELECTED_STEP_CONTENT_TABLE", "REPORT_SELECTED_STEP_RESULT_AND_BALANCE", "REPORT_SELECTED_STEP_NOTES_FOR_SUBMISSION", "REPORT_SELECTED_STEP_NOTES_FOR_INTERNAL_USE", "REPORT_SELECTED_STEP_SIGNING", "YEAR_END_BRREG_DOC_ID", "YEAR_END_BRREG_DOC_FETCHER_NAME", "YEAR_END_DOCUMENTATION_ACCOMMODATION_AND_RESTAURANT", "YEAR_END_DOCUMENTATION_PROFIT_AND_LOSS_ACCOUNT", "YEAR_END_DOCUMENTATION_COMMERCIAL_VEHICLE", "YEAR_END_DOCUMENTATION_TANGIBLE_FIXED_ASSETS", "YEAR_END_DOCUMENTATION_INVENTORIES", "YEAR_END_DOCUMENTATION_ACCOUNTS_RECEIVABLE_FROM_CUSTOMERS", "YEAR_END_DOCUMENTATION_PROFIT_LOSS", "YEAR_END_DOCUMENTATION_BALANCE", "YEAR_END_DOCUMENTATION_PERSONAL_INCOME", "YEAR_END_DOCUMENTATION_PERMANENT_DIFFERENCES", "YEAR_END_DOCUMENTATION_TEMPORARY_DIFFERENCES", "YEAR_END_DOCUMENTATION_TAX_RELATED_RESULT", "YEAR_END_DOCUMENTATION_GROUP_CONTRIBUTIONS", "YEAR_END_DOCUMENTATION_EQUITY_RECONCILIATION", "YEAR_END_DOCUMENTATION_TAX_RETURN", "YEAR_END_DOCUMENTATION_DIVIDEND", "YEAR_END_DOCUMENTATION_DISPOSITIONS", "YEAR_END_DOCUMENTATION_PROPERTIES", "YEAR_END_DOCUMENTATION_SECURITIES", "YEAR_END_DOCUMENTATION_TAX_CALCULATION", "YEAR_END_DOCUMENTATION_AUDIT_REPORT", "YEAR_END_DOCUMENTATION_ANNUAL_REPORT", "YEAR_END_DOCUMENTATION_CASH_FLOW_STATEMENT", "YEAR_END_DOCUMENTATION_ANNEXES_TO_THE_ANNUAL_ACCOUNTS", "YEAR_END_DOCUMENTATION_SALARY_AND_PENSION_EXPENSES", "YEAR_END_DOCUMENTATION_COOPERATIVE_ENTERPRISE", "YEAR_END_DOCUMENTATION_OTHER_CIRCUMSTANCES", "YEAR_END_DOCUMENTATION_TIMBER_ACCOUNT", "YEAR_END_DOCUMENTATION_PARTICIPANT_ASSESSMENT", "YEAR_END_DOCUMENTATION_RESEARCH_AND_DEVELOPMENT", "YEAR_END_DOCUMENTATION_COMPANY_TAX_RETURN", "YEAR_END_DOCUMENTATION_PARTICIPANTS_TASK", "YEAR_END_DOCUMENTATION_CONTROLLED_TRANSACTIONS", "YEAR_END_DOCUMENTATION_LIMITATION_OF_DEDUCTION", "YEAR_END_DOCUMENTATION_SKJOENNSFASTSETTING", "YEAR_END_DOCUMENTATION_SKJOENNSFASTSETTING_ALTINN_ID", "YEAR_END_DOCUMENTATION_FOREST_FUND", "YEAR_END_DOCUMENTATION_ATTACHMENT_CATEGORY", "YEAR_END_DOCUMENTATION_DISTRIBUTE_CAPITAL_DEBT_WITH_SPOUSE", "YEAR_END_DOCUMENTATION_REINDEER_HUSBANDRY", "YEAR_END_DOCUMENT_SELECTED", "YEAR_END_DOCUMENTATION_ANNUALACCOUNTS_REPORT_GENERATED", "YEAR_END_DOCUMENTATION_AGRICULTURAL_ACCOUNT", "RECEIVER_ORG_NR", "RECEIVER_NAME", "CONCERN_CONNECTION", "VOTING_LIMIT", "DATE_OF_ACQUISITION", "RECEIVED_GROUP_CONTRIBUTIONS_WITH_TAX_AFFECTION", "RECEIVED_GROUP_CONTRIBUTIONS_WITHOUT_TAX_AFFECTION", "SUBMITTED_GROUP_CONTRIBUTIONS_WITH_TAX_AFFECTION", "SUBMITTED_GROUP_CONTRIBUTIONS_WITHOUT_TAX_AFFECTION", "RECEIVED_GROUP_CONTRIBUTIONS_FOREIGN_COMPANY_WITH_TAX_AFFECTION", "SUBMITTED_GROUP_CONTRIBUTIONS_FOREIGN_COMPANY_WITH_TAX_AFFECTION", "APPLICATION_OF_LOSS_CARRY_FORWARDS", "ACCUMULATED_LOSS_FROM_PREVIOUS_YEARS", "CORRECTIONS_AND_OTHER_CAPITAL", "CORRECTIONS_AND_OTHER_DEBT", "NUMBER_OF_SHARES", "TOTAL_SHARE_CAPITAL", "IS_PART_OF_GROUP_COMPANY", "IS_LISTED_ON_THE_STOCK_EXCHANGE", "IS_REORGANIZED_ACROSS_BORDERS", "HAS_RECEIVED_OR_TRANSFERRED_ASSETS", "HEAD_OF_GROUP_NAME", "HEAD_OF_GROUP_COUNTRY_CODE", "HEAD_OF_GROUP_LAST_YEAR_NAME", "HEAD_OF_GROUP_LAST_YEAR_COUNTRY_CODE", "FOREIGN_OWNERSHIP_COMPANY_NAME", "FOREIGN_OWNERSHIP_COMPANY_COUNTRY_CODE", "OWNS_MIN_50_PERCENT_OF_FOREIGN_COMPANY", "HAS_PERMANENT_ESTABLISHMENT_ABROAD", "COUNTRY_FOR_COUNTRY_REPORTABLE_ENTERPRISE_NAME", "COUNTRY_FOR_COUNTRY_REPORTABLE_ENTERPRISE_COUNTRY_CODE", "HAS_PERFORMANCE_BETWEEN_SHAREHOLDERS_AND_OTHER", "HAS_OUTSTANDING_PAYMENT_CLAIMS_RELATED_TO_ILLEGAL_STATE_AID", "IS_SMALL_OR_MEDIUM_SIZED_BUSINESS", "HAD_FINANCIAL_DIFFICULTIES_LAST_YEAR", "IS_GROUP_COMPANY", "HAS_RECEIVED_OTHER_PUBLIC_SUPPORT", "TAXABLE_VALUE_ON_OTHER_ASSETS", "ADDITIONS_NON_DEDUCTIBLE_LATE_PAYMENT", "SALES_WITH_MEMBERS_IN_OWN_COOPERATIVE", "RETROACTIVE_PAYMENT_MEMBERS_IN_OWN_COOPERATIVE", "CARRIED_FORWARD_DEDUCTION_LIMIT_LATE_PAYMENT_PREV_YEAR", "CARRY_FORWARD_DEDUCTION_LIMIT_LATE_PAYMENT", "TAXABLE_VALUE_ON_FORESTRY", "REINSTATED_LOSS_FROM_PRELIMINARY_ASSESSMENT_IN_LATER_YEARS", "HEAD_OF_GROUP_IDENTIFIER", "HEAD_OF_GROUP_LAST_YEAR_IDENTIFIER", "COUNTRY_FOR_COUNTRY_REPORTABLE_ENTERPRISE_IDENTIFIER", "NORWEGIAN_HEAD_OF_GROUP_NAME", "NORWEGIAN_HEAD_OF_GROUP_IDENTIFIER", "NORWEGIAN_HEAD_OF_GROUP_COUNTRY_CODE", "SHARE_OF_LOSS_OFFSET_AGAINST_PROFIT_TWO_PRECEDING_YEARS", "AID_SCHEME_TONNAGE_TAX_REGIME", "AID_SCHEME_RULES_FOR_ELECTRIC_DELIVERY_TRUCKS", "AID_SCHEME_FOR_LONG_TERM_INVESTMENTS", "AID_SCHEME_EMPLOYMENT_RELATED_OPTIONS_START_UP", "AID_SCHEME_TAX_FUN", "AID_SCHEME_FAVOURABLE_DEPRECIATION_RULES", "AID_SCHEME_REGIONALLY_DIFFERENTIATED_INSURANCE_CONTRIBUTIONS", "AID_SCHEME_FAVOURABLE_DETERMINED_LIST_PRICES_ELECTRIC_VEHICLES", "AID_SCHEME_VAT_EXEMPTION_TURNOVER_ELECTRIC_CARS", "AID_SCHEME_VAT_EXEMPTION_LEASING_ELECTRIC_CARS", "AID_SCHEME_VAT_EXEMPTION_TURNOVER_BATTERIES", "AID_SCHEME_VAT_EXEMPTION_TURNOVER_ELECTRIC_NEWS", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_INDUSTRIAL_SECTOR", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_DISTRICT_HEATING", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_TARGET_ZONE", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_DATA_CENTRES", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_COMMERCIAL_VESSELS", "AID_SCHEME_REDUCED_ELECTRICITY_TAX_ENERGY_PRODUCTS", "AID_SCHEME_REDUCED_BASIC_TAX_MINERAL_OIL_WOOD_INDUSTRY", "AID_SCHEME_REDUCED_BASIC_TAX_MINERAL_OIL_PIGMENT_INDUSTRY", "AID_SCHEME_EXEMPTION_CO2_TAX_MINERAL_OIL", "AID_SCHEME_EXEMPTION_CO2_TAX_GAS", "AID_SCHEME_EXEMPTION_NOX_DUTY", "AID_SCHEME_EXEMPTION_TRANSFER_FEE", "AID_SCHEME_REDUCED_ROAD_TRAFFIC_INSURANCE_TAX", "OTHER_CORRECTIONS", "DEFERRED_TAX_ASSETS_IN_BALANCE", "SHARES_AND_SECURITIES_NAME", "SHARES_AND_SECURITIES_STOCK_TYPE", "SHARES_AND_SECURITIES_VAT_NUMBER", "SHARES_AND_SECURITIES_ISIN", "SHARES_AND_SECURITIES_COUNTRY_CODE", "SHARES_AND_SECURITIES_SHARE_CLASS", "SHARES_AND_SECURITIES_SHARES_BY_THE_START_OF_THE_YEAR", "SHARES_AND_SECURITIES_SHARES_BY_THE_END_OF_THE_YEAR", "SHARES_AND_SECURITIES_VALUE", "SHARES_AND_SECURITIES_TOTAL_VALUE", "SHARES_AND_SECURITIES_DIVIDEND", "SHARES_AND_SECURITIES_INTEREST_INCOME", "SHARES_AND_SECURITIES_PROFIT_REALISATION", "SHARES_AND_SECURITIES_LOSS_REALISATION", "SHARES_AND_SECURITIES_PROFIT_INTEREST", "SHARES_AND_SECURITIES_LOSS_INTEREST", "SHARES_AND_SECURITIES_EXEMPTION_METHOD", "SHARES_AND_SECURITIES_FINANCIAL_PRODUCT", "REAL_ESTATE_TYPE", "REAL_ESTATE_DESCRIPTION", "COMMERCIAL_PROPERTY_TYPE", "SHARE_OF_ASSET_VALUE", "INTERNAL_PROPERTY_IDENTIFIER", "ASSET_VALUE_FOR_ASSET_SHARE", "VALUE_BEFORE_VALUATION_DISCOUNT_ASSET_SHARE", "TOTAL_AREA", "CALCULATED_RENTAL_VALUE", "CALCULATED_VALUE_IS_OUTDATED", "REAL_ESTATE_SERG_NO", "REAL_ESTATE_ADDRESS", "REAL_ESTATE_ZIP_CODE", "REAL_ESTATE_POSTAL_PLACE_NAME", "REAL_ESTATE_COUNTRY_CODE", "REAL_ESTATE_MUNICIPALITY_NO", "REAL_ESTATE_MUNICIPALITY_NAME", "REAL_ESTATE_CADASTRAL_UNIT_NO", "REAL_ESTATE_PROPERTY_UNIT_NO", "REAL_ESTATE_LEASEHOLD_NO", "REAL_ESTATE_SECTION_NO", "REAL_ESTATE_OWNERSHIP_SHARE_PERCENTAGE", "REAL_ESTATE_PREV_YEAR_ASSET_VALUE", "REAL_ESTATE_EXPENSES_YEARLY", "REAL_ESTATE_EXPENSES_FARM_HOUSE_YEARLY", "REAL_ESTATE_EXPENSES_OTHER_PROPERTY_YEARLY", "REAL_ESTATE_DATE_DOCUMENTED", "REAL_ESTATE_MARKET_VALUE_MANUAL", "REAL_ESTATE_MARKET_VALUE_CALCULATED", "REAL_ESTATE_USE_VALUE_MARKET", "REAL_ESTATE_DWELLING_TYPE", "REAL_ESTATE_ASSOCIATION_OR_COOPERATIVE_DWELLING_OWNERSHIP_TYPE", "REAL_ESTATE_ASSOCIATION_OR_COOPERATIVE_DWELLING_OWNERSHIP_NAME", "REAL_ESTATE_ASSOCIATION_OR_COOPERATIVE_DWELLING_OWNERSHIP_ORG_NO", "REAL_ESTATE_ASSOCIATION_OR_COOPERATIVE_DWELLING_OWNERSHIP_SHARE_NO", "REAL_ESTATE_PRIMARY_SECONDARY_DWELLING_TYPE", "REAL_ESTATE_CONSTRUCTION_YEAR", "REAL_ESTATE_SELF_OWNED_OR_COOPERATIVE_DWELLING_CALCULATED_MARKET_VALUE", "REAL_ESTATE_RENTAL_AREA_TOTAL", "REAL_ESTATE_RENTAL_PERIOD_MONTHS", "REAL_ESTATE_RENTAL_INCOME_TOTAL_CALCULATED", "REAL_ESTATE_RENTAL_GROSS_ANNUAL_PREV_YEAR", "REAL_ESTATE_RENTAL_GROSS_ANNUAL_PRIOR_YEAR_TWO", "REAL_ESTATE_RENTAL_ASSET_VALUE_BASE", "REAL_ESTATE_RENTAL_GROSS_INCOME", "REAL_ESTATE_PREV_YEAR_ASSET_VALUE_MANUAL", "REAL_ESTATE_EXPENSES_YEARLY_MANUAL", "REAL_ESTATE_EXPENSES_FARM_HOUSE_YEARLY_MANUAL", "REAL_ESTATE_EXPENSES_OTHER_PROPERTY_YEARLY_MANUAL", "REAL_ESTATE_MULTI_UNIT_BUILDING_UNIT_ROW_ID", "REAL_ESTATE_MULTI_UNIT_BUILDING_UNIT_NO", "REAL_ESTATE_MULTI_UNIT_BUILDING_UNIT_AREA", "REAL_ESTATE_MULTI_UNIT_BUILDING_UNIT_CONSTRUCTION_YEAR", "REAL_ESTATE_MULTI_UNIT_BUILDING_UNIT_VALUE", "REAL_ESTATE_USE_INCREASED_CALCULATION_FACTOR", "YEARLY_DIVIDEND", "DIVIDEND_CREDIT", "DIVIDEND_SECURITY_OFFERED", "DIVIDEND_DISPOSITIONS", "PARTICIPANT_NAME", "PARTICIPANT_NUMBER", "PARTICIPANT_OWNERSHIP", "PARTICIPANT_REPORT_DISTRIBUTION_CASH_DISBURSEMENT_FROM_COMPANY", "PARTICIPANT_REPORT_DISTRIBUTION_VALUE_OF_ASSETS_OR_SERVICE_WITHDRAWN", "PARTICIPANT_REPORT_DISTRIBUTION_CAPITAL_REIMBURSEMENT", "PARTICIPANT_REPORT_SHIELDING_BASIS_OTHER_INITIAL_VALUE_CORRECTION", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_UNUSED_SHIELDING_FROM_PREVIOUS_YEAR", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_CORRECTION_FOR_INHERITANCE_OR_GIFT_IN_INCOME_YEAR", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_TRANSFERRED_SHIELDING_DEDUCTION_FROM_PREVIOUS_YEARS", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_TRANSFERRED_SHIELDING_DEDUCTION", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_OTHER_CORRECTION", "PARTICIPANT_REPORT_ADDITIONS_TO_ORDINARY_INCOME_OTHER_CORRECTION", "PARTICIPANT_REPORT_TAX_BASIS_SPECIFICATION_SHARE_OF_TAXABLE_EQUITY_AT_BEGINNING_OF_YEAR", "PARTICIPANT_REPORT_TAX_BASIS_SPECIFICATION_DEPOSIT", "PARTICIPANT_REPORT_TAX_BASIS_SPECIFICATION_OTHER_CORRECTION", "PARTICIPANT_REPORT_SHARES_REALIZED_OR_ACQUIRED", "PARTICIPANT_REPORT_PAID_IN_SHARE_OF_TAXABLE_EQUITY_AS_OF_BEGINNING_OF_YEAR", "PARTICIPANT_REPORT_PAID_IN_ACQUISITION_OF_SHARE", "PARTICIPANT_REPORT_PAID_IN_DISPOSAL_OF_SHARE", "PARTICIPANT_REPORT_PAID_IN_OTHER_CORRECTION", "PARTICIPANT_REPORT_RETAINED_EARNINGS_SHARE_OF_TAXABLE_EQUITY_AS_OF_BEGINNING_OF_YEAR", "PARTICIPANT_REPORT_RETAINED_EARNINGS_ACQUISITION_OF_SHARE", "PARTICIPANT_REPORT_RETAINED_EARNINGS_DISPOSAL_OF_SHARE", "PARTICIPANT_REPORT_RETAINED_EARNINGS_TAX_RESULT", "PARTICIPANT_REPORT_RETAINED_EARNINGS_TAX_FREE_INCOME", "PARTICIPANT_REPORT_RETAINED_EARNINGS_OTHER_CORRECTION", "PARTICIPANT_REPORT_RETAINED_EARNINGS_NON_DEDUCTIBLE_EXPENSES", "PARTICIPANT_REPORT_COMPENSATION_FOR_WORK_IN_OTHER_INDUSTRIES_INCLUDING_AGRICULTURE", "PARTICIPANT_REPORT_COMPENSATION_FOR_WORK_IN_FISHING_AND_HUNTING", "PARTICIPANT_REPORT_COMPENSATION_FOR_WORK_IN_FAMILY_KINDERGARTEN_AT_PARTICIPANTS_HOME", "PARTICIPANT_REPORT_AGRICULTURAL_DEDUCTION", "PARTICIPANT_REPORT_RENTAL_INCOME_FROM_AGRICULTURAL_OPERATIONS", "PARTICIPANT_REPORT_RESIDES_IN_NORDTROMS_OR_FINNMARK", "PARTICIPANT_DISPROPORTIONATE_DISTRIBUTION", "PARTICIPANT_DISPROPORTIONATE_DISTRIBUTION_SHARE_OF_RESULT", "PARTICIPANT_DISPROPORTIONATE_DISTRIBUTION_SHARE_OF_WEALTH", "PARTICIPANT_PRICE_MANAGEMENT_PRICING", "PARTICIPANT_PRICE_MANAGEMENT_REALIZED_SHARE_TAX_EQUITY", "PARTICIPANT_PRICE_MANAGEMENT_REALIZED_COST_PRICE", "PARTICIPANT_PRICE_MANAGEMENT_REALIZED_SHARE_OF_PRICE_ADJUSTMENT", "PARTICIPANT_PRICE_MANAGEMENT_ACCUMULATED_ADJUSTMENTS", "PARTICIPANT_ASSESSMENT_REPORT_COMPANY_NAME", "PARTICIPANT_ASSESSMENT_REPORT_ORG_NUMBER", "PARTICIPANT_ASSESSMENT_REPORT_MUNICIPALITY_ID", "PARTICIPANT_ASSESSMENT_REPORT_COUNTRY_CODE", "PARTICIPANT_ASSESSMENT_REPORT_VALUE_BEFORE_APPRECIATION_FOR_NET_ASSETS", "PARTICIPANT_ASSESSMENT_REPORT_DEBT", "PARTICIPANT_ASSESSMENT_REPORT_ORDINARY_INCOME", "PARTICIPANT_ASSESSMENT_REPORT_LOSS", "PARTICIPANT_ASSESSMENT_REPORT_PAYMENT_TO_PARTICIPANT", "PARTICIPANT_ASSESSMENT_REPORT_GAIN_ON_REALIZATION_OF_SHARE", "PARTICIPANT_ASSESSMENT_REPORT_LOSS_ON_REALIZATION_OF_SHARE", "PARTICIPANT_REPORT_ROE_TRANSFER_TYPE", "PARTICIPANT_REPORT_ROE_NAME", "PARTICIPANT_REPORT_ROE_IDENTIFICATION", "PARTICIPANT_REPORT_ROE_TRANSACTION_TYPE", "PARTICIPANT_REPORT_ROE_TIME", "PARTICIPANT_REPORT_ROE_AMOUNT", "PARTICIPANT_REPORT_ROE_REMUNERATION", "PARTICIPANT_REPORT_ROE_COSTS", "PARTICIPANT_REPORT_ROE_ADDITION_NON_DEDUCTIBLE_LOSS", "PARTICIPANT_REPORT_ROE_UNUSED_SHIELDING_PREVIOUS_YEARS", "PARTICIPANT_REPORT_ROE_OTHER_CORRECTIONS", "PARTICIPANT_REPORT_ROE_GAIN_LOSS_REALIZATION", "PARTICIPANT_REPORT_ROE_IS_COVERED_EXEMPTION_METHOD", "PARTICIPANT_REPORT_ROE_ACQUIRED_INITIAL_VALUE", "PARTICIPANT_REPORT_ROE_PRICE", "PARTICIPANT_REPORT_TAX_BASIS_SPECIFICATION_REALIZATION_OF_SHARE_VALUE", "PARTICIPANT_REPORT_SHIELDING_DEDUCTION_OFFSET_AGAINST_REALIZATION_GAIN", "PARTICIPANT_REPORT_SHIELDING_BASIS_REDUCTION_OF_USED_SHIELDING_DUE_TO_REALIZATION", "PARTICIPANT_REPORT_TAX_BASIS_SPECIFICATION_ACQUISITION_OF_SHARE_VALUE", "YEAR_END_ATTACHMENT_TOGGLE_ENABLED", "COOPERATIVE_ENTERPRISE_TAXABLE_BUSINESS_INCOME", "COOPERATIVE_ENTERPRISE_FROM_SALES_INVOLVING_MEMBER", "COOPERATIVE_ENTERPRISE_SALES_INVOLVING_MEMBER_SEPARATE", "COOPERATIVE_ENTERPRISE_SALES_INVOLVING_MEMBER_ANOTHER", "COOPERATIVE_ENTERPRISE_OTHER_SALES", "COOPERATIVE_ENTERPRISE_RETROACTIVE_PAYMENT_ETC_SEPARATE", "COOPERATIVE_ENTERPRISE_RETROACTIVE_PAYMENT_ETC_OTHER", "COOPERATIVE_ENTERPRISE_CONDITIONS_FOR_DEDUCTION_RETROACTIVE_PAYMENT_ARE_MET", "COOPERATIVE_ENTERPRISE_PURCHASE_INVOLVING_MEMBER_SEPARATE", "COOPERATIVE_ENTERPRISE_PURCHASE_INVOLVING_MEMBER_ANOTHER", "COOPERATIVE_ENTERPRISE_OTHER_PURCHASES", "COOPERATIVE_ENTERPRISE_DECIDED_PAID_BACK_PAYMENT", "COOPERATIVE_ENTERPRISE_CARRY_FORWARD_DEDUCTION_THIS_YEAR", "COOPERATIVE_ENTERPRISE_DECIDED_ALLOCATED_PROFIT", "COOPERATIVE_ENTERPRISE_COOPERATIVE_TYPE", "COOPERATIVE_ENTERPRISE_DEDUCTION_LIMIT_INCOME_YEAR", "COOPERATIVE_ENTERPRISE_DEDUCTION_LIMIT_PREVIOUS_YEAR", "OTHER_CIRCUMSTANCES_TOTAL_DISTRIBUTED_DIVIDEND", "OTHER_CIRCUMSTANCES_INTEREST_ON_EQUITY_CERTIFICATE", "OTHER_CIRCUMSTANCES_COMPANY_HAS_GRANTED_LOAN", "OTHER_CIRCUMSTANCES_SHAREHOLDER_HAS_GRANTED_LOAN", "OTHER_CIRCUMSTANCES_LOAN_AMOUNT_TO_SHAREHOLDER", "OTHER_CIRCUMSTANCES_LOAN_AMOUNT_TO_COMPANY", "OTHER_CIRCUMSTANCES_INTEREST_RECOGNISED_AS_INCOME", "OTHER_CIRCUMSTANCES_INTEREST_RECOGNISED_AS_EXPENSES", "OTHER_CIRCUMSTANCES_LOAN_BALANCE", "OTHER_CIRCUMSTANCES_COLLATERAL_AMOUNT", "OTHER_CIRCUMSTANCES_COLLATERAL_AMOUNT_INCOME_YEAR_TO_COMPANY", "OTHER_CIRCUMSTANCES_COLLATERAL_AMOUNT_INCOME_YEAR_TO_SHAREHOLDER", "OTHER_CIRCUMSTANCES_RENTAL_WITHDRAWAL_SALE_GRANTED", "OTHER_CIRCUMSTANCES_RENTAL_SALE_GRANTED", "OTHER_CIRCUMSTANCES_ASSET_TYPE", "OTHER_CIRCUMSTANCES_PRICING_METHOD", "OTHER_CIRCUMSTANCES_RENTAL_VALUE", "OTHER_CIRCUMSTANCES_VALUE_OF_SALE_OR_WITHDRAWAL", "RESEARCH_AND_DEVELOPMENT_PROJECT_NUMBER", "RESEARCH_AND_DEVELOPMENT_PROJECT_TITLE", "RESEARCH_AND_DEVELOPMENT_PROJECT_CATEGORY", "RESEARCH_AND_DEVELOPMENT_APPLICATION_APPROVED_DATE", "RESEARCH_AND_DEVELOPMENT_PROJECT_START_DATE", "RESEARCH_AND_DEVELOPMENT_PROJECT_END_DATE", "RESEARCH_AND_DEVELOPMENT_APPROVED_RND_INCENTIVE_START_YEAR", "RESEARCH_AND_DEVELOPMENT_APPROVED_RND_INCENTIVE_END_YEAR", "RESEARCH_AND_DEVELOPMENT_PROJECT_STATUS", "RESEARCH_AND_DEVELOPMENT_PROJECT_STATUS_DATE", "RESEARCH_AND_DEVELOPMENT_BUSINESS_CATEGORY", "RESEARCH_AND_DEVELOPMENT_IS_COLLABORATIVE_PROJECT_WITH_OTHER_ENTERPRISES", "RESEARCH_AND_DEVELOPMENT_HAS_EXTENSIVE_DISSEMINATION_THROUGH_CONFERENCES_PUBLICATIONS_ETC", "RESEARCH_AND_DEVELOPMENT_TOTAL_COSTS_PREVIOUS_YEARS", "RESEARCH_AND_DEVELOPMENT_TOTAL_GROSS_TAX_DEDUCTION_FROM_PREVIOUS_YEARS", "RESEARCH_AND_DEVELOPMENT_TOTAL_GROSS_TAX_DEDUCTION_FROM_INCOME_YEAR", "RESEARCH_AND_DEVELOPMENT_INCLUDED_PERSONNEL_COSTS_IN_INCOME_YEAR", "RESEARCH_AND_DEVELOPMENT_NUMBER_OF_OWN_HOURS_IN_INCOME_YEAR", "RESEARCH_AND_DEVELOPMENT_PUBLIC_SUPPORT_AS_REDUCED_WORKER_FEE", "RESEARCH_AND_DEVELOPMENT_WAS_IN_ECONOMIC_DIFFICULTIES_AT_APPLICATION_TIME", "RESEARCH_AND_DEVELOPMENT_UNDERLYING_DOCUMENTS_USED_FOR_ASSESSMENT", "RESEARCH_AND_DEVELOPMENT_UNDERLYING_DOCUMENTATION_DATE", "RESEARCH_AND_DEVELOPMENT_RESOLUTION_DATE", "RESEARCH_AND_DEVELOPMENT_RESOLUTION_TYPE", "RESEARCH_AND_DEVELOPMENT_RESOLUTION_DELIMITATION", "RESEARCH_AND_DEVELOPMENT_OTHER_PUBLIC_SUPPORT_PAYER_NAME", "RESEARCH_AND_DEVELOPMENT_OTHER_PUBLIC_SUPPORT_AMOUNT", "RESEARCH_AND_DEVELOPMENT_TOTAL_COSTS_EXCLUDED_FROM_TAX_DEDUCTION", "RESEARCH_AND_DEVELOPMENT_PROJECT_TO_BE_SIGNED_BY_AUDITOR", "RESEARCH_AND_DEVELOPMENT_STAKE_IN_COLLABORATIVE_PROJECT", "RESEARCH_AND_DEVELOPMENT_APPLIED_FOR_OTHER_PUBLIC_SUPPORT_IN_NORWAY", "RESEARCH_AND_DEVELOPMENT_WORK_PACKAGE_ID", "RESEARCH_AND_DEVELOPMENT_WORK_PACKAGE_TITLE", "RESEARCH_AND_DEVELOPMENT_WORK_PACKAGE_TOTAL_COST_FROM_PREVIOUS_YEAR", "RESEARCH_AND_DEVELOPMENT_WORK_PACKAGE_RECEIVED_PUBLIC_SUPPORT", "RESEARCH_AND_DEVELOPMENT_COLLABORATIVE_BUSINESS_ORG_NO", "RESEARCH_AND_DEVELOPMENT_COLLABORATIVE_BUSINESS_DESCRIPTION", "TIMBER_ACCOUNT_SHARE_OF_OPERATING_REVENUES_HUNTING_FISHING_ETC_MANUAL", "TIMBER_ACCOUNT_STANDARD_INCOME_FROM_BIOMASS_OR_WOOD_PRODUCTION_TRANSFERRED_AGRIGULTURE", "TIMBER_ACCOUNT_SHARE_OF_PROFIT_TO_REGISTER", "TIMBER_ACCOUNT_INCOMING_VALUE_FROM_AQUIRED_TIMBER_ACCOUNT", "TIMBER_ACCOUNT_VALUE_OF_SHARE_OF_REALIZED_TIMBER_ACCOUNT", "TIMBER_ACCOUNT_SHARE_OF_BASIS_NEXT_YEAR", "TIMBER_ACCOUNT_REMAINDER_NOT_TAXED_FELLING", "TIMBER_ACCOUNT_REMAINDER_INCLUDED_THIS_YEAR", "TIMBER_ACCOUNT_MUNICIPALITY_NO", "TIMBER_ACCOUNT_PAID_PUBLIC_CONTRIBUTION_FOREST_FUND", "TIMBER_ACCOUNT_SHARE_OF_OPERATING_REVENUES_HUNTING_FISHING_ETC", "CONTROLLED_TRANSACTIONS_EXEMPT_TRANSACTION_SHARING", "CONTROLLED_TRANSACTIONS_EXEMPT_PRICE_SHARING", "CONTROLLED_TRANSACTIONS_CONSOLIDATED_MARGIN_YEAR", "CONTROLLED_TRANSACTIONS_CONSOLIDATED_MARGIN_PERCENTAGE", "CONTROLLED_TRANSACTIONS_REPORTS_ONLY_PROVISION_INCOME", "CONTROLLED_TRANSACTIONS_COST_OF_IMMATERIAL_ASSETS", "CONTROLLED_TRANSACTIONS_NUMBER_OF_REGISTERED_PATENTS", "CONTROLLED_TRANSACTIONS_GROUP_HAS_BEEN_RESTRUCTURED", "CONTROLLED_TRANSACTIONS_COMPANY_HAS_SERVICED_OTHER_COMPANY_IN_GROUP_FOR_FREE", "CONTROLLED_TRANSACTIONS_COMPANY_IS_GUARANTOR_FOR_AGREEMENTS_BY_OTHER_COMPANIES_IN_SAME_GROUP", "CONTROLLED_TRANSACTIONS_RELATED_COMPANY_IDENTIFIER", "CONTROLLED_TRANSACTIONS_RELATED_COMPANY_NAME", "CONTROLLED_TRANSACTIONS_RELATED_COMPANY_COUNTRY", "CONTROLLED_TRANSACTIONS_FUNCTION_AND_RISK_FUNCTION_TYPE", "CONTROLLED_TRANSACTIONS_FUNCTION_AND_RISK_RISK_TYPE", "CONTROLLED_TRANSACTIONS_FUNCTION_AND_RISK_DESCRIPTION", "CONTROLLED_TRANSACTIONS_COMPANY_SPECIFICATION_COMPANY_IDENTIFIER", "CONTROLLED_TRANSACTIONS_COMPANY_SPECIFICATION_COMPANY_NAME", "CONTROLLED_TRANSACTIONS_COMPANY_SPECIFICATION_COMPANY_COUNTRY", "CONTROLLED_TRANSACTIONS_TRANSACTION_TYPE", "CONTROLLED_TRANSACTIONS_TRANSACTION_DESCRIPTION", "CONTROLLED_TRANSACTIONS_TRANSACTION_AMOUNT", "CONTROLLED_TRANSACTIONS_OUTSTANDING_ACCOUNT", "CONTROLLED_TRANSACTIONS_OUTSTANDING_AMOUNT", "CONTROLLED_TRANSACTIONS_OUTSTANDING_COUNTRY_CODE", "CONTROLLED_TRANSACTIONS_TRANSACTION_COUNTRY_CODE", "CONTROLLED_TRANSACTIONS_RESULT_AS_PERCENTAGE_OF_GROSS_REVENUE", "CONTROLLED_TRANSACTIONS_MAIN_BUSINESS_ACTIVITY", "CONTROLLED_TRANSACTIONS_NUMBER_OF_ENTITIES_WITH_CONTROLLED_TRANSACTIONS_IN_NORWAY", "CONTROLLED_TRANSACTIONS_NUMBER_OF_ENTITIES_WITH_CONTROLLED_TRANSACTIONS_OUTSIDE_NORWAY", "CONTROLLED_TRANSACTIONS_COMPANY_HAS_BEEN_SERVICED_BY_OTHER_COMPANY_IN_GROUP_FOR_FREE", "CONTROLLED_TRANSACTIONS_HAS_CONTROLLED_TRANSACTIONS_EXCEEDING_LIMIT", "CONTROLLED_TRANSACTIONS_IS_OBLIGED_TO_DOCUMENT", "INTEREST_LIMITATION_COMPANY_COMPLIANCE_WITH_INTEREST_LIMITATION", "INTEREST_LIMITATION_NET_INTEREST_COSTS_NORWEGIAN_GROUP_EXCEEDS_25MNOK", "INTEREST_LIMITATION_COMPANY_USES_EXCEPTION_RULE", "INTEREST_LIMITATION_GROUP_APEX_COMPANY_NAME", "INTEREST_LIMITATION_GROUP_APEX_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_GROUP_APEX_COUNTRY_CODE", "INTEREST_LIMITATION_NORWEGIAN_PART_OF_GROUP_REPORTED_ANOTHER_COMPANY", "INTEREST_LIMITATION_NORWEGIAN_PART_OF_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_NORWEGIAN_PART_OF_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_NORWEGIAN_PART_OF_GROUP_COUNTRY_CODE", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_CORRECTION_OF_INTEREST_EXPENSES", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_CORRECTION_OF_INTEREST_INCOME", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_GUARANTEE_COMMISSIONS_ON_DEBT", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_LOSS_ON_REALIZATION_OF_PREMIUM_DISCOUNT_BONDS", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_GAIN_ON_REALIZATION_OF_PREMIUM_DISCOUNT_BONDS", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_LOSS_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_COMPANIES_IN_SAME_GROUP_COSTS_FOR_GUARANTEE_COMMISSION", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_COMPANY_IN_SAME_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_COMPANY_IN_SAME_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_COMPANY_IN_SAME_GROUP_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_COMPANY_IN_SAME_GROUP_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_GROUP_GUARANTOR_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_GROUP_GUARANTOR_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_GROUP_GUARANTOR_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_GROUP_GUARANTOR_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_WITH_OUTSTANDING_CLAIM_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_WITH_OUTSTANDING_CLAIM_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_WITH_OUTSTANDING_CLAIM_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_OTHER_WITH_OUTSTANDING_CLAIM_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANY_IN_SAME_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANY_IN_SAME_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANY_IN_SAME_GROUP_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANY_IN_SAME_GROUP_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANIES_IN_SAME_GROUP_LOSS_FOR_HOLDER_ON_REALIZATION_OF_PREMIUM_DISCOUNT_BOND", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANIES_IN_SAME_GROUP_GAIN_FOR_HOLDER_UPON_REALIZATION_OF_PREMIUM_DISCOUNT_BOND", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANIES_IN_SAME_GROUP_LOSS_FOR_HOLDER_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_COMPANIES_IN_SAME_GROUP_GAIN_FOR_HOLDER_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_GROUP_GUARANTOR_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_GROUP_GUARANTOR_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_GROUP_GUARANTOR_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_GROUP_GUARANTOR_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_WITH_OUTSTANDING_CLAIM_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_WITH_OUTSTANDING_CLAIM_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_WITH_OUTSTANDING_CLAIM_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_OTHER_WITH_OUTSTANDING_CLAIM_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_COSTS_FOR_GUARANTEE_COMMISSION", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_LOSS_FOR_HOLDER_ON_REALIZATION_OF_PREMIUM_DISCOUNT_BOND", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_GAIN_FOR_HOLDER_UPON_REALIZATION_OF_PREMIUM_DISCOUNT_BOND", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_LOSS_FOR_HOLDER_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_INTEREST_INCOME_FROM_RELATED_PARTY_OUTSIDE_GROUP_GAIN_FOR_HOLDER_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_COMPANIES_INCLUDED_IN_NORWEGIAN_PART_OF_GROUP_COMPANY_NAME", "INTEREST_LIMITATION_COMPANIES_INCLUDED_IN_NORWEGIAN_PART_OF_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_COMPANIES_INCLUDED_IN_NORWEGIAN_PART_OF_GROUP_NET_INTEREST_COST", "INTEREST_LIMITATION_COMPANIES_INCLUDED_IN_NORWEGIAN_PART_OF_GROUP_NET_DEDUCTIBLE_INTEREST_COST", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_ORGANIZATION_NUMBER", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_COUNTRY_CODE", "INTEREST_LIMITATION_INTEREST_EXPENSES_TO_RELATED_PARTY_OUTSIDE_GROUP_INTEREST_TRANSACTIONS", "INTEREST_LIMITATION_CALCULATION_OF_TOTAL_COSTS_GAIN_ON_REALIZATION_OF_COMPOSITE_VOLUME_DEBT_INSTRUMENTS", "INTEREST_LIMITATION_CALCULATION_OF_INTEREST_DEDUCTION_LIMIT_AMORTIZED_LEASE_COST", "INTEREST_LIMITATION_CALCULATION_OF_INTEREST_DEDUCTION_LIMIT_DEDUCTION_FOR_GROUP_CONTRIBUTIONS_NOT_INCLUDED_IN_CALCULATION_BASIS", "FORWARDING_DISALLOWED_INTEREST_DEDUCTION_INCOME_YEAR", "FORWARDING_DISALLOWED_INTEREST_DEDUCTION_CARRIED_FORWARD_FROM_PREVIOUS_YEAR", "INTEREST_LIMITATION_COMPANY_CARRIED_FORWARD_INTEREST_DEDUCTIONS_FROM_PREVIOUS_YEARS", "TAX_ASSESSMENT_NEGATIVE_PERSONAL_INCOME_PREVIOUS_YEAR_OWNER", "TAX_ASSESSMENT_NEGATIVE_PERSONAL_INCOME_PREVIOUS_YEAR_SPOUSE", "TAX_ASSESSMENT_COORDINATION_OTHER_PERSONAL_INCOME_OWNER", "TAX_ASSESSMENT_COORDINATION_OTHER_PERSONAL_INCOME_SPOUSE", "TAX_ASSESSMENT_COORDINATION_COORDINATION_GENERAL_PARTNERSHIP_OWNER", "TAX_ASSESSMENT_COORDINATION_COORDINATION_GENERAL_PARTNERSHIP_SPOUSE", "TAX_ASSESSMENT_SALARY_INCOME_OWNER", "TAX_ASSESSMENT_SALARY_INCOME_SPOUSE", "TAX_ASSESSMENT_SICK_PAYABLE_FISHING_ETC_OWNER", "TAX_ASSESSMENT_SICK_PAYABLE_FISHING_ETC_SPOUSE", "TAX_ASSESSMENT_SICK_PAYABLE_AGRICULTURE_OWNER", "TAX_ASSESSMENT_SICK_PAYABLE_AGRICULTURE_SPOUSE", "TAX_ASSESSMENT_SICK_PAYABLE_OTHER_OWNER", "TAX_ASSESSMENT_SICK_PAYABLE_OTHER_SPOUSE", "TAX_ASSESSMENT_OTHER_PENSIONABLE_INCOME_OWNER", "TAX_ASSESSMENT_OTHER_PENSIONABLE_INCOME_SPOUSE", "TAX_ASSESSMENT_CONDITIONS_ARE_SPECIAL_ALLOWANCE_AGRICULTURE_MET", "TAX_ASSESSMENT_SHARE_FROM_SDF", "REINDEER_HUSBANDRY", "REINDEER_HUSBANDRY_CAPITAL_COSTS_MINUS_CAPITAL_REVENUES", "REINDEER_HUSBANDRY_CORRECTED_BUSINESS_INCOME_TWO_YEARS_AGO", "REINDEER_HUSBANDRY_CORRECTED_BUSINESS_INCOME_ONE_YEAR_AGO", "REINDEER_HUSBANDRY_WITHDRAWAL", "REINDEER_HUSBANDRY_DEPOSIT", "AGRICULTURAL_ACCOUNT_DEPARTMENTS", "AGRICULTURAL_ACCOUNT_SHARE_OF_OPERATING_COSTS", "AGRICULTURAL_ACCOUNT_INCOME_FROM_BIOMASS_OR_WOOD_PRODUCTION", "AGRICULTURAL_ACCOUNT_OPERATIONAL_ENTITY", "AGRICULTURAL_ACCOUNT_MUNICIPALITY", "AGRICULTURAL_ACCOUNT_TRANSFER_TO_AGRICULTURAL_ACCOUNT", "AGRICULTURAL_ACCOUNT_INHERITED_UPON_INHERITANCE_GENERATIONAL_CHANGE", "AGRICULTURAL_ACCOUNT_REALIZED_UPON_INHERITANCE_GENERATIONAL_CHANGE", "AGRICULTURAL_ACCOUNT_SHARE_OF_BASIS_NEXT_YEAR", "AGRICULTURAL_ACCOUNT_SHARE_OF_OPERATING_COSTS_MANUAL", "AGRICULTURAL_ACCOUNT_OWN_CORRECTIONS_INCOME", "AGRICULTURAL_ACCOUNT_OWN_CORRECTIONS_INCOME_MANUAL" ] }, "label" : { "type" : "string", "description" : "The label of the toggle", "readOnly" : true }, "info" : { "type" : "string", "description" : "Additional information about the toggle", "readOnly" : true }, "guardMessage" : { "type" : "string", "description" : "The message to display when toggle is attempted to be turned off while data exists", "readOnly" : true }, "checked" : { "type" : "boolean", "description" : "The checked state of the toggle", "readOnly" : true }, "disabled" : { "type" : "boolean", "description" : "The disabled state of the toggle", "readOnly" : true }, "guarded" : { "type" : "boolean", "description" : "The guard state of the toggle, if this is on then it prevents the user from unchecking the toggle and displays the guard message", "readOnly" : true } } }, "ResponseWrapperWhatToReportToggle" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/WhatToReportToggle" } } }, "ResponseWrapperZtlAccount" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ZtlAccount" } } }, "ResponseWrapperZtlConsent" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ZtlConsent" } } }, "ZtlConsent" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "consentUrl" : { "type" : "string", "readOnly" : true }, "valid" : { "type" : "boolean", "readOnly" : true }, "status" : { "type" : "string", "readOnly" : true, "enum" : [ "UNKNOWN", "ACCEPTED", "REJECTED", "AUTHORIZATION_REQUIRED", "REVOKED_BY_USER", "REVOKED_BY_REMOVING_ACCESS", "REVOKED_BY_CREATING_NEW_CONSENT", "SCHEDULED_FOR_REVOKING", "EXPIRED", "REVOKED_BY_NO_ACCOUNT_MATCH", "AWAITING_AUTHORIZATION", "VALID", "REVOKED" ] }, "expirationDate" : { "type" : "string", "readOnly" : true }, "bank" : { "$ref" : "#/components/schemas/Bank" }, "consentReference" : { "type" : "string" }, "ztlAccounts" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ZtlAccount" } }, "userIdOrSsn" : { "type" : "string", "description" : "userId for DNB, socialSecurityNumber for other banks" }, "creationSource" : { "type" : "string", "description" : "Specify where the consent was created from", "enum" : [ "SETTINGS", "SWITCH_INTEGRATION" ] } }, "readOnly" : true }, "ResponseWrapperZtlConsentWarning" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ZtlConsentWarning" } } }, "ZtlConsentWarning" : { "type" : "object", "properties" : { "type" : { "type" : "string", "readOnly" : true, "enum" : [ "VALID_CONSENT_CREATED_BEFORE_MERGE", "EXPIRED", "EXPIRING", "NO_CONSENTS" ] }, "message" : { "type" : "string", "readOnly" : true }, "mustRenewConsentBankId" : { "type" : "integer", "format" : "int32", "readOnly" : true } } }, "ListResponseZtlConsent" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ZtlConsent" } } } }, "ResponseWrapperZtlOnboarding" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ZtlOnboarding" } } }, "ZtlOnboarding" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int64" }, "version" : { "type" : "integer", "format" : "int32" }, "changes" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/Change" } }, "url" : { "type" : "string", "readOnly" : true }, "onboardingUrl" : { "type" : "string" }, "completedOnboarding" : { "type" : "boolean" }, "pending" : { "type" : "boolean" }, "status" : { "type" : "string", "enum" : [ "UNKNOWN", "PROCESSING", "PENDING", "COMPLETED", "FAILED", "CANCELLED", "ARCHIVED", "ALREADY_ONBOARDED", "COMPANY_NOT_FOUND", "INVALID_COMPANY_TYPE", "DECLINED_ENK_NO_VAT", "DECLINED_RISK_EVALUATION", "DOCUMENT_SIGNED_AWAITING_PACKAGING", "DOCUMENT_SIGNED_PACKAGING_COMPLETE", "MANUAL_HANDLING", "SIGNORDER_EXPIRED", "DECLINED_MISSING_COMPANY_TIME", "VOLUNTARY_CREDIT_BLOCK_BISNODE", "MARKED_FOR_CANCELLING_SUBSCRIPTION_AT_ZTL", "DEACTIVATED_IN_ZTL", "CREATED", "AWAITING_CUSTOMER_ACTION", "MANUAL_HANDLING_V2", "ACCEPTED", "REJECTED" ] } } }, "ListResponseZtlOnboarding" : { "type" : "object", "properties" : { "fullResultSize" : { "type" : "integer", "description" : "Indicates whether there are more values available. Note: The value is not exact", "format" : "int64", "readOnly" : true }, "from" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "count" : { "type" : "integer", "format" : "int64", "readOnly" : true }, "versionDigest" : { "type" : "string", "description" : "Used to know if the paginated list has changed.", "readOnly" : true }, "values" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ZtlOnboarding" } } } }, "ResponseWrapperZtlSettings" : { "type" : "object", "properties" : { "value" : { "$ref" : "#/components/schemas/ZtlSettings" } } }, "ZtlEmployee" : { "type" : "object", "properties" : { "id" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "name" : { "type" : "string", "readOnly" : true }, "pictureId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "companyId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "consent" : { "$ref" : "#/components/schemas/ZtlConsent" } }, "readOnly" : true }, "ZtlSettings" : { "type" : "object", "properties" : { "data" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ZtlSettingsData" } } } }, "ZtlSettingsData" : { "type" : "object", "properties" : { "bankName" : { "type" : "string", "readOnly" : true }, "bankId" : { "type" : "integer", "format" : "int32", "readOnly" : true }, "accounts" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ZtlAccount" } }, "employees" : { "type" : "array", "readOnly" : true, "items" : { "$ref" : "#/components/schemas/ZtlEmployee" } } }, "readOnly" : true } }, "securitySchemes" : { "tokenAuthScheme" : { "type" : "http", "description" : "Basic AUTH where username is company/customer id for proxy use (or 0 for default), password should be set to the session token", "scheme" : "basic" } } } }