From 8ca6a7a1bb4f2a49858bfdd96b02938fb8176176 Mon Sep 17 00:00:00 2001 From: Joscha Wagner Date: Fri, 9 Feb 2024 19:00:49 +0100 Subject: [PATCH] new prebuild --- oas.yml | 1046 +++++++++++++++++++++++----------------------- oas_changed.yml | 658 ++++++++++++++--------------- prebuild.py | 108 +++++ requirements.txt | 3 + 4 files changed, 959 insertions(+), 856 deletions(-) create mode 100644 prebuild.py create mode 100644 requirements.txt diff --git a/oas.yml b/oas.yml index 95abaa4..e5b24a9 100644 --- a/oas.yml +++ b/oas.yml @@ -1,12 +1,9 @@ -security: - - BearerAuth: [] # Dies wendet das Schema global an - servers: - url: 'https://api.rentman.net/' description: url info: - title: 'Rentman API' + title: 'Rentman API Documentation' description: "Rentman4G API is an easy to use **RESTful** inspired API.\r\n\r\n# Introduction\r\n\r\nThis API enables you to interact with Rentman programmatically. You can use this API to create automatic\r\nsynchronisations, connect other software applications, or develop any other type of integration. This page documents all\r\nthe resources available in the Rentman API. The amount of resources is limited for now but more data types will be added\r\nat a later stage. You can request more data types by getting in touch via\r\nour Public Roadmap.\r\n\r\nTo further improve the Rentman API we would like to know what kind of integrations you are developing. \r\nPlease share us your ideas or already developed connections at support@rentman.io\r\n\r\n## Authentication\r\n\r\nRentman uses **JWT** for authentication. This token is unique for every Rentman user. The **JWT** can be generated in\r\nthe **extensions** tab in **configuration** in the Rentman application. Only the last generated token will be a valid\r\ntoken. When regenerating a token the previous token will not work anymore.\r\n\r\n## Headers\r\n\r\nEach request to this API expects some request headers to be set.\r\n\r\n- `Content-Type` - This should always be set to `application/json`\r\n- `Authorization` - This header should be of the form `Bearer `, where `token` is the JWT from the rentman\r\n account.\r\n\r\n## Response Format\r\n\r\nEvery successful `GET` response from the Rentman Open API is a JSON object consisting of a `data` key and other\r\nmetadata. The `data` key contains an array of JSON objects representing the requested items if the request is for a\r\ncollection. The `data` key contains a JSON object representing the requested item if the request is for one item.\r\nThe `data` key responses of `POST` and `PUT` contain the created and updated items respectively. Successful `DELETE`\r\nrequests don't have responses. The keys other than the `data` key are:\r\n\r\n- `itemCount` - The amount of items in the response.\r\n- `limit` - The maximal amount of items that can be returned. This equals the limit parameter if it is set. Otherwise,\r\n it is the response data limit.\r\n- `offset` - The amount of items skipped in the response items. This equals the offset parameter if it is set.\r\n Otherwise, it is `0`. All the keys are always given when a response is present.\r\n\r\n## Querying\r\n\r\nThe Rentman API support several types of querying with query parameters:\r\n\r\n- `fields` - The value of the `fields` key is a set of all fields that are requested. For\r\n example, `displayname,firstname` will only return the displayname and the firstname of every object. There are some\r\n fields that will always be returned such as `id`, `created` and `modified`.\r\n- `sort` - The value of the `sort` key is a set of fields where the items are sorted on. For example, `+id,-firstname`\r\n will return an array of items first sorted on id ascending and then sorted on firstname descending.\r\n\r\nIt is also possible to filter on values of fields when requesting a collection of items.\r\n> Example: To only get the contacts situated in Great Britain, a query can be added with the key `country` and the value `gb`.\r\n\r\n```\r\nGET https://api.rentman.net/contacts?country=gb\r\n```\r\n\r\n### Relational operators\r\n\r\nThe following relational operators can be used for filtering:\r\n\r\n- `lt` - less than (`<`)\r\n- `gt` - greater than (`>`)\r\n- `lte` - less than or equal to (`<=`)\r\n- `gte` - greater than or equal to (`>=`)\r\n- `neq` - not equal to (`!=`). This can also be used with multiple values, in which case it behaves like 'not in'\r\n\r\n> Example: The filter `distance[lte]=300` can be used to only retrieve items with a distance less than or equal to 300.\r\n\r\n```\r\nGET https://api.rentman.net/contacts?distance[lte]=300\r\n```\r\n\r\n### Filtering null values\r\n\r\nFiltering on null values is possible by putting `[isnull]` behind a field name, followed by a boolean value, which can\r\nbe `true`, `false`, `1` or `0`.\r\n\r\n> Example: The filter `folder[isnull]=false` can be used to only retrieve items where the value of `folder` is not null.\r\n\r\n```\r\nGET https://api.rentman.net/contacts?folder[isnull]=false\r\n```\r\n\r\n### Pagination\r\n\r\nPagination works with the `limit` and `offset` parameters.\r\n\r\n- `limit` - The value of the `limit` key is the amount of items returned. A limit of `2` will only return the first two\r\n items.\r\n- `offset` - The value of the `offset` key is the amount of items skipped. An offset of `3` will not show the first\r\n three items. Commonly used in combination with `limit` to paginate.\r\n\r\n> Example: To request the first 30 items of a collection in sets of 10 items three requests have to be made. All requests should have the parameter `limit=10`. The first request has in addition the parameter `offset=0` (this is the default, so it can be omitted as well), the second request has the parameter `offset=10` and the third has the parameter `offset=20`.\r\n\r\n```\r\nGET https://api.rentman.net/contacts?limit=10&offset=0\r\n```\r\n\r\n```\r\nGET https://api.rentman.net/contacts?limit=10&offset=10\r\n```\r\n\r\n```\r\nGET https://api.rentman.net/contacts?limit=10&offset=20\r\n```\r\n\r\n## Limitations\r\n\r\n### Possible sort inconsistencies\r\n\r\nEvery request sent to the Rentman API also sends a request to the Rentman backend to retrieve information. All query\r\nparameters that are given to a Rentman API request are also given the Rentman backend request, except for the sorting\r\nparameter. Due to limitations, when pagination and sorting is applied at the same time only the first field of the\r\nsorting parameter can be used before paginating in the Rentman backend. When the Rentman API retrieves the paginated\r\nitems from the Rentman backend, the items will be sorted and returned. This results in a pagination sorted only on the\r\nfirst sorting field and can cause some inconsistencies where items that are supposed to be on the page request by the\r\nsecond or third sorting parameter are on different pages since these sort parameters are not taken into account when\r\npaginating.\r\n\r\nThis issue can only exist when sorting on multiple fields and paginating at the same time.\r\n\r\n### Generated fields\r\n\r\nSome fields contain a `GENERATED FIELD` tag. All fields with this tag cannot be used for sorting while the `limit`\r\nand `offset` parameters are not empty. Generated fields are fields that the Rentman backend computes and are not stored\r\nin the database.\r\n\r\nThis is a limitation due to the way these parameters are computed in the API. Every request sent to the Rentman API also\r\nsends a request to the Rentman backend to retrieve information. The `limit` and `offset` parameters are added to this\r\nrequest to the Rentman backend. If there is a sorting parameter given to the Rentman API request, the first field of the\r\nsorting parameter is also sent with the Rentman backend request. The Rentman backend then sorts and returns a subset of\r\nthe items as defined by the query parameters of the Rentman API request. Due to limitations of the Rentman backend, the\r\nsort value that is sent to the Rentman backend cannot be one of the generated fields.\r\n\r\nThe fields containing `GENERATED FIELD` are also not queryable for filtering.\r\n\r\n## Omitted fields in list requests\r\n\r\nTo keep requests at a low cost, some fields of items are omitted when in a collection request. To get the values of\r\nthese fields, the specific item has to be requested. The fields that are returned are specified in the documentation for\r\nthe specific requests.\r\n\r\n## Custom fields\r\n\r\nCustom fields can be accessed via the `custom` key in `data`. These custom fields will have generic keys with the\r\nformat `custom_`. Custom fields are not queryable.\r\n\r\n## Custom child collections\r\n\r\nThe Rentman API borrows the link structure from Rentman backend in most cases. However, some useful links (\r\ne.g. `projects` linking to `plannedequipment`) do not exist in the Rentman backend. For the Rentman API these links are\r\ncustom implemented and can be recognized by the `Get custom linked collection` title.\r\ne.g. `Get plannedequipment custom linked collection` for `projects`. It will never be possible to create items through\r\nthese linked collections since these links don't actually exist in the Rentman backend. It may also be possible that\r\nrelevant parent fields are missing in these custom children.\r\n\r\n## updateHash\r\n\r\nEvery item that is requested also contains a field `updateHash`. This is a field that is generated by the Rentman API\r\nand is a hash value computed with the `id` and `modified` field of the item. This hash can therefore be used to\r\nrecognize when an item is updated, since this field is unique per item and per update of that item.\r\n\r\n## Response data limitation\r\n\r\nDue to data traffic limitations responses to collection, requests are limited to 300 items per response. If a request is\r\ndone for more than 300 items, only the first 300 items are returned. If you want to request more than 300 items it is\r\nnecessary to use the `limit` and `offset` parameters to paginate your requests.\r\n\r\n## Rate limitation\r\n\r\nThe rate at which requests can be sent to the Rentman API is limited to 50.000 requests per day, and 10 requests per second. A maximum of 20 requests can be sent at once." version: 1.6.3 tags: @@ -145,7 +142,7 @@ tags: paths: /accessories: get: - operationId: Accessory_collection_get + operationId: Accessoire_collection_get summary: 'Get accessories collection.' description: "" tags: @@ -156,10 +153,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/AccessoryCollectiongetResponseSchema' + $ref: '#/components/schemas/AccessoireCollectiongetResponseSchema' /appointmentcrew: get: - operationId: Appointmentcrew_collection_get + operationId: Afspraakmedewerker_collection_get summary: 'Get appointmentcrew collection.' description: "" tags: @@ -170,10 +167,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/AppointmentcrewCollectiongetResponseSchema' + $ref: '#/components/schemas/AfspraakmedewerkerCollectiongetResponseSchema' /appointments: post: - operationId: Appointment_collection_post + operationId: Afspraak_collection_post summary: 'Create appointments item.' description: "" tags: @@ -184,15 +181,15 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/AppointmentItempostResponseSchema' + $ref: '#/components/schemas/AfspraakItempostResponseSchema' requestBody: description: "" content: application/json: schema: - $ref: '#/components/schemas/AppointmentItempostRequestSchema' + $ref: '#/components/schemas/AfspraakItempostRequestSchema' get: - operationId: Appointment_collection_get + operationId: Afspraak_collection_get summary: 'Get appointments collection.' description: "" tags: @@ -203,10 +200,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/AppointmentCollectiongetResponseSchema' + $ref: '#/components/schemas/AfspraakCollectiongetResponseSchema' /contactpersons: get: - operationId: Contactperson_collection_get + operationId: Person_collection_get summary: 'Get contactpersons collection.' description: "" tags: @@ -217,7 +214,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ContactpersonCollectiongetResponseSchema' + $ref: '#/components/schemas/PersonCollectiongetResponseSchema' /contacts: post: operationId: Contact_collection_post @@ -281,7 +278,7 @@ paths: $ref: '#/components/schemas/CostCollectiongetResponseSchema' /crew: get: - operationId: Crew_collection_get + operationId: Medewerker_collection_get summary: 'Get crew collection.' description: "" tags: @@ -292,10 +289,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/CrewCollectiongetResponseSchema' + $ref: '#/components/schemas/MedewerkerCollectiongetResponseSchema' /crewavailability: get: - operationId: Crewavailability_collection_get + operationId: Beschikbaarheid_collection_get summary: 'Get crewavailability collection.' description: "" tags: @@ -306,10 +303,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/CrewavailabilityCollectiongetResponseSchema' + $ref: '#/components/schemas/BeschikbaarheidCollectiongetResponseSchema' /crewrates: get: - operationId: Crewrate_collection_get + operationId: Medewerkertarief_collection_get summary: 'Get crewrates collection.' description: "" tags: @@ -320,10 +317,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/CrewrateCollectiongetResponseSchema' + $ref: '#/components/schemas/MedewerkertariefCollectiongetResponseSchema' /equipment: get: - operationId: Equipment_collection_get + operationId: Materiaal_collection_get summary: 'Get equipment collection.' description: "" tags: @@ -334,10 +331,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/EquipmentCollectiongetResponseSchema' + $ref: '#/components/schemas/MateriaalCollectiongetResponseSchema' /equipmentsetscontent: get: - operationId: Equipmentsetscontent_collection_get + operationId: Setinhoud_collection_get summary: 'Get equipmentsetscontent collection.' description: "" tags: @@ -348,10 +345,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/EquipmentsetscontentCollectiongetResponseSchema' + $ref: '#/components/schemas/SetinhoudCollectiongetResponseSchema' /files: get: - operationId: File_collection_get + operationId: Files_collection_get summary: 'Get files collection.' description: "" tags: @@ -362,7 +359,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/FileCollectiongetResponseSchema' + $ref: '#/components/schemas/FilesCollectiongetResponseSchema' /folders: get: operationId: Folder_collection_get @@ -379,7 +376,7 @@ paths: $ref: '#/components/schemas/FolderCollectiongetResponseSchema' /invoicelines: get: - operationId: Invoiceline_collection_get + operationId: Btwbedrag_collection_get summary: 'Get invoicelines collection.' description: "" tags: @@ -390,10 +387,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/InvoicelineCollectiongetResponseSchema' + $ref: '#/components/schemas/BtwbedragCollectiongetResponseSchema' /invoices: get: - operationId: Invoice_collection_get + operationId: Factuur_collection_get summary: 'Get invoices collection.' description: "" tags: @@ -404,10 +401,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/InvoiceCollectiongetResponseSchema' + $ref: '#/components/schemas/FactuurCollectiongetResponseSchema' /ledgercodes: get: - operationId: Ledgercode_collection_get + operationId: Grootboek_collection_get summary: 'Get ledgercodes collection.' description: "" tags: @@ -418,7 +415,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/LedgercodeCollectiongetResponseSchema' + $ref: '#/components/schemas/GrootboekCollectiongetResponseSchema' /payments: get: operationId: Payment_collection_get @@ -435,7 +432,7 @@ paths: $ref: '#/components/schemas/PaymentCollectiongetResponseSchema' /projectcrew: get: - operationId: Projectcrew_collection_get + operationId: Planningpersoneel_collection_get summary: 'Get projectcrew collection.' description: "" tags: @@ -446,10 +443,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ProjectcrewCollectiongetResponseSchema' + $ref: '#/components/schemas/PlanningpersoneelCollectiongetResponseSchema' /projectequipment: get: - operationId: Projectequipment_collection_get + operationId: Planningmateriaal_collection_get summary: 'Get projectequipment collection.' description: "" tags: @@ -460,10 +457,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ProjectequipmentCollectiongetResponseSchema' + $ref: '#/components/schemas/PlanningmateriaalCollectiongetResponseSchema' /projectequipmentgroup: get: - operationId: Projectequipmentgroup_collection_get + operationId: MateriaalCat_collection_get summary: 'Get projectequipmentgroup collection.' description: "" tags: @@ -474,10 +471,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ProjectequipmentgroupCollectiongetResponseSchema' + $ref: '#/components/schemas/MateriaalCatCollectiongetResponseSchema' /projectfunctiongroups: get: - operationId: Projectfunctiongroup_collection_get + operationId: Functiegroep_collection_get summary: 'Get projectfunctiongroups collection.' description: "" tags: @@ -488,10 +485,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ProjectfunctiongroupCollectiongetResponseSchema' + $ref: '#/components/schemas/FunctiegroepCollectiongetResponseSchema' /projectfunctions: get: - operationId: Projectfunction_collection_get + operationId: Functie_collection_get summary: 'Get projectfunctions collection.' description: "" tags: @@ -502,7 +499,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ProjectfunctionCollectiongetResponseSchema' + $ref: '#/components/schemas/FunctieCollectiongetResponseSchema' /projectrequestequipment: get: operationId: ProjectRequestEquipment_collection_get @@ -566,7 +563,7 @@ paths: $ref: '#/components/schemas/ProjectCollectiongetResponseSchema' /projecttypes: get: - operationId: Projecttype_collection_get + operationId: Type_collection_get summary: 'Get projecttypes collection.' description: "" tags: @@ -577,10 +574,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ProjecttypeCollectiongetResponseSchema' + $ref: '#/components/schemas/TypeCollectiongetResponseSchema' /projectvehicles: get: - operationId: Projectvehicle_collection_get + operationId: Planningtransport_collection_get summary: 'Get projectvehicles collection.' description: "" tags: @@ -591,10 +588,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ProjectvehicleCollectiongetResponseSchema' + $ref: '#/components/schemas/PlanningtransportCollectiongetResponseSchema' /quotes: get: - operationId: Quote_collection_get + operationId: Offerte_collection_get summary: 'Get quotes collection.' description: "" tags: @@ -605,7 +602,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/QuoteCollectiongetResponseSchema' + $ref: '#/components/schemas/OfferteCollectiongetResponseSchema' /ratefactors: get: operationId: RateFactor_collection_get @@ -636,7 +633,7 @@ paths: $ref: '#/components/schemas/RateCollectiongetResponseSchema' /repairs: get: - operationId: Repair_collection_get + operationId: Reparatie_collection_get summary: 'Get repairs collection.' description: "" tags: @@ -647,10 +644,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/RepairCollectiongetResponseSchema' + $ref: '#/components/schemas/ReparatieCollectiongetResponseSchema' /serialnumbers: get: - operationId: Serialnumber_collection_get + operationId: Exemplaar_collection_get summary: 'Get serialnumbers collection.' description: "" tags: @@ -661,7 +658,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/SerialnumberCollectiongetResponseSchema' + $ref: '#/components/schemas/ExemplaarCollectiongetResponseSchema' /statuses: get: operationId: Status_collection_get @@ -678,7 +675,7 @@ paths: $ref: '#/components/schemas/StatusCollectiongetResponseSchema' /stocklocations: get: - operationId: StockLocation_collection_get + operationId: AssetLocation_collection_get summary: 'Get stocklocations collection.' description: "" tags: @@ -689,10 +686,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/StockLocationCollectiongetResponseSchema' + $ref: '#/components/schemas/AssetLocationCollectiongetResponseSchema' /stockmovements: get: - operationId: Stockmovement_collection_get + operationId: Voorraadmutatie_collection_get summary: 'Get stockmovements collection.' description: "" tags: @@ -703,7 +700,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/StockmovementCollectiongetResponseSchema' + $ref: '#/components/schemas/VoorraadmutatieCollectiongetResponseSchema' /subprojects: get: operationId: Subproject_collection_get @@ -720,7 +717,7 @@ paths: $ref: '#/components/schemas/SubprojectCollectiongetResponseSchema' /subrentalequipment: get: - operationId: Subrentalequipment_collection_get + operationId: Inhuurmateriaal_collection_get summary: 'Get subrentalequipment collection.' description: "" tags: @@ -731,10 +728,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/SubrentalequipmentCollectiongetResponseSchema' + $ref: '#/components/schemas/InhuurmateriaalCollectiongetResponseSchema' /subrentalequipmentgroup: get: - operationId: Subrentalequipmentgroup_collection_get + operationId: Inhuurgroep_collection_get summary: 'Get subrentalequipmentgroup collection.' description: "" tags: @@ -745,10 +742,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/SubrentalequipmentgroupCollectiongetResponseSchema' + $ref: '#/components/schemas/InhuurgroepCollectiongetResponseSchema' /subrentals: get: - operationId: Subrental_collection_get + operationId: Inhuur_collection_get summary: 'Get subrentals collection.' description: "" tags: @@ -759,7 +756,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/SubrentalCollectiongetResponseSchema' + $ref: '#/components/schemas/InhuurCollectiongetResponseSchema' /taxclasses: get: operationId: TaxClass_collection_get @@ -776,7 +773,7 @@ paths: $ref: '#/components/schemas/TaxClassCollectiongetResponseSchema' /timeregistration: get: - operationId: Timeregistration_collection_get + operationId: Uren_collection_get summary: 'Get timeregistration collection.' description: "" tags: @@ -787,10 +784,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/TimeregistrationCollectiongetResponseSchema' + $ref: '#/components/schemas/UrenCollectiongetResponseSchema' /timeregistrationactivities: get: - operationId: Timeregistrationactivity_collection_get + operationId: Functieuur_collection_get summary: 'Get timeregistrationactivities collection.' description: "" tags: @@ -801,10 +798,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/TimeregistrationactivityCollectiongetResponseSchema' + $ref: '#/components/schemas/FunctieuurCollectiongetResponseSchema' /vehicles: get: - operationId: Vehicle_collection_get + operationId: Voertuig_collection_get summary: 'Get vehicles collection.' description: "" tags: @@ -815,10 +812,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/VehicleCollectiongetResponseSchema' + $ref: '#/components/schemas/VoertuigCollectiongetResponseSchema' '/accessories/{id}': get: - operationId: Accessory_item_get + operationId: Accessoire_item_get summary: 'Get accessories item.' description: "" tags: @@ -837,10 +834,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/AccessoryItemgetResponseSchema' + $ref: '#/components/schemas/AccessoireItemgetResponseSchema' '/appointmentcrew/{id}': get: - operationId: Appointmentcrew_item_get + operationId: Afspraakmedewerker_item_get summary: 'Get appointmentcrew item.' description: "" tags: @@ -859,9 +856,9 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/AppointmentcrewItemgetResponseSchema' + $ref: '#/components/schemas/AfspraakmedewerkerItemgetResponseSchema' put: - operationId: Appointmentcrew_item_put + operationId: Afspraakmedewerker_item_put summary: 'Update appointmentcrew item.' description: "" tags: @@ -880,15 +877,15 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/AppointmentcrewItemputResponseSchema' + $ref: '#/components/schemas/AfspraakmedewerkerItemputResponseSchema' requestBody: description: "" content: application/json: schema: - $ref: '#/components/schemas/AppointmentcrewItemputRequestSchema' + $ref: '#/components/schemas/AfspraakmedewerkerItemputRequestSchema' delete: - operationId: Appointmentcrew_item_delete + operationId: Afspraakmedewerker_item_delete summary: 'Delete appointmentcrew item.' description: "" tags: @@ -906,7 +903,7 @@ paths: description: 'Successful request (note that the ''data'' field can be expanded)' '/appointments/{id}': get: - operationId: Appointment_item_get + operationId: Afspraak_item_get summary: 'Get appointments item.' description: "" tags: @@ -925,9 +922,9 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/AppointmentItemgetResponseSchema' + $ref: '#/components/schemas/AfspraakItemgetResponseSchema' put: - operationId: Appointment_item_put + operationId: Afspraak_item_put summary: 'Update appointments item.' description: "" tags: @@ -946,15 +943,15 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/AppointmentItemputResponseSchema' + $ref: '#/components/schemas/AfspraakItemputResponseSchema' requestBody: description: "" content: application/json: schema: - $ref: '#/components/schemas/AppointmentItemputRequestSchema' + $ref: '#/components/schemas/AfspraakItemputRequestSchema' delete: - operationId: Appointment_item_delete + operationId: Afspraak_item_delete summary: 'Delete appointments item.' description: "" tags: @@ -972,7 +969,7 @@ paths: description: 'Successful request (note that the ''data'' field can be expanded)' '/contactpersons/{id}': get: - operationId: Contactperson_item_get + operationId: Person_item_get summary: 'Get contactpersons item.' description: "" tags: @@ -991,9 +988,9 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ContactpersonItemgetResponseSchema' + $ref: '#/components/schemas/PersonItemgetResponseSchema' put: - operationId: Contactperson_item_put + operationId: Person_item_put summary: 'Update contactpersons item.' description: "" tags: @@ -1012,15 +1009,15 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ContactpersonItemputResponseSchema' + $ref: '#/components/schemas/PersonItemputResponseSchema' requestBody: description: "" content: application/json: schema: - $ref: '#/components/schemas/ContactpersonItemputRequestSchema' + $ref: '#/components/schemas/PersonItemputRequestSchema' delete: - operationId: Contactperson_item_delete + operationId: Person_item_delete summary: 'Delete contactpersons item.' description: "" tags: @@ -1192,7 +1189,7 @@ paths: description: 'Successful request (note that the ''data'' field can be expanded)' '/crew/{id}': get: - operationId: Crew_item_get + operationId: Medewerker_item_get summary: 'Get crew item.' description: "" tags: @@ -1211,10 +1208,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/CrewItemgetResponseSchema' + $ref: '#/components/schemas/MedewerkerItemgetResponseSchema' '/crewavailability/{id}': get: - operationId: CrewAvailability_item_get + operationId: Beschikbaarheid_item_get summary: 'Get crewavailability item.' description: "" tags: @@ -1233,9 +1230,9 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/CrewAvailabilityItemgetResponseSchema' + $ref: '#/components/schemas/BeschikbaarheidItemgetResponseSchema' put: - operationId: CrewAvailability_item_put + operationId: Beschikbaarheid_item_put summary: 'Update crewavailability item.' description: "" tags: @@ -1254,15 +1251,15 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/CrewAvailabilityItemputResponseSchema' + $ref: '#/components/schemas/BeschikbaarheidItemputResponseSchema' requestBody: description: "" content: application/json: schema: - $ref: '#/components/schemas/CrewAvailabilityItemputRequestSchema' + $ref: '#/components/schemas/BeschikbaarheidItemputRequestSchema' delete: - operationId: CrewAvailability_item_delete + operationId: Beschikbaarheid_item_delete summary: 'Delete crewavailability item.' description: "" tags: @@ -1280,7 +1277,7 @@ paths: description: 'Successful request (note that the ''data'' field can be expanded)' '/crewrates/{id}': get: - operationId: Crewrate_item_get + operationId: Medewerkertarief_item_get summary: 'Get crewrates item.' description: "" tags: @@ -1299,10 +1296,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/CrewrateItemgetResponseSchema' + $ref: '#/components/schemas/MedewerkertariefItemgetResponseSchema' '/equipment/{id}': get: - operationId: Equipment_item_get + operationId: Materiaal_item_get summary: 'Get equipment item.' description: "" tags: @@ -1321,10 +1318,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/EquipmentItemgetResponseSchema' + $ref: '#/components/schemas/MateriaalItemgetResponseSchema' '/equipmentsetscontent/{id}': get: - operationId: Equipmentsetscontent_item_get + operationId: Setinhoud_item_get summary: 'Get equipmentsetscontent item.' description: "" tags: @@ -1343,10 +1340,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/EquipmentsetscontentItemgetResponseSchema' + $ref: '#/components/schemas/SetinhoudItemgetResponseSchema' '/files/{id}': get: - operationId: File_item_get + operationId: Files_item_get summary: 'Get files item.' description: "" tags: @@ -1365,7 +1362,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/FileItemgetResponseSchema' + $ref: '#/components/schemas/FilesItemgetResponseSchema' '/folders/{id}': get: operationId: Folder_item_get @@ -1390,7 +1387,7 @@ paths: $ref: '#/components/schemas/FolderItemgetResponseSchema' '/invoicelines/{id}': get: - operationId: Invoiceline_item_get + operationId: Btwbedrag_item_get summary: 'Get invoicelines item.' description: "" tags: @@ -1409,10 +1406,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/InvoicelineItemgetResponseSchema' + $ref: '#/components/schemas/BtwbedragItemgetResponseSchema' '/invoices/{id}': get: - operationId: Invoice_item_get + operationId: Factuur_item_get summary: 'Get invoices item.' description: "" tags: @@ -1431,10 +1428,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/InvoiceItemgetResponseSchema' + $ref: '#/components/schemas/FactuurItemgetResponseSchema' '/ledgercodes/{id}': get: - operationId: Ledgercode_item_get + operationId: Grootboek_item_get summary: 'Get ledgercodes item.' description: "" tags: @@ -1453,7 +1450,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/LedgercodeItemgetResponseSchema' + $ref: '#/components/schemas/GrootboekItemgetResponseSchema' '/payments/{id}': get: operationId: Payment_item_get @@ -1505,7 +1502,7 @@ paths: $ref: '#/components/schemas/PaymentItemputRequestSchema' '/projectcrew/{id}': get: - operationId: Projectcrew_item_get + operationId: Planningpersoneel_item_get summary: 'Get projectcrew item.' description: "" tags: @@ -1524,10 +1521,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ProjectcrewItemgetResponseSchema' + $ref: '#/components/schemas/PlanningpersoneelItemgetResponseSchema' '/projectequipment/{id}': get: - operationId: Projectequipment_item_get + operationId: Planningmateriaal_item_get summary: 'Get projectequipment item.' description: "" tags: @@ -1546,10 +1543,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ProjectequipmentItemgetResponseSchema' + $ref: '#/components/schemas/PlanningmateriaalItemgetResponseSchema' '/projectequipmentgroup/{id}': get: - operationId: Projectequipmentgroup_item_get + operationId: MateriaalCat_item_get summary: 'Get projectequipmentgroup item.' description: "" tags: @@ -1568,10 +1565,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ProjectequipmentgroupItemgetResponseSchema' + $ref: '#/components/schemas/MateriaalCatItemgetResponseSchema' '/projectfunctiongroups/{id}': get: - operationId: Projectfunctiongroup_item_get + operationId: Functiegroep_item_get summary: 'Get projectfunctiongroups item.' description: "" tags: @@ -1590,10 +1587,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ProjectfunctiongroupItemgetResponseSchema' + $ref: '#/components/schemas/FunctiegroepItemgetResponseSchema' '/projectfunctions/{id}': get: - operationId: Projectfunction_item_get + operationId: Functie_item_get summary: 'Get projectfunctions item.' description: "" tags: @@ -1612,7 +1609,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ProjectfunctionItemgetResponseSchema' + $ref: '#/components/schemas/FunctieItemgetResponseSchema' '/projectrequestequipment/{id}': get: operationId: ProjectRequestEquipment_item_get @@ -1769,7 +1766,7 @@ paths: $ref: '#/components/schemas/ProjectItemgetResponseSchema' '/projecttypes/{id}': get: - operationId: Projecttype_item_get + operationId: Type_item_get summary: 'Get projecttypes item.' description: "" tags: @@ -1788,10 +1785,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ProjecttypeItemgetResponseSchema' + $ref: '#/components/schemas/TypeItemgetResponseSchema' '/projectvehicles/{id}': get: - operationId: Projectvehicle_item_get + operationId: Planningtransport_item_get summary: 'Get projectvehicles item.' description: "" tags: @@ -1810,10 +1807,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ProjectvehicleItemgetResponseSchema' + $ref: '#/components/schemas/PlanningtransportItemgetResponseSchema' '/quotes/{id}': get: - operationId: Quote_item_get + operationId: Offerte_item_get summary: 'Get quotes item.' description: "" tags: @@ -1832,7 +1829,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/QuoteItemgetResponseSchema' + $ref: '#/components/schemas/OfferteItemgetResponseSchema' '/ratefactors/{id}': get: operationId: RateFactor_item_get @@ -1879,7 +1876,7 @@ paths: $ref: '#/components/schemas/RateItemgetResponseSchema' '/repairs/{id}': get: - operationId: Repair_item_get + operationId: Reparatie_item_get summary: 'Get repairs item.' description: "" tags: @@ -1898,10 +1895,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/RepairItemgetResponseSchema' + $ref: '#/components/schemas/ReparatieItemgetResponseSchema' '/serialnumbers/{id}': get: - operationId: Serialnumber_item_get + operationId: Exemplaar_item_get summary: 'Get serialnumbers item.' description: "" tags: @@ -1920,7 +1917,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/SerialnumberItemgetResponseSchema' + $ref: '#/components/schemas/ExemplaarItemgetResponseSchema' '/statuses/{id}': get: operationId: Status_item_get @@ -1945,7 +1942,7 @@ paths: $ref: '#/components/schemas/StatusItemgetResponseSchema' '/stocklocations/{id}': get: - operationId: Stocklocation_item_get + operationId: AssetLocation_item_get summary: 'Get stocklocations item.' description: "" tags: @@ -1964,10 +1961,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/StocklocationItemgetResponseSchema' + $ref: '#/components/schemas/AssetLocationItemgetResponseSchema' '/stockmovements/{id}': get: - operationId: Stockmovement_item_get + operationId: Voorraadmutatie_item_get summary: 'Get stockmovements item.' description: "" tags: @@ -1986,9 +1983,9 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/StockmovementItemgetResponseSchema' + $ref: '#/components/schemas/VoorraadmutatieItemgetResponseSchema' put: - operationId: Stockmovement_item_put + operationId: Voorraadmutatie_item_put summary: 'Update stockmovements item.' description: "" tags: @@ -2007,15 +2004,15 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/StockmovementItemputResponseSchema' + $ref: '#/components/schemas/VoorraadmutatieItemputResponseSchema' requestBody: description: "" content: application/json: schema: - $ref: '#/components/schemas/StockmovementItemputRequestSchema' + $ref: '#/components/schemas/VoorraadmutatieItemputRequestSchema' delete: - operationId: Stockmovement_item_delete + operationId: Voorraadmutatie_item_delete summary: 'Delete stockmovements item.' description: "" tags: @@ -2055,7 +2052,7 @@ paths: $ref: '#/components/schemas/SubprojectItemgetResponseSchema' '/subrentalequipment/{id}': get: - operationId: Subrentalequipment_item_get + operationId: Inhuurmateriaal_item_get summary: 'Get subrentalequipment item.' description: "" tags: @@ -2074,10 +2071,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/SubrentalequipmentItemgetResponseSchema' + $ref: '#/components/schemas/InhuurmateriaalItemgetResponseSchema' '/subrentalequipmentgroup/{id}': get: - operationId: Subrentalequipmentgroup_item_get + operationId: Inhuurgroep_item_get summary: 'Get subrentalequipmentgroup item.' description: "" tags: @@ -2096,10 +2093,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/SubrentalequipmentgroupItemgetResponseSchema' + $ref: '#/components/schemas/InhuurgroepItemgetResponseSchema' '/subrentals/{id}': get: - operationId: Subrental_item_get + operationId: Inhuur_item_get summary: 'Get subrentals item.' description: "" tags: @@ -2118,7 +2115,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/SubrentalItemgetResponseSchema' + $ref: '#/components/schemas/InhuurItemgetResponseSchema' '/taxclasses/{id}': get: operationId: TaxClass_item_get @@ -2143,7 +2140,7 @@ paths: $ref: '#/components/schemas/TaxClassItemgetResponseSchema' '/timeregistration/{id}': get: - operationId: Timeregistration_item_get + operationId: Uren_item_get summary: 'Get timeregistration item.' description: "" tags: @@ -2162,10 +2159,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/TimeregistrationItemgetResponseSchema' + $ref: '#/components/schemas/UrenItemgetResponseSchema' '/timeregistrationactivities/{id}': get: - operationId: Timeregistrationactivity_item_get + operationId: Functieuur_item_get summary: 'Get timeregistrationactivities item.' description: "" tags: @@ -2184,10 +2181,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/TimeregistrationactivityItemgetResponseSchema' + $ref: '#/components/schemas/FunctieuurItemgetResponseSchema' '/vehicles/{id}': get: - operationId: Vehicle_item_get + operationId: Voertuig_item_get summary: 'Get vehicles item.' description: "" tags: @@ -2206,10 +2203,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/VehicleItemgetResponseSchema' + $ref: '#/components/schemas/VoertuigItemgetResponseSchema' '/appointments/{id}/appointmentcrew': post: - operationId: Appointment_item_Appointmentcrew_post + operationId: Afspraak_item_Afspraakmedewerker_post summary: 'Create appointmentcrew linked item.' description: "" tags: @@ -2228,15 +2225,15 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/AppointmentcrewItempostResponseSchema' + $ref: '#/components/schemas/AfspraakmedewerkerItempostResponseSchema' requestBody: description: "" content: application/json: schema: - $ref: '#/components/schemas/AppointmentcrewItempostRequestSchema' + $ref: '#/components/schemas/AfspraakmedewerkerItempostRequestSchema' get: - operationId: Appointment_item_Appointmentcrew_get + operationId: Afspraak_item_Afspraakmedewerker_get summary: 'Get appointmentcrew linked collection.' description: "" tags: @@ -2255,10 +2252,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/AppointmentcrewCollectiongetResponseSchema' + $ref: '#/components/schemas/AfspraakmedewerkerCollectiongetResponseSchema' '/contactpersons/{id}/files': get: - operationId: Contactpersons_item_Files_get + operationId: Person_item_Files_get summary: 'Get files linked collection.' description: "" tags: @@ -2277,10 +2274,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/FileCollectiongetResponseSchema' + $ref: '#/components/schemas/FilesCollectiongetResponseSchema' '/contacts/{id}/contactpersons': post: - operationId: Contact_item_Contactperson_post + operationId: Contact_item_Person_post summary: 'Create contactpersons linked item.' description: "" tags: @@ -2299,15 +2296,15 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ContactpersonItempostResponseSchema' + $ref: '#/components/schemas/PersonItempostResponseSchema' requestBody: description: "" content: application/json: schema: - $ref: '#/components/schemas/ContactpersonItempostRequestSchema' + $ref: '#/components/schemas/PersonItempostRequestSchema' get: - operationId: Contact_item_Contactperson_get + operationId: Contact_item_Person_get summary: 'Get contactpersons linked collection.' description: "" tags: @@ -2326,7 +2323,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ContactpersonCollectiongetResponseSchema' + $ref: '#/components/schemas/PersonCollectiongetResponseSchema' '/contacts/{id}/files': get: operationId: Contact_item_Files_get @@ -2348,7 +2345,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/FileCollectiongetResponseSchema' + $ref: '#/components/schemas/FilesCollectiongetResponseSchema' '/contracts/{id}/files': get: operationId: Contract_item_Files_get @@ -2370,10 +2367,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/FileCollectiongetResponseSchema' + $ref: '#/components/schemas/FilesCollectiongetResponseSchema' '/contracts/{id}/invoicelines': get: - operationId: Contract_item_Invoiceline_get + operationId: Contract_item_Btwbedrag_get summary: 'Get invoicelines linked collection.' description: "" tags: @@ -2392,10 +2389,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/InvoicelineCollectiongetResponseSchema' + $ref: '#/components/schemas/BtwbedragCollectiongetResponseSchema' '/crew/{id}/crewrates': get: - operationId: Crew_item_Crewrate_get + operationId: Medewerker_item_Medewerkertarief_get summary: 'Get crewrates linked collection.' description: "" tags: @@ -2414,10 +2411,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/CrewrateCollectiongetResponseSchema' + $ref: '#/components/schemas/MedewerkertariefCollectiongetResponseSchema' '/crew/{id}/crewavailability': post: - operationId: Crew_item_Crewavailability_post + operationId: Medewerker_item_Beschikbaarheid_post summary: 'Create crewavailability linked item.' description: "" tags: @@ -2436,15 +2433,15 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/CrewavailabilityItempostResponseSchema' + $ref: '#/components/schemas/BeschikbaarheidItempostResponseSchema' requestBody: description: "" content: application/json: schema: - $ref: '#/components/schemas/CrewavailabilityItempostRequestSchema' + $ref: '#/components/schemas/BeschikbaarheidItempostRequestSchema' get: - operationId: Crew_item_Crewavailability_get + operationId: Medewerker_item_Beschikbaarheid_get summary: 'Get crewavailability linked collection.' description: "" tags: @@ -2463,10 +2460,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/CrewavailabilityCollectiongetResponseSchema' + $ref: '#/components/schemas/BeschikbaarheidCollectiongetResponseSchema' '/crew/{id}/files': get: - operationId: Crew_item_Files_get + operationId: Medewerker_item_Files_get summary: 'Get files linked collection.' description: "" tags: @@ -2485,10 +2482,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/FileCollectiongetResponseSchema' + $ref: '#/components/schemas/FilesCollectiongetResponseSchema' '/crew/{id}/appointments': get: - operationId: Crew_item_Appointment_get + operationId: Medewerker_item_Afspraak_get summary: 'Get appointments custom linked collection.' description: "" tags: @@ -2507,10 +2504,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/AppointmentCollectiongetResponseSchema' + $ref: '#/components/schemas/AfspraakCollectiongetResponseSchema' '/equipment/{id}/files': get: - operationId: Equipment_item_Files_get + operationId: Materiaal_item_Files_get summary: 'Get files linked collection.' description: "" tags: @@ -2529,10 +2526,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/FileCollectiongetResponseSchema' + $ref: '#/components/schemas/FilesCollectiongetResponseSchema' '/equipment/{id}/equipmentsetscontent': get: - operationId: Equipment_item_Equipmentsetscontent_get + operationId: Materiaal_item_Setinhoud_get summary: 'Get equipmentsetscontent linked collection.' description: "" tags: @@ -2551,10 +2548,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/EquipmentsetscontentCollectiongetResponseSchema' + $ref: '#/components/schemas/SetinhoudCollectiongetResponseSchema' '/equipment/{id}/repairs': get: - operationId: Equipment_item_Repair_get + operationId: Materiaal_item_Reparatie_get summary: 'Get repairs linked collection.' description: "" tags: @@ -2573,10 +2570,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/RepairCollectiongetResponseSchema' + $ref: '#/components/schemas/ReparatieCollectiongetResponseSchema' '/equipment/{id}/serialnumbers': get: - operationId: Equipment_item_Serialnumber_get + operationId: Materiaal_item_Exemplaar_get summary: 'Get serialnumbers linked collection.' description: "" tags: @@ -2595,10 +2592,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/SerialnumberCollectiongetResponseSchema' + $ref: '#/components/schemas/ExemplaarCollectiongetResponseSchema' '/equipment/{id}/stockmovements': post: - operationId: Equipment_item_Stockmovement_post + operationId: Materiaal_item_Voorraadmutatie_post summary: 'Create stockmovements linked item.' description: "" tags: @@ -2617,15 +2614,15 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/StockmovementItempostResponseSchema' + $ref: '#/components/schemas/VoorraadmutatieItempostResponseSchema' requestBody: description: "" content: application/json: schema: - $ref: '#/components/schemas/StockmovementItempostRequestSchema' + $ref: '#/components/schemas/VoorraadmutatieItempostRequestSchema' get: - operationId: Equipment_item_Stockmovement_get + operationId: Materiaal_item_Voorraadmutatie_get summary: 'Get stockmovements linked collection.' description: "" tags: @@ -2644,10 +2641,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/StockmovementCollectiongetResponseSchema' + $ref: '#/components/schemas/VoorraadmutatieCollectiongetResponseSchema' '/equipment/{id}/accessories': get: - operationId: Equipment_item_Accessory_get + operationId: Materiaal_item_Accessoire_get summary: 'Get accessories linked collection.' description: "" tags: @@ -2666,10 +2663,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/AccessoryCollectiongetResponseSchema' + $ref: '#/components/schemas/AccessoireCollectiongetResponseSchema' '/invoices/{id}/invoicelines': get: - operationId: Invoice_item_Invoiceline_get + operationId: Factuur_item_Btwbedrag_get summary: 'Get invoicelines linked collection.' description: "" tags: @@ -2688,10 +2685,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/InvoicelineCollectiongetResponseSchema' + $ref: '#/components/schemas/BtwbedragCollectiongetResponseSchema' '/invoices/{id}/files': get: - operationId: Invoice_item_Files_get + operationId: Factuur_item_Files_get summary: 'Get files linked collection.' description: "" tags: @@ -2710,10 +2707,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/FileCollectiongetResponseSchema' + $ref: '#/components/schemas/FilesCollectiongetResponseSchema' '/invoices/{id}/payments': post: - operationId: Invoice_item_Payment_post + operationId: Factuur_item_Payment_post summary: 'Create payments linked item.' description: "" tags: @@ -2740,7 +2737,7 @@ paths: schema: $ref: '#/components/schemas/PaymentItempostRequestSchema' get: - operationId: Invoice_item_Payment_get + operationId: Factuur_item_Payment_get summary: 'Get payments linked collection.' description: "" tags: @@ -2762,7 +2759,7 @@ paths: $ref: '#/components/schemas/PaymentCollectiongetResponseSchema' '/projectequipmentgroup/{id}/projectequipment': get: - operationId: Projectequipmentgroup_item_Projectequipment_get + operationId: MateriaalCat_item_Planningmateriaal_get summary: 'Get projectequipment linked collection.' description: "" tags: @@ -2781,10 +2778,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ProjectequipmentCollectiongetResponseSchema' + $ref: '#/components/schemas/PlanningmateriaalCollectiongetResponseSchema' '/projectfunctiongroups/{id}/projectfunctions': get: - operationId: Projectfunctiongroup_item_Projectfunction_get + operationId: Functiegroep_item_Functie_get summary: 'Get projectfunctions custom linked collection.' description: "" tags: @@ -2803,10 +2800,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ProjectfunctionCollectiongetResponseSchema' + $ref: '#/components/schemas/FunctieCollectiongetResponseSchema' '/projectfunctions/{id}/projectcrew': get: - operationId: Projectfunction_item_Projectcrew_get + operationId: Functie_item_Planningpersoneel_get summary: 'Get projectcrew linked collection.' description: "" tags: @@ -2825,10 +2822,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ProjectcrewCollectiongetResponseSchema' + $ref: '#/components/schemas/PlanningpersoneelCollectiongetResponseSchema' '/projectfunctions/{id}/projectvehicles': get: - operationId: Projectfunction_item_Projectvehicle_get + operationId: Functie_item_Planningtransport_get summary: 'Get projectvehicles linked collection.' description: "" tags: @@ -2847,7 +2844,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ProjectvehicleCollectiongetResponseSchema' + $ref: '#/components/schemas/PlanningtransportCollectiongetResponseSchema' '/projectrequests/{id}/projectrequestequipment': post: operationId: ProjectRequest_item_ProjectRequestEquipment_post @@ -2899,7 +2896,7 @@ paths: $ref: '#/components/schemas/ProjectRequestEquipmentCollectiongetResponseSchema' '/projects/{id}/projectequipmentgroup': get: - operationId: Project_item_Projectequipmentgroup_get + operationId: Project_item_MateriaalCat_get summary: 'Get projectequipmentgroup linked collection.' description: "" tags: @@ -2918,7 +2915,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ProjectequipmentgroupCollectiongetResponseSchema' + $ref: '#/components/schemas/MateriaalCatCollectiongetResponseSchema' '/projects/{id}/contracts': get: operationId: Project_item_Contract_get @@ -2992,7 +2989,7 @@ paths: $ref: '#/components/schemas/CostCollectiongetResponseSchema' '/projects/{id}/projectfunctions': get: - operationId: Project_item_Projectfunction_get + operationId: Project_item_Functie_get summary: 'Get projectfunctions linked collection.' description: "" tags: @@ -3011,7 +3008,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ProjectfunctionCollectiongetResponseSchema' + $ref: '#/components/schemas/FunctieCollectiongetResponseSchema' '/projects/{id}/subprojects': get: operationId: Project_item_Subproject_get @@ -3036,7 +3033,7 @@ paths: $ref: '#/components/schemas/SubprojectCollectiongetResponseSchema' '/projects/{id}/projectfunctiongroups': get: - operationId: Project_item_Projectfunctiongroup_get + operationId: Project_item_Functiegroep_get summary: 'Get projectfunctiongroups linked collection.' description: "" tags: @@ -3055,10 +3052,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ProjectfunctiongroupCollectiongetResponseSchema' + $ref: '#/components/schemas/FunctiegroepCollectiongetResponseSchema' '/projects/{id}/quotes': get: - operationId: Project_item_Quote_get + operationId: Project_item_Offerte_get summary: 'Get quotes linked collection.' description: "" tags: @@ -3077,7 +3074,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/QuoteCollectiongetResponseSchema' + $ref: '#/components/schemas/OfferteCollectiongetResponseSchema' '/projects/{id}/files': get: operationId: Project_item_Files_get @@ -3099,10 +3096,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/FileCollectiongetResponseSchema' + $ref: '#/components/schemas/FilesCollectiongetResponseSchema' '/projects/{id}/projectvehicles': get: - operationId: Project_item_Projectvehicle_get + operationId: Project_item_Planningtransport_get summary: 'Get projectvehicles custom linked collection.' description: "" tags: @@ -3121,10 +3118,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ProjectvehicleCollectiongetResponseSchema' + $ref: '#/components/schemas/PlanningtransportCollectiongetResponseSchema' '/projects/{id}/projectcrew': get: - operationId: Project_item_Projectcrew_get + operationId: Project_item_Planningpersoneel_get summary: 'Get projectcrew custom linked collection.' description: "" tags: @@ -3143,10 +3140,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ProjectcrewCollectiongetResponseSchema' + $ref: '#/components/schemas/PlanningpersoneelCollectiongetResponseSchema' '/projects/{id}/projectequipment': get: - operationId: Project_item_Projectequipment_get + operationId: Project_item_Planningmateriaal_get summary: 'Get projectequipment custom linked collection.' description: "" tags: @@ -3165,10 +3162,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ProjectequipmentCollectiongetResponseSchema' + $ref: '#/components/schemas/PlanningmateriaalCollectiongetResponseSchema' '/quotes/{id}/files': get: - operationId: Quote_item_Files_get + operationId: Offerte_item_Files_get summary: 'Get files linked collection.' description: "" tags: @@ -3187,10 +3184,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/FileCollectiongetResponseSchema' + $ref: '#/components/schemas/FilesCollectiongetResponseSchema' '/quotes/{id}/invoicelines': get: - operationId: Quote_item_Invoiceline_get + operationId: Offerte_item_Btwbedrag_get summary: 'Get invoicelines linked collection.' description: "" tags: @@ -3209,7 +3206,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/InvoicelineCollectiongetResponseSchema' + $ref: '#/components/schemas/BtwbedragCollectiongetResponseSchema' '/rates/{id}/ratefactors': get: operationId: Rate_item_RateFactor_get @@ -3234,7 +3231,7 @@ paths: $ref: '#/components/schemas/RateFactorCollectiongetResponseSchema' '/repairs/{id}/files': get: - operationId: Repair_item_Files_get + operationId: Reparatie_item_Files_get summary: 'Get files linked collection.' description: "" tags: @@ -3253,10 +3250,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/FileCollectiongetResponseSchema' + $ref: '#/components/schemas/FilesCollectiongetResponseSchema' '/serialnumbers/{id}/files': get: - operationId: Serialnumber_item_Files_get + operationId: Exemplaar_item_Files_get summary: 'Get files linked collection.' description: "" tags: @@ -3275,7 +3272,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/FileCollectiongetResponseSchema' + $ref: '#/components/schemas/FilesCollectiongetResponseSchema' '/subprojects/{id}/files': get: operationId: Subproject_item_Files_get @@ -3297,10 +3294,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/FileCollectiongetResponseSchema' + $ref: '#/components/schemas/FilesCollectiongetResponseSchema' '/subprojects/{id}/projectvehicles': get: - operationId: Subproject_item_Projectvehicle_get + operationId: Subproject_item_Planningtransport_get summary: 'Get projectvehicles custom linked collection.' description: "" tags: @@ -3319,10 +3316,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ProjectvehicleCollectiongetResponseSchema' + $ref: '#/components/schemas/PlanningtransportCollectiongetResponseSchema' '/subprojects/{id}/projectequipmentgroup': get: - operationId: Subproject_item_Projectequipmentgroup_get + operationId: Subproject_item_MateriaalCat_get summary: 'Get projectequipmentgroup custom linked collection.' description: "" tags: @@ -3341,10 +3338,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ProjectequipmentgroupCollectiongetResponseSchema' + $ref: '#/components/schemas/MateriaalCatCollectiongetResponseSchema' '/subprojects/{id}/projectcrew': get: - operationId: Subproject_item_Projectcrew_get + operationId: Subproject_item_Planningpersoneel_get summary: 'Get projectcrew custom linked collection.' description: "" tags: @@ -3363,10 +3360,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ProjectcrewCollectiongetResponseSchema' + $ref: '#/components/schemas/PlanningpersoneelCollectiongetResponseSchema' '/subprojects/{id}/projectequipment': get: - operationId: Subproject_item_Projectequipment_get + operationId: Subproject_item_Planningmateriaal_get summary: 'Get projectequipment custom linked collection.' description: "" tags: @@ -3385,10 +3382,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ProjectequipmentCollectiongetResponseSchema' + $ref: '#/components/schemas/PlanningmateriaalCollectiongetResponseSchema' '/subprojects/{id}/projectfunctiongroups': get: - operationId: Subproject_item_Projectfunctiongroup_get + operationId: Subproject_item_Functiegroep_get summary: 'Get projectfunctiongroups custom linked collection.' description: "" tags: @@ -3407,10 +3404,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ProjectfunctiongroupCollectiongetResponseSchema' + $ref: '#/components/schemas/FunctiegroepCollectiongetResponseSchema' '/subrentalequipmentgroup/{id}/subrentalequipment': get: - operationId: Subrentalequipmentgroup_item_Subrentalequipment_get + operationId: Inhuurgroep_item_Inhuurmateriaal_get summary: 'Get subrentalequipment custom linked collection.' description: "" tags: @@ -3429,10 +3426,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/SubrentalequipmentCollectiongetResponseSchema' + $ref: '#/components/schemas/InhuurmateriaalCollectiongetResponseSchema' '/subrentals/{id}/subrentalequipmentgroup': get: - operationId: Subrental_item_Subrentalequipmentgroup_get + operationId: Inhuur_item_Inhuurgroep_get summary: 'Get subrentalequipmentgroup custom linked collection.' description: "" tags: @@ -3451,10 +3448,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/SubrentalequipmentgroupCollectiongetResponseSchema' + $ref: '#/components/schemas/InhuurgroepCollectiongetResponseSchema' '/subrentals/{id}/files': get: - operationId: Subrental_item_Files_get + operationId: Inhuur_item_Files_get summary: 'Get files linked collection.' description: "" tags: @@ -3473,10 +3470,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/FileCollectiongetResponseSchema' + $ref: '#/components/schemas/FilesCollectiongetResponseSchema' '/subrentals/{id}/subrentalequipment': get: - operationId: Subrental_item_Subrentalequipment_get + operationId: Inhuur_item_Inhuurmateriaal_get summary: 'Get subrentalequipment custom linked collection.' description: "" tags: @@ -3495,10 +3492,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/SubrentalequipmentCollectiongetResponseSchema' + $ref: '#/components/schemas/InhuurmateriaalCollectiongetResponseSchema' '/timeregistration/{id}/files': get: - operationId: Timeregistration_item_Files_get + operationId: Uren_item_Files_get summary: 'Get files linked collection.' description: "" tags: @@ -3517,10 +3514,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/FileCollectiongetResponseSchema' + $ref: '#/components/schemas/FilesCollectiongetResponseSchema' '/timeregistration/{id}/timeregistrationactivities': get: - operationId: Timeregistration_item_Timeregistrationactivity_get + operationId: Uren_item_Functieuur_get summary: 'Get timeregistrationactivities linked collection.' description: "" tags: @@ -3539,10 +3536,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/TimeregistrationactivityCollectiongetResponseSchema' + $ref: '#/components/schemas/FunctieuurCollectiongetResponseSchema' '/vehicles/{id}/files': get: - operationId: Vehicle_item_Files_get + operationId: Voertuig_item_Files_get summary: 'Get files linked collection.' description: "" tags: @@ -3561,15 +3558,10 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/FileCollectiongetResponseSchema' + $ref: '#/components/schemas/FilesCollectiongetResponseSchema' components: - securitySchemes: - BearerAuth: # Kann ein beliebiger Name sein - type: http - scheme: bearer - bearerFormat: JWT # Optional, um das Format anzugeben schemas: - AccessoryItemgetRequestSchema: + AccessoireItemgetRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -3596,7 +3588,7 @@ components: add_as_new_line: type: boolean description: 'The accessory is always added as a new line in the project as opposed to merging with the same accessory' - AccessoryItemgetResponseSchema: + AccessoireItemgetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -3661,7 +3653,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - AccessoryCollectiongetResponseSchema: + AccessoireCollectiongetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -3728,7 +3720,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - AccessoryItempostRequestSchema: + AccessoireItempostRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -3755,7 +3747,7 @@ components: add_as_new_line: type: boolean description: 'The accessory is always added as a new line in the project as opposed to merging with the same accessory' - AccessoryItempostResponseSchema: + AccessoireItempostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -3820,7 +3812,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - AccessoryCollectionpostResponseSchema: + AccessoireCollectionpostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -3887,7 +3879,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - AccessoryItemputRequestSchema: + AccessoireItemputRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -3914,7 +3906,7 @@ components: add_as_new_line: type: boolean description: 'The accessory is always added as a new line in the project as opposed to merging with the same accessory' - AccessoryItemputResponseSchema: + AccessoireItemputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -3979,7 +3971,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - AccessoryCollectionputResponseSchema: + AccessoireCollectionputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -4046,7 +4038,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - AppointmentcrewItemgetRequestSchema: + AfspraakmedewerkerItemgetRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' required: - crew @@ -4056,7 +4048,7 @@ components: type: string description: "" example: /crew/0 - AppointmentcrewItemgetResponseSchema: + AfspraakmedewerkerItemgetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -4102,7 +4094,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - AppointmentcrewCollectiongetResponseSchema: + AfspraakmedewerkerCollectiongetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -4150,7 +4142,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - AppointmentcrewItempostRequestSchema: + AfspraakmedewerkerItempostRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' required: - crew @@ -4160,7 +4152,7 @@ components: type: string description: "" example: /crew/0 - AppointmentcrewItempostResponseSchema: + AfspraakmedewerkerItempostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -4206,7 +4198,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - AppointmentcrewCollectionpostResponseSchema: + AfspraakmedewerkerCollectionpostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -4254,7 +4246,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - AppointmentcrewItemputRequestSchema: + AfspraakmedewerkerItemputRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' required: - crew @@ -4264,7 +4256,7 @@ components: type: string description: "" example: /crew/0 - AppointmentcrewItemputResponseSchema: + AfspraakmedewerkerItemputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -4310,7 +4302,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - AppointmentcrewCollectionputResponseSchema: + AfspraakmedewerkerCollectionputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -4358,7 +4350,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - AppointmentItemgetRequestSchema: + AfspraakItemgetRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' required: - start @@ -4416,7 +4408,7 @@ components: synchronisation_uri: type: string description: "" - AppointmentItemgetResponseSchema: + AfspraakItemgetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -4505,7 +4497,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - AppointmentCollectiongetResponseSchema: + AfspraakCollectiongetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -4596,7 +4588,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - AppointmentItempostRequestSchema: + AfspraakItempostRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' required: - start @@ -4629,7 +4621,7 @@ components: is_plannable: type: boolean description: 'If yes, employees can be scheduled during this appointment' - AppointmentItempostResponseSchema: + AfspraakItempostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -4693,7 +4685,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - AppointmentCollectionpostResponseSchema: + AfspraakCollectionpostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -4759,7 +4751,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - AppointmentItemputRequestSchema: + AfspraakItemputRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' required: - start @@ -4792,7 +4784,7 @@ components: is_plannable: type: boolean description: 'If yes, employees can be scheduled during this appointment' - AppointmentItemputResponseSchema: + AfspraakItemputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -4856,7 +4848,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - AppointmentCollectionputResponseSchema: + AfspraakCollectionputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -4922,7 +4914,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - ContactpersonItemgetRequestSchema: + PersonItemgetRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -5162,7 +5154,7 @@ components: example: custom_1: string custom_2: 2 - ContactpersonItemgetResponseSchema: + PersonItemgetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -5443,7 +5435,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - ContactpersonCollectiongetResponseSchema: + PersonCollectiongetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -5726,7 +5718,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - ContactpersonItempostRequestSchema: + PersonItempostRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -5966,7 +5958,7 @@ components: example: custom_1: string custom_2: 2 - ContactpersonItempostResponseSchema: + PersonItempostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -6247,7 +6239,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - ContactpersonCollectionpostResponseSchema: + PersonCollectionpostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -6530,7 +6522,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - ContactpersonItemputRequestSchema: + PersonItemputRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -6770,7 +6762,7 @@ components: example: custom_1: string custom_2: 2 - ContactpersonItemputResponseSchema: + PersonItemputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -7051,7 +7043,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - ContactpersonCollectionputResponseSchema: + PersonCollectionputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -15641,7 +15633,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - CrewItemgetRequestSchema: + MedewerkerItemgetRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -15929,7 +15921,7 @@ components: example: custom_1: string custom_2: 2 - CrewItemgetResponseSchema: + MedewerkerItemgetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -16254,7 +16246,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - CrewCollectiongetResponseSchema: + MedewerkerCollectiongetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -16581,7 +16573,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - CrewItempostRequestSchema: + MedewerkerItempostRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -16869,7 +16861,7 @@ components: example: custom_1: string custom_2: 2 - CrewItempostResponseSchema: + MedewerkerItempostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -17194,7 +17186,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - CrewCollectionpostResponseSchema: + MedewerkerCollectionpostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -17521,7 +17513,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - CrewItemputRequestSchema: + MedewerkerItemputRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -17809,7 +17801,7 @@ components: example: custom_1: string custom_2: 2 - CrewItemputResponseSchema: + MedewerkerItemputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -18134,7 +18126,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - CrewCollectionputResponseSchema: + MedewerkerCollectionputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -18461,7 +18453,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - CrewavailabilityItemgetRequestSchema: + BeschikbaarheidItemgetRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -18514,7 +18506,7 @@ components: recurrent_group: type: integer description: "" - CrewAvailabilityItemgetResponseSchema: + BeschikbaarheidItemgetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -18605,7 +18597,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - CrewavailabilityCollectiongetResponseSchema: + BeschikbaarheidCollectiongetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -18698,7 +18690,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - CrewavailabilityItempostRequestSchema: + BeschikbaarheidItempostRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -18751,7 +18743,7 @@ components: recurrent_group: type: integer description: "" - CrewavailabilityItempostResponseSchema: + BeschikbaarheidItempostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -18842,7 +18834,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - CrewavailabilityCollectionpostResponseSchema: + BeschikbaarheidCollectionpostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -18935,7 +18927,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - CrewAvailabilityItemputRequestSchema: + BeschikbaarheidItemputRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -18988,7 +18980,7 @@ components: recurrent_group: type: integer description: "" - CrewAvailabilityItemputResponseSchema: + BeschikbaarheidItemputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -19079,7 +19071,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - CrewavailabilityCollectionputResponseSchema: + BeschikbaarheidCollectionputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -19172,7 +19164,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - CrewrateItemgetRequestSchema: + MedewerkertariefItemgetRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -19184,7 +19176,7 @@ components: nullable: true description: "" example: /rates/0 - CrewrateItemgetResponseSchema: + MedewerkertariefItemgetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -19234,7 +19226,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - CrewrateCollectiongetResponseSchema: + MedewerkertariefCollectiongetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -19286,7 +19278,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - CrewrateItempostRequestSchema: + MedewerkertariefItempostRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -19298,7 +19290,7 @@ components: nullable: true description: "" example: /rates/0 - CrewrateItempostResponseSchema: + MedewerkertariefItempostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -19348,7 +19340,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - CrewrateCollectionpostResponseSchema: + MedewerkertariefCollectionpostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -19400,7 +19392,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - CrewrateItemputRequestSchema: + MedewerkertariefItemputRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -19412,7 +19404,7 @@ components: nullable: true description: "" example: /rates/0 - CrewrateItemputResponseSchema: + MedewerkertariefItemputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -19462,7 +19454,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - CrewrateCollectionputResponseSchema: + MedewerkertariefCollectionputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -19514,7 +19506,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - EquipmentItemgetRequestSchema: + MateriaalItemgetRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -19861,7 +19853,7 @@ components: example: custom_1: string custom_2: 2 - EquipmentItemgetResponseSchema: + MateriaalItemgetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -20260,7 +20252,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - EquipmentCollectiongetResponseSchema: + MateriaalCollectiongetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -20652,7 +20644,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - EquipmentItempostRequestSchema: + MateriaalItempostRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -20999,7 +20991,7 @@ components: example: custom_1: string custom_2: 2 - EquipmentItempostResponseSchema: + MateriaalItempostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -21398,7 +21390,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - EquipmentCollectionpostResponseSchema: + MateriaalCollectionpostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -21790,7 +21782,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - EquipmentItemputRequestSchema: + MateriaalItemputRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -22137,7 +22129,7 @@ components: example: custom_1: string custom_2: 2 - EquipmentItemputResponseSchema: + MateriaalItemputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -22536,7 +22528,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - EquipmentCollectionputResponseSchema: + MateriaalCollectionputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -22928,7 +22920,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - EquipmentsetscontentItemgetRequestSchema: + SetinhoudItemgetRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' required: - equipment @@ -22950,7 +22942,7 @@ components: enum: - 'Available outside this combination' - 'Reserved from stock' - EquipmentsetscontentItemgetResponseSchema: + SetinhoudItemgetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -23008,7 +23000,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - EquipmentsetscontentCollectiongetResponseSchema: + SetinhoudCollectiongetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -23068,7 +23060,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - EquipmentsetscontentItempostRequestSchema: + SetinhoudItempostRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' required: - equipment @@ -23090,7 +23082,7 @@ components: enum: - 'Available outside this combination' - 'Reserved from stock' - EquipmentsetscontentItempostResponseSchema: + SetinhoudItempostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -23148,7 +23140,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - EquipmentsetscontentCollectionpostResponseSchema: + SetinhoudCollectionpostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -23208,7 +23200,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - EquipmentsetscontentItemputRequestSchema: + SetinhoudItemputRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' required: - equipment @@ -23230,7 +23222,7 @@ components: enum: - 'Available outside this combination' - 'Reserved from stock' - EquipmentsetscontentItemputResponseSchema: + SetinhoudItemputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -23288,7 +23280,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - EquipmentsetscontentCollectionputResponseSchema: + SetinhoudCollectionputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -23348,7 +23340,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - FileItemgetRequestSchema: + FilesItemgetRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -23405,7 +23397,7 @@ components: file_itemtype: type: string description: "" - FileItemgetResponseSchema: + FilesItemgetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -23509,7 +23501,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - FileCollectiongetResponseSchema: + FilesCollectiongetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -23615,7 +23607,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - FileItempostRequestSchema: + FilesItempostRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -23672,7 +23664,7 @@ components: file_itemtype: type: string description: "" - FileItempostResponseSchema: + FilesItempostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -23776,7 +23768,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - FileCollectionpostResponseSchema: + FilesCollectionpostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -23882,7 +23874,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - FileItemputRequestSchema: + FilesItemputRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -23939,7 +23931,7 @@ components: file_itemtype: type: string description: "" - FileItemputResponseSchema: + FilesItemputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -24043,7 +24035,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - FileCollectionputResponseSchema: + FilesCollectionputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -24593,7 +24585,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - InvoicelineItemgetRequestSchema: + BtwbedragItemgetRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -24604,7 +24596,7 @@ components: type: string description: "" example: /ledgercodes/0 - InvoicelineItemgetResponseSchema: + BtwbedragItemgetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -24665,7 +24657,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - InvoicelineCollectiongetResponseSchema: + BtwbedragCollectiongetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -24728,7 +24720,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - InvoicelineItempostRequestSchema: + BtwbedragItempostRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -24739,7 +24731,7 @@ components: type: string description: "" example: /ledgercodes/0 - InvoicelineItempostResponseSchema: + BtwbedragItempostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -24800,7 +24792,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - InvoicelineCollectionpostResponseSchema: + BtwbedragCollectionpostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -24863,7 +24855,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - InvoicelineItemputRequestSchema: + BtwbedragItemputRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -24874,7 +24866,7 @@ components: type: string description: "" example: /ledgercodes/0 - InvoicelineItemputResponseSchema: + BtwbedragItemputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -24935,7 +24927,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - InvoicelineCollectionputResponseSchema: + BtwbedragCollectionputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -24998,7 +24990,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - InvoiceItemgetRequestSchema: + FactuurItemgetRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -25045,7 +25037,7 @@ components: filename: type: string description: "" - InvoiceItemgetResponseSchema: + FactuurItemgetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -25150,7 +25142,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - InvoiceCollectiongetResponseSchema: + FactuurCollectiongetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -25236,7 +25228,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - InvoiceItempostRequestSchema: + FactuurItempostRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -25283,7 +25275,7 @@ components: filename: type: string description: "" - InvoiceItempostResponseSchema: + FactuurItempostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -25388,7 +25380,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - InvoiceCollectionpostResponseSchema: + FactuurCollectionpostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -25474,7 +25466,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - InvoiceItemputRequestSchema: + FactuurItemputRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -25521,7 +25513,7 @@ components: filename: type: string description: "" - InvoiceItemputResponseSchema: + FactuurItemputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -25626,7 +25618,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - InvoiceCollectionputResponseSchema: + FactuurCollectionputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -25712,14 +25704,14 @@ components: offset: type: number description: 'The amount of items skipped in data' - LedgercodeItemgetRequestSchema: + GrootboekItemgetRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: code: type: string description: "" - LedgercodeItemgetResponseSchema: + GrootboekItemgetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -25760,7 +25752,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - LedgercodeCollectiongetResponseSchema: + GrootboekCollectiongetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -25803,14 +25795,14 @@ components: offset: type: number description: 'The amount of items skipped in data' - LedgercodeItempostRequestSchema: + GrootboekItempostRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: code: type: string description: "" - LedgercodeItempostResponseSchema: + GrootboekItempostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -25851,7 +25843,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - LedgercodeCollectionpostResponseSchema: + GrootboekCollectionpostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -25894,14 +25886,14 @@ components: offset: type: number description: 'The amount of items skipped in data' - LedgercodeItemputRequestSchema: + GrootboekItemputRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: code: type: string description: "" - LedgercodeItemputResponseSchema: + GrootboekItemputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -25942,7 +25934,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - LedgercodeCollectionputResponseSchema: + GrootboekCollectionputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -26432,7 +26424,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - ProjectcrewItemgetRequestSchema: + PlanningpersoneelItemgetRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' required: - crewmember @@ -26489,7 +26481,7 @@ components: example: custom_1: string custom_2: 2 - ProjectcrewItemgetResponseSchema: + PlanningpersoneelItemgetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -26599,7 +26591,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - ProjectcrewCollectiongetResponseSchema: + PlanningpersoneelCollectiongetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -26711,7 +26703,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - ProjectcrewItempostRequestSchema: + PlanningpersoneelItempostRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' required: - crewmember @@ -26768,7 +26760,7 @@ components: example: custom_1: string custom_2: 2 - ProjectcrewItempostResponseSchema: + PlanningpersoneelItempostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -26878,7 +26870,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - ProjectcrewCollectionpostResponseSchema: + PlanningpersoneelCollectionpostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -26990,7 +26982,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - ProjectcrewItemputRequestSchema: + PlanningpersoneelItemputRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' required: - crewmember @@ -27047,7 +27039,7 @@ components: example: custom_1: string custom_2: 2 - ProjectcrewItemputResponseSchema: + PlanningpersoneelItemputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -27157,7 +27149,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - ProjectcrewCollectionputResponseSchema: + PlanningpersoneelCollectionputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -27269,7 +27261,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - ProjectequipmentItemgetRequestSchema: + PlanningmateriaalItemgetRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -27327,7 +27319,7 @@ components: example: custom_1: string custom_2: 2 - ProjectequipmentItemgetResponseSchema: + PlanningmateriaalItemgetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -27445,7 +27437,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - ProjectequipmentCollectiongetResponseSchema: + PlanningmateriaalCollectiongetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -27565,7 +27557,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - ProjectequipmentItempostRequestSchema: + PlanningmateriaalItempostRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -27623,7 +27615,7 @@ components: example: custom_1: string custom_2: 2 - ProjectequipmentItempostResponseSchema: + PlanningmateriaalItempostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -27741,7 +27733,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - ProjectequipmentCollectionpostResponseSchema: + PlanningmateriaalCollectionpostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -27861,7 +27853,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - ProjectequipmentItemputRequestSchema: + PlanningmateriaalItemputRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -27919,7 +27911,7 @@ components: example: custom_1: string custom_2: 2 - ProjectequipmentItemputResponseSchema: + PlanningmateriaalItemputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -28037,7 +28029,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - ProjectequipmentCollectionputResponseSchema: + PlanningmateriaalCollectionputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -28157,7 +28149,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - ProjectequipmentgroupItemgetRequestSchema: + MateriaalCatItemgetRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' required: - subproject @@ -28209,7 +28201,7 @@ components: remark: type: string description: "" - ProjectequipmentgroupItemgetResponseSchema: + MateriaalCatItemgetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -28312,7 +28304,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - ProjectequipmentgroupCollectiongetResponseSchema: + MateriaalCatCollectiongetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -28417,7 +28409,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - ProjectequipmentgroupItempostRequestSchema: + MateriaalCatItempostRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' required: - subproject @@ -28469,7 +28461,7 @@ components: remark: type: string description: "" - ProjectequipmentgroupItempostResponseSchema: + MateriaalCatItempostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -28572,7 +28564,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - ProjectequipmentgroupCollectionpostResponseSchema: + MateriaalCatCollectionpostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -28677,7 +28669,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - ProjectequipmentgroupItemputRequestSchema: + MateriaalCatItemputRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' required: - subproject @@ -28729,7 +28721,7 @@ components: remark: type: string description: "" - ProjectequipmentgroupItemputResponseSchema: + MateriaalCatItemputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -28832,7 +28824,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - ProjectequipmentgroupCollectionputResponseSchema: + MateriaalCatCollectionputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -28937,7 +28929,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - ProjectfunctiongroupItemgetRequestSchema: + FunctiegroepItemgetRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' required: - subproject @@ -29001,7 +28993,7 @@ components: remark: type: string description: "" - ProjectfunctiongroupItemgetResponseSchema: + FunctiegroepItemgetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -29101,7 +29093,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - ProjectfunctiongroupCollectiongetResponseSchema: + FunctiegroepCollectiongetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -29203,7 +29195,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - ProjectfunctionItemgetRequestSchema: + FunctieItemgetRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' required: - cost_rate @@ -29351,7 +29343,7 @@ components: example: custom_1: string custom_2: 2 - ProjectfunctionItemgetResponseSchema: + FunctieItemgetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -29554,7 +29546,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - ProjectfunctionCollectiongetResponseSchema: + FunctieCollectiongetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -31992,7 +31984,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - ProjecttypeItemgetRequestSchema: + TypeItemgetRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -32010,7 +32002,7 @@ components: - supplier - transfer - shifts - ProjecttypeItemgetResponseSchema: + TypeItemgetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -32062,7 +32054,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - ProjecttypeCollectiongetResponseSchema: + TypeCollectiongetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -32116,7 +32108,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - ProjecttypeItempostRequestSchema: + TypeItempostRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -32134,7 +32126,7 @@ components: - supplier - transfer - shifts - ProjecttypeItempostResponseSchema: + TypeItempostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -32186,7 +32178,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - ProjecttypeCollectionpostResponseSchema: + TypeCollectionpostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -32240,7 +32232,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - ProjecttypeItemputRequestSchema: + TypeItemputRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -32258,7 +32250,7 @@ components: - supplier - transfer - shifts - ProjecttypeItemputResponseSchema: + TypeItemputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -32310,7 +32302,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - ProjecttypeCollectionputResponseSchema: + TypeCollectionputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -32364,7 +32356,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - ProjectvehicleItemgetRequestSchema: + PlanningtransportItemgetRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' required: - vehicle @@ -32409,7 +32401,7 @@ components: example: custom_1: string custom_2: 2 - ProjectvehicleItemgetResponseSchema: + PlanningtransportItemgetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -32493,7 +32485,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - ProjectvehicleCollectiongetResponseSchema: + PlanningtransportCollectiongetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -32579,7 +32571,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - ProjectvehicleItempostRequestSchema: + PlanningtransportItempostRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' required: - vehicle @@ -32624,7 +32616,7 @@ components: example: custom_1: string custom_2: 2 - ProjectvehicleItempostResponseSchema: + PlanningtransportItempostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -32708,7 +32700,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - ProjectvehicleCollectionpostResponseSchema: + PlanningtransportCollectionpostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -32794,7 +32786,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - ProjectvehicleItemputRequestSchema: + PlanningtransportItemputRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' required: - vehicle @@ -32839,7 +32831,7 @@ components: example: custom_1: string custom_2: 2 - ProjectvehicleItemputResponseSchema: + PlanningtransportItemputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -32923,7 +32915,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - ProjectvehicleCollectionputResponseSchema: + PlanningtransportCollectionputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -33009,7 +33001,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - QuoteItemgetRequestSchema: + OfferteItemgetRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -33046,7 +33038,7 @@ components: filename: type: string description: "" - QuoteItemgetResponseSchema: + OfferteItemgetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -33151,7 +33143,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - QuoteCollectiongetResponseSchema: + OfferteCollectiongetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -33237,7 +33229,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - QuoteItempostRequestSchema: + OfferteItempostRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -33274,7 +33266,7 @@ components: filename: type: string description: "" - QuoteItempostResponseSchema: + OfferteItempostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -33379,7 +33371,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - QuoteCollectionpostResponseSchema: + OfferteCollectionpostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -33465,7 +33457,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - QuoteItemputRequestSchema: + OfferteItemputRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -33502,7 +33494,7 @@ components: filename: type: string description: "" - QuoteItemputResponseSchema: + OfferteItemputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -33607,7 +33599,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - QuoteCollectionputResponseSchema: + OfferteCollectionputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -34228,7 +34220,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - RepairItemgetRequestSchema: + ReparatieItemgetRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -34301,7 +34293,7 @@ components: example: custom_1: string custom_2: 2 - RepairItemgetResponseSchema: + ReparatieItemgetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -34415,7 +34407,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - RepairCollectiongetResponseSchema: + ReparatieCollectiongetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -34531,7 +34523,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - RepairItempostRequestSchema: + ReparatieItempostRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -34604,7 +34596,7 @@ components: example: custom_1: string custom_2: 2 - RepairItempostResponseSchema: + ReparatieItempostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -34718,7 +34710,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - RepairCollectionpostResponseSchema: + ReparatieCollectionpostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -34834,7 +34826,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - RepairItemputRequestSchema: + ReparatieItemputRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -34907,7 +34899,7 @@ components: example: custom_1: string custom_2: 2 - RepairItemputResponseSchema: + ReparatieItemputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -35021,7 +35013,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - RepairCollectionputResponseSchema: + ReparatieCollectionputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -35137,7 +35129,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - SerialnumberItemgetRequestSchema: + ExemplaarItemgetRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -35177,7 +35169,7 @@ components: example: custom_1: string custom_2: 2 - SerialnumberItemgetResponseSchema: + ExemplaarItemgetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -35268,7 +35260,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - SerialnumberCollectiongetResponseSchema: + ExemplaarCollectiongetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -35361,7 +35353,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - SerialnumberItempostRequestSchema: + ExemplaarItempostRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -35401,7 +35393,7 @@ components: example: custom_1: string custom_2: 2 - SerialnumberItempostResponseSchema: + ExemplaarItempostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -35492,7 +35484,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - SerialnumberCollectionpostResponseSchema: + ExemplaarCollectionpostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -35585,7 +35577,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - SerialnumberItemputRequestSchema: + ExemplaarItemputRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -35625,7 +35617,7 @@ components: example: custom_1: string custom_2: 2 - SerialnumberItemputResponseSchema: + ExemplaarItemputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -35716,7 +35708,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - SerialnumberCollectionputResponseSchema: + ExemplaarCollectionputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -36082,7 +36074,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - StocklocationItemgetRequestSchema: + AssetLocationItemgetRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -36312,7 +36304,7 @@ components: in_archive: type: boolean description: 'This stock location is archived. This means that it cannot be used in equipment planning.' - StocklocationItemgetResponseSchema: + AssetLocationItemgetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -36576,7 +36568,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - StockLocationCollectiongetResponseSchema: + AssetLocationCollectiongetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -36842,7 +36834,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - StocklocationItempostRequestSchema: + AssetLocationItempostRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -37072,7 +37064,7 @@ components: in_archive: type: boolean description: 'This stock location is archived. This means that it cannot be used in equipment planning.' - StocklocationItempostResponseSchema: + AssetLocationItempostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -37336,7 +37328,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - StocklocationCollectionpostResponseSchema: + AssetLocationCollectionpostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -37602,7 +37594,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - StocklocationItemputRequestSchema: + AssetLocationItemputRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -37832,7 +37824,7 @@ components: in_archive: type: boolean description: 'This stock location is archived. This means that it cannot be used in equipment planning.' - StocklocationItemputResponseSchema: + AssetLocationItemputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -38096,7 +38088,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - StocklocationCollectionputResponseSchema: + AssetLocationCollectionputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -38362,7 +38354,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - StockmovementItemgetRequestSchema: + VoorraadmutatieItemgetRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -38409,7 +38401,7 @@ components: nullable: true description: "" example: /stocklocations/0 - StockmovementItemgetResponseSchema: + VoorraadmutatieItemgetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -38494,7 +38486,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - StockmovementCollectiongetResponseSchema: + VoorraadmutatieCollectiongetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -38581,7 +38573,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - StockmovementItempostRequestSchema: + VoorraadmutatieItempostRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -38609,7 +38601,7 @@ components: nullable: true description: "" example: /stocklocations/0 - StockmovementItempostResponseSchema: + VoorraadmutatieItempostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -38675,7 +38667,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - StockmovementCollectionpostResponseSchema: + VoorraadmutatieCollectionpostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -38743,7 +38735,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - StockmovementItemputRequestSchema: + VoorraadmutatieItemputRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -38771,7 +38763,7 @@ components: nullable: true description: "" example: /stocklocations/0 - StockmovementItemputResponseSchema: + VoorraadmutatieItemputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -38837,7 +38829,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - StockmovementCollectionputResponseSchema: + VoorraadmutatieCollectionputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -39302,7 +39294,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - SubrentalequipmentItemgetRequestSchema: + InhuurmateriaalItemgetRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -39358,7 +39350,7 @@ components: nullable: true description: "" example: /projectequipment/0 - SubrentalequipmentItemgetResponseSchema: + InhuurmateriaalItemgetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -39452,7 +39444,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - SubrentalequipmentCollectiongetResponseSchema: + InhuurmateriaalCollectiongetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -39548,7 +39540,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - SubrentalequipmentItempostRequestSchema: + InhuurmateriaalItempostRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -39604,7 +39596,7 @@ components: nullable: true description: "" example: /projectequipment/0 - SubrentalequipmentItempostResponseSchema: + InhuurmateriaalItempostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -39698,7 +39690,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - SubrentalequipmentCollectionpostResponseSchema: + InhuurmateriaalCollectionpostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -39794,7 +39786,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - SubrentalequipmentItemputRequestSchema: + InhuurmateriaalItemputRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -39850,7 +39842,7 @@ components: nullable: true description: "" example: /projectequipment/0 - SubrentalequipmentItemputResponseSchema: + InhuurmateriaalItemputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -39944,7 +39936,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - SubrentalequipmentCollectionputResponseSchema: + InhuurmateriaalCollectionputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -40040,7 +40032,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - SubrentalequipmentgroupItemgetRequestSchema: + InhuurgroepItemgetRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -40055,7 +40047,7 @@ components: nullable: true description: "" example: /projectequipmentgroup/0 - SubrentalequipmentgroupItemgetResponseSchema: + InhuurgroepItemgetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -40108,7 +40100,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - SubrentalequipmentgroupCollectiongetResponseSchema: + InhuurgroepCollectiongetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -40163,7 +40155,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - SubrentalequipmentgroupItempostRequestSchema: + InhuurgroepItempostRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -40178,7 +40170,7 @@ components: nullable: true description: "" example: /projectequipmentgroup/0 - SubrentalequipmentgroupItempostResponseSchema: + InhuurgroepItempostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -40231,7 +40223,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - SubrentalequipmentgroupCollectionpostResponseSchema: + InhuurgroepCollectionpostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -40286,7 +40278,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - SubrentalequipmentgroupItemputRequestSchema: + InhuurgroepItemputRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -40301,7 +40293,7 @@ components: nullable: true description: "" example: /projectequipmentgroup/0 - SubrentalequipmentgroupItemputResponseSchema: + InhuurgroepItemputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -40354,7 +40346,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - SubrentalequipmentgroupCollectionputResponseSchema: + InhuurgroepCollectionputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -40409,7 +40401,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - SubrentalItemgetRequestSchema: + InhuurItemgetRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -40532,7 +40524,7 @@ components: example: custom_1: string custom_2: 2 - SubrentalItemgetResponseSchema: + InhuurItemgetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -40692,7 +40684,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - SubrentalCollectiongetResponseSchema: + InhuurCollectiongetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -40854,7 +40846,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - SubrentalItempostRequestSchema: + InhuurItempostRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -40977,7 +40969,7 @@ components: example: custom_1: string custom_2: 2 - SubrentalItempostResponseSchema: + InhuurItempostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -41137,7 +41129,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - SubrentalCollectionpostResponseSchema: + InhuurCollectionpostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -41299,7 +41291,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - SubrentalItemputRequestSchema: + InhuurItemputRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -41422,7 +41414,7 @@ components: example: custom_1: string custom_2: 2 - SubrentalItemputResponseSchema: + InhuurItemputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -41582,7 +41574,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - SubrentalCollectionputResponseSchema: + InhuurCollectionputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -42107,7 +42099,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - TimeregistrationItemgetRequestSchema: + UrenItemgetRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -42165,7 +42157,7 @@ components: example: custom_1: string custom_2: 2 - TimeregistrationItemgetResponseSchema: + UrenItemgetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -42257,7 +42249,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - TimeregistrationCollectiongetResponseSchema: + UrenCollectiongetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -42351,7 +42343,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - TimeregistrationItempostRequestSchema: + UrenItempostRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -42409,7 +42401,7 @@ components: example: custom_1: string custom_2: 2 - TimeregistrationItempostResponseSchema: + UrenItempostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -42501,7 +42493,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - TimeregistrationCollectionpostResponseSchema: + UrenCollectionpostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -42595,7 +42587,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - TimeregistrationItemputRequestSchema: + UrenItemputRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -42653,7 +42645,7 @@ components: example: custom_1: string custom_2: 2 - TimeregistrationItemputResponseSchema: + UrenItemputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -42745,7 +42737,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - TimeregistrationCollectionputResponseSchema: + UrenCollectionputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -42839,7 +42831,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - TimeregistrationactivityItemgetRequestSchema: + FunctieuurItemgetRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -42855,7 +42847,7 @@ components: type: number nullable: true description: "" - TimeregistrationactivityItemgetResponseSchema: + FunctieuurItemgetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -42909,7 +42901,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - TimeregistrationactivityCollectiongetResponseSchema: + FunctieuurCollectiongetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -42965,7 +42957,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - TimeregistrationactivityItempostRequestSchema: + FunctieuurItempostRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -42981,7 +42973,7 @@ components: type: number nullable: true description: "" - TimeregistrationactivityItempostResponseSchema: + FunctieuurItempostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -43035,7 +43027,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - TimeregistrationactivityCollectionpostResponseSchema: + FunctieuurCollectionpostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -43091,7 +43083,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - TimeregistrationactivityItemputRequestSchema: + FunctieuurItemputRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -43107,7 +43099,7 @@ components: type: number nullable: true description: "" - TimeregistrationactivityItemputResponseSchema: + FunctieuurItemputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -43161,7 +43153,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - TimeregistrationactivityCollectionputResponseSchema: + FunctieuurCollectionputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -43217,7 +43209,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - VehicleItemgetRequestSchema: + VoertuigItemgetRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -43282,7 +43274,7 @@ components: example: custom_1: string custom_2: 2 - VehicleItemgetResponseSchema: + VoertuigItemgetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -43390,7 +43382,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - VehicleCollectiongetResponseSchema: + VoertuigCollectiongetResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -43500,7 +43492,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - VehicleItempostRequestSchema: + VoertuigItempostRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -43565,7 +43557,7 @@ components: example: custom_1: string custom_2: 2 - VehicleItempostResponseSchema: + VoertuigItempostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -43673,7 +43665,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - VehicleCollectionpostResponseSchema: + VoertuigCollectionpostResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -43783,7 +43775,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - VehicleItemputRequestSchema: + VoertuigItemputRequestSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -43848,7 +43840,7 @@ components: example: custom_1: string custom_2: 2 - VehicleItemputResponseSchema: + VoertuigItemputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: @@ -43956,7 +43948,7 @@ components: offset: type: number description: 'The amount of items skipped in data' - VehicleCollectionputResponseSchema: + VoertuigCollectionputResponseSchema: $schema: 'http://json-schema.org/draft-04/schema#' type: object properties: diff --git a/oas_changed.yml b/oas_changed.yml index 64c0b95..d63eef8 100644 --- a/oas_changed.yml +++ b/oas_changed.yml @@ -728,7 +728,7 @@ components: description: The amount of items skipped in data type: number type: object - AppointmentcrewCollectiongetResponseSchema: + AppointmentCrewCollectiongetResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -776,7 +776,7 @@ components: description: The amount of items skipped in data type: number type: object - AppointmentcrewCollectionpostResponseSchema: + AppointmentCrewCollectionpostResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -824,7 +824,7 @@ components: description: The amount of items skipped in data type: number type: object - AppointmentcrewCollectionputResponseSchema: + AppointmentCrewCollectionputResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -872,7 +872,7 @@ components: description: The amount of items skipped in data type: number type: object - AppointmentcrewItemgetRequestSchema: + AppointmentCrewItemgetRequestSchema: $schema: http://json-schema.org/draft-04/schema# properties: crew: @@ -882,7 +882,7 @@ components: required: - crew type: object - AppointmentcrewItemgetResponseSchema: + AppointmentCrewItemgetResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -928,7 +928,7 @@ components: description: The amount of items skipped in data type: number type: object - AppointmentcrewItempostRequestSchema: + AppointmentCrewItempostRequestSchema: $schema: http://json-schema.org/draft-04/schema# properties: crew: @@ -938,7 +938,7 @@ components: required: - crew type: object - AppointmentcrewItempostResponseSchema: + AppointmentCrewItempostResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -984,7 +984,7 @@ components: description: The amount of items skipped in data type: number type: object - AppointmentcrewItemputRequestSchema: + AppointmentCrewItemputRequestSchema: $schema: http://json-schema.org/draft-04/schema# properties: crew: @@ -994,7 +994,7 @@ components: required: - crew type: object - AppointmentcrewItemputResponseSchema: + AppointmentCrewItemputResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -12207,7 +12207,7 @@ components: description: The amount of items skipped in data type: number type: object - CrewavailabilityCollectiongetResponseSchema: + CrewAvailabilityCollectiongetResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -12304,7 +12304,7 @@ components: description: The amount of items skipped in data type: number type: object - CrewavailabilityCollectionpostResponseSchema: + CrewAvailabilityCollectionpostResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -12401,7 +12401,7 @@ components: description: The amount of items skipped in data type: number type: object - CrewavailabilityCollectionputResponseSchema: + CrewAvailabilityCollectionputResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -12498,7 +12498,7 @@ components: description: The amount of items skipped in data type: number type: object - CrewavailabilityItemgetRequestSchema: + CrewAvailabilityItemgetRequestSchema: $schema: http://json-schema.org/draft-04/schema# properties: end: @@ -12650,7 +12650,7 @@ components: description: The amount of items skipped in data type: number type: object - CrewavailabilityItempostRequestSchema: + CrewAvailabilityItempostRequestSchema: $schema: http://json-schema.org/draft-04/schema# properties: end: @@ -12707,7 +12707,7 @@ components: - O type: string type: object - CrewavailabilityItempostResponseSchema: + CrewAvailabilityItempostResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -15774,7 +15774,7 @@ components: description: The amount of items skipped in data type: number type: object - CrewrateCollectiongetResponseSchema: + CrewRatesCollectiongetResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -15826,7 +15826,7 @@ components: description: The amount of items skipped in data type: number type: object - CrewrateCollectionpostResponseSchema: + CrewRatesCollectionpostResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -15878,7 +15878,7 @@ components: description: The amount of items skipped in data type: number type: object - CrewrateCollectionputResponseSchema: + CrewRatesCollectionputResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -15930,7 +15930,7 @@ components: description: The amount of items skipped in data type: number type: object - CrewrateItemgetRequestSchema: + CrewRatesItemgetRequestSchema: $schema: http://json-schema.org/draft-04/schema# properties: cost_rate: @@ -15942,7 +15942,7 @@ components: description: '' type: string type: object - CrewrateItemgetResponseSchema: + CrewRatesItemgetResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -15992,7 +15992,7 @@ components: description: The amount of items skipped in data type: number type: object - CrewrateItempostRequestSchema: + CrewRatesItempostRequestSchema: $schema: http://json-schema.org/draft-04/schema# properties: cost_rate: @@ -16004,7 +16004,7 @@ components: description: '' type: string type: object - CrewrateItempostResponseSchema: + CrewRatesItempostResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -16054,7 +16054,7 @@ components: description: The amount of items skipped in data type: number type: object - CrewrateItemputRequestSchema: + CrewRatesItemputRequestSchema: $schema: http://json-schema.org/draft-04/schema# properties: cost_rate: @@ -16066,7 +16066,7 @@ components: description: '' type: string type: object - CrewrateItemputResponseSchema: + CrewRatesItemputResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -19569,7 +19569,7 @@ components: description: The amount of items skipped in data type: number type: object - EquipmentsetscontentCollectiongetResponseSchema: + EquipmentSetsContentCollectiongetResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -19630,7 +19630,7 @@ components: description: The amount of items skipped in data type: number type: object - EquipmentsetscontentCollectionpostResponseSchema: + EquipmentSetsContentCollectionpostResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -19691,7 +19691,7 @@ components: description: The amount of items skipped in data type: number type: object - EquipmentsetscontentCollectionputResponseSchema: + EquipmentSetsContentCollectionputResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -19752,7 +19752,7 @@ components: description: The amount of items skipped in data type: number type: object - EquipmentsetscontentItemgetRequestSchema: + EquipmentSetsContentItemgetRequestSchema: $schema: http://json-schema.org/draft-04/schema# properties: equipment: @@ -19774,7 +19774,7 @@ components: required: - equipment type: object - EquipmentsetscontentItemgetResponseSchema: + EquipmentSetsContentItemgetResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -19832,7 +19832,7 @@ components: description: The amount of items skipped in data type: number type: object - EquipmentsetscontentItempostRequestSchema: + EquipmentSetsContentItempostRequestSchema: $schema: http://json-schema.org/draft-04/schema# properties: equipment: @@ -19854,7 +19854,7 @@ components: required: - equipment type: object - EquipmentsetscontentItempostResponseSchema: + EquipmentSetsContentItempostResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -19912,7 +19912,7 @@ components: description: The amount of items skipped in data type: number type: object - EquipmentsetscontentItemputRequestSchema: + EquipmentSetsContentItemputRequestSchema: $schema: http://json-schema.org/draft-04/schema# properties: equipment: @@ -19934,7 +19934,7 @@ components: required: - equipment type: object - EquipmentsetscontentItemputResponseSchema: + EquipmentSetsContentItemputResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -21957,7 +21957,7 @@ components: description: The amount of items skipped in data type: number type: object - InvoicelineCollectiongetResponseSchema: + InvoiceLinesCollectiongetResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -22020,7 +22020,7 @@ components: description: The amount of items skipped in data type: number type: object - InvoicelineCollectionpostResponseSchema: + InvoiceLinesCollectionpostResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -22083,7 +22083,7 @@ components: description: The amount of items skipped in data type: number type: object - InvoicelineCollectionputResponseSchema: + InvoiceLinesCollectionputResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -22146,7 +22146,7 @@ components: description: The amount of items skipped in data type: number type: object - InvoicelineItemgetRequestSchema: + InvoiceLinesItemgetRequestSchema: $schema: http://json-schema.org/draft-04/schema# properties: base: @@ -22157,7 +22157,7 @@ components: example: /ledgercodes/0 type: string type: object - InvoicelineItemgetResponseSchema: + InvoiceLinesItemgetResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -22218,7 +22218,7 @@ components: description: The amount of items skipped in data type: number type: object - InvoicelineItempostRequestSchema: + InvoiceLinesItempostRequestSchema: $schema: http://json-schema.org/draft-04/schema# properties: base: @@ -22229,7 +22229,7 @@ components: example: /ledgercodes/0 type: string type: object - InvoicelineItempostResponseSchema: + InvoiceLinesItempostResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -22290,7 +22290,7 @@ components: description: The amount of items skipped in data type: number type: object - InvoicelineItemputRequestSchema: + InvoiceLinesItemputRequestSchema: $schema: http://json-schema.org/draft-04/schema# properties: base: @@ -22301,7 +22301,7 @@ components: example: /ledgercodes/0 type: string type: object - InvoicelineItemputResponseSchema: + InvoiceLinesItemputResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -22362,7 +22362,7 @@ components: description: The amount of items skipped in data type: number type: object - LedgercodeCollectiongetResponseSchema: + LedgerCodeCollectiongetResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -22405,7 +22405,7 @@ components: description: The amount of items skipped in data type: number type: object - LedgercodeCollectionpostResponseSchema: + LedgerCodeCollectionpostResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -22448,7 +22448,7 @@ components: description: The amount of items skipped in data type: number type: object - LedgercodeCollectionputResponseSchema: + LedgerCodeCollectionputResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -22491,14 +22491,14 @@ components: description: The amount of items skipped in data type: number type: object - LedgercodeItemgetRequestSchema: + LedgerCodeItemgetRequestSchema: $schema: http://json-schema.org/draft-04/schema# properties: code: description: '' type: string type: object - LedgercodeItemgetResponseSchema: + LedgerCodeItemgetResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -22539,14 +22539,14 @@ components: description: The amount of items skipped in data type: number type: object - LedgercodeItempostRequestSchema: + LedgerCodeItempostRequestSchema: $schema: http://json-schema.org/draft-04/schema# properties: code: description: '' type: string type: object - LedgercodeItempostResponseSchema: + LedgerCodeItempostResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -22587,14 +22587,14 @@ components: description: The amount of items skipped in data type: number type: object - LedgercodeItemputRequestSchema: + LedgerCodeItemputRequestSchema: $schema: http://json-schema.org/draft-04/schema# properties: code: description: '' type: string type: object - LedgercodeItemputResponseSchema: + LedgerCodeItemputResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -23233,7 +23233,7 @@ components: description: The amount of items skipped in data type: number type: object - ProjectcrewCollectiongetResponseSchema: + ProjectCrewCollectiongetResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -23349,7 +23349,7 @@ components: description: The amount of items skipped in data type: number type: object - ProjectcrewCollectionpostResponseSchema: + ProjectCrewCollectionpostResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -23465,7 +23465,7 @@ components: description: The amount of items skipped in data type: number type: object - ProjectcrewCollectionputResponseSchema: + ProjectCrewCollectionputResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -23581,7 +23581,7 @@ components: description: The amount of items skipped in data type: number type: object - ProjectcrewItemgetRequestSchema: + ProjectCrewItemgetRequestSchema: $schema: http://json-schema.org/draft-04/schema# properties: cost_rate: @@ -23638,7 +23638,7 @@ components: required: - crewmember type: object - ProjectcrewItemgetResponseSchema: + ProjectCrewItemgetResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -23752,7 +23752,7 @@ components: description: The amount of items skipped in data type: number type: object - ProjectcrewItempostRequestSchema: + ProjectCrewItempostRequestSchema: $schema: http://json-schema.org/draft-04/schema# properties: cost_rate: @@ -23809,7 +23809,7 @@ components: required: - crewmember type: object - ProjectcrewItempostResponseSchema: + ProjectCrewItempostResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -23923,7 +23923,7 @@ components: description: The amount of items skipped in data type: number type: object - ProjectcrewItemputRequestSchema: + ProjectCrewItemputRequestSchema: $schema: http://json-schema.org/draft-04/schema# properties: cost_rate: @@ -23980,7 +23980,7 @@ components: required: - crewmember type: object - ProjectcrewItemputResponseSchema: + ProjectCrewItemputResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -24094,7 +24094,7 @@ components: description: The amount of items skipped in data type: number type: object - ProjectequipmentCollectiongetResponseSchema: + ProjectEquipmentCollectiongetResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -24214,7 +24214,7 @@ components: description: The amount of items skipped in data type: number type: object - ProjectequipmentCollectionpostResponseSchema: + ProjectEquipmentCollectionpostResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -24334,7 +24334,7 @@ components: description: The amount of items skipped in data type: number type: object - ProjectequipmentCollectionputResponseSchema: + ProjectEquipmentCollectionputResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -24454,7 +24454,7 @@ components: description: The amount of items skipped in data type: number type: object - ProjectequipmentgroupCollectiongetResponseSchema: + ProjectEquipmentGroupCollectiongetResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -24559,7 +24559,7 @@ components: description: The amount of items skipped in data type: number type: object - ProjectequipmentgroupCollectionpostResponseSchema: + ProjectEquipmentGroupCollectionpostResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -24664,7 +24664,7 @@ components: description: The amount of items skipped in data type: number type: object - ProjectequipmentgroupCollectionputResponseSchema: + ProjectEquipmentGroupCollectionputResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -24769,7 +24769,7 @@ components: description: The amount of items skipped in data type: number type: object - ProjectequipmentgroupItemgetRequestSchema: + ProjectEquipmentGroupItemgetRequestSchema: $schema: http://json-schema.org/draft-04/schema# properties: additional_scanned: @@ -24821,7 +24821,7 @@ components: required: - subproject type: object - ProjectequipmentgroupItemgetResponseSchema: + ProjectEquipmentGroupItemgetResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -24924,7 +24924,7 @@ components: description: The amount of items skipped in data type: number type: object - ProjectequipmentgroupItempostRequestSchema: + ProjectEquipmentGroupItempostRequestSchema: $schema: http://json-schema.org/draft-04/schema# properties: additional_scanned: @@ -24976,7 +24976,7 @@ components: required: - subproject type: object - ProjectequipmentgroupItempostResponseSchema: + ProjectEquipmentGroupItempostResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -25079,7 +25079,7 @@ components: description: The amount of items skipped in data type: number type: object - ProjectequipmentgroupItemputRequestSchema: + ProjectEquipmentGroupItemputRequestSchema: $schema: http://json-schema.org/draft-04/schema# properties: additional_scanned: @@ -25131,7 +25131,7 @@ components: required: - subproject type: object - ProjectequipmentgroupItemputResponseSchema: + ProjectEquipmentGroupItemputResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -25234,7 +25234,7 @@ components: description: The amount of items skipped in data type: number type: object - ProjectequipmentItemgetRequestSchema: + ProjectEquipmentItemgetRequestSchema: $schema: http://json-schema.org/draft-04/schema# properties: custom: @@ -25292,7 +25292,7 @@ components: description: '' type: number type: object - ProjectequipmentItemgetResponseSchema: + ProjectEquipmentItemgetResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -25410,7 +25410,7 @@ components: description: The amount of items skipped in data type: number type: object - ProjectequipmentItempostRequestSchema: + ProjectEquipmentItempostRequestSchema: $schema: http://json-schema.org/draft-04/schema# properties: custom: @@ -25468,7 +25468,7 @@ components: description: '' type: number type: object - ProjectequipmentItempostResponseSchema: + ProjectEquipmentItempostResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -25586,7 +25586,7 @@ components: description: The amount of items skipped in data type: number type: object - ProjectequipmentItemputRequestSchema: + ProjectEquipmentItemputRequestSchema: $schema: http://json-schema.org/draft-04/schema# properties: custom: @@ -25644,7 +25644,7 @@ components: description: '' type: number type: object - ProjectequipmentItemputResponseSchema: + ProjectEquipmentItemputResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -25762,7 +25762,7 @@ components: description: The amount of items skipped in data type: number type: object - ProjectfunctionCollectiongetResponseSchema: + ProjectFunctionCollectiongetResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -25970,7 +25970,7 @@ components: description: The amount of items skipped in data type: number type: object - ProjectfunctiongroupCollectiongetResponseSchema: + ProjectFunctionGroupCollectiongetResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -26072,7 +26072,7 @@ components: description: The amount of items skipped in data type: number type: object - ProjectfunctiongroupItemgetRequestSchema: + ProjectFunctionGroupItemgetRequestSchema: $schema: http://json-schema.org/draft-04/schema# properties: duration: @@ -26136,7 +26136,7 @@ components: required: - subproject type: object - ProjectfunctiongroupItemgetResponseSchema: + ProjectFunctionGroupItemgetResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -26236,7 +26236,7 @@ components: description: The amount of items skipped in data type: number type: object - ProjectfunctionItemgetRequestSchema: + ProjectFunctionItemgetRequestSchema: $schema: http://json-schema.org/draft-04/schema# properties: amount: @@ -26385,7 +26385,7 @@ components: - price_rate - subproject type: object - ProjectfunctionItemgetResponseSchema: + ProjectFunctionItemgetResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -28673,7 +28673,7 @@ components: description: The amount of items skipped in data type: number type: object - ProjecttypeCollectiongetResponseSchema: + ProjectTypeCollectiongetResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -28727,7 +28727,7 @@ components: description: The amount of items skipped in data type: number type: object - ProjecttypeCollectionpostResponseSchema: + ProjectTypeCollectionpostResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -28781,7 +28781,7 @@ components: description: The amount of items skipped in data type: number type: object - ProjecttypeCollectionputResponseSchema: + ProjectTypeCollectionputResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -28835,7 +28835,7 @@ components: description: The amount of items skipped in data type: number type: object - ProjecttypeItemgetRequestSchema: + ProjectTypeItemgetRequestSchema: $schema: http://json-schema.org/draft-04/schema# properties: color: @@ -28853,7 +28853,7 @@ components: - shifts type: string type: object - ProjecttypeItemgetResponseSchema: + ProjectTypeItemgetResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -28905,7 +28905,7 @@ components: description: The amount of items skipped in data type: number type: object - ProjecttypeItempostRequestSchema: + ProjectTypeItempostRequestSchema: $schema: http://json-schema.org/draft-04/schema# properties: color: @@ -28923,7 +28923,7 @@ components: - shifts type: string type: object - ProjecttypeItempostResponseSchema: + ProjectTypeItempostResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -28975,7 +28975,7 @@ components: description: The amount of items skipped in data type: number type: object - ProjecttypeItemputRequestSchema: + ProjectTypeItemputRequestSchema: $schema: http://json-schema.org/draft-04/schema# properties: color: @@ -28993,7 +28993,7 @@ components: - shifts type: string type: object - ProjecttypeItemputResponseSchema: + ProjectTypeItemputResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -29045,7 +29045,7 @@ components: description: The amount of items skipped in data type: number type: object - ProjectvehicleCollectiongetResponseSchema: + ProjectVehiclesCollectiongetResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -29131,7 +29131,7 @@ components: description: The amount of items skipped in data type: number type: object - ProjectvehicleCollectionpostResponseSchema: + ProjectVehiclesCollectionpostResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -29217,7 +29217,7 @@ components: description: The amount of items skipped in data type: number type: object - ProjectvehicleCollectionputResponseSchema: + ProjectVehiclesCollectionputResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -29303,7 +29303,7 @@ components: description: The amount of items skipped in data type: number type: object - ProjectvehicleItemgetRequestSchema: + ProjectVehiclesItemgetRequestSchema: $schema: http://json-schema.org/draft-04/schema# properties: cost_rate: @@ -29348,7 +29348,7 @@ components: required: - vehicle type: object - ProjectvehicleItemgetResponseSchema: + ProjectVehiclesItemgetResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -29432,7 +29432,7 @@ components: description: The amount of items skipped in data type: number type: object - ProjectvehicleItempostRequestSchema: + ProjectVehiclesItempostRequestSchema: $schema: http://json-schema.org/draft-04/schema# properties: cost_rate: @@ -29477,7 +29477,7 @@ components: required: - vehicle type: object - ProjectvehicleItempostResponseSchema: + ProjectVehiclesItempostResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -29561,7 +29561,7 @@ components: description: The amount of items skipped in data type: number type: object - ProjectvehicleItemputRequestSchema: + ProjectVehiclesItemputRequestSchema: $schema: http://json-schema.org/draft-04/schema# properties: cost_rate: @@ -29606,7 +29606,7 @@ components: required: - vehicle type: object - ProjectvehicleItemputResponseSchema: + ProjectVehiclesItemputResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -31818,7 +31818,7 @@ components: description: The amount of items skipped in data type: number type: object - SerialnumberCollectiongetResponseSchema: + SerialNumberCollectiongetResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -31911,7 +31911,7 @@ components: description: The amount of items skipped in data type: number type: object - SerialnumberCollectionpostResponseSchema: + SerialNumberCollectionpostResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -32004,7 +32004,7 @@ components: description: The amount of items skipped in data type: number type: object - SerialnumberCollectionputResponseSchema: + SerialNumberCollectionputResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -32097,7 +32097,7 @@ components: description: The amount of items skipped in data type: number type: object - SerialnumberItemgetRequestSchema: + SerialNumberItemgetRequestSchema: $schema: http://json-schema.org/draft-04/schema# properties: active: @@ -32137,7 +32137,7 @@ components: description: '' type: string type: object - SerialnumberItemgetResponseSchema: + SerialNumberItemgetResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -32228,7 +32228,7 @@ components: description: The amount of items skipped in data type: number type: object - SerialnumberItempostRequestSchema: + SerialNumberItempostRequestSchema: $schema: http://json-schema.org/draft-04/schema# properties: active: @@ -32268,7 +32268,7 @@ components: description: '' type: string type: object - SerialnumberItempostResponseSchema: + SerialNumberItempostResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -32359,7 +32359,7 @@ components: description: The amount of items skipped in data type: number type: object - SerialnumberItemputRequestSchema: + SerialNumberItemputRequestSchema: $schema: http://json-schema.org/draft-04/schema# properties: active: @@ -32399,7 +32399,7 @@ components: description: '' type: string type: object - SerialnumberItemputResponseSchema: + SerialNumberItemputResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -33033,7 +33033,7 @@ components: description: The amount of items skipped in data type: number type: object - StocklocationCollectionpostResponseSchema: + StockLocationCollectionpostResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -33303,7 +33303,7 @@ components: description: The amount of items skipped in data type: number type: object - StocklocationCollectionputResponseSchema: + StockLocationCollectionputResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -33573,7 +33573,7 @@ components: description: The amount of items skipped in data type: number type: object - StocklocationItemgetRequestSchema: + StockLocationItemgetRequestSchema: $schema: http://json-schema.org/draft-04/schema# properties: active: @@ -33807,7 +33807,7 @@ components: - nonplannable type: string type: object - StocklocationItemgetResponseSchema: + StockLocationItemgetResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -34075,7 +34075,7 @@ components: description: The amount of items skipped in data type: number type: object - StocklocationItempostRequestSchema: + StockLocationItempostRequestSchema: $schema: http://json-schema.org/draft-04/schema# properties: active: @@ -34309,7 +34309,7 @@ components: - nonplannable type: string type: object - StocklocationItempostResponseSchema: + StockLocationItempostResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -34577,7 +34577,7 @@ components: description: The amount of items skipped in data type: number type: object - StocklocationItemputRequestSchema: + StockLocationItemputRequestSchema: $schema: http://json-schema.org/draft-04/schema# properties: active: @@ -34811,7 +34811,7 @@ components: - nonplannable type: string type: object - StocklocationItemputResponseSchema: + StockLocationItemputResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -35079,7 +35079,7 @@ components: description: The amount of items skipped in data type: number type: object - StockmovementCollectiongetResponseSchema: + StockMovementCollectiongetResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -35166,7 +35166,7 @@ components: description: The amount of items skipped in data type: number type: object - StockmovementCollectionpostResponseSchema: + StockMovementCollectionpostResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -35234,7 +35234,7 @@ components: description: The amount of items skipped in data type: number type: object - StockmovementCollectionputResponseSchema: + StockMovementCollectionputResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -35302,7 +35302,7 @@ components: description: The amount of items skipped in data type: number type: object - StockmovementItemgetRequestSchema: + StockMovementItemgetRequestSchema: $schema: http://json-schema.org/draft-04/schema# properties: amount: @@ -35349,7 +35349,7 @@ components: - bulk_transfer type: string type: object - StockmovementItemgetResponseSchema: + StockMovementItemgetResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -35434,7 +35434,7 @@ components: description: The amount of items skipped in data type: number type: object - StockmovementItempostRequestSchema: + StockMovementItempostRequestSchema: $schema: http://json-schema.org/draft-04/schema# properties: amount: @@ -35462,7 +35462,7 @@ components: nullable: true type: string type: object - StockmovementItempostResponseSchema: + StockMovementItempostResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -35528,7 +35528,7 @@ components: description: The amount of items skipped in data type: number type: object - StockmovementItemputRequestSchema: + StockMovementItemputRequestSchema: $schema: http://json-schema.org/draft-04/schema# properties: amount: @@ -35556,7 +35556,7 @@ components: nullable: true type: string type: object - StockmovementItemputResponseSchema: + StockMovementItemputResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -36505,7 +36505,7 @@ components: description: The amount of items skipped in data type: number type: object - SubrentalequipmentCollectiongetResponseSchema: + SubrentalEquipmentCollectiongetResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -36601,7 +36601,7 @@ components: description: The amount of items skipped in data type: number type: object - SubrentalequipmentCollectionpostResponseSchema: + SubrentalEquipmentCollectionpostResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -36697,7 +36697,7 @@ components: description: The amount of items skipped in data type: number type: object - SubrentalequipmentCollectionputResponseSchema: + SubrentalEquipmentCollectionputResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -36793,7 +36793,7 @@ components: description: The amount of items skipped in data type: number type: object - SubrentalequipmentgroupCollectiongetResponseSchema: + SubrentalEquipmentGroupCollectiongetResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -36848,7 +36848,7 @@ components: description: The amount of items skipped in data type: number type: object - SubrentalequipmentgroupCollectionpostResponseSchema: + SubrentalEquipmentGroupCollectionpostResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -36903,7 +36903,7 @@ components: description: The amount of items skipped in data type: number type: object - SubrentalequipmentgroupCollectionputResponseSchema: + SubrentalEquipmentGroupCollectionputResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -36958,7 +36958,7 @@ components: description: The amount of items skipped in data type: number type: object - SubrentalequipmentgroupItemgetRequestSchema: + SubrentalEquipmentGroupItemgetRequestSchema: $schema: http://json-schema.org/draft-04/schema# properties: name: @@ -36973,7 +36973,7 @@ components: nullable: true type: string type: object - SubrentalequipmentgroupItemgetResponseSchema: + SubrentalEquipmentGroupItemgetResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -37026,7 +37026,7 @@ components: description: The amount of items skipped in data type: number type: object - SubrentalequipmentgroupItempostRequestSchema: + SubrentalEquipmentGroupItempostRequestSchema: $schema: http://json-schema.org/draft-04/schema# properties: name: @@ -37041,7 +37041,7 @@ components: nullable: true type: string type: object - SubrentalequipmentgroupItempostResponseSchema: + SubrentalEquipmentGroupItempostResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -37094,7 +37094,7 @@ components: description: The amount of items skipped in data type: number type: object - SubrentalequipmentgroupItemputRequestSchema: + SubrentalEquipmentGroupItemputRequestSchema: $schema: http://json-schema.org/draft-04/schema# properties: name: @@ -37109,7 +37109,7 @@ components: nullable: true type: string type: object - SubrentalequipmentgroupItemputResponseSchema: + SubrentalEquipmentGroupItemputResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -37162,7 +37162,7 @@ components: description: The amount of items skipped in data type: number type: object - SubrentalequipmentItemgetRequestSchema: + SubrentalEquipmentItemgetRequestSchema: $schema: http://json-schema.org/draft-04/schema# properties: discount: @@ -37218,7 +37218,7 @@ components: description: '' type: number type: object - SubrentalequipmentItemgetResponseSchema: + SubrentalEquipmentItemgetResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -37312,7 +37312,7 @@ components: description: The amount of items skipped in data type: number type: object - SubrentalequipmentItempostRequestSchema: + SubrentalEquipmentItempostRequestSchema: $schema: http://json-schema.org/draft-04/schema# properties: discount: @@ -37368,7 +37368,7 @@ components: description: '' type: number type: object - SubrentalequipmentItempostResponseSchema: + SubrentalEquipmentItempostResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -37462,7 +37462,7 @@ components: description: The amount of items skipped in data type: number type: object - SubrentalequipmentItemputRequestSchema: + SubrentalEquipmentItemputRequestSchema: $schema: http://json-schema.org/draft-04/schema# properties: discount: @@ -37518,7 +37518,7 @@ components: description: '' type: number type: object - SubrentalequipmentItemputResponseSchema: + SubrentalEquipmentItemputResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -38824,7 +38824,7 @@ components: description: The amount of items skipped in data type: number type: object - TimeregistrationactivityCollectiongetResponseSchema: + TimeRegistrationActivityCollectiongetResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -38880,7 +38880,7 @@ components: description: The amount of items skipped in data type: number type: object - TimeregistrationactivityCollectionpostResponseSchema: + TimeRegistrationActivityCollectionpostResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -38936,7 +38936,7 @@ components: description: The amount of items skipped in data type: number type: object - TimeregistrationactivityCollectionputResponseSchema: + TimeRegistrationActivityCollectionputResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -38992,7 +38992,7 @@ components: description: The amount of items skipped in data type: number type: object - TimeregistrationactivityItemgetRequestSchema: + TimeRegistrationActivityItemgetRequestSchema: $schema: http://json-schema.org/draft-04/schema# properties: description: @@ -39008,7 +39008,7 @@ components: nullable: true type: string type: object - TimeregistrationactivityItemgetResponseSchema: + TimeRegistrationActivityItemgetResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -39062,7 +39062,7 @@ components: description: The amount of items skipped in data type: number type: object - TimeregistrationactivityItempostRequestSchema: + TimeRegistrationActivityItempostRequestSchema: $schema: http://json-schema.org/draft-04/schema# properties: description: @@ -39078,7 +39078,7 @@ components: nullable: true type: string type: object - TimeregistrationactivityItempostResponseSchema: + TimeRegistrationActivityItempostResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -39132,7 +39132,7 @@ components: description: The amount of items skipped in data type: number type: object - TimeregistrationactivityItemputRequestSchema: + TimeRegistrationActivityItemputRequestSchema: $schema: http://json-schema.org/draft-04/schema# properties: description: @@ -39148,7 +39148,7 @@ components: nullable: true type: string type: object - TimeregistrationactivityItemputResponseSchema: + TimeRegistrationActivityItemputResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -39202,7 +39202,7 @@ components: description: The amount of items skipped in data type: number type: object - TimeregistrationCollectiongetResponseSchema: + TimeRegistrationCollectiongetResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -39296,7 +39296,7 @@ components: description: The amount of items skipped in data type: number type: object - TimeregistrationCollectionpostResponseSchema: + TimeRegistrationCollectionpostResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -39390,7 +39390,7 @@ components: description: The amount of items skipped in data type: number type: object - TimeregistrationCollectionputResponseSchema: + TimeRegistrationCollectionputResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -39484,7 +39484,7 @@ components: description: The amount of items skipped in data type: number type: object - TimeregistrationItemgetRequestSchema: + TimeRegistrationItemgetRequestSchema: $schema: http://json-schema.org/draft-04/schema# properties: break_duration: @@ -39542,7 +39542,7 @@ components: - compensation type: string type: object - TimeregistrationItemgetResponseSchema: + TimeRegistrationItemgetResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -39634,7 +39634,7 @@ components: description: The amount of items skipped in data type: number type: object - TimeregistrationItempostRequestSchema: + TimeRegistrationItempostRequestSchema: $schema: http://json-schema.org/draft-04/schema# properties: break_duration: @@ -39692,7 +39692,7 @@ components: - compensation type: string type: object - TimeregistrationItempostResponseSchema: + TimeRegistrationItempostResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -39784,7 +39784,7 @@ components: description: The amount of items skipped in data type: number type: object - TimeregistrationItemputRequestSchema: + TimeRegistrationItemputRequestSchema: $schema: http://json-schema.org/draft-04/schema# properties: break_duration: @@ -39842,7 +39842,7 @@ components: - compensation type: string type: object - TimeregistrationItemputResponseSchema: + TimeRegistrationItemputResponseSchema: $schema: http://json-schema.org/draft-04/schema# properties: data: @@ -40793,7 +40793,7 @@ components: type: number type: object securitySchemes: - BearerAuth: + bearerAuth: bearerFormat: JWT scheme: bearer type: http @@ -40961,13 +40961,13 @@ paths: /appointmentcrew: get: description: '' - operationId: Appointmentcrew_collection_get + operationId: AppointmentCrew_collection_get responses: '200': content: application/json: schema: - $ref: '#/components/schemas/AppointmentcrewCollectiongetResponseSchema' + $ref: '#/components/schemas/AppointmentCrewCollectiongetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get appointmentcrew collection. tags: @@ -40975,7 +40975,7 @@ paths: /appointmentcrew/{id}: delete: description: '' - operationId: Appointmentcrew_item_delete + operationId: AppointmentCrew_item_delete parameters: - in: path name: id @@ -40991,7 +40991,7 @@ paths: - appointmentcrew get: description: '' - operationId: Appointmentcrew_item_get + operationId: AppointmentCrew_item_get parameters: - in: path name: id @@ -41004,14 +41004,14 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/AppointmentcrewItemgetResponseSchema' + $ref: '#/components/schemas/AppointmentCrewItemgetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get appointmentcrew item. tags: - appointmentcrew put: description: '' - operationId: Appointmentcrew_item_put + operationId: AppointmentCrew_item_put parameters: - in: path name: id @@ -41023,14 +41023,14 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/AppointmentcrewItemputRequestSchema' + $ref: '#/components/schemas/AppointmentCrewItemputRequestSchema' description: '' responses: '200': content: application/json: schema: - $ref: '#/components/schemas/AppointmentcrewItemputResponseSchema' + $ref: '#/components/schemas/AppointmentCrewItemputResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Update appointmentcrew item. tags: @@ -41134,7 +41134,7 @@ paths: /appointments/{id}/appointmentcrew: get: description: '' - operationId: Appointment_item_Appointmentcrew_get + operationId: Appointment_item_AppointmentCrew_get parameters: - in: path name: id @@ -41147,14 +41147,14 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/AppointmentcrewCollectiongetResponseSchema' + $ref: '#/components/schemas/AppointmentCrewCollectiongetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get appointmentcrew linked collection. tags: - appointments post: description: '' - operationId: Appointment_item_Appointmentcrew_post + operationId: Appointment_item_AppointmentCrew_post parameters: - in: path name: id @@ -41166,14 +41166,14 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/AppointmentcrewItempostRequestSchema' + $ref: '#/components/schemas/AppointmentCrewItempostRequestSchema' description: '' responses: '200': content: application/json: schema: - $ref: '#/components/schemas/AppointmentcrewItempostResponseSchema' + $ref: '#/components/schemas/AppointmentCrewItempostResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Create appointmentcrew linked item. tags: @@ -41258,7 +41258,7 @@ paths: /contactpersons/{id}/files: get: description: '' - operationId: Contactpersons_item_Files_get + operationId: Contactperson_item_File_get parameters: - in: path name: id @@ -41422,7 +41422,7 @@ paths: /contacts/{id}/files: get: description: '' - operationId: Contact_item_Files_get + operationId: Contact_item_File_get parameters: - in: path name: id @@ -41478,7 +41478,7 @@ paths: /contracts/{id}/files: get: description: '' - operationId: Contract_item_Files_get + operationId: Contract_item_File_get parameters: - in: path name: id @@ -41499,7 +41499,7 @@ paths: /contracts/{id}/invoicelines: get: description: '' - operationId: Contract_item_Invoiceline_get + operationId: Contract_item_InvoiceLines_get parameters: - in: path name: id @@ -41512,7 +41512,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/InvoicelineCollectiongetResponseSchema' + $ref: '#/components/schemas/InvoiceLinesCollectiongetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get invoicelines linked collection. tags: @@ -41653,7 +41653,7 @@ paths: /crew/{id}/crewavailability: get: description: '' - operationId: Crew_item_Crewavailability_get + operationId: Crew_item_CrewAvailability_get parameters: - in: path name: id @@ -41666,14 +41666,14 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/CrewavailabilityCollectiongetResponseSchema' + $ref: '#/components/schemas/CrewAvailabilityCollectiongetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get crewavailability linked collection. tags: - crew post: description: '' - operationId: Crew_item_Crewavailability_post + operationId: Crew_item_CrewAvailability_post parameters: - in: path name: id @@ -41685,14 +41685,14 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/CrewavailabilityItempostRequestSchema' + $ref: '#/components/schemas/CrewAvailabilityItempostRequestSchema' description: '' responses: '200': content: application/json: schema: - $ref: '#/components/schemas/CrewavailabilityItempostResponseSchema' + $ref: '#/components/schemas/CrewAvailabilityItempostResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Create crewavailability linked item. tags: @@ -41700,7 +41700,7 @@ paths: /crew/{id}/crewrates: get: description: '' - operationId: Crew_item_Crewrate_get + operationId: Crew_item_CrewRates_get parameters: - in: path name: id @@ -41713,7 +41713,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/CrewrateCollectiongetResponseSchema' + $ref: '#/components/schemas/CrewRatesCollectiongetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get crewrates linked collection. tags: @@ -41721,7 +41721,7 @@ paths: /crew/{id}/files: get: description: '' - operationId: Crew_item_Files_get + operationId: Crew_item_File_get parameters: - in: path name: id @@ -41742,13 +41742,13 @@ paths: /crewavailability: get: description: '' - operationId: Crewavailability_collection_get + operationId: CrewAvailability_collection_get responses: '200': content: application/json: schema: - $ref: '#/components/schemas/CrewavailabilityCollectiongetResponseSchema' + $ref: '#/components/schemas/CrewAvailabilityCollectiongetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get crewavailability collection. tags: @@ -41819,13 +41819,13 @@ paths: /crewrates: get: description: '' - operationId: Crewrate_collection_get + operationId: CrewRates_collection_get responses: '200': content: application/json: schema: - $ref: '#/components/schemas/CrewrateCollectiongetResponseSchema' + $ref: '#/components/schemas/CrewRatesCollectiongetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get crewrates collection. tags: @@ -41833,7 +41833,7 @@ paths: /crewrates/{id}: get: description: '' - operationId: Crewrate_item_get + operationId: CrewRates_item_get parameters: - in: path name: id @@ -41846,7 +41846,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/CrewrateItemgetResponseSchema' + $ref: '#/components/schemas/CrewRatesItemgetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get crewrates item. tags: @@ -41910,7 +41910,7 @@ paths: /equipment/{id}/equipmentsetscontent: get: description: '' - operationId: Equipment_item_Equipmentsetscontent_get + operationId: Equipment_item_EquipmentSetsContent_get parameters: - in: path name: id @@ -41923,7 +41923,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/EquipmentsetscontentCollectiongetResponseSchema' + $ref: '#/components/schemas/EquipmentSetsContentCollectiongetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get equipmentsetscontent linked collection. tags: @@ -41931,7 +41931,7 @@ paths: /equipment/{id}/files: get: description: '' - operationId: Equipment_item_Files_get + operationId: Equipment_item_File_get parameters: - in: path name: id @@ -41973,7 +41973,7 @@ paths: /equipment/{id}/serialnumbers: get: description: '' - operationId: Equipment_item_Serialnumber_get + operationId: Equipment_item_SerialNumber_get parameters: - in: path name: id @@ -41986,7 +41986,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/SerialnumberCollectiongetResponseSchema' + $ref: '#/components/schemas/SerialNumberCollectiongetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get serialnumbers linked collection. tags: @@ -41994,7 +41994,7 @@ paths: /equipment/{id}/stockmovements: get: description: '' - operationId: Equipment_item_Stockmovement_get + operationId: Equipment_item_StockMovement_get parameters: - in: path name: id @@ -42007,14 +42007,14 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/StockmovementCollectiongetResponseSchema' + $ref: '#/components/schemas/StockMovementCollectiongetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get stockmovements linked collection. tags: - equipment post: description: '' - operationId: Equipment_item_Stockmovement_post + operationId: Equipment_item_StockMovement_post parameters: - in: path name: id @@ -42026,14 +42026,14 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/StockmovementItempostRequestSchema' + $ref: '#/components/schemas/StockMovementItempostRequestSchema' description: '' responses: '200': content: application/json: schema: - $ref: '#/components/schemas/StockmovementItempostResponseSchema' + $ref: '#/components/schemas/StockMovementItempostResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Create stockmovements linked item. tags: @@ -42041,13 +42041,13 @@ paths: /equipmentsetscontent: get: description: '' - operationId: Equipmentsetscontent_collection_get + operationId: EquipmentSetsContent_collection_get responses: '200': content: application/json: schema: - $ref: '#/components/schemas/EquipmentsetscontentCollectiongetResponseSchema' + $ref: '#/components/schemas/EquipmentSetsContentCollectiongetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get equipmentsetscontent collection. tags: @@ -42055,7 +42055,7 @@ paths: /equipmentsetscontent/{id}: get: description: '' - operationId: Equipmentsetscontent_item_get + operationId: EquipmentSetsContent_item_get parameters: - in: path name: id @@ -42068,7 +42068,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/EquipmentsetscontentItemgetResponseSchema' + $ref: '#/components/schemas/EquipmentSetsContentItemgetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get equipmentsetscontent item. tags: @@ -42146,13 +42146,13 @@ paths: /invoicelines: get: description: '' - operationId: Invoiceline_collection_get + operationId: InvoiceLines_collection_get responses: '200': content: application/json: schema: - $ref: '#/components/schemas/InvoicelineCollectiongetResponseSchema' + $ref: '#/components/schemas/InvoiceLinesCollectiongetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get invoicelines collection. tags: @@ -42160,7 +42160,7 @@ paths: /invoicelines/{id}: get: description: '' - operationId: Invoiceline_item_get + operationId: InvoiceLines_item_get parameters: - in: path name: id @@ -42173,7 +42173,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/InvoicelineItemgetResponseSchema' + $ref: '#/components/schemas/InvoiceLinesItemgetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get invoicelines item. tags: @@ -42216,7 +42216,7 @@ paths: /invoices/{id}/files: get: description: '' - operationId: Invoice_item_Files_get + operationId: Invoice_item_File_get parameters: - in: path name: id @@ -42237,7 +42237,7 @@ paths: /invoices/{id}/invoicelines: get: description: '' - operationId: Invoice_item_Invoiceline_get + operationId: Invoice_item_InvoiceLines_get parameters: - in: path name: id @@ -42250,7 +42250,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/InvoicelineCollectiongetResponseSchema' + $ref: '#/components/schemas/InvoiceLinesCollectiongetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get invoicelines linked collection. tags: @@ -42305,13 +42305,13 @@ paths: /ledgercodes: get: description: '' - operationId: Ledgercode_collection_get + operationId: LedgerCode_collection_get responses: '200': content: application/json: schema: - $ref: '#/components/schemas/LedgercodeCollectiongetResponseSchema' + $ref: '#/components/schemas/LedgerCodeCollectiongetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get ledgercodes collection. tags: @@ -42319,7 +42319,7 @@ paths: /ledgercodes/{id}: get: description: '' - operationId: Ledgercode_item_get + operationId: LedgerCode_item_get parameters: - in: path name: id @@ -42332,7 +42332,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/LedgercodeItemgetResponseSchema' + $ref: '#/components/schemas/LedgerCodeItemgetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get ledgercodes item. tags: @@ -42401,13 +42401,13 @@ paths: /projectcrew: get: description: '' - operationId: Projectcrew_collection_get + operationId: ProjectCrew_collection_get responses: '200': content: application/json: schema: - $ref: '#/components/schemas/ProjectcrewCollectiongetResponseSchema' + $ref: '#/components/schemas/ProjectCrewCollectiongetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get projectcrew collection. tags: @@ -42415,7 +42415,7 @@ paths: /projectcrew/{id}: get: description: '' - operationId: Projectcrew_item_get + operationId: ProjectCrew_item_get parameters: - in: path name: id @@ -42428,7 +42428,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ProjectcrewItemgetResponseSchema' + $ref: '#/components/schemas/ProjectCrewItemgetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get projectcrew item. tags: @@ -42436,13 +42436,13 @@ paths: /projectequipment: get: description: '' - operationId: Projectequipment_collection_get + operationId: ProjectEquipment_collection_get responses: '200': content: application/json: schema: - $ref: '#/components/schemas/ProjectequipmentCollectiongetResponseSchema' + $ref: '#/components/schemas/ProjectEquipmentCollectiongetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get projectequipment collection. tags: @@ -42450,7 +42450,7 @@ paths: /projectequipment/{id}: get: description: '' - operationId: Projectequipment_item_get + operationId: ProjectEquipment_item_get parameters: - in: path name: id @@ -42463,7 +42463,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ProjectequipmentItemgetResponseSchema' + $ref: '#/components/schemas/ProjectEquipmentItemgetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get projectequipment item. tags: @@ -42471,13 +42471,13 @@ paths: /projectequipmentgroup: get: description: '' - operationId: Projectequipmentgroup_collection_get + operationId: ProjectEquipmentGroup_collection_get responses: '200': content: application/json: schema: - $ref: '#/components/schemas/ProjectequipmentgroupCollectiongetResponseSchema' + $ref: '#/components/schemas/ProjectEquipmentGroupCollectiongetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get projectequipmentgroup collection. tags: @@ -42485,7 +42485,7 @@ paths: /projectequipmentgroup/{id}: get: description: '' - operationId: Projectequipmentgroup_item_get + operationId: ProjectEquipmentGroup_item_get parameters: - in: path name: id @@ -42498,7 +42498,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ProjectequipmentgroupItemgetResponseSchema' + $ref: '#/components/schemas/ProjectEquipmentGroupItemgetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get projectequipmentgroup item. tags: @@ -42506,7 +42506,7 @@ paths: /projectequipmentgroup/{id}/projectequipment: get: description: '' - operationId: Projectequipmentgroup_item_Projectequipment_get + operationId: ProjectEquipmentGroup_item_ProjectEquipment_get parameters: - in: path name: id @@ -42519,7 +42519,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ProjectequipmentCollectiongetResponseSchema' + $ref: '#/components/schemas/ProjectEquipmentCollectiongetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get projectequipment linked collection. tags: @@ -42527,13 +42527,13 @@ paths: /projectfunctiongroups: get: description: '' - operationId: Projectfunctiongroup_collection_get + operationId: ProjectFunctionGroup_collection_get responses: '200': content: application/json: schema: - $ref: '#/components/schemas/ProjectfunctiongroupCollectiongetResponseSchema' + $ref: '#/components/schemas/ProjectFunctionGroupCollectiongetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get projectfunctiongroups collection. tags: @@ -42541,7 +42541,7 @@ paths: /projectfunctiongroups/{id}: get: description: '' - operationId: Projectfunctiongroup_item_get + operationId: ProjectFunctionGroup_item_get parameters: - in: path name: id @@ -42554,7 +42554,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ProjectfunctiongroupItemgetResponseSchema' + $ref: '#/components/schemas/ProjectFunctionGroupItemgetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get projectfunctiongroups item. tags: @@ -42562,7 +42562,7 @@ paths: /projectfunctiongroups/{id}/projectfunctions: get: description: '' - operationId: Projectfunctiongroup_item_Projectfunction_get + operationId: ProjectFunctionGroup_item_ProjectFunction_get parameters: - in: path name: id @@ -42575,7 +42575,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ProjectfunctionCollectiongetResponseSchema' + $ref: '#/components/schemas/ProjectFunctionCollectiongetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get projectfunctions custom linked collection. tags: @@ -42583,13 +42583,13 @@ paths: /projectfunctions: get: description: '' - operationId: Projectfunction_collection_get + operationId: ProjectFunction_collection_get responses: '200': content: application/json: schema: - $ref: '#/components/schemas/ProjectfunctionCollectiongetResponseSchema' + $ref: '#/components/schemas/ProjectFunctionCollectiongetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get projectfunctions collection. tags: @@ -42597,7 +42597,7 @@ paths: /projectfunctions/{id}: get: description: '' - operationId: Projectfunction_item_get + operationId: ProjectFunction_item_get parameters: - in: path name: id @@ -42610,7 +42610,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ProjectfunctionItemgetResponseSchema' + $ref: '#/components/schemas/ProjectFunctionItemgetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get projectfunctions item. tags: @@ -42618,7 +42618,7 @@ paths: /projectfunctions/{id}/projectcrew: get: description: '' - operationId: Projectfunction_item_Projectcrew_get + operationId: ProjectFunction_item_ProjectCrew_get parameters: - in: path name: id @@ -42631,7 +42631,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ProjectcrewCollectiongetResponseSchema' + $ref: '#/components/schemas/ProjectCrewCollectiongetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get projectcrew linked collection. tags: @@ -42639,7 +42639,7 @@ paths: /projectfunctions/{id}/projectvehicles: get: description: '' - operationId: Projectfunction_item_Projectvehicle_get + operationId: ProjectFunction_item_ProjectVehicles_get parameters: - in: path name: id @@ -42652,7 +42652,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ProjectvehicleCollectiongetResponseSchema' + $ref: '#/components/schemas/ProjectVehiclesCollectiongetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get projectvehicles linked collection. tags: @@ -42983,7 +42983,7 @@ paths: /projects/{id}/files: get: description: '' - operationId: Project_item_Files_get + operationId: Project_item_File_get parameters: - in: path name: id @@ -43004,7 +43004,7 @@ paths: /projects/{id}/projectcrew: get: description: '' - operationId: Project_item_Projectcrew_get + operationId: Project_item_ProjectCrew_get parameters: - in: path name: id @@ -43017,7 +43017,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ProjectcrewCollectiongetResponseSchema' + $ref: '#/components/schemas/ProjectCrewCollectiongetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get projectcrew custom linked collection. tags: @@ -43025,7 +43025,7 @@ paths: /projects/{id}/projectequipment: get: description: '' - operationId: Project_item_Projectequipment_get + operationId: Project_item_ProjectEquipment_get parameters: - in: path name: id @@ -43038,7 +43038,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ProjectequipmentCollectiongetResponseSchema' + $ref: '#/components/schemas/ProjectEquipmentCollectiongetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get projectequipment custom linked collection. tags: @@ -43046,7 +43046,7 @@ paths: /projects/{id}/projectequipmentgroup: get: description: '' - operationId: Project_item_Projectequipmentgroup_get + operationId: Project_item_ProjectEquipmentGroup_get parameters: - in: path name: id @@ -43059,7 +43059,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ProjectequipmentgroupCollectiongetResponseSchema' + $ref: '#/components/schemas/ProjectEquipmentGroupCollectiongetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get projectequipmentgroup linked collection. tags: @@ -43067,7 +43067,7 @@ paths: /projects/{id}/projectfunctiongroups: get: description: '' - operationId: Project_item_Projectfunctiongroup_get + operationId: Project_item_ProjectFunctionGroup_get parameters: - in: path name: id @@ -43080,7 +43080,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ProjectfunctiongroupCollectiongetResponseSchema' + $ref: '#/components/schemas/ProjectFunctionGroupCollectiongetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get projectfunctiongroups linked collection. tags: @@ -43088,7 +43088,7 @@ paths: /projects/{id}/projectfunctions: get: description: '' - operationId: Project_item_Projectfunction_get + operationId: Project_item_ProjectFunction_get parameters: - in: path name: id @@ -43101,7 +43101,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ProjectfunctionCollectiongetResponseSchema' + $ref: '#/components/schemas/ProjectFunctionCollectiongetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get projectfunctions linked collection. tags: @@ -43109,7 +43109,7 @@ paths: /projects/{id}/projectvehicles: get: description: '' - operationId: Project_item_Projectvehicle_get + operationId: Project_item_ProjectVehicles_get parameters: - in: path name: id @@ -43122,7 +43122,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ProjectvehicleCollectiongetResponseSchema' + $ref: '#/components/schemas/ProjectVehiclesCollectiongetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get projectvehicles custom linked collection. tags: @@ -43172,13 +43172,13 @@ paths: /projecttypes: get: description: '' - operationId: Projecttype_collection_get + operationId: ProjectType_collection_get responses: '200': content: application/json: schema: - $ref: '#/components/schemas/ProjecttypeCollectiongetResponseSchema' + $ref: '#/components/schemas/ProjectTypeCollectiongetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get projecttypes collection. tags: @@ -43186,7 +43186,7 @@ paths: /projecttypes/{id}: get: description: '' - operationId: Projecttype_item_get + operationId: ProjectType_item_get parameters: - in: path name: id @@ -43199,7 +43199,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ProjecttypeItemgetResponseSchema' + $ref: '#/components/schemas/ProjectTypeItemgetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get projecttypes item. tags: @@ -43207,13 +43207,13 @@ paths: /projectvehicles: get: description: '' - operationId: Projectvehicle_collection_get + operationId: ProjectVehicles_collection_get responses: '200': content: application/json: schema: - $ref: '#/components/schemas/ProjectvehicleCollectiongetResponseSchema' + $ref: '#/components/schemas/ProjectVehiclesCollectiongetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get projectvehicles collection. tags: @@ -43221,7 +43221,7 @@ paths: /projectvehicles/{id}: get: description: '' - operationId: Projectvehicle_item_get + operationId: ProjectVehicles_item_get parameters: - in: path name: id @@ -43234,7 +43234,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ProjectvehicleItemgetResponseSchema' + $ref: '#/components/schemas/ProjectVehiclesItemgetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get projectvehicles item. tags: @@ -43277,7 +43277,7 @@ paths: /quotes/{id}/files: get: description: '' - operationId: Quote_item_Files_get + operationId: Quote_item_File_get parameters: - in: path name: id @@ -43298,7 +43298,7 @@ paths: /quotes/{id}/invoicelines: get: description: '' - operationId: Quote_item_Invoiceline_get + operationId: Quote_item_InvoiceLines_get parameters: - in: path name: id @@ -43311,7 +43311,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/InvoicelineCollectiongetResponseSchema' + $ref: '#/components/schemas/InvoiceLinesCollectiongetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get invoicelines linked collection. tags: @@ -43445,7 +43445,7 @@ paths: /repairs/{id}/files: get: description: '' - operationId: Repair_item_Files_get + operationId: Repair_item_File_get parameters: - in: path name: id @@ -43466,13 +43466,13 @@ paths: /serialnumbers: get: description: '' - operationId: Serialnumber_collection_get + operationId: SerialNumber_collection_get responses: '200': content: application/json: schema: - $ref: '#/components/schemas/SerialnumberCollectiongetResponseSchema' + $ref: '#/components/schemas/SerialNumberCollectiongetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get serialnumbers collection. tags: @@ -43480,7 +43480,7 @@ paths: /serialnumbers/{id}: get: description: '' - operationId: Serialnumber_item_get + operationId: SerialNumber_item_get parameters: - in: path name: id @@ -43493,7 +43493,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/SerialnumberItemgetResponseSchema' + $ref: '#/components/schemas/SerialNumberItemgetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get serialnumbers item. tags: @@ -43501,7 +43501,7 @@ paths: /serialnumbers/{id}/files: get: description: '' - operationId: Serialnumber_item_Files_get + operationId: SerialNumber_item_File_get parameters: - in: path name: id @@ -43571,7 +43571,7 @@ paths: /stocklocations/{id}: get: description: '' - operationId: Stocklocation_item_get + operationId: StockLocation_item_get parameters: - in: path name: id @@ -43584,7 +43584,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/StocklocationItemgetResponseSchema' + $ref: '#/components/schemas/StockLocationItemgetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get stocklocations item. tags: @@ -43592,13 +43592,13 @@ paths: /stockmovements: get: description: '' - operationId: Stockmovement_collection_get + operationId: StockMovement_collection_get responses: '200': content: application/json: schema: - $ref: '#/components/schemas/StockmovementCollectiongetResponseSchema' + $ref: '#/components/schemas/StockMovementCollectiongetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get stockmovements collection. tags: @@ -43606,7 +43606,7 @@ paths: /stockmovements/{id}: delete: description: '' - operationId: Stockmovement_item_delete + operationId: StockMovement_item_delete parameters: - in: path name: id @@ -43622,7 +43622,7 @@ paths: - stockmovements get: description: '' - operationId: Stockmovement_item_get + operationId: StockMovement_item_get parameters: - in: path name: id @@ -43635,14 +43635,14 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/StockmovementItemgetResponseSchema' + $ref: '#/components/schemas/StockMovementItemgetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get stockmovements item. tags: - stockmovements put: description: '' - operationId: Stockmovement_item_put + operationId: StockMovement_item_put parameters: - in: path name: id @@ -43654,14 +43654,14 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/StockmovementItemputRequestSchema' + $ref: '#/components/schemas/StockMovementItemputRequestSchema' description: '' responses: '200': content: application/json: schema: - $ref: '#/components/schemas/StockmovementItemputResponseSchema' + $ref: '#/components/schemas/StockMovementItemputResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Update stockmovements item. tags: @@ -43704,7 +43704,7 @@ paths: /subprojects/{id}/files: get: description: '' - operationId: Subproject_item_Files_get + operationId: Subproject_item_File_get parameters: - in: path name: id @@ -43725,7 +43725,7 @@ paths: /subprojects/{id}/projectcrew: get: description: '' - operationId: Subproject_item_Projectcrew_get + operationId: Subproject_item_ProjectCrew_get parameters: - in: path name: id @@ -43738,7 +43738,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ProjectcrewCollectiongetResponseSchema' + $ref: '#/components/schemas/ProjectCrewCollectiongetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get projectcrew custom linked collection. tags: @@ -43746,7 +43746,7 @@ paths: /subprojects/{id}/projectequipment: get: description: '' - operationId: Subproject_item_Projectequipment_get + operationId: Subproject_item_ProjectEquipment_get parameters: - in: path name: id @@ -43759,7 +43759,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ProjectequipmentCollectiongetResponseSchema' + $ref: '#/components/schemas/ProjectEquipmentCollectiongetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get projectequipment custom linked collection. tags: @@ -43767,7 +43767,7 @@ paths: /subprojects/{id}/projectequipmentgroup: get: description: '' - operationId: Subproject_item_Projectequipmentgroup_get + operationId: Subproject_item_ProjectEquipmentGroup_get parameters: - in: path name: id @@ -43780,7 +43780,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ProjectequipmentgroupCollectiongetResponseSchema' + $ref: '#/components/schemas/ProjectEquipmentGroupCollectiongetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get projectequipmentgroup custom linked collection. tags: @@ -43788,7 +43788,7 @@ paths: /subprojects/{id}/projectfunctiongroups: get: description: '' - operationId: Subproject_item_Projectfunctiongroup_get + operationId: Subproject_item_ProjectFunctionGroup_get parameters: - in: path name: id @@ -43801,7 +43801,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ProjectfunctiongroupCollectiongetResponseSchema' + $ref: '#/components/schemas/ProjectFunctionGroupCollectiongetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get projectfunctiongroups custom linked collection. tags: @@ -43809,7 +43809,7 @@ paths: /subprojects/{id}/projectvehicles: get: description: '' - operationId: Subproject_item_Projectvehicle_get + operationId: Subproject_item_ProjectVehicles_get parameters: - in: path name: id @@ -43822,7 +43822,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ProjectvehicleCollectiongetResponseSchema' + $ref: '#/components/schemas/ProjectVehiclesCollectiongetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get projectvehicles custom linked collection. tags: @@ -43830,13 +43830,13 @@ paths: /subrentalequipment: get: description: '' - operationId: Subrentalequipment_collection_get + operationId: SubrentalEquipment_collection_get responses: '200': content: application/json: schema: - $ref: '#/components/schemas/SubrentalequipmentCollectiongetResponseSchema' + $ref: '#/components/schemas/SubrentalEquipmentCollectiongetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get subrentalequipment collection. tags: @@ -43844,7 +43844,7 @@ paths: /subrentalequipment/{id}: get: description: '' - operationId: Subrentalequipment_item_get + operationId: SubrentalEquipment_item_get parameters: - in: path name: id @@ -43857,7 +43857,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/SubrentalequipmentItemgetResponseSchema' + $ref: '#/components/schemas/SubrentalEquipmentItemgetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get subrentalequipment item. tags: @@ -43865,13 +43865,13 @@ paths: /subrentalequipmentgroup: get: description: '' - operationId: Subrentalequipmentgroup_collection_get + operationId: SubrentalEquipmentGroup_collection_get responses: '200': content: application/json: schema: - $ref: '#/components/schemas/SubrentalequipmentgroupCollectiongetResponseSchema' + $ref: '#/components/schemas/SubrentalEquipmentGroupCollectiongetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get subrentalequipmentgroup collection. tags: @@ -43879,7 +43879,7 @@ paths: /subrentalequipmentgroup/{id}: get: description: '' - operationId: Subrentalequipmentgroup_item_get + operationId: SubrentalEquipmentGroup_item_get parameters: - in: path name: id @@ -43892,7 +43892,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/SubrentalequipmentgroupItemgetResponseSchema' + $ref: '#/components/schemas/SubrentalEquipmentGroupItemgetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get subrentalequipmentgroup item. tags: @@ -43900,7 +43900,7 @@ paths: /subrentalequipmentgroup/{id}/subrentalequipment: get: description: '' - operationId: Subrentalequipmentgroup_item_Subrentalequipment_get + operationId: SubrentalEquipmentGroup_item_SubrentalEquipment_get parameters: - in: path name: id @@ -43913,7 +43913,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/SubrentalequipmentCollectiongetResponseSchema' + $ref: '#/components/schemas/SubrentalEquipmentCollectiongetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get subrentalequipment custom linked collection. tags: @@ -43956,7 +43956,7 @@ paths: /subrentals/{id}/files: get: description: '' - operationId: Subrental_item_Files_get + operationId: Subrental_item_File_get parameters: - in: path name: id @@ -43977,7 +43977,7 @@ paths: /subrentals/{id}/subrentalequipment: get: description: '' - operationId: Subrental_item_Subrentalequipment_get + operationId: Subrental_item_SubrentalEquipment_get parameters: - in: path name: id @@ -43990,7 +43990,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/SubrentalequipmentCollectiongetResponseSchema' + $ref: '#/components/schemas/SubrentalEquipmentCollectiongetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get subrentalequipment custom linked collection. tags: @@ -43998,7 +43998,7 @@ paths: /subrentals/{id}/subrentalequipmentgroup: get: description: '' - operationId: Subrental_item_Subrentalequipmentgroup_get + operationId: Subrental_item_SubrentalEquipmentGroup_get parameters: - in: path name: id @@ -44011,7 +44011,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/SubrentalequipmentgroupCollectiongetResponseSchema' + $ref: '#/components/schemas/SubrentalEquipmentGroupCollectiongetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get subrentalequipmentgroup custom linked collection. tags: @@ -44054,13 +44054,13 @@ paths: /timeregistration: get: description: '' - operationId: Timeregistration_collection_get + operationId: TimeRegistration_collection_get responses: '200': content: application/json: schema: - $ref: '#/components/schemas/TimeregistrationCollectiongetResponseSchema' + $ref: '#/components/schemas/TimeRegistrationCollectiongetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get timeregistration collection. tags: @@ -44068,7 +44068,7 @@ paths: /timeregistration/{id}: get: description: '' - operationId: Timeregistration_item_get + operationId: TimeRegistration_item_get parameters: - in: path name: id @@ -44081,7 +44081,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/TimeregistrationItemgetResponseSchema' + $ref: '#/components/schemas/TimeRegistrationItemgetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get timeregistration item. tags: @@ -44089,7 +44089,7 @@ paths: /timeregistration/{id}/files: get: description: '' - operationId: Timeregistration_item_Files_get + operationId: TimeRegistration_item_File_get parameters: - in: path name: id @@ -44110,7 +44110,7 @@ paths: /timeregistration/{id}/timeregistrationactivities: get: description: '' - operationId: Timeregistration_item_Timeregistrationactivity_get + operationId: TimeRegistration_item_TimeRegistrationActivity_get parameters: - in: path name: id @@ -44123,7 +44123,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/TimeregistrationactivityCollectiongetResponseSchema' + $ref: '#/components/schemas/TimeRegistrationActivityCollectiongetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get timeregistrationactivities linked collection. tags: @@ -44131,13 +44131,13 @@ paths: /timeregistrationactivities: get: description: '' - operationId: Timeregistrationactivity_collection_get + operationId: TimeRegistrationActivity_collection_get responses: '200': content: application/json: schema: - $ref: '#/components/schemas/TimeregistrationactivityCollectiongetResponseSchema' + $ref: '#/components/schemas/TimeRegistrationActivityCollectiongetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get timeregistrationactivities collection. tags: @@ -44145,7 +44145,7 @@ paths: /timeregistrationactivities/{id}: get: description: '' - operationId: Timeregistrationactivity_item_get + operationId: TimeRegistrationActivity_item_get parameters: - in: path name: id @@ -44158,7 +44158,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/TimeregistrationactivityItemgetResponseSchema' + $ref: '#/components/schemas/TimeRegistrationActivityItemgetResponseSchema' description: Successful request (note that the 'data' field can be expanded) summary: Get timeregistrationactivities item. tags: @@ -44201,7 +44201,7 @@ paths: /vehicles/{id}/files: get: description: '' - operationId: Vehicle_item_Files_get + operationId: Vehicle_item_File_get parameters: - in: path name: id @@ -44220,7 +44220,7 @@ paths: tags: - vehicles security: -- BearerAuth: [] +- bearerAuth: [] servers: - url: https://api.rentman.net/ description: url diff --git a/prebuild.py b/prebuild.py new file mode 100644 index 0000000..c68654d --- /dev/null +++ b/prebuild.py @@ -0,0 +1,108 @@ +import yaml + +def load_api_spec(file_path): + """Lädt die OpenAPI-Spezifikation aus einer YAML-Datei.""" + with open(file_path, 'r') as file: + return yaml.safe_load(file) + +def sort_api_spec(api_spec, depth=0, max_depth=None): + """Sortiert die OpenAPI-Spezifikation alphabetisch bis zur n-ten Ebene.""" + if max_depth is not None and depth >= max_depth: + return api_spec + + sorted_spec = {} + for key in sorted(api_spec.keys(), key=lambda x: x.lower()): + if isinstance(api_spec[key], dict): + sorted_spec[key] = sort_api_spec(api_spec[key], depth=depth+1, max_depth=max_depth) + else: + sorted_spec[key] = api_spec[key] + return sorted_spec + +def replace_in_api_spec(api_spec, old_word, new_word, depth=0, max_depth=None, key=None): + """Ersetzt Wortparen in OpenAPI-Spezifikation bis zur n-ten Ebene.""" + if max_depth is not None and depth >= max_depth: + return api_spec + + replaced_spec = {} + for thisKey in api_spec.keys(): + if isinstance(api_spec[thisKey], dict): + replaced_spec[thisKey] = replace_in_api_spec(api_spec[thisKey], old_word=old_word, new_word=new_word, depth=depth+1, max_depth=max_depth, key=key) + else: + if key is None or key == thisKey: + replaced_spec[thisKey] = api_spec[thisKey].replace(old_word, new_word) + else: + replaced_spec[thisKey] = api_spec[thisKey] + return replaced_spec + +def save_api_spec(api_spec, file_path): + """Speichert die geänderte OpenAPI-Spezifikation in einer YAML-Datei.""" + with open(file_path, 'w') as file: + yaml.safe_dump(api_spec, file, sort_keys=False) + +# Spezifikation laden +api_spec = load_api_spec("oas.yml") +api_spec_man = load_api_spec("oas_manuell.yml") +# Titel ändern +api_spec['info']['title'] = "Rentman API" +# Security hinzufügen +api_spec['components'].update( + { + 'securitySchemes': { + 'bearerAuth': { + 'type': 'http', + 'scheme': 'bearer', + 'bearerFormat': 'JWT' + } + } + } +) +api_spec['security'] = [{'bearerAuth': []}] +# Replace words in identifiers +word_pairs = [('Accessoire', 'Accessory'), + ('Afspraakmedewerker', 'AppointmentCrew'), + ('Afspraak', 'Appointment'), + ('Person', 'Contactperson'), + ('Medewerker', 'Crew'), + ('Beschikbaarheid', 'CrewAvailability'), + ('Medewerkertarief', 'CrewRates'), + ('Materiaal', 'Equipment'), + ('Setinhoud','EquipmentSetsContent'), + ('Files','File'), + ('Btwbedrag', 'InvoiceLines'), + ('Factuur', 'Invoice'), + ('Grootboek', 'LedgerCode'), + ('Planningpersoneel', 'ProjectCrew'), + ('Planningmateriaal', 'ProjectEquipment'), + ('MateriaalCat', 'ProjectEquipmentGroup'), + ('Functiegroep', 'ProjectFunctionGroup'), + ('Functie', 'ProjectFunction'), + ('Type', 'ProjectType'), + ('Planningtransport', 'ProjectVehicles'), + ('Offerte', 'Quote'), + ('Reparatie', 'Repair'), + ('Exemplaar', 'SerialNumber'), + ('AssetLocation', 'StockLocation'), + ('Voorraadmutatie', 'StockMovement'), + ('Inhuurmateriaal', 'SubrentalEquipment'), + ('Inhuurgroep', 'SubrentalEquipmentGroup'), + ('Inhuur', 'Subrental'), + ('Uren', 'TimeRegistration'), + ('Functieuur', 'TimeRegistrationActivity'), + ('Voertuig', 'Vehicle'), + ('Afspraakmedewerker', 'AppointmentCrew') + ] +word_pairs.sort(key=lambda pair: len(pair[0]), reverse=True) +for old_word, new_word in word_pairs: + component_schemas_to_modify = list(api_spec['components']['schemas'].keys()) + for key in component_schemas_to_modify: + value = api_spec['components']['schemas'][key] + new_key = key.replace(old_word, new_word) + del api_spec['components']['schemas'][key] + api_spec['components']['schemas'][new_key] = value + api_spec['paths']=replace_in_api_spec(api_spec=api_spec['paths'],old_word=old_word,new_word=new_word,key='operationId') + api_spec['paths']=replace_in_api_spec(api_spec=api_spec['paths'],old_word=old_word,new_word=new_word,key='$ref') + +# Spezifikation sortiren und speichern +api_spec = sort_api_spec(api_spec) +api_spec_man = sort_api_spec(api_spec_man) +save_api_spec(api_spec, "oas_changed.yml") diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..8420dfb --- /dev/null +++ b/requirements.txt @@ -0,0 +1,3 @@ +# requirements.txt + +PyYAML==6.0.1