{ "openapi": "3.0.0", "info": { "version": "8.8.11", "title": "AFAS Overige API", "description": "This API describes the endpoints related to Overige. Use this API with the functional description of the API." }, "servers": [ { "url": "https://{id}.rest.afas.online/ProfitRestServices", "description": "Production environment", "variables": { "id": { "description": "5 digit environment number", "default": "12345" } } }, { "url": "https://{id}.resttest.afas.online/ProfitRestServices", "description": "Test environment", "variables": { "id": { "description": "5 digit environment number", "default": "12345" } } }, { "url": "https://{id}.restaccept.afas.online/ProfitRestServices", "description": "Accept environment", "variables": { "id": { "description": "5 digit environment number", "default": "12345" } } }, { "url": "https://{id}.restcursus.afas.online/ProfitRestServices", "description": "Cursus environment", "variables": { "id": { "description": "5 digit environment number", "default": "12345" } } } ], "paths": { "/MetaInfo": { "get": { "summary": "Retrieve the meta info of the Profit environment and the available connectors", "tags": [ "API Info" ], "responses": { "400": { "$ref": "#/components/responses/400" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "404": { "$ref": "#/components/responses/404" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" }, "200": { "description": "OK", "content": { "application/json": { "schema": { "type": "object", "properties": { "updateConnectors": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "description": { "type": "string" } } } }, "getConnectors": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "description": { "type": "string" } } } }, "customConnectors": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "description": { "type": "string" } } } }, "info": { "type": "object", "properties": { "envid": { "type": "string" }, "appName": { "type": "string" }, "group": { "type": "string" }, "tokenExpiry": { "type": "string" } } } } }, "examples": { "Example Result": { "value": { "updateConnectors": [ { "id": "HrCreateApplicant", "description": "Aanmaken sollicitatie" }, { "id": "FbSubscription", "description": "Abonnement" }, { "id": "KnAddress", "description": "Adres" } ], "getConnectors": [ { "id": "Profit_Fin_ChangedEntrydate", "description": "Profit_Fin_ChangedEntrydate" }, { "id": "Profit_Functions", "description": "Profit_Functions" } ], "customConnectors": [ { "id": "AppConnectorReport", "description": "AppConnectorReport" }, { "id": "AppConnectorSubject", "description": "AppConnectorSubject" } ], "info": { "envid": "A123456AC", "appName": "OpenAPI Spec Example", "group": "AuthorizationGroup 101 (12345.USER)", "tokenExpiry": "0" } } } } } } } }, "operationId": "get_MetaInfo" } }, "/Metainfo/{Type}/{Endpoint}": { "get": { "summary": "Retrieve the metainfo of a specific connector based on the endpoint id. This includes the fields and their properties.", "tags": [ "API Info" ], "responses": { "400": { "$ref": "#/components/responses/400" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "404": { "$ref": "#/components/responses/404" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" }, "200": { "description": "OK", "content": { "application/json": { "schema": { "type": "object", "properties": { "name": { "type": "string" }, "description": { "type": "string" }, "fields": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "fieldId": { "type": "string" }, "dataType": { "type": "string" }, "label": { "type": "string" }, "length": { "type": "integer" }, "controlType": { "type": "integer" }, "decimals": { "type": "integer" }, "decimalsFieldId": { "type": "string" } } } } } }, "examples": { "Example Result": { "value": { "name": "Profit_Administrations", "description": "Administraties (Profit)", "fields": [ { "id": "AdminId", "fieldId": "U002", "dataType": "int", "label": "Administratie", "length": 3, "controlType": 5, "decimals": 0, "decimalsFieldId": "" }, { "id": "AdminNm", "fieldId": "U001", "dataType": "string", "label": "Naam administratie", "length": 80, "controlType": 1, "decimals": 0, "decimalsFieldId": "" }, { "id": "AdminCd", "fieldId": "UnCo", "dataType": "string", "label": "Administratie", "length": 10, "controlType": 1, "decimals": 0, "decimalsFieldId": "" } ] } } } } } } }, "operationId": "get_MetaInfoPerConnector", "parameters": [ { "schema": { "type": "string", "enum": [ "get", "update" ], "example": "update" }, "in": "path", "name": "Type", "description": "Add the type of connector you want to get the meta info from", "required": true }, { "schema": { "type": "string", "example": "KnEmployee" }, "in": "path", "name": "Endpoint", "description": "Add the endpoint id of the connector you want to get the meta info from", "required": true }, { "$ref": "#/components/parameters/Accept-Language" } ] } }, "/connectors/{Endpoint}": { "get": { "summary": "Retrieve the metainfo of a custom getconnector based on the endpoint id. This includes the fields and their properties. These id's can be found in the metainfo request result.", "tags": [ "GET" ], "responses": { "400": { "$ref": "#/components/responses/400" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "404": { "$ref": "#/components/responses/404" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" }, "200": { "description": "OK", "content": { "application/json": { "schema": { "type": "object", "properties": { "skip": { "type": "integer" }, "take": { "type": "integer" }, "rows": { "type": "array", "items": { "type": "object", "properties": { "EmployeeId": { "type": "string" }, "EmploymentEndDate": { "type": "string" }, "EmailForDigitalDocuments": { "type": "string", "nullable": true } } } } } }, "examples": { "Example response": { "value": { "skip": 0, "take": 100, "rows": [ { "EmployeeId": "000001005", "EmploymentEndDate": "2025-11-22T00:00:00Z", "EmailForDigitalDocuments": null }, { "EmployeeId": "000001006", "EmploymentEndDate": "2025-11-22T00:00:00Z", "EmailForDigitalDocuments": null } ] } } } } } } }, "operationId": "get_MetaInfoPerCustomConnector", "parameters": [ { "schema": { "type": "string", "example": "your_custom_endpoint_id" }, "in": "path", "name": "Endpoint", "description": "Add the id of connector you want to get the meta info from", "required": true }, { "name": "skip", "in": "query", "required": false, "description": "Pagination: amount of results skipped. Starts at 0", "schema": { "type": "number", "example": 0 } }, { "name": "take", "in": "query", "required": false, "description": "Pagination: amount of results returned", "schema": { "type": "number", "example": 100 } }, { "name": "orderbyfieldids", "in": "query", "required": false, "description": "Must be used to prevent unexpectedly ordered results", "schema": { "type": "string" } }, { "name": "filterfieldids", "in": "query", "required": false, "description": "The fieldIds of the values to filter on", "schema": { "type": "string" } }, { "name": "filtervalues", "in": "query", "required": false, "description": "The values to filter on", "schema": { "type": "string" } }, { "name": "operatortypes", "in": "query", "required": false, "description": "Operator for comparing filter values. Supported values include:\n\n* `1` - = (is equal to)\n* `2` - >= (is greater or equal to)\n* `3` - <= (is less or equal to)\n* `4` - > (is greater than)\n* `5` - < (is less than)\n* `6` - * (contains text)\n* `7` - != (is not equal to)\n* `8` - [] (is empty)\n* `9` - ![] (is not empty)\n* `10` - @ (starts with)\n* `11` - !* (does not contain text)\n* `12` - !@ (does not start with)\n* `13` - & (ends with)\n* `14` - !& (does not end with)\n* `15` - Sf (quickfilter)\n", "schema": { "type": "number", "enum": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 ] } } ] } }, "/ProfitVersion": { "get": { "summary": "Get the current Profit version", "tags": [ "API Info" ], "responses": { "400": { "$ref": "#/components/responses/400" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "404": { "$ref": "#/components/responses/404" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" }, "200": { "description": "OK", "content": { "application/json": { "schema": { "type": "object", "properties": { "version": { "type": "string" } } }, "examples": { "Example Result": { "value": { "version": "7.7.10" } } } } } } }, "operationId": "get_ProfitVersion" } }, "/connectors/FbDeliveryNoteFast": { "post": { "summary": "Generate counter/direct invoices", "description": "\n\rAlleen beschikbaar onder conditie: Genereren balie-/directfacturen (speciale activering)\n\r ", "operationId": "POST_FbDeliveryNoteFast", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/FbDeliveryNoteFast_POST" } } } }, "responses": { "201": { "description": "Created" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Generate counter/direct invoices" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" }, { "$ref": "#/components/parameters/Content-Type" } ] } }, "/connectors/FbDeliveryNoteFast/FbDeliveryNoteFast/@Ye/{Ye}": { "parameters": [ { "schema": { "type": "string" }, "name": "Ye", "in": "path", "required": true, "description": "Year" } ], "delete": { "summary": "Generate counter/direct invoices", "operationId": "DELETE_FbDeliveryNoteFast", "description": " \n\r Let op: Bij dit endpoint zijn de parameters om een item te verwijderen nog niet gedocumenteerd. De path parameters kunnen hierdoor afwijken\n\r ", "responses": { "400": { "$ref": "#/components/responses/400" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "404": { "$ref": "#/components/responses/404" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" }, "200": { "$ref": "#/components/responses/200" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Generate counter/direct invoices" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" } ] } }, "/connectors/FbGoodsReceivedPocket": { "post": { "summary": "Receipt (Pocket)", "description": "\n\rAlleen beschikbaar onder conditie: Bouw (activering)\n\r ", "operationId": "POST_FbGoodsReceivedPocket", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/FbGoodsReceivedPocket_POST" } } } }, "responses": { "201": { "description": "Created" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Receipt (Pocket)" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" }, { "$ref": "#/components/parameters/Content-Type" } ] }, "put": { "summary": "Receipt (Pocket)", "description": "\n\rAlleen beschikbaar onder conditie: Bouw (activering)\n\r ", "operationId": "PUT_FbGoodsReceivedPocket", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/FbGoodsReceivedPocket_PUT" } } } }, "responses": { "201": { "description": "Created" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Receipt (Pocket)" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" }, { "$ref": "#/components/parameters/Content-Type" } ] } }, "/connectors/FbGoodsReceivedPocket/FbGoodsReceivedLines": { "post": { "summary": "Receipt (Pocket)", "description": "Update main record in FbGoodsReceivedPocket and insert subrecord into FbGoodsReceivedLines. \n\rAlleen beschikbaar onder conditie: Bouw (activering)\n\r ", "operationId": "POSTSubRecordFbGoodsReceivedPocketFbGoodsReceivedLines", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/FbGoodsReceivedPocket_POST" } } } }, "responses": { "201": { "description": "Created" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Receipt (Pocket)" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" }, { "$ref": "#/components/parameters/Content-Type" } ] } }, "/connectors/FbGoodsReceivedPocket/FbGoodsReceivedSubject": { "post": { "summary": "Receipt (Pocket)", "description": "Update main record in FbGoodsReceivedPocket and insert subrecord into FbGoodsReceivedSubject. \n\rAlleen beschikbaar onder conditie: Bouw (activering)\n\r ", "operationId": "POSTSubRecordFbGoodsReceivedPocketFbGoodsReceivedSubject", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/FbGoodsReceivedPocket_POST" } } } }, "responses": { "201": { "description": "Created" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Receipt (Pocket)" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" }, { "$ref": "#/components/parameters/Content-Type" } ] } }, "/connectors/FbGoodsReceivedPocket/FbGoodsReceived/@OrNu/{OrNu}": { "parameters": [ { "schema": { "type": "string" }, "name": "OrNu", "in": "path", "required": true, "description": "Number" } ], "delete": { "summary": "Receipt (Pocket)", "operationId": "DELETE_FbGoodsReceivedPocket", "description": "\n\r ", "responses": { "400": { "$ref": "#/components/responses/400" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "404": { "$ref": "#/components/responses/404" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" }, "200": { "$ref": "#/components/responses/200" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Receipt (Pocket)" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" } ] } }, "/connectors/HrCareerBreak": { "post": { "summary": "Employee/suspension", "description": "\n\rAlleen beschikbaar onder conditie: België (functionaliteit) (activering)\n\r https://help.afas.nl/help/NL/SE/124766.htm", "operationId": "POST_HrCareerBreak", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/HrCareerBreak_POST" }, "examples": { "create Careerbreak": { "value": { "HrCareerBreak": { "Element": { "Fields": { "EmId": "floora", "DaBe": "2021-01-01", "DaEn": "2021-06-02", "CoIn": "1", "CoIc": "001", "CoTc": "1", "CoRt": "01" } } } } }, "voor update": { "value": { "HrCareerBreak": { "Element": { "Fields": { "EmId": "1001", "DvSn": "1", "DaBe": "2021-01-01", "DaEn": "2021-06-02", "CoIn": "1", "CoIc": "001", "CoIt": "", "CoTc": "1", "CoRt": "01" } } } } } } } } }, "responses": { "201": { "description": "Created", "content": { "application/json": { "schema": { "type": "object" }, "examples": { "Response example": { "value": { "results": { "HrCareerBreak": { "id": "PrimaryKeyValue" } } } } } } }, "headers": { "Cache-Control": { "description": "no-store, no-cache", "schema": { "type": "string" } }, "Transfer-Encoding": { "description": "chunked", "schema": { "type": "string" } }, "Content-Type": { "description": "application/json; charset=utf-8", "schema": { "type": "string" } }, "Content-Encoding": { "description": "gzip", "schema": { "type": "string" } }, "Strict-Transport-Security": { "description": "max-age=31536000", "schema": { "type": "string" } }, "X-AFAS-Proxy-Version": { "description": "4.3.0.0", "schema": { "type": "string" } }, "X-Content-Type-Options": { "description": "nosniff", "schema": { "type": "string" } }, "X-Frame-Options": { "description": "deny", "schema": { "type": "string" } }, "X-AFAS-Proxy-Stats": { "description": "init(0ms), before response(10ms), after response(609ms), after compressing(610ms), complete(610ms)", "schema": { "type": "string" } }, "Access-Control-Allow-Origin": { "description": "*", "schema": { "type": "string" } }, "Access-Control-Allow-Headers": { "description": "Content-Type, Accept, Authorization, OnlineSessionId, Accept-Language", "schema": { "type": "string" } }, "Access-Control-Allow-Methods": { "description": "GET, POST, PUT, DELETE, OPTIONS", "schema": { "type": "string" } }, "Access-Control-Max-Age": { "description": "1728000", "schema": { "type": "string" } }, "Date": { "description": "Wed, 07 Feb 2024 10:39:26 GMT", "schema": { "type": "string" } } } }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Employee/suspension" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" }, { "$ref": "#/components/parameters/Content-Type" } ] }, "put": { "summary": "Employee/suspension", "description": "\n\rAlleen beschikbaar onder conditie: België (functionaliteit) (activering)\n\r https://help.afas.nl/help/NL/SE/124766.htm", "operationId": "PUT_HrCareerBreak", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/HrCareerBreak_PUT" }, "examples": { "update": { "value": { "HrCareerBreak": { "Element": { "Fields": { "Id": "2", "DvSn": "3", "DaEn": "2021-06-02", "CoRt": "02" } } } } } } } } }, "responses": { "201": { "description": "Created", "content": { "application/json": { "schema": { "type": "object" }, "examples": { "Response example": { "value": { "results": { "HrCareerBreak": { "id": "PrimaryKeyValue" } } } } } } }, "headers": { "Cache-Control": { "description": "no-store, no-cache", "schema": { "type": "string" } }, "Transfer-Encoding": { "description": "chunked", "schema": { "type": "string" } }, "Content-Type": { "description": "application/json; charset=utf-8", "schema": { "type": "string" } }, "Content-Encoding": { "description": "gzip", "schema": { "type": "string" } }, "Strict-Transport-Security": { "description": "max-age=31536000", "schema": { "type": "string" } }, "X-AFAS-Proxy-Version": { "description": "4.3.0.0", "schema": { "type": "string" } }, "X-Content-Type-Options": { "description": "nosniff", "schema": { "type": "string" } }, "X-Frame-Options": { "description": "deny", "schema": { "type": "string" } }, "X-AFAS-Proxy-Stats": { "description": "init(0ms), before response(10ms), after response(609ms), after compressing(610ms), complete(610ms)", "schema": { "type": "string" } }, "Access-Control-Allow-Origin": { "description": "*", "schema": { "type": "string" } }, "Access-Control-Allow-Headers": { "description": "Content-Type, Accept, Authorization, OnlineSessionId, Accept-Language", "schema": { "type": "string" } }, "Access-Control-Allow-Methods": { "description": "GET, POST, PUT, DELETE, OPTIONS", "schema": { "type": "string" } }, "Access-Control-Max-Age": { "description": "1728000", "schema": { "type": "string" } }, "Date": { "description": "Wed, 07 Feb 2024 10:39:26 GMT", "schema": { "type": "string" } } } }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Employee/suspension" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" }, { "$ref": "#/components/parameters/Content-Type" } ] } }, "/connectors/HrCareerBreak/HrCareerBreak/@Id/{Id}": { "parameters": [ { "schema": { "type": "string" }, "name": "Id", "in": "path", "required": true, "description": "Line number" } ], "delete": { "summary": "Employee/suspension", "operationId": "DELETE_HrCareerBreak", "description": "\n\r https://help.afas.nl/help/NL/SE/124766.htm", "responses": { "400": { "$ref": "#/components/responses/400" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "404": { "$ref": "#/components/responses/404" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" }, "200": { "$ref": "#/components/responses/200" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Employee/suspension" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" } ] } }, "/connectors/HrDeclarationInSite": { "post": { "summary": "InSite declaration", "description": "\n\r https://help.afas.nl/help/NL/SE/App_Conect_UpdDsc_HrDecl_InSite.htm", "operationId": "POST_HrDeclarationInSite", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/HrDeclarationInSite_POST" }, "examples": { "kilometers": { "value": { "HrDeclarationInSite": { "Element": { "Fields": { "EmId": "ALLARDJ", "DaTi": "2024-03-03", "BiId": "ZK", "KmFr": "50", "KmTo": "100", "Ds": "Kilometer declaratie" } } } } }, "kilometers bepalen": { "value": { "HrDeclarationInSite": { "Element": { "Fields": { "EmId": "MuhammedA", "DaTi": "2015-03-03", "BiId": "K02", "Year": "2015", "PeId": "123456", "KmFr": "Inspiratielaan 1, 3833 AV Leusden", "KmTo": "Stadionweg 1, 1812 AZ Alkmaar", "KmCa": "86", "KmRt": "true", "Qu": "172" } } } } }, "maximaal": { "value": { "HrDeclarationInSite": { "Element": { "Fields": { "EmId": "SimoneA", "EnSe": "1", "DaTi": "2015-03-24", "Year": "2015", "PeId": "123456", "BiId": "K01", "CrId": "profit", "CcId": "profit", "PrId": "300000", "CoAm": "15", "KmFr": "50", "KmTo": "100", "KmRt": "33", "Qu": "2", "Ds": "HrDeclarationInSite_insert_maximaal", "Filename": "declaratie.jpg", "FileStream": "iVBORw0KGgoAAAANSUhEUgAAAJYAAACWCAIAAACzY+a1AAAEB0lEQVR4nO3YQU/yShiG4SmlBSwYjEIQCyaSqmHl//8NLNgZSaORAmJQxCC0dihzFs3hEPQkX8KXlid5rl1r9YW5w2RQ63Q6gpBl0n4BtC8mhMeE8JgQHhPCY0J4TAiPCeExITwmhMeE8JgQHhPCY0J4TAiPCeExITwmhMeE8JgQHhPCY0J4TAiPCeExITwmhMeE8JgQHhPCY0J4TAiPCeExITwmhMeE8JgQHhPCY0J4TAiPCeExITwmhMeE8JgQHhPCY0J4TAiPCeExITwmhMeE8JgQHhPCY0J4TAiPCeExITwmhMeE8JgQHhPCY0J4TAiPCeExITwmhMeE8JgQHhPCY0J42bRfwH88zxNCNBqN+HK5XPZ6ve0HHMexLEsIoZQaj8fT6TSKouPjY9u2s9m93kiKo/d3KAnH4/H7+/vp6enmThAEpmm22+1fH57NZq1WS9f1fr//9PTkOA7i6L8i/Y00DEPXdSeTiWma2/eDIMjn8z+fV0pNJpNarZbP5w3DaDabi8VisVhgjf6L0k+4XC5N07y9vc3lctv3/28dfd9fr9fxtiaEMAzDNM2ddZzNZt1udz6fx5ePj48PDw9KqQRGJy/9jbRcLpfL5Z/34/W6v7+XUhYKhXq9Hq+dlFIIYRjG5knDMMIw3PmbJycng8Hg5uZmNpvN5/Pr62tN0xIYnbz0P4W/iqJISmmapuM47Xb76OjIdd0gCIQQ6/VaCLHdQ9O0n58w27bX67XnecPhsFarFQqFxEYn7EAT6rp+d3fXbDaz2Ww2m724uMjlcm9vb+LfFdxeOKVUJrP7RnRdt2374+Mjl8tVq9UkRyfsQBP+ZJpmvI/FR4/VarX5kZRye3Pb8H1fCBGGYRRFCY9O0oEm/Pr66na739/f8aVSanPEyOfzmUxmc4iQUoZhuDlibPi+//r6Wq/XdV2Pv/YlNjphB5rQsqxCoeB5XhiGq9VqMBhEUVSpVIQQmUzm7OxsNBr5vi+l7Pf7lmXtrKNS6vn5uVgsVqvVRqPx+fk5nU6TGZ289E+kv9I07erqajQa9Xq9+BzvOM7m/yDn5+dKKdd1hRClUuny8nLn119eXqSUrVZLCFEsFiuVynA4LJVKf7Lp7Tk6eVqn00n7NdBeDnQjpT/HhPCYEB4TwmNCeEwIjwnhMSE8JoTHhPCYEB4TwmNCeEwIjwnhMSE8JoTHhPCYEB4TwmNCeEwIjwnhMSE8JoTHhPCYEB4TwmNCeEwIjwnhMSE8JoTHhPCYEB4TwmNCeEwIjwnhMSE8JoTHhPCYEB4TwmNCeEwIjwnhMSE8JoTHhPCYEB4TwmNCeEwIjwnhMSE8JoTHhPCYEB4TwmNCeEwIjwnhMSE8JoTHhPCYEN4/cnznZiQb6hsAAAAASUVORK5CYII=" } } } } }, "minimaal": { "value": { "HrDeclarationInSite": { "Element": { "Fields": { "EmId": "FloorA", "DaTi": "2015-03-03", "BiId": "K01", "CoAm": "150", "Ds": "HrDeclarationInSite_insert_minimaal" } } } } } } } } }, "responses": { "201": { "description": "Created", "content": { "application/json": { "schema": { "type": "object" }, "examples": { "Response example": { "value": { "results": { "HrDeclarationInSite": { "EmId": "PrimaryKeyValue", "MutatieGuid": "PrimaryKeyValue", "ViMt": "PrimaryKeyValue", "MuId": "PrimaryKeyValue" } } } } } } }, "headers": { "Cache-Control": { "description": "no-store, no-cache", "schema": { "type": "string" } }, "Transfer-Encoding": { "description": "chunked", "schema": { "type": "string" } }, "Content-Type": { "description": "application/json; charset=utf-8", "schema": { "type": "string" } }, "Content-Encoding": { "description": "gzip", "schema": { "type": "string" } }, "Strict-Transport-Security": { "description": "max-age=31536000", "schema": { "type": "string" } }, "X-AFAS-Proxy-Version": { "description": "4.3.0.0", "schema": { "type": "string" } }, "X-Content-Type-Options": { "description": "nosniff", "schema": { "type": "string" } }, "X-Frame-Options": { "description": "deny", "schema": { "type": "string" } }, "X-AFAS-Proxy-Stats": { "description": "init(0ms), before response(10ms), after response(609ms), after compressing(610ms), complete(610ms)", "schema": { "type": "string" } }, "Access-Control-Allow-Origin": { "description": "*", "schema": { "type": "string" } }, "Access-Control-Allow-Headers": { "description": "Content-Type, Accept, Authorization, OnlineSessionId, Accept-Language", "schema": { "type": "string" } }, "Access-Control-Allow-Methods": { "description": "GET, POST, PUT, DELETE, OPTIONS", "schema": { "type": "string" } }, "Access-Control-Max-Age": { "description": "1728000", "schema": { "type": "string" } }, "Date": { "description": "Wed, 07 Feb 2024 10:39:26 GMT", "schema": { "type": "string" } } } }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" } }, "security": [ { "AfasToken": [] } ], "tags": [ "InSite declaration" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" }, { "$ref": "#/components/parameters/Content-Type" } ] } }, "/connectors/HrEmpAdrMutInsite": { "put": { "summary": "Employee address change InSite", "description": "\n\r ", "operationId": "PUT_HrEmpAdrMutInsite", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/HrEmpAdrMutInsite_PUT" } } } }, "responses": { "201": { "description": "Created" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Employee address change InSite" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" }, { "$ref": "#/components/parameters/Content-Type" } ] } }, "/connectors/HrEmpBinMutInSite": { "post": { "summary": "Employee payroll account change InSite", "description": "\n\r ", "operationId": "POST_HrEmpBinMutInSite", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/HrEmpBinMutInSite_POST" } } } }, "responses": { "201": { "description": "Created" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Employee payroll account change InSite" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" }, { "$ref": "#/components/parameters/Content-Type" } ] } }, "/connectors/HrEmpCourse": { "post": { "summary": "Course", "description": "\n\r https://help.afas.nl/help/NL/SE/App_Conect_UpdDsc_HrEmpCourse.htm", "operationId": "POST_HrEmpCourse", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/HrEmpCourse_POST" } } } }, "responses": { "201": { "description": "Created" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Course" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" }, { "$ref": "#/components/parameters/Content-Type" } ] }, "put": { "summary": "Course", "description": "\n\r https://help.afas.nl/help/NL/SE/App_Conect_UpdDsc_HrEmpCourse.htm", "operationId": "PUT_HrEmpCourse", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/HrEmpCourse_PUT" } } } }, "responses": { "201": { "description": "Created" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Course" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" }, { "$ref": "#/components/parameters/Content-Type" } ] } }, "/connectors/HrEmpCourse/HrEmpCourse/@EmId,@CoSn/{EmId},{CoSn}": { "parameters": [ { "schema": { "type": "string" }, "name": "EmId", "in": "path", "required": true, "description": "Employee" }, { "schema": { "type": "string" }, "name": "CoSn", "in": "path", "required": true, "description": "Sequence number" } ], "delete": { "summary": "Course", "operationId": "DELETE_HrEmpCourse", "description": "\n\r https://help.afas.nl/help/NL/SE/App_Conect_UpdDsc_HrEmpCourse.htm", "responses": { "400": { "$ref": "#/components/responses/400" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "404": { "$ref": "#/components/responses/404" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" }, "200": { "$ref": "#/components/responses/200" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Course" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" } ] } }, "/connectors/HrEmpEwhMutInsite": { "post": { "summary": "Change in days worked from home InSite", "description": "\n\r https://help.afas.nl/help/NL/SE/117475.htm", "operationId": "POST_HrEmpEwhMutInsite", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/HrEmpEwhMutInsite_POST" }, "examples": { "maximaal": { "value": { "HrEmpEwhMutInsite": { "Element": { "Fields": { "EmId": "WimB", "DaBe": "2021-06-01", "WhMo": "true", "WhTu": "true", "WhWe": "true", "WhTh": "true", "WhFr": "true", "WhSa": "true", "WhSu": "true" } } } } } } } } }, "responses": { "201": { "description": "Created" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Change in days worked from home InSite" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" }, { "$ref": "#/components/parameters/Content-Type" } ] } }, "/connectors/HrEmployeeducationScope": { "post": { "summary": "Change appointment basis", "description": "\n\rAlleen beschikbaar onder conditie: Onderwijs (activering)\n\r ", "operationId": "POST_HrEmployeeducationScope", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/HrEmployeeducationScope_POST" } } } }, "responses": { "201": { "description": "Created" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Change appointment basis" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" }, { "$ref": "#/components/parameters/Content-Type" } ] } }, "/connectors/HrEmployeeWorkweekTransition": { "post": { "summary": "Employee working week transition", "description": "\n\rAlleen beschikbaar onder conditie: Onderwijs (activering)\n\r ", "operationId": "POST_HrEmployeeWorkweekTransition", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/HrEmployeeWorkweekTransition_POST" } } } }, "responses": { "201": { "description": "Created" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Employee working week transition" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" }, { "$ref": "#/components/parameters/Content-Type" } ] } }, "/connectors/HrEmpMutInSite": { "post": { "summary": "Employee change (InSite)", "description": "\n\r ", "operationId": "POST_HrEmpMutInSite", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/HrEmpMutInSite_POST" } } } }, "responses": { "201": { "description": "Created" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Employee change (InSite)" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" }, { "$ref": "#/components/parameters/Content-Type" } ] } }, "/connectors/HrEmpWorkLocation": { "post": { "summary": "Timetable calendar", "description": "\n\rAlleen beschikbaar onder conditie: Werklocaties bij medewerker vastleggen (activering)\n\r ", "operationId": "POST_HrEmpWorkLocation", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/HrEmpWorkLocation_POST" } } } }, "responses": { "201": { "description": "Created" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Timetable calendar" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" }, { "$ref": "#/components/parameters/Content-Type" } ] } }, "/connectors/HrFavTravelDeclarations": { "post": { "summary": "Favourite trip", "description": "\n\r ", "operationId": "POST_HrFavTravelDeclarations", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/HrFavTravelDeclarations_POST" } } } }, "responses": { "201": { "description": "Created" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Favourite trip" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" }, { "$ref": "#/components/parameters/Content-Type" } ] }, "put": { "summary": "Favourite trip", "description": "\n\r ", "operationId": "PUT_HrFavTravelDeclarations", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/HrFavTravelDeclarations_PUT" } } } }, "responses": { "201": { "description": "Created" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Favourite trip" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" }, { "$ref": "#/components/parameters/Content-Type" } ] } }, "/connectors/HrFavTravelDeclarations/HrFavTravelDeclarations/@EmId,@SeNo/{EmId},{SeNo}": { "parameters": [ { "schema": { "type": "string" }, "name": "EmId", "in": "path", "required": true, "description": "Employee" }, { "schema": { "type": "string" }, "name": "SeNo", "in": "path", "required": true, "description": "Sequence number" } ], "delete": { "summary": "Favourite trip", "operationId": "DELETE_HrFavTravelDeclarations", "description": "\n\r ", "responses": { "400": { "$ref": "#/components/responses/400" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "404": { "$ref": "#/components/responses/404" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" }, "200": { "$ref": "#/components/responses/200" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Favourite trip" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" } ] } }, "/connectors/HrJudgement": { "post": { "summary": "Review", "description": "\n\rAlleen beschikbaar onder conditie: Hrm\n\r https://help.afas.nl/help/NL/SE/App_Conect_UpdDsc_HrJudg.htm", "operationId": "POST_HrJudgement", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/HrJudgement_POST" }, "examples": { "create judgement": { "value": { "HrJudgement": { "Element": { "@EmId": "AnnetK", "Fields": { "DaJu": "2024-03-19", "Re": "John Doe, as Chief Astronavigation Officer, demonstrated exceptional dedication on the mission to Proxima Centauri. His innovative approach to warp-drive troubleshooting and genuine commitment to the crew's well-being were vital for piloting the starship to success. John's adeptness in interstellar coordination and critical thinking are highly commendable, securing his position as a valuable asset to the Galactic Pioneer Program.", "EmPe": 4, "DePl": 1 } } } } } } } } }, "responses": { "201": { "description": "Created", "content": { "application/json": { "schema": { "type": "object" }, "examples": { "Response example": { "value": { "results": { "HrJudgement": { "EmId": "PrimaryKeyValue", "JuSn": "PrimaryKeyValue" } } } } } } }, "headers": { "Cache-Control": { "description": "no-store, no-cache", "schema": { "type": "string" } }, "Transfer-Encoding": { "description": "chunked", "schema": { "type": "string" } }, "Content-Type": { "description": "application/json; charset=utf-8", "schema": { "type": "string" } }, "Content-Encoding": { "description": "gzip", "schema": { "type": "string" } }, "Strict-Transport-Security": { "description": "max-age=31536000", "schema": { "type": "string" } }, "X-AFAS-Proxy-Version": { "description": "4.3.0.0", "schema": { "type": "string" } }, "X-Content-Type-Options": { "description": "nosniff", "schema": { "type": "string" } }, "X-Frame-Options": { "description": "deny", "schema": { "type": "string" } }, "X-AFAS-Proxy-Stats": { "description": "init(0ms), before response(10ms), after response(609ms), after compressing(610ms), complete(610ms)", "schema": { "type": "string" } }, "Access-Control-Allow-Origin": { "description": "*", "schema": { "type": "string" } }, "Access-Control-Allow-Headers": { "description": "Content-Type, Accept, Authorization, OnlineSessionId, Accept-Language", "schema": { "type": "string" } }, "Access-Control-Allow-Methods": { "description": "GET, POST, PUT, DELETE, OPTIONS", "schema": { "type": "string" } }, "Access-Control-Max-Age": { "description": "1728000", "schema": { "type": "string" } }, "Date": { "description": "Wed, 07 Feb 2024 10:39:26 GMT", "schema": { "type": "string" } } } }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Review" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" }, { "$ref": "#/components/parameters/Content-Type" } ] }, "put": { "summary": "Review", "description": "\n\rAlleen beschikbaar onder conditie: Hrm\n\r https://help.afas.nl/help/NL/SE/App_Conect_UpdDsc_HrJudg.htm", "operationId": "PUT_HrJudgement", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/HrJudgement_PUT" }, "examples": { "change judgement": { "value": { "HrJudgement": { "Element": { "@EmId": "AnnetK", "Fields": { "JuSn": 4, "DaJu": "2024-03-19", "Re": "Jane Doe, as Principal Astrocommunication Specialist, showcased exceptional dedication during our journey to Alpha Centauri. Her unparalleled expertise in long-distance interstellar transmissions and genuine concern for crew safety proved crucial for trailblazing success. Jane's aptitude in navigating cosmic complexities and problem-solving are greatly admired, solidifying her role as a key contributor to the Starbound Voyager Initiative." } } } } } } } } }, "responses": { "201": { "description": "Created", "content": { "application/json": { "schema": { "type": "object" }, "examples": { "Response example": { "value": { "results": { "HrJudgement": { "EmId": "PrimaryKeyValue", "JuSn": "PrimaryKeyValue" } } } } } } }, "headers": { "Cache-Control": { "description": "no-store, no-cache", "schema": { "type": "string" } }, "Transfer-Encoding": { "description": "chunked", "schema": { "type": "string" } }, "Content-Type": { "description": "application/json; charset=utf-8", "schema": { "type": "string" } }, "Content-Encoding": { "description": "gzip", "schema": { "type": "string" } }, "Strict-Transport-Security": { "description": "max-age=31536000", "schema": { "type": "string" } }, "X-AFAS-Proxy-Version": { "description": "4.3.0.0", "schema": { "type": "string" } }, "X-Content-Type-Options": { "description": "nosniff", "schema": { "type": "string" } }, "X-Frame-Options": { "description": "deny", "schema": { "type": "string" } }, "X-AFAS-Proxy-Stats": { "description": "init(0ms), before response(10ms), after response(609ms), after compressing(610ms), complete(610ms)", "schema": { "type": "string" } }, "Access-Control-Allow-Origin": { "description": "*", "schema": { "type": "string" } }, "Access-Control-Allow-Headers": { "description": "Content-Type, Accept, Authorization, OnlineSessionId, Accept-Language", "schema": { "type": "string" } }, "Access-Control-Allow-Methods": { "description": "GET, POST, PUT, DELETE, OPTIONS", "schema": { "type": "string" } }, "Access-Control-Max-Age": { "description": "1728000", "schema": { "type": "string" } }, "Date": { "description": "Wed, 07 Feb 2024 10:39:26 GMT", "schema": { "type": "string" } } } }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Review" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" }, { "$ref": "#/components/parameters/Content-Type" } ] } }, "/connectors/HrJudgement/HrJudgement/@EmId,@JuSn/{EmId},{JuSn}": { "parameters": [ { "schema": { "type": "string" }, "name": "EmId", "in": "path", "required": true, "description": "Employee" }, { "schema": { "type": "string" }, "name": "JuSn", "in": "path", "required": true, "description": "Sequence number" } ], "delete": { "summary": "Review", "operationId": "DELETE_HrJudgement", "description": "\n\r https://help.afas.nl/help/NL/SE/App_Conect_UpdDsc_HrJudg.htm", "responses": { "400": { "$ref": "#/components/responses/400" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "404": { "$ref": "#/components/responses/404" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" }, "200": { "$ref": "#/components/responses/200" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Review" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" } ] } }, "/connectors/HrMobility": { "post": { "summary": "Means of transport", "description": "\n\r https://help.afas.nl/help/NL/SE/128738.htm", "operationId": "POST_HrMobility", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/HrMobility_POST" }, "examples": { "auto minimaal": { "value": { "HrMobility": { "Element": { "Fields": { "TrTy": "1", "CmId": "01", "DaBl": "2023-12-01", "RgNr": "34-RGS-8", "GrRg": false, "ViMr": "10", "ViMd": "6501", "CmUs": false, "InKm": 17, "DaPr": "2023-12-01", "CtVl": "150000", "AgId": "L", "PeAd": 14 } } } } }, "auto": { "value": { "HrMobility": { "Element": { "Fields": { "TrTy": "1", "CmId": "000001", "CoNu": "1", "LsAm": "509", "DaBl": "2024-01-01", "DaEl": "2034-12-31", "SeNu": "978020137962", "ViMr": "19", "ViMd": "4", "Ad": "Volkswagen AG", "Re": "Audi - A3\r\nSerienummer: 978020137962\r\nDealer: leaseservice Nederland\r\nGekozen servicepakket: standaard", "InKm": "0", "DaPr": "2024-02-01", "CtVl": "38586", "OnVl": "true", "AgId": "L", "PeAd": "7", "LeTy": "2" }, "Objects": { "HrEmployeeMobility": { "Element": { "@EmId": "ElaK", "Fields": { "DaBe": "2024-02-01", "DaEn": "2034-12-31", "PeAd": "7", "PaVr": "true", "ApAd": "true" } } } } } } } }, "fiets": { "value": { "HrMobility": { "Element": { "Fields": { "TrTy": "4", "CmId": "01", "CoNu": "", "LsAm": "1200", "DaBl": "2023-01-01", "DaEl": "2025-03-12", "ViMr": "20", "Re": "Fiets", "InKm": 0, "DaPr": "2023-01-01", "CtVl": "1200", "OnVl": false, "AgId": "L" }, "Objects": [ { "HrEmployeeMobility": { "Element": { "@EmId": "KOOSB", "Fields": { "DaBe": "2023-01-01", "OwCo": "25" } } } } ] } } } } } } } }, "responses": { "201": { "description": "Created", "content": { "application/json": { "schema": { "type": "object" }, "examples": { "Response example": { "value": { "results": { "HrMobility": { "CcSn": "1" } } } } } } }, "headers": { "Cache-Control": { "description": "no-store, no-cache", "schema": { "type": "string" } }, "Transfer-Encoding": { "description": "chunked", "schema": { "type": "string" } }, "Content-Type": { "description": "application/json; charset=utf-8", "schema": { "type": "string" } }, "Content-Encoding": { "description": "gzip", "schema": { "type": "string" } }, "Strict-Transport-Security": { "description": "max-age=31536000", "schema": { "type": "string" } }, "X-AFAS-Proxy-Version": { "description": "4.3.0.0", "schema": { "type": "string" } }, "X-Content-Type-Options": { "description": "nosniff", "schema": { "type": "string" } }, "X-Frame-Options": { "description": "deny", "schema": { "type": "string" } }, "X-AFAS-Proxy-Stats": { "description": "init(0ms), before response(10ms), after response(609ms), after compressing(610ms), complete(610ms)", "schema": { "type": "string" } }, "Access-Control-Allow-Origin": { "description": "*", "schema": { "type": "string" } }, "Access-Control-Allow-Headers": { "description": "Content-Type, Accept, Authorization, OnlineSessionId, Accept-Language", "schema": { "type": "string" } }, "Access-Control-Allow-Methods": { "description": "GET, POST, PUT, DELETE, OPTIONS", "schema": { "type": "string" } }, "Access-Control-Max-Age": { "description": "1728000", "schema": { "type": "string" } }, "Date": { "description": "Wed, 07 Feb 2024 10:39:26 GMT", "schema": { "type": "string" } } } }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Means of transport" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" }, { "$ref": "#/components/parameters/Content-Type" } ] }, "put": { "summary": "Means of transport", "description": "\n\r https://help.afas.nl/help/NL/SE/128738.htm", "operationId": "PUT_HrMobility", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/HrMobility_PUT" }, "examples": { "kenteken toevoegen": { "value": { "HrMobility": { "Element": { "@CcSn": "39", "Fields": { "RgNr": "12-AB-123" } } } } }, "minimaal leasebedrag": { "value": { "HrMobility": { "Element": { "@CcSn": 1, "Fields": { "LsAm": "1250" } } } } } } } } }, "responses": { "201": { "description": "Created", "content": { "application/json": { "schema": { "type": "object" }, "examples": { "Response example": { "value": { "results": { "HrMobility": { "CcSn": "1" } } } } } } }, "headers": { "Cache-Control": { "description": "no-store, no-cache", "schema": { "type": "string" } }, "Transfer-Encoding": { "description": "chunked", "schema": { "type": "string" } }, "Content-Type": { "description": "application/json; charset=utf-8", "schema": { "type": "string" } }, "Content-Encoding": { "description": "gzip", "schema": { "type": "string" } }, "Strict-Transport-Security": { "description": "max-age=31536000", "schema": { "type": "string" } }, "X-AFAS-Proxy-Version": { "description": "4.3.0.0", "schema": { "type": "string" } }, "X-Content-Type-Options": { "description": "nosniff", "schema": { "type": "string" } }, "X-Frame-Options": { "description": "deny", "schema": { "type": "string" } }, "X-AFAS-Proxy-Stats": { "description": "init(0ms), before response(10ms), after response(609ms), after compressing(610ms), complete(610ms)", "schema": { "type": "string" } }, "Access-Control-Allow-Origin": { "description": "*", "schema": { "type": "string" } }, "Access-Control-Allow-Headers": { "description": "Content-Type, Accept, Authorization, OnlineSessionId, Accept-Language", "schema": { "type": "string" } }, "Access-Control-Allow-Methods": { "description": "GET, POST, PUT, DELETE, OPTIONS", "schema": { "type": "string" } }, "Access-Control-Max-Age": { "description": "1728000", "schema": { "type": "string" } }, "Date": { "description": "Wed, 07 Feb 2024 10:39:26 GMT", "schema": { "type": "string" } } } }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Means of transport" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" }, { "$ref": "#/components/parameters/Content-Type" } ] } }, "/connectors/HrMobility/HrEmployeeMobility": { "post": { "summary": "Means of transport", "description": "Update main record in HrMobility and insert subrecord into HrEmployeeMobility. \n\r https://help.afas.nl/help/NL/SE/128738.htm", "operationId": "POSTSubRecordHrMobilityHrEmployeeMobility", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/HrMobility_POST" }, "examples": { "Add mobility to employee": { "value": { "HrMobility": { "Element": { "@CcSn": 86, "Objects": [ { "HrEmployeeMobility": { "Element": { "@EmId": "floora", "@SeNo": 1, "Fields": { "DaBe": "2024-01-03" } } } } ] } } } } } } } }, "responses": { "201": { "description": "Created", "content": { "application/json": { "schema": { "type": "object" }, "examples": { "Response example": { "value": { "results": { "HrMobility": { "CcSn": "1" } } } } } } }, "headers": { "Cache-Control": { "description": "no-store, no-cache", "schema": { "type": "string" } }, "Transfer-Encoding": { "description": "chunked", "schema": { "type": "string" } }, "Content-Type": { "description": "application/json; charset=utf-8", "schema": { "type": "string" } }, "Content-Encoding": { "description": "gzip", "schema": { "type": "string" } }, "Strict-Transport-Security": { "description": "max-age=31536000", "schema": { "type": "string" } }, "X-AFAS-Proxy-Version": { "description": "4.3.0.0", "schema": { "type": "string" } }, "X-Content-Type-Options": { "description": "nosniff", "schema": { "type": "string" } }, "X-Frame-Options": { "description": "deny", "schema": { "type": "string" } }, "X-AFAS-Proxy-Stats": { "description": "init(0ms), before response(10ms), after response(609ms), after compressing(610ms), complete(610ms)", "schema": { "type": "string" } }, "Access-Control-Allow-Origin": { "description": "*", "schema": { "type": "string" } }, "Access-Control-Allow-Headers": { "description": "Content-Type, Accept, Authorization, OnlineSessionId, Accept-Language", "schema": { "type": "string" } }, "Access-Control-Allow-Methods": { "description": "GET, POST, PUT, DELETE, OPTIONS", "schema": { "type": "string" } }, "Access-Control-Max-Age": { "description": "1728000", "schema": { "type": "string" } }, "Date": { "description": "Wed, 07 Feb 2024 10:39:26 GMT", "schema": { "type": "string" } } } }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Means of transport" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" }, { "$ref": "#/components/parameters/Content-Type" } ] } }, "/connectors/HrMobility/HrEmployeeMobilityRegistration": { "post": { "summary": "Means of transport", "description": "Update main record in HrMobility and insert subrecord into HrEmployeeMobilityRegistration. \n\r https://help.afas.nl/help/NL/SE/128738.htm", "operationId": "POSTSubRecordHrMobilityHrEmployeeMobilityRegistration", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/HrMobility_POST" }, "examples": { "Add km": { "value": { "HrMobility": { "Element": { "@CcSn": 89, "Objects": [ { "HrEmployeeMobilityRegistration": { "Element": { "Fields": { "DaEn": "2024-04-04", "KmEn": 20000 } } } } ] } } } } } } } }, "responses": { "201": { "description": "Created", "content": { "application/json": { "schema": { "type": "object" }, "examples": { "Response example": { "value": { "results": { "HrMobility": { "CcSn": "1" } } } } } } }, "headers": { "Cache-Control": { "description": "no-store, no-cache", "schema": { "type": "string" } }, "Transfer-Encoding": { "description": "chunked", "schema": { "type": "string" } }, "Content-Type": { "description": "application/json; charset=utf-8", "schema": { "type": "string" } }, "Content-Encoding": { "description": "gzip", "schema": { "type": "string" } }, "Strict-Transport-Security": { "description": "max-age=31536000", "schema": { "type": "string" } }, "X-AFAS-Proxy-Version": { "description": "4.3.0.0", "schema": { "type": "string" } }, "X-Content-Type-Options": { "description": "nosniff", "schema": { "type": "string" } }, "X-Frame-Options": { "description": "deny", "schema": { "type": "string" } }, "X-AFAS-Proxy-Stats": { "description": "init(0ms), before response(10ms), after response(609ms), after compressing(610ms), complete(610ms)", "schema": { "type": "string" } }, "Access-Control-Allow-Origin": { "description": "*", "schema": { "type": "string" } }, "Access-Control-Allow-Headers": { "description": "Content-Type, Accept, Authorization, OnlineSessionId, Accept-Language", "schema": { "type": "string" } }, "Access-Control-Allow-Methods": { "description": "GET, POST, PUT, DELETE, OPTIONS", "schema": { "type": "string" } }, "Access-Control-Max-Age": { "description": "1728000", "schema": { "type": "string" } }, "Date": { "description": "Wed, 07 Feb 2024 10:39:26 GMT", "schema": { "type": "string" } } } }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Means of transport" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" }, { "$ref": "#/components/parameters/Content-Type" } ] } }, "/connectors/HrMobility/HrMobility/@CcSn/{CcSn}": { "parameters": [ { "schema": { "type": "string" }, "name": "CcSn", "in": "path", "required": true, "description": "Sequence number" } ], "delete": { "summary": "Means of transport", "operationId": "DELETE_HrMobility", "description": "\n\r https://help.afas.nl/help/NL/SE/128738.htm", "responses": { "400": { "$ref": "#/components/responses/400" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "404": { "$ref": "#/components/responses/404" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" }, "200": { "$ref": "#/components/responses/200" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Means of transport" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" } ] } }, "/connectors/HrRelative": { "post": { "summary": "Family member", "description": "\n\rAlleen beschikbaar onder conditie: Hrm\n\r https://help.afas.nl/help/NL/SE/125473.htm", "operationId": "POST_HrRelative", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/HrRelative_POST" }, "examples": { "maximaal": { "value": { "HrRelative": { "Element": { "Fields": { "EmId": "FLOORA", "ViFt": 1, "Nm": "Arends", "In": "J", "FiNm": "Jan", "ViGe": "V", "DaBi": "2018-12-12", "PaHi": true, "Mchi": false, "PaLe": true, "Hdcp": false } } } } } } } } }, "responses": { "201": { "description": "Created" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Family member" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" }, { "$ref": "#/components/parameters/Content-Type" } ] } }, "/connectors/HrSelectionModel": { "post": { "summary": "Choice model", "description": "\n\rAlleen beschikbaar onder conditie: Hrm\n\r https://help.afas.nl/help/NL/SE/119689.htm", "operationId": "POST_HrSelectionModel", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/HrSelectionModel_POST" }, "examples": { "alles eenmalig": { "value": { "HrSelectionModel": { "Element": { "@EmId": "4125611", "Fields": { "DaBe": "2021-01-01", "DaEn": "2023-12-31", "SmId": "01", "Ds": "werkfiets", "Amnt": "1000", "PoTa": "1", "ViRs": "1", "ViPa": "1" }, "Objects": { "HrSelectionModelSource": { "Element": { "Fields": { "DaBe": "2021-01-01", "EmsFsSa": "1", "EmsInSa": "400", "EmsPeSa": "200", "EmsFsVt": "1", "EmsInVt": "400", "EmsYrVt": "200", "EmsFsYt": "1", "EmsInYt": "200", "EmsYrYt": "100" } } } } } } } }, "alles fiscale ruimte": { "value": { "HrSelectionModel": { "Element": { "@EmId": "4125046", "Fields": { "DaBe": "2021-01-01", "DaEn": "2023-12-31", "SmId": "10", "Ds": "werkfiets", "Amnt": "1000", "PoTa": "1", "ViRs": "1", "ViPa": "1" }, "Objects": { "HrSelectionModelSource": { "Element": { "Fields": { "DaBe": "2021-01-01", "EmsFsSa": "1", "EmsInSa": "1000", "EmsPeSa": "200" } } } } } } } }, "alles fiscale ruimte EJU": { "value": { "HrSelectionModel": { "Element": { "@EmId": "4125586", "Fields": { "DaBe": "2021-01-01", "DaEn": "2023-12-31", "SmId": "10", "Ds": "werkfiets", "Amnt": "1000", "PoTa": "1", "ViRs": "1", "ViPa": "1" }, "Objects": { "HrSelectionModelSource": { "Element": { "Fields": { "DaBe": "2021-01-01", "EmsFsYt": "1", "EmsInYt": "1000", "EmsYrYt": "100" } } } } } } } }, "alles fiscale ruimte VT": { "value": { "HrSelectionModel": { "Element": { "@EmId": "4125479", "Fields": { "DaBe": "2021-01-01", "DaEn": "2023-12-31", "SmId": "10", "Ds": "werkfiets", "Amnt": "1000", "PoTa": "1", "ViRs": "1", "ViPa": "1" }, "Objects": { "HrSelectionModelSource": { "Element": { "Fields": { "DaBe": "2021-01-01", "EmsFsVt": "1", "EmsInVt": "1000", "EmsYrVt": "400" } } } } } } } }, "alles fiscale ruimte VT EJU": { "value": { "HrSelectionModel": { "Element": { "@EmId": "4125034", "Fields": { "DaBe": "2021-01-01", "DaEn": "2023-12-31", "SmId": "10", "Ds": "werkfiets", "Amnt": "1000", "PoTa": "1", "ViRs": "1", "ViPa": "1" }, "Objects": { "HrSelectionModelSource": { "Element": { "Fields": { "DaBe": "2021-01-01", "EmsFsVt": "1", "EmsInVt": "400", "EmsYrVt": "150", "EmsFsYt": "1", "EmsInYt": "600", "EmsYrYt": "200" } } } } } } } }, "alles repeterend": { "value": { "HrSelectionModel": { "Element": { "@EmId": "4125552", "Fields": { "DaBe": "2021-01-01", "DaEn": "2023-12-31", "SmId": "06", "Ds": "werkfiets", "Amnt": "1000", "PoTa": "1", "ViRs": "1", "ViPa": "1" }, "Objects": { "HrSelectionModelSource": { "Element": { "Fields": { "DaBe": "2021-01-01" } } } } } } } }, "minimaal": { "value": { "HrSelectionModel": { "Element": { "@EmId": "4125562", "Fields": { "DaBe": "2021-01-01", "DaEn": "2023-12-31", "SmId": "01", "Amnt": "1000", "PoTa": "1" }, "Objects": { "HrSelectionModelSource": { "Element": { "Fields": { "DaBe": "2021-01-01", "EmsFsSa": "1", "EmsInSa": "1000", "EmsPeSa": "100" } } } } } } } }, "verlof": { "value": { "HrSelectionModel": { "Element": { "@EmId": "ARENDB", "Fields": { "DaBe": "2018-01-01", "DaEn": "2018-12-31", "SmId": "01", "Ds": "werkfiets", "Amnt": "8", "PoTa": "1" }, "Objects": { "HrSelectionModelSource": { "Element": { "Fields": { "DaBe": "2018-01-01", "EmsViHt": "V", "EmsViLs": "VB2018", "EmsInAl": "8", "EmsYnLh": "1", "EmsViCr": "H", "EmsRe": "Correctie" } } } } } } } }, "verlof dmerp": { "value": { "HrSelectionModel": { "Element": { "@EmId": "ARENDB", "Fields": { "DaBe": "2018-01-01", "DaEn": "2018-12-31", "SmId": "01", "Ds": "werkfiets", "Amnt": "0", "PoTa": "1" }, "Objects": { "HrSelectionModelSource": { "Element": { "Fields": { "DaBe": "2018-01-01", "EmsViHt": "V", "EmsViLs": "VB2018", "EmsInAl": "0", "EmsYnLh": "1", "EmsViCr": "H", "EmsRe": "huwelijk" } } } } } } } } } } } }, "responses": { "201": { "description": "Created" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Choice model" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" }, { "$ref": "#/components/parameters/Content-Type" } ] } }, "/connectors/HrTimeRegSocSec": { "post": { "summary": "Time recording line Social Secretariat", "description": "\n\r https://help.afas.nl/help/NL/SE/App_Conect_UpdDsc_100.htm", "operationId": "POST_HrTimeRegSocSec", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/HrTimeRegSocSec_POST" } } } }, "responses": { "201": { "description": "Created", "content": { "application/json": { "schema": { "type": "object" }, "examples": { "Response example": { "value": { "results": { "HrTimeRegSocSec": { "Id": "PrimaryKeyValue" } } } } } } }, "headers": { "Cache-Control": { "description": "no-store, no-cache", "schema": { "type": "string" } }, "Transfer-Encoding": { "description": "chunked", "schema": { "type": "string" } }, "Content-Type": { "description": "application/json; charset=utf-8", "schema": { "type": "string" } }, "Content-Encoding": { "description": "gzip", "schema": { "type": "string" } }, "Strict-Transport-Security": { "description": "max-age=31536000", "schema": { "type": "string" } }, "X-AFAS-Proxy-Version": { "description": "4.3.0.0", "schema": { "type": "string" } }, "X-Content-Type-Options": { "description": "nosniff", "schema": { "type": "string" } }, "X-Frame-Options": { "description": "deny", "schema": { "type": "string" } }, "X-AFAS-Proxy-Stats": { "description": "init(0ms), before response(10ms), after response(609ms), after compressing(610ms), complete(610ms)", "schema": { "type": "string" } }, "Access-Control-Allow-Origin": { "description": "*", "schema": { "type": "string" } }, "Access-Control-Allow-Headers": { "description": "Content-Type, Accept, Authorization, OnlineSessionId, Accept-Language", "schema": { "type": "string" } }, "Access-Control-Allow-Methods": { "description": "GET, POST, PUT, DELETE, OPTIONS", "schema": { "type": "string" } }, "Access-Control-Max-Age": { "description": "1728000", "schema": { "type": "string" } }, "Date": { "description": "Wed, 07 Feb 2024 10:39:26 GMT", "schema": { "type": "string" } } } }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Time recording line Social Secretariat" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" }, { "$ref": "#/components/parameters/Content-Type" } ] }, "put": { "summary": "Time recording line Social Secretariat", "description": "\n\r https://help.afas.nl/help/NL/SE/App_Conect_UpdDsc_100.htm", "operationId": "PUT_HrTimeRegSocSec", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/HrTimeRegSocSec_PUT" } } } }, "responses": { "201": { "description": "Created", "content": { "application/json": { "schema": { "type": "object" }, "examples": { "Response example": { "value": { "results": { "HrTimeRegSocSec": { "Id": "PrimaryKeyValue" } } } } } } }, "headers": { "Cache-Control": { "description": "no-store, no-cache", "schema": { "type": "string" } }, "Transfer-Encoding": { "description": "chunked", "schema": { "type": "string" } }, "Content-Type": { "description": "application/json; charset=utf-8", "schema": { "type": "string" } }, "Content-Encoding": { "description": "gzip", "schema": { "type": "string" } }, "Strict-Transport-Security": { "description": "max-age=31536000", "schema": { "type": "string" } }, "X-AFAS-Proxy-Version": { "description": "4.3.0.0", "schema": { "type": "string" } }, "X-Content-Type-Options": { "description": "nosniff", "schema": { "type": "string" } }, "X-Frame-Options": { "description": "deny", "schema": { "type": "string" } }, "X-AFAS-Proxy-Stats": { "description": "init(0ms), before response(10ms), after response(609ms), after compressing(610ms), complete(610ms)", "schema": { "type": "string" } }, "Access-Control-Allow-Origin": { "description": "*", "schema": { "type": "string" } }, "Access-Control-Allow-Headers": { "description": "Content-Type, Accept, Authorization, OnlineSessionId, Accept-Language", "schema": { "type": "string" } }, "Access-Control-Allow-Methods": { "description": "GET, POST, PUT, DELETE, OPTIONS", "schema": { "type": "string" } }, "Access-Control-Max-Age": { "description": "1728000", "schema": { "type": "string" } }, "Date": { "description": "Wed, 07 Feb 2024 10:39:26 GMT", "schema": { "type": "string" } } } }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Time recording line Social Secretariat" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" }, { "$ref": "#/components/parameters/Content-Type" } ] } }, "/connectors/HrTimeRegSocSec/HrTimeRegSocSec/@Id/{Id}": { "parameters": [ { "schema": { "type": "string" }, "name": "Id", "in": "path", "required": true, "description": "Line number" } ], "delete": { "summary": "Time recording line Social Secretariat", "operationId": "DELETE_HrTimeRegSocSec", "description": "\n\r https://help.afas.nl/help/NL/SE/App_Conect_UpdDsc_100.htm", "responses": { "400": { "$ref": "#/components/responses/400" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "404": { "$ref": "#/components/responses/404" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" }, "200": { "$ref": "#/components/responses/200" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Time recording line Social Secretariat" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" } ] } }, "/connectors/KnCustomK01": { "post": { "summary": "Custom file 01", "description": "\n\r https://help.afas.nl/help/NL/SE/App_Conect_UpdDsc_160.htm", "operationId": "POST_KnCustomK01", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/KnCustomK01_POST" }, "examples": { "insert": { "value": { "KnCustomK01": { "Element": { "Fields": { "AuNu": true, "U001": "2023-01-01", "U002": "Veld Extra", "U003": "ALLARDJ", "U004": "1", "U005": "Geen bijzonderheden", "U006": "B" } } } } } } } } }, "responses": { "201": { "description": "Created", "content": { "application/json": { "schema": { "type": "object" }, "examples": { "Response example": { "value": { "results": { "KnCustomK01": [ { "SqNo": "4" }, { "SqNo": "5" }, { "SqNo": "6" } ] } } } } } }, "headers": { "Cache-Control": { "description": "no-store, no-cache", "schema": { "type": "string" } }, "Transfer-Encoding": { "description": "chunked", "schema": { "type": "string" } }, "Content-Type": { "description": "application/json; charset=utf-8", "schema": { "type": "string" } }, "Content-Encoding": { "description": "gzip", "schema": { "type": "string" } }, "Strict-Transport-Security": { "description": "max-age=31536000", "schema": { "type": "string" } }, "X-AFAS-Proxy-Version": { "description": "4.3.0.0", "schema": { "type": "string" } }, "X-Content-Type-Options": { "description": "nosniff", "schema": { "type": "string" } }, "X-Frame-Options": { "description": "deny", "schema": { "type": "string" } }, "X-AFAS-Proxy-Stats": { "description": "init(0ms), before response(10ms), after response(609ms), after compressing(610ms), complete(610ms)", "schema": { "type": "string" } }, "Access-Control-Allow-Origin": { "description": "*", "schema": { "type": "string" } }, "Access-Control-Allow-Headers": { "description": "Content-Type, Accept, Authorization, OnlineSessionId, Accept-Language", "schema": { "type": "string" } }, "Access-Control-Allow-Methods": { "description": "GET, POST, PUT, DELETE, OPTIONS", "schema": { "type": "string" } }, "Access-Control-Max-Age": { "description": "1728000", "schema": { "type": "string" } }, "Date": { "description": "Wed, 07 Feb 2024 10:39:26 GMT", "schema": { "type": "string" } } } }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Custom file 01" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" }, { "$ref": "#/components/parameters/Content-Type" } ] }, "put": { "summary": "Custom file 01", "description": "\n\r https://help.afas.nl/help/NL/SE/App_Conect_UpdDsc_160.htm", "operationId": "PUT_KnCustomK01", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/KnCustomK01_PUT" }, "examples": { "update": { "value": { "KnCustomK01": { "Element": { "Fields": { "SqNo": "2921", "U005": "Geen bijzonderheden", "U006": "B" } } } } } } } } }, "responses": { "201": { "description": "Created", "content": { "application/json": { "schema": { "type": "object" }, "examples": { "Response example": { "value": { "results": { "KnCustomK01": [ { "SqNo": "4" }, { "SqNo": "5" }, { "SqNo": "6" } ] } } } } } }, "headers": { "Cache-Control": { "description": "no-store, no-cache", "schema": { "type": "string" } }, "Transfer-Encoding": { "description": "chunked", "schema": { "type": "string" } }, "Content-Type": { "description": "application/json; charset=utf-8", "schema": { "type": "string" } }, "Content-Encoding": { "description": "gzip", "schema": { "type": "string" } }, "Strict-Transport-Security": { "description": "max-age=31536000", "schema": { "type": "string" } }, "X-AFAS-Proxy-Version": { "description": "4.3.0.0", "schema": { "type": "string" } }, "X-Content-Type-Options": { "description": "nosniff", "schema": { "type": "string" } }, "X-Frame-Options": { "description": "deny", "schema": { "type": "string" } }, "X-AFAS-Proxy-Stats": { "description": "init(0ms), before response(10ms), after response(609ms), after compressing(610ms), complete(610ms)", "schema": { "type": "string" } }, "Access-Control-Allow-Origin": { "description": "*", "schema": { "type": "string" } }, "Access-Control-Allow-Headers": { "description": "Content-Type, Accept, Authorization, OnlineSessionId, Accept-Language", "schema": { "type": "string" } }, "Access-Control-Allow-Methods": { "description": "GET, POST, PUT, DELETE, OPTIONS", "schema": { "type": "string" } }, "Access-Control-Max-Age": { "description": "1728000", "schema": { "type": "string" } }, "Date": { "description": "Wed, 07 Feb 2024 10:39:26 GMT", "schema": { "type": "string" } } } }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Custom file 01" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" }, { "$ref": "#/components/parameters/Content-Type" } ] } }, "/connectors/KnCustomK01/KnCustomK01/@SqNo/{SqNo}": { "parameters": [ { "schema": { "type": "string" }, "name": "SqNo", "in": "path", "required": true, "description": "Sequence number" } ], "delete": { "summary": "Custom file 01", "operationId": "DELETE_KnCustomK01", "description": "\n\r https://help.afas.nl/help/NL/SE/App_Conect_UpdDsc_160.htm", "responses": { "400": { "$ref": "#/components/responses/400" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "404": { "$ref": "#/components/responses/404" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" }, "200": { "$ref": "#/components/responses/200" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Custom file 01" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" } ] } }, "/connectors/KnCustomK02": { "post": { "summary": "Custom file 02", "description": "\n\r https://help.afas.nl/help/NL/SE/App_Conect_UpdDsc_160.htm", "operationId": "POST_KnCustomK02", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/KnCustomK02_POST" }, "examples": { "massa 100": { "value": { "KnCustomK02": { "Element": [ { "Fields": { "AuNu": true, "Da": "2023-01-15", "Ds": "Omschrijving 100", "U977E29AD43062ADCD6C1F9999DEEF079": "Poging 5", "UA76EA82042ADD8F52A8861B9510C5214": "Veld 2", "U7DB2B6D349C3B6B1374D6691CB33B72E": "FLOORA" } }, { "Fields": { "AuNu": true, "Da": "2023-01-15", "Ds": "Omschrijving 101", "U977E29AD43062ADCD6C1F9999DEEF079": "Poging 5", "UA76EA82042ADD8F52A8861B9510C5214": "Veld 2", "U7DB2B6D349C3B6B1374D6691CB33B72E": "FLOORA" } }, { "Fields": { "AuNu": true, "Da": "2023-01-15", "Ds": "Omschrijving 102", "U977E29AD43062ADCD6C1F9999DEEF079": "Poging 5", "UA76EA82042ADD8F52A8861B9510C5214": "Veld 2", "U7DB2B6D349C3B6B1374D6691CB33B72E": "FLOORA" } } ] } } } } } } }, "responses": { "201": { "description": "Created" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Custom file 02" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" }, { "$ref": "#/components/parameters/Content-Type" } ] }, "put": { "summary": "Custom file 02", "description": "\n\r https://help.afas.nl/help/NL/SE/App_Conect_UpdDsc_160.htm", "operationId": "PUT_KnCustomK02", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/KnCustomK02_PUT" } } } }, "responses": { "201": { "description": "Created" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Custom file 02" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" }, { "$ref": "#/components/parameters/Content-Type" } ] } }, "/connectors/KnCustomK02/KnCustomK02/@SqNo/{SqNo}": { "parameters": [ { "schema": { "type": "string" }, "name": "SqNo", "in": "path", "required": true, "description": "Sequence number" } ], "delete": { "summary": "Custom file 02", "operationId": "DELETE_KnCustomK02", "description": "\n\r https://help.afas.nl/help/NL/SE/App_Conect_UpdDsc_160.htm", "responses": { "400": { "$ref": "#/components/responses/400" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "404": { "$ref": "#/components/responses/404" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" }, "200": { "$ref": "#/components/responses/200" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Custom file 02" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" } ] } }, "/connectors/KnCustomK03": { "post": { "summary": "Custom file 03", "description": "\n\r https://help.afas.nl/help/NL/SE/App_Conect_UpdDsc_160.htm", "operationId": "POST_KnCustomK03", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/KnCustomK03_POST" } } } }, "responses": { "201": { "description": "Created" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Custom file 03" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" }, { "$ref": "#/components/parameters/Content-Type" } ] }, "put": { "summary": "Custom file 03", "description": "\n\r https://help.afas.nl/help/NL/SE/App_Conect_UpdDsc_160.htm", "operationId": "PUT_KnCustomK03", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/KnCustomK03_PUT" } } } }, "responses": { "201": { "description": "Created" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Custom file 03" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" }, { "$ref": "#/components/parameters/Content-Type" } ] } }, "/connectors/KnCustomK03/KnCustomK03/@SqNo/{SqNo}": { "parameters": [ { "schema": { "type": "string" }, "name": "SqNo", "in": "path", "required": true, "description": "Sequence number" } ], "delete": { "summary": "Custom file 03", "operationId": "DELETE_KnCustomK03", "description": "\n\r https://help.afas.nl/help/NL/SE/App_Conect_UpdDsc_160.htm", "responses": { "400": { "$ref": "#/components/responses/400" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "404": { "$ref": "#/components/responses/404" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" }, "200": { "$ref": "#/components/responses/200" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Custom file 03" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" } ] } }, "/connectors/KnCustomK04": { "post": { "summary": "Custom file 04", "description": "\n\r https://help.afas.nl/help/NL/SE/App_Conect_UpdDsc_160.htm", "operationId": "POST_KnCustomK04", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/KnCustomK04_POST" } } } }, "responses": { "201": { "description": "Created" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Custom file 04" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" }, { "$ref": "#/components/parameters/Content-Type" } ] }, "put": { "summary": "Custom file 04", "description": "\n\r https://help.afas.nl/help/NL/SE/App_Conect_UpdDsc_160.htm", "operationId": "PUT_KnCustomK04", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/KnCustomK04_PUT" } } } }, "responses": { "201": { "description": "Created" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Custom file 04" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" }, { "$ref": "#/components/parameters/Content-Type" } ] } }, "/connectors/KnCustomK04/KnCustomK04/@SqNo/{SqNo}": { "parameters": [ { "schema": { "type": "string" }, "name": "SqNo", "in": "path", "required": true, "description": "Sequence number" } ], "delete": { "summary": "Custom file 04", "operationId": "DELETE_KnCustomK04", "description": "\n\r https://help.afas.nl/help/NL/SE/App_Conect_UpdDsc_160.htm", "responses": { "400": { "$ref": "#/components/responses/400" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "404": { "$ref": "#/components/responses/404" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" }, "200": { "$ref": "#/components/responses/200" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Custom file 04" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" } ] } }, "/connectors/KnCustomK05": { "post": { "summary": "Custom file 05", "description": "\n\r https://help.afas.nl/help/NL/SE/App_Conect_UpdDsc_160.htm", "operationId": "POST_KnCustomK05", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/KnCustomK05_POST" } } } }, "responses": { "201": { "description": "Created" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Custom file 05" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" }, { "$ref": "#/components/parameters/Content-Type" } ] }, "put": { "summary": "Custom file 05", "description": "\n\r https://help.afas.nl/help/NL/SE/App_Conect_UpdDsc_160.htm", "operationId": "PUT_KnCustomK05", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/KnCustomK05_PUT" } } } }, "responses": { "201": { "description": "Created" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Custom file 05" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" }, { "$ref": "#/components/parameters/Content-Type" } ] } }, "/connectors/KnCustomK05/KnCustomK05/@SqNo/{SqNo}": { "parameters": [ { "schema": { "type": "string" }, "name": "SqNo", "in": "path", "required": true, "description": "Sequence number" } ], "delete": { "summary": "Custom file 05", "operationId": "DELETE_KnCustomK05", "description": "\n\r https://help.afas.nl/help/NL/SE/App_Conect_UpdDsc_160.htm", "responses": { "400": { "$ref": "#/components/responses/400" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "404": { "$ref": "#/components/responses/404" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" }, "200": { "$ref": "#/components/responses/200" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Custom file 05" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" } ] } }, "/connectors/KnCustomK06": { "post": { "summary": "Custom file 06", "description": "\n\r https://help.afas.nl/help/NL/SE/App_Conect_UpdDsc_160.htm", "operationId": "POST_KnCustomK06", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/KnCustomK06_POST" } } } }, "responses": { "201": { "description": "Created" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Custom file 06" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" }, { "$ref": "#/components/parameters/Content-Type" } ] }, "put": { "summary": "Custom file 06", "description": "\n\r https://help.afas.nl/help/NL/SE/App_Conect_UpdDsc_160.htm", "operationId": "PUT_KnCustomK06", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/KnCustomK06_PUT" } } } }, "responses": { "201": { "description": "Created" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Custom file 06" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" }, { "$ref": "#/components/parameters/Content-Type" } ] } }, "/connectors/KnCustomK06/KnCustomK06/@SqNo/{SqNo}": { "parameters": [ { "schema": { "type": "string" }, "name": "SqNo", "in": "path", "required": true, "description": "Sequence number" } ], "delete": { "summary": "Custom file 06", "operationId": "DELETE_KnCustomK06", "description": "\n\r https://help.afas.nl/help/NL/SE/App_Conect_UpdDsc_160.htm", "responses": { "400": { "$ref": "#/components/responses/400" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "404": { "$ref": "#/components/responses/404" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" }, "200": { "$ref": "#/components/responses/200" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Custom file 06" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" } ] } }, "/connectors/KnCustomK07": { "post": { "summary": "Custom file 07", "description": "\n\r https://help.afas.nl/help/NL/SE/App_Conect_UpdDsc_160.htm", "operationId": "POST_KnCustomK07", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/KnCustomK07_POST" } } } }, "responses": { "201": { "description": "Created" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Custom file 07" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" }, { "$ref": "#/components/parameters/Content-Type" } ] }, "put": { "summary": "Custom file 07", "description": "\n\r https://help.afas.nl/help/NL/SE/App_Conect_UpdDsc_160.htm", "operationId": "PUT_KnCustomK07", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/KnCustomK07_PUT" } } } }, "responses": { "201": { "description": "Created" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Custom file 07" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" }, { "$ref": "#/components/parameters/Content-Type" } ] } }, "/connectors/KnCustomK07/KnCustomK07/@SqNo/{SqNo}": { "parameters": [ { "schema": { "type": "string" }, "name": "SqNo", "in": "path", "required": true, "description": "Sequence number" } ], "delete": { "summary": "Custom file 07", "operationId": "DELETE_KnCustomK07", "description": "\n\r https://help.afas.nl/help/NL/SE/App_Conect_UpdDsc_160.htm", "responses": { "400": { "$ref": "#/components/responses/400" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "404": { "$ref": "#/components/responses/404" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" }, "200": { "$ref": "#/components/responses/200" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Custom file 07" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" } ] } }, "/connectors/KnCustomK08": { "post": { "summary": "Custom file 08", "description": "\n\r https://help.afas.nl/help/NL/SE/App_Conect_UpdDsc_160.htm", "operationId": "POST_KnCustomK08", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/KnCustomK08_POST" } } } }, "responses": { "201": { "description": "Created" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Custom file 08" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" }, { "$ref": "#/components/parameters/Content-Type" } ] }, "put": { "summary": "Custom file 08", "description": "\n\r https://help.afas.nl/help/NL/SE/App_Conect_UpdDsc_160.htm", "operationId": "PUT_KnCustomK08", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/KnCustomK08_PUT" } } } }, "responses": { "201": { "description": "Created" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Custom file 08" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" }, { "$ref": "#/components/parameters/Content-Type" } ] } }, "/connectors/KnCustomK08/KnCustomK08/@SqNo/{SqNo}": { "parameters": [ { "schema": { "type": "string" }, "name": "SqNo", "in": "path", "required": true, "description": "Sequence number" } ], "delete": { "summary": "Custom file 08", "operationId": "DELETE_KnCustomK08", "description": "\n\r https://help.afas.nl/help/NL/SE/App_Conect_UpdDsc_160.htm", "responses": { "400": { "$ref": "#/components/responses/400" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "404": { "$ref": "#/components/responses/404" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" }, "200": { "$ref": "#/components/responses/200" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Custom file 08" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" } ] } }, "/connectors/KnCustomK09": { "post": { "summary": "Custom file 09", "description": "\n\r https://help.afas.nl/help/NL/SE/App_Conect_UpdDsc_160.htm", "operationId": "POST_KnCustomK09", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/KnCustomK09_POST" } } } }, "responses": { "201": { "description": "Created" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Custom file 09" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" }, { "$ref": "#/components/parameters/Content-Type" } ] }, "put": { "summary": "Custom file 09", "description": "\n\r https://help.afas.nl/help/NL/SE/App_Conect_UpdDsc_160.htm", "operationId": "PUT_KnCustomK09", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/KnCustomK09_PUT" } } } }, "responses": { "201": { "description": "Created" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Custom file 09" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" }, { "$ref": "#/components/parameters/Content-Type" } ] } }, "/connectors/KnCustomK09/KnCustomK09/@SqNo/{SqNo}": { "parameters": [ { "schema": { "type": "string" }, "name": "SqNo", "in": "path", "required": true, "description": "Sequence number" } ], "delete": { "summary": "Custom file 09", "operationId": "DELETE_KnCustomK09", "description": "\n\r https://help.afas.nl/help/NL/SE/App_Conect_UpdDsc_160.htm", "responses": { "400": { "$ref": "#/components/responses/400" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "404": { "$ref": "#/components/responses/404" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" }, "200": { "$ref": "#/components/responses/200" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Custom file 09" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" } ] } }, "/connectors/KnCustomK10": { "post": { "summary": "Custom file 10", "description": "\n\r https://help.afas.nl/help/NL/SE/App_Conect_UpdDsc_160.htm", "operationId": "POST_KnCustomK10", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/KnCustomK10_POST" } } } }, "responses": { "201": { "description": "Created" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Custom file 10" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" }, { "$ref": "#/components/parameters/Content-Type" } ] }, "put": { "summary": "Custom file 10", "description": "\n\r https://help.afas.nl/help/NL/SE/App_Conect_UpdDsc_160.htm", "operationId": "PUT_KnCustomK10", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/KnCustomK10_PUT" } } } }, "responses": { "201": { "description": "Created" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Custom file 10" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" }, { "$ref": "#/components/parameters/Content-Type" } ] } }, "/connectors/KnCustomK10/KnCustomK10/@SqNo/{SqNo}": { "parameters": [ { "schema": { "type": "string" }, "name": "SqNo", "in": "path", "required": true, "description": "Sequence number" } ], "delete": { "summary": "Custom file 10", "operationId": "DELETE_KnCustomK10", "description": "\n\r https://help.afas.nl/help/NL/SE/App_Conect_UpdDsc_160.htm", "responses": { "400": { "$ref": "#/components/responses/400" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "404": { "$ref": "#/components/responses/404" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" }, "200": { "$ref": "#/components/responses/200" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Custom file 10" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" } ] } }, "/connectors/KnDayContract": { "post": { "summary": "Day contract", "description": "\n\r https://help.afas.nl/help/NL/SE/App_Conect_UpdDsc_KnDayContract.htm", "operationId": "POST_KnDayContract", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/KnDayContract_POST" }, "examples": { "insert": { "value": { "KnDayContract": { "Element": { "@EmId": "DVE5", "Fields": { "ViSe": "I", "Bl": "0", "LwOb": "0", "LwTg": "0" }, "Objects": { "KnPerson": { "Element": { "Fields": { "PadAdr": "1", "AutoNum": "1", "MatchPer": "7", "SeNm": "ZOEKNAAM", "FiNm": "Jan", "In": "J.A.", "LaNm": "Jansen", "SpNm": "1", "NmBi": "Jansen", "ViUs": "0", "ViGe": "M", "DaBi": "1980-05-10", "TtId": "ALG", "CoLw": "BE" }, "Objects": { "KnBasicAddressAdr": { "Element": { "Fields": { "CoId": "NL", "PbAd": "0", "Ad": "Boerenerf", "HmNr": "105", "ZpCd": "3833LC", "Rs": "Leusden", "BeginDate": "2008-03-01" } } }, "KnBasicAddressPad": { "Element": { "Fields": { "CoId": "NL", "PbAd": "0", "Ad": "Boerenerf", "HmNr": "105", "ZpCd": "3833LC", "Rs": "Leusden", "BeginDate": "2008-03-01" } } } } } }, "AfasContract": { "Element": { "@DaBe": "2016-03-01", "Fields": { "ClId": "1", "WcId": "1", "ApCo": "O", "CmId": "01", "EmMt": "1", "ViEt": "F", "ViTo": "NM", "RtDa": "0" } } }, "AfasOrgunitFunction": { "Element": { "@DaBe": "2016-03-01", "Fields": { "DpId": "001202", "FuId": "202", "CcId": "Profit" } } }, "AfasTimeTable": { "Element": { "@DaBg": "2016-03-01", "Fields": { "SeNo": "51647801" } } }, "AfasSalary": { "Element": { "@DaBe": "2016-03-01", "Fields": { "SaPe": "V", "EmSa": "3000.00", "NtSa": "0", "PtId": "5", "SaYe": "0", "ApSc": "0" } } }, "AfasBankInfo": { "Element": { "@AcId": "BE04377062952431", "@NoBk": "0", "Fields": { "SaAc": "1", "BkTp": "56000" } } } } } } } } } } } }, "responses": { "201": { "description": "Created" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Day contract" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" }, { "$ref": "#/components/parameters/Content-Type" } ] }, "put": { "summary": "Day contract", "description": "\n\r https://help.afas.nl/help/NL/SE/App_Conect_UpdDsc_KnDayContract.htm", "operationId": "PUT_KnDayContract", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/KnDayContract_PUT" }, "examples": { "update": { "value": { "KnDayContract": { "Element": { "@EmId": "DVE4", "Fields": { "ViSe": "I", "Bl": "0", "LwOb": "0", "LwTg": "0", "ViPa": "P", "BlPa": "false", "PsPv": "A", "YsPv": "A", "SeAt": "false", "BeVo": "false" }, "Objects": [ { "AfasContract": { "Element": { "@DaBe": "2016-03-01", "Fields": { "ClId": "1", "WcId": "1", "ApCo": "O", "CmId": "01", "EmMt": "1", "ViEt": "F", "ViTo": "NM", "RtDa": "0" } } } }, { "AfasOrgunitFunction": { "Element": { "@DaBe": "2016-03-01", "Fields": { "DpId": "001202", "FuId": "202", "CcId": "Profit" } } } }, { "AfasTimeTable": { "Element": { "@DaBg": "2016-03-01", "Fields": { "SeNo": "51647801" } } } }, { "AfasSalary": { "Element": { "@DaBe": "2016-03-01", "Fields": { "SaPe": "V", "EmSa": "3000.00", "NtSa": "0", "PtId": "5", "SaYe": "0", "ApSc": "0" } } } } ] } } } } } } } }, "responses": { "201": { "description": "Created" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Day contract" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" }, { "$ref": "#/components/parameters/Content-Type" } ] } }, "/connectors/KnDayContract/KnDayContract/@EmId/{EmId}": { "parameters": [ { "schema": { "type": "string" }, "name": "EmId", "in": "path", "required": true, "description": "Employee" } ], "delete": { "summary": "Day contract", "operationId": "DELETE_KnDayContract", "description": "\n\r https://help.afas.nl/help/NL/SE/App_Conect_UpdDsc_KnDayContract.htm", "responses": { "400": { "$ref": "#/components/responses/400" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "404": { "$ref": "#/components/responses/404" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" }, "200": { "$ref": "#/components/responses/200" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Day contract" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" } ] } }, "/connectors/KnPocketNotStatus": { "post": { "summary": "Pocket notification status", "description": "\n\r ", "operationId": "POST_KnPocketNotStatus", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/KnPocketNotStatus_POST" } } } }, "responses": { "201": { "description": "Created" }, "401": { "$ref": "#/components/responses/401" }, "403": { "$ref": "#/components/responses/403" }, "413": { "$ref": "#/components/responses/413" }, "500": { "$ref": "#/components/responses/500" }, "503": { "$ref": "#/components/responses/503" } }, "security": [ { "AfasToken": [] } ], "tags": [ "Pocket notification status" ], "parameters": [ { "$ref": "#/components/parameters/Accept-Language" }, { "$ref": "#/components/parameters/Content-Type" } ] } } }, "tags": [ { "name": "GET", "description": "GET" }, { "name": "API Info", "description": "API Info" }, { "name": "Generate counter/direct invoices", "description": "Generate counter/direct invoices" }, { "name": "Receipt (Pocket)", "description": "Receipt (Pocket)" }, { "name": "Employee/suspension", "description": "Employee/suspension" }, { "name": "InSite declaration", "description": "InSite declaration" }, { "name": "Employee address change InSite", "description": "Employee address change InSite" }, { "name": "Employee payroll account change InSite", "description": "Employee payroll account change InSite" }, { "name": "Course", "description": "Course" }, { "name": "Change in days worked from home InSite", "description": "Change in days worked from home InSite" }, { "name": "Change appointment basis", "description": "Change appointment basis" }, { "name": "Employee working week transition", "description": "Employee working week transition" }, { "name": "Employee change (InSite)", "description": "Employee change (InSite)" }, { "name": "Timetable calendar", "description": "Timetable calendar" }, { "name": "Favourite trip", "description": "Favourite trip" }, { "name": "Review", "description": "Review" }, { "name": "Means of transport", "description": "Means of transport" }, { "name": "Family member", "description": "Family member" }, { "name": "Choice model", "description": "Choice model" }, { "name": "Time recording line Social Secretariat", "description": "Time recording line Social Secretariat" }, { "name": "Custom file 01", "description": "Custom file 01" }, { "name": "Custom file 02", "description": "Custom file 02" }, { "name": "Custom file 03", "description": "Custom file 03" }, { "name": "Custom file 04", "description": "Custom file 04" }, { "name": "Custom file 05", "description": "Custom file 05" }, { "name": "Custom file 06", "description": "Custom file 06" }, { "name": "Custom file 07", "description": "Custom file 07" }, { "name": "Custom file 08", "description": "Custom file 08" }, { "name": "Custom file 09", "description": "Custom file 09" }, { "name": "Custom file 10", "description": "Custom file 10" }, { "name": "Day contract", "description": "Day contract" }, { "name": "Pocket notification status", "description": "Pocket notification status" } ], "components": { "schemas": { "FbDeliveryNoteFast_POST": { "type": "object", "properties": { "FbDeliveryNoteFast": { "type": "object", "properties": { "Element": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "Ye": { "type": "integer", "description": "Year", "format": "" }, "PeId": { "type": "integer", "description": "Period", "format": "" }, "OrNu": { "type": "string", "maxLength": 12, "description": "Invoice number", "format": "" }, "OrDa": { "type": "string", "description": "Date", "format": "date" }, "DbId": { "type": "string", "maxLength": 16, "description": "Sales contact", "format": "" }, "RfCs": { "type": "string", "maxLength": 100, "description": "Order number/reference", "format": "" }, "PaTp": { "type": "string", "maxLength": 5, "description": "Payment method", "format": "" }, "CrOr": { "type": "boolean", "description": "Credit order", "format": "" }, "CtI1": { "type": "integer", "description": "Deviating contact", "format": "" }, "Fref": { "type": "string", "maxLength": 32, "description": "Invoice reference", "format": "" }, "VaIt": { "type": "string", "enum": [ "1", "10", "11", "14", "2", "3", "4", "5", "6", "7", "8" ], "maxLength": 10, "description": "Item type\n1 = Work type;\n10 = Production indicator;\n11 = Dough;\n14 = Item dimension total;\n2 = Article;\n3 = Text;\n4 = Sub-total;\n5 = Allowance;\n6 = Costs;\n7 = Assembled item;\n8 = Course;", "format": "" }, "ItCd": { "type": "string", "maxLength": 40, "description": "Itemcode", "format": "" }, "Ds": { "type": "string", "maxLength": 255, "description": "Description", "format": "" }, "Qu": { "type": "number", "description": "Number", "format": "number" }, "Upri": { "type": "number", "description": "Price per unit", "format": "number" }, "AuPr": { "type": "boolean", "description": "Automatically determine the price", "format": "" }, "V1Cd": { "type": "string", "maxLength": 16, "description": "Exception axis code 1", "format": "" }, "UnKe": { "type": "string", "maxLength": 100, "description": "Unique feature", "format": "" } }, "required": [ "Ye", "PeId", "OrNu", "OrDa", "DbId", "VaIt", "ItCd", "Qu" ] } } } } } } }, "FbGoodsReceivedPocket_POST": { "type": "object", "properties": { "FbGoodsReceived": { "type": "object", "properties": { "Element": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "OrNu": { "type": "string", "maxLength": 12, "description": "Number", "format": "" }, "OrDa": { "type": "string", "description": "Date", "format": "date" }, "CrId": { "type": "string", "maxLength": 16, "description": "Purchase contact", "format": "" }, "SoOr": { "type": "string", "maxLength": 12, "description": "Corresponding order", "format": "" }, "DaDe": { "type": "string", "description": "Required delivery date", "format": "date" }, "DaPr": { "type": "string", "description": "Delivery date (promised)", "format": "date" }, "CuId": { "type": "string", "maxLength": 3, "description": "Currency", "format": "" }, "Rate": { "type": "number", "description": "Exchange rate", "format": "number" }, "RfCs": { "type": "string", "maxLength": 50, "description": "Purchase contact reference", "format": "" }, "VaDu": { "type": "string", "maxLength": 3, "description": "VAT duty", "format": "" }, "PaCd": { "type": "string", "maxLength": 5, "description": "Payment condition", "format": "" }, "PaTp": { "type": "string", "maxLength": 5, "description": "Payment method", "format": "" }, "Re": { "type": "string", "description": "Remark", "format": "byte" }, "QuTt": { "type": "number", "description": "Total number", "format": "number" }, "Unit": { "type": "integer", "description": "Administration", "format": "" }, "Coll": { "type": "boolean", "description": "Automatic payment", "format": "" }, "CrOr": { "type": "boolean", "description": "Credit order", "format": "" }, "War": { "type": "string", "maxLength": 15, "description": "Warehouse", "format": "" }, "DaAc": { "type": "string", "description": "Actual delivery date", "format": "date" }, "LgId": { "type": "string", "maxLength": 5, "description": "Language", "format": "" }, "CsTy": { "type": "string", "maxLength": 1, "description": "CBS types", "format": "" }, "VaTr": { "type": "string", "enum": [ "1", "2", "3", "4", "5", "7", "8", "9" ], "maxLength": 20, "description": "Type of Statistics Netherlands transport\n1 = Shipping;\n2 = Rail transport;\n3 = Road transport;\n4 = Air traffic;\n5 = Shipping by post;\n7 = Pipeline transport;\n8 = Inland navigation;\n9 = Own transportation;", "format": "" }, "VaSt": { "type": "string", "enum": [ "00", "01", "02", "03", "04", "05", "10" ], "maxLength": 20, "description": "'CBS' statistical system\n00 = Regular import/ICV and export/ICL;\n01 = Onward supply (ICL) of unprocessed goods to another EU member state;\n02 = Resale (ICL or export) of unprocessed goods;\n03 = Import of goods, delivery to others/export of raw materials;\n04 = Acquisition/delivery prior to own stock transfer (fictitious dispatch);\n05 = Acquisition/delivery after own stock transfer (fictitious dispatch);\n10 = Active customs processing with application of the repayment system;", "format": "" }, "VaGs": { "type": "string", "enum": [ "6", "7" ], "maxLength": 20, "description": "'CBS' goods flow\n6 = Import/intracommunity acquisition (ICV);\n7 = Export/intracommunity delivery (ICL);", "format": "" }, "VaTa": { "type": "string", "enum": [ "1", "11", "12", "2", "21", "22", "23", "3", "31", "32", "33", "34", "4", "41", "42", "5", "51", "52", "6", "60", "7", "71", "72", "8", "80", "9", "91", "99" ], "maxLength": 20, "description": "'CBS' transaction\n1 = Transactions that are coupled to a transfer of ownership with financial or other consideration;\n11 = Definitive purchases or sales except for direct trade with/by private consumers;\n12 = Direct trade with/by private consumers (including distance selling);\n2 = Return shipments and free replacement of products after registration of the original transaction;\n21 = Return shipment of products;\n22 = Replacement of returned products;\n23 = Replacement (for example, under guarantee) for products that have not been returned;\n3 = Transactions that are coupled to a transfer of ownership without financial or other consideration;\n31 = Movements from one to another storage location except deliveries in consignment or on-demand stock;\n32 = Visual or test shipment including deliveries in assignation or through on-demand stock;\n33 = Financial lease (rent-to-buy);\n34 = Transactions that are coupled to a transfer of ownership without financial consideration;\n4 = Operations with a view of contract processing without transfer of ownership to the processor;\n41 = Products that are expected to return to the original member state of shipment/export country;\n42 = Products that are expected not to return to the original member state of shipment/export country;\n5 = Operations after contract processing (without transfer of ownership to the processor);\n51 = Products that return to the original member state of shipments or the export country;\n52 = Products that do not return to the original member state of shipments or the export country;\n6 = Temporary import and export and return of temporary import and export;\n60 = Special transactions registered for national objectives such as repair shipments;\n7 = Operations within the framework of joint fabrication (defence and intergovernmental);\n71 = Placing products into free circulation in an EU member state incl. later shipment to another mr. st.;\n72 = Transport of products from one EU member state to another EU member state under the export procedure;\n8 = Transactions coupled with the delivery of construction materials within the framework of a contract;\n80 = Transactions coupled with the delivery of construction materials within the framework of a contract;\n9 = Other transactions; not specified elsewhere;\n91 = Rental, loan for use or operational lease longer than 24 months;\n99 = Andere;", "format": "" }, "CoId": { "type": "string", "maxLength": 3, "description": "CBS country of origin", "format": "" }, "VaBc": { "type": "string", "enum": [ "0", "1", "2", "3", "4", "5", "6", "7", "8" ], "maxLength": 20, "description": "Barcode type\n0 = No check;\n1 = Barcode EAN8;\n2 = Barcode UPC;\n3 = Barcode EAN13;\n4 = Barcode EAN14;\n5 = Barcode SSCC;\n6 = Code 128;\n7 = Interleaved 2/5;\n8 = Interleaved 2/5 (checksum);", "format": "" }, "BaCo": { "type": "string", "maxLength": 30, "description": "Barcode", "format": "" }, "PrLa": { "type": "string", "maxLength": 32, "description": "Report", "format": "" }, "JoCo": { "type": "string", "maxLength": 6, "description": "Journal invoice", "format": "" }, "PuIn": { "type": "boolean", "description": "Generate purchase invoices", "format": "" }, "SbAt": { "type": "integer", "description": "Attachment", "format": "" }, "CtI1": { "type": "integer", "description": "Deviating contact", "format": "" }, "PrId": { "type": "string", "maxLength": 15, "description": "Project", "format": "" }, "PrSt": { "type": "string", "maxLength": 15, "description": "Project phase", "format": "" }, "BcDa": { "type": "string", "maxLength": 15, "description": "Delivery organisation/person", "format": "" }, "DlAd": { "type": "integer", "description": "Delivery address", "format": "" }, "CdI1": { "type": "integer", "description": "Contact1", "format": "" }, "SignatureFileId1": { "type": "string", "maxLength": 32, "description": "Handtekening1 bestand", "format": "" }, "SignatureFileName1": { "type": "string", "maxLength": 255, "description": "Handtekening1 naam bestand", "format": "" }, "SignatureFileStream1": { "type": "string", "description": "Handtekening1 afbeelding", "format": "byte" }, "CdI2": { "type": "integer", "description": "Contact2", "format": "" }, "SignatureFileId2": { "type": "string", "maxLength": 32, "description": "Handtekening2 bestand", "format": "" }, "SignatureFileName2": { "type": "string", "maxLength": 255, "description": "Handtekening2 naam bestand", "format": "" }, "SignatureFileStream2": { "type": "string", "description": "Handtekening2 afbeelding", "format": "byte" }, "FreeCom": { "type": "string", "enum": [ "0", "1" ], "maxLength": 1, "description": "Verplichtingen vrijgeven\n0 = Nooit;\n1 = Altijd;", "format": "" }, "PocketMode": { "type": "string", "maxLength": 32, "description": "Pocket Mode", "format": "" } }, "required": [ "CrId" ] }, "Objects": { "type": "array", "items": { "type": "object", "properties": { "FbGoodsReceivedLines": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "VaIt": { "type": "string", "enum": [ "1", "10", "11", "14", "2", "3", "4", "5", "6", "7", "8" ], "maxLength": 10, "description": "Item type\n1 = Work type;\n10 = Production indicator;\n11 = Dough;\n14 = Item dimension total;\n2 = Article;\n3 = Text;\n4 = Sub-total;\n5 = Allowance;\n6 = Costs;\n7 = Assembled item;\n8 = Course;", "format": "" }, "ItCd": { "type": "string", "maxLength": 40, "description": "Itemcode", "format": "" }, "ItSp": { "type": "string", "maxLength": 30, "description": "ItemcodeSupplier", "format": "" }, "Ds": { "type": "string", "maxLength": 255, "description": "Description", "format": "" }, "VaRc": { "type": "string", "maxLength": 4, "description": "VAT rate group", "format": "" }, "BiUn": { "type": "string", "maxLength": 15, "description": "Unit", "format": "" }, "QuUn": { "type": "number", "description": "Number of units", "format": "number" }, "QuLe": { "type": "number", "description": "Length", "format": "number" }, "QuWi": { "type": "number", "description": "Width", "format": "number" }, "QuHe": { "type": "number", "description": "Height", "format": "number" }, "Qu": { "type": "number", "description": "Received quantity", "format": "number" }, "PrLi": { "type": "string", "maxLength": 5, "description": "Price list", "format": "" }, "War": { "type": "string", "maxLength": 15, "description": "Warehouse", "format": "" }, "VaWt": { "type": "string", "enum": [ "0", "1", "2", "3", "4", "5" ], "maxLength": 20, "description": "Weight unit\n0 = No weight;\n1 = Microgram (µg);\n2 = Milligram (mg);\n3 = Gram (g);\n4 = Kilogram (kg);\n5 = Ton;", "format": "" }, "NeWe": { "type": "number", "description": "Net weight", "format": "number" }, "GrWe": { "type": "number", "description": "Gross weight", "format": "number" }, "Upri": { "type": "number", "description": "Price per unit", "format": "number" }, "CoPr": { "type": "number", "description": "Cost price", "format": "number" }, "VaAD": { "type": "string", "enum": [ "0", "1", "2", "3" ], "maxLength": 20, "description": "Discount allowed\n0 = Invoice and line discount;\n1 = Invoice discount;\n2 = Line discount;\n3 = No invoice and line discount;", "format": "" }, "PRDc": { "type": "number", "description": "% Line discount", "format": "number" }, "ARDc": { "type": "number", "description": "Amount line discount", "format": "number" }, "MaAD": { "type": "boolean", "description": "Manual line discount amount", "format": "" }, "SoOr": { "type": "string", "maxLength": 12, "description": "Bijbehorende order", "format": "" }, "SoGu": { "type": "string", "maxLength": 38, "description": "GUID source line", "format": "uuid" }, "Re": { "type": "string", "description": "Remark", "format": "byte" }, "PrId": { "type": "string", "maxLength": 15, "description": "Project", "format": "" }, "PrSt": { "type": "string", "maxLength": 15, "description": "Project phase", "format": "" }, "GuLi": { "type": "string", "maxLength": 38, "description": "GUID line", "format": "uuid" }, "StL1": { "type": "string", "maxLength": 10, "description": "Article dimension code 1", "format": "" }, "StL2": { "type": "string", "maxLength": 10, "description": "Article dimension code 2", "format": "" }, "V1Cd": { "type": "string", "maxLength": 16, "description": "Exception axis code 1", "format": "" }, "V2Cd": { "type": "string", "maxLength": 16, "description": "Exception axis code 2", "format": "" }, "V3Cd": { "type": "string", "maxLength": 16, "description": "Exception axis code 3", "format": "" }, "V4Cd": { "type": "string", "maxLength": 16, "description": "Exception axis code 4", "format": "" }, "V5Cd": { "type": "string", "maxLength": 16, "description": "Exception axis code 5", "format": "" }, "Di01": { "type": "integer", "description": "(Not used)", "format": "" }, "Di02": { "type": "integer", "description": "(Not used)", "format": "" }, "Di03": { "type": "integer", "description": "(Not used)", "format": "" }, "Di04": { "type": "integer", "description": "(Not used)", "format": "" }, "Di05": { "type": "integer", "description": "(Not used)", "format": "" }, "MoId": { "type": "string", "maxLength": 15, "description": "Monitoring code", "format": "" }, "CoTy": { "type": "string", "enum": [ "MA", "A", "ME", "OA", "O" ], "maxLength": 20, "description": "Type of project costs\nMA = Material;\nA = Labour;\nME = Equipment;\nOA = Subcontracting;\nO = Other costs;", "format": "" } }, "required": [ "VaIt", "ItCd", "ItSp", "BiUn", "QuUn" ] }, "Objects": { "type": "array", "items": { "type": "object", "properties": { "FbOrderBatchLines": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "BaNu": { "type": "string", "maxLength": 100, "description": "Partijnummer", "format": "" }, "BiUn": { "type": "string", "maxLength": 15, "description": "Unit", "format": "" }, "QuUn": { "type": "number", "description": "Number of units", "format": "number" }, "Qu": { "type": "number", "description": "Number", "format": "number" }, "Re": { "type": "string", "description": "Remark", "format": "byte" }, "QuLe": { "type": "number", "description": "Length", "format": "number" }, "QuWi": { "type": "number", "description": "Width", "format": "number" }, "QuHe": { "type": "number", "description": "Height", "format": "number" }, "DaEx": { "type": "string", "description": "Expiry date", "format": "date" } }, "required": [ "BaNu", "BiUn", "QuUn" ] }, "Objects": { "type": "array", "items": { "type": "object", "properties": { "FbOrderLocationLines": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "Loc": { "type": "string", "maxLength": 15, "description": "Location", "format": "" }, "Qu": { "type": "number", "description": "Number", "format": "number" } }, "required": [ "Loc", "Qu" ] } } } } } } } } } } } } } }, "FbOrderSerialLines": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "SeNu": { "type": "string", "maxLength": 100, "description": "Serienummer", "format": "" }, "BiUn": { "type": "string", "maxLength": 15, "description": "Unit", "format": "" }, "QuUn": { "type": "number", "description": "Number of units", "format": "number" }, "Qu": { "type": "number", "description": "Number", "format": "number" }, "Re": { "type": "string", "description": "Remark", "format": "byte" } }, "required": [ "SeNu", "BiUn", "QuUn" ] }, "Objects": { "type": "array", "items": { "type": "object", "properties": { "FbOrderLocationLines": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "Loc": { "type": "string", "maxLength": 15, "description": "Location", "format": "" }, "Qu": { "type": "number", "description": "Number", "format": "number" } }, "required": [ "Loc", "Qu" ] } } } } } } } } } } } } } }, "FbOrderLocationLines": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "Loc": { "type": "string", "maxLength": 15, "description": "Location", "format": "" }, "Qu": { "type": "number", "description": "Number", "format": "number" } }, "required": [ "Loc", "Qu" ] } } } } } } } } } } } } } }, "FbGoodsReceivedSubject": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "BasicContact": { "type": "string", "maxLength": 255, "description": "BasicContact", "format": "" }, "ProjectId": { "type": "string", "maxLength": 255, "description": "ProjectId", "format": "" }, "SubjectTypeId": { "type": "string", "maxLength": 255, "description": "SubjectTypeId", "format": "" } } }, "Objects": { "type": "array", "items": { "type": "object", "properties": { "FbGoodsReceivedSubjectAttachment": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "FileName": { "type": "string", "maxLength": 255, "description": "FileName", "format": "" }, "FileId": { "type": "string", "maxLength": 32, "description": "File Id", "format": "" }, "FileStream": { "type": "string", "description": "File as Base64 string", "format": "byte" } } } } } } } } } } } } } } } } } } } } } } } } }, "FbGoodsReceivedPocket_PUT": { "type": "object", "properties": { "FbGoodsReceived": { "type": "object", "properties": { "Element": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "OrNu": { "type": "string", "maxLength": 12, "description": "Number", "format": "" }, "OrDa": { "type": "string", "description": "Date", "format": "date" }, "CrId": { "type": "string", "maxLength": 16, "description": "Purchase contact", "format": "" }, "SoOr": { "type": "string", "maxLength": 12, "description": "Corresponding order", "format": "" }, "DaDe": { "type": "string", "description": "Required delivery date", "format": "date" }, "DaPr": { "type": "string", "description": "Delivery date (promised)", "format": "date" }, "CuId": { "type": "string", "maxLength": 3, "description": "Currency", "format": "" }, "Rate": { "type": "number", "multipleOf": 1E-10, "description": "Exchange rate", "format": "float" }, "RfCs": { "type": "string", "maxLength": 50, "description": "Purchase contact reference", "format": "" }, "VaDu": { "type": "string", "maxLength": 3, "description": "VAT duty", "format": "" }, "PaCd": { "type": "string", "maxLength": 5, "description": "Payment condition", "format": "" }, "PaTp": { "type": "string", "maxLength": 5, "description": "Payment method", "format": "" }, "Re": { "type": "string", "description": "Remark", "format": "byte" }, "QuTt": { "type": "number", "multipleOf": 1E-08, "description": "Total number", "format": "float" }, "Unit": { "type": "integer", "description": "Administration", "format": "" }, "Coll": { "type": "boolean", "description": "Automatic payment", "format": "" }, "CrOr": { "type": "boolean", "description": "Credit order", "format": "" }, "War": { "type": "string", "maxLength": 15, "description": "Warehouse", "format": "" }, "DaAc": { "type": "string", "description": "Actual delivery date", "format": "date" }, "LgId": { "type": "string", "maxLength": 5, "description": "Language", "format": "" }, "CsTy": { "type": "string", "maxLength": 1, "description": "CBS types", "format": "" }, "VaTr": { "type": "string", "enum": [ "1", "2", "3", "4", "5", "7", "8", "9" ], "maxLength": 20, "description": "Type of Statistics Netherlands transport\n1 = Shipping;\n2 = Rail transport;\n3 = Road transport;\n4 = Air traffic;\n5 = Shipping by post;\n7 = Pipeline transport;\n8 = Inland navigation;\n9 = Own transportation;", "format": "" }, "VaSt": { "type": "string", "enum": [ "00", "01", "02", "03", "04", "05", "10" ], "maxLength": 20, "description": "'CBS' statistical system\n00 = Regular import/ICV and export/ICL;\n01 = Onward supply (ICL) of unprocessed goods to another EU member state;\n02 = Resale (ICL or export) of unprocessed goods;\n03 = Import of goods, delivery to others/export of raw materials;\n04 = Acquisition/delivery prior to own stock transfer (fictitious dispatch);\n05 = Acquisition/delivery after own stock transfer (fictitious dispatch);\n10 = Active customs processing with application of the repayment system;", "format": "" }, "VaGs": { "type": "string", "enum": [ "6", "7" ], "maxLength": 20, "description": "'CBS' goods flow\n6 = Import/intracommunity acquisition (ICV);\n7 = Export/intracommunity delivery (ICL);", "format": "" }, "VaTa": { "type": "string", "enum": [ "1", "11", "12", "2", "21", "22", "23", "3", "31", "32", "33", "34", "4", "41", "42", "5", "51", "52", "6", "60", "7", "71", "72", "8", "80", "9", "91", "99" ], "maxLength": 20, "description": "'CBS' transaction\n1 = Transactions that are coupled to a transfer of ownership with financial or other consideration;\n11 = Definitive purchases or sales except for direct trade with/by private consumers;\n12 = Direct trade with/by private consumers (including distance selling);\n2 = Return shipments and free replacement of products after registration of the original transaction;\n21 = Return shipment of products;\n22 = Replacement of returned products;\n23 = Replacement (for example, under guarantee) for products that have not been returned;\n3 = Transactions that are coupled to a transfer of ownership without financial or other consideration;\n31 = Movements from one to another storage location except deliveries in consignment or on-demand stock;\n32 = Visual or test shipment including deliveries in assignation or through on-demand stock;\n33 = Financial lease (rent-to-buy);\n34 = Transactions that are coupled to a transfer of ownership without financial consideration;\n4 = Operations with a view of contract processing without transfer of ownership to the processor;\n41 = Products that are expected to return to the original member state of shipment/export country;\n42 = Products that are expected not to return to the original member state of shipment/export country;\n5 = Operations after contract processing (without transfer of ownership to the processor);\n51 = Products that return to the original member state of shipments or the export country;\n52 = Products that do not return to the original member state of shipments or the export country;\n6 = Temporary import and export and return of temporary import and export;\n60 = Special transactions registered for national objectives such as repair shipments;\n7 = Operations within the framework of joint fabrication (defence and intergovernmental);\n71 = Placing products into free circulation in an EU member state incl. later shipment to another mr. st.;\n72 = Transport of products from one EU member state to another EU member state under the export procedure;\n8 = Transactions coupled with the delivery of construction materials within the framework of a contract;\n80 = Transactions coupled with the delivery of construction materials within the framework of a contract;\n9 = Other transactions; not specified elsewhere;\n91 = Rental, loan for use or operational lease longer than 24 months;\n99 = Andere;", "format": "" }, "CoId": { "type": "string", "maxLength": 3, "description": "CBS country of origin", "format": "" }, "VaBc": { "type": "string", "enum": [ "0", "1", "2", "3", "4", "5", "6", "7", "8" ], "maxLength": 20, "description": "Barcode type\n0 = No check;\n1 = Barcode EAN8;\n2 = Barcode UPC;\n3 = Barcode EAN13;\n4 = Barcode EAN14;\n5 = Barcode SSCC;\n6 = Code 128;\n7 = Interleaved 2/5;\n8 = Interleaved 2/5 (checksum);", "format": "" }, "BaCo": { "type": "string", "maxLength": 30, "description": "Barcode", "format": "" }, "PrLa": { "type": "string", "maxLength": 32, "description": "Report", "format": "" }, "JoCo": { "type": "string", "maxLength": 6, "description": "Journal invoice", "format": "" }, "PuIn": { "type": "boolean", "description": "Generate purchase invoices", "format": "" }, "SbAt": { "type": "integer", "description": "Attachment", "format": "" }, "CtI1": { "type": "integer", "description": "Deviating contact", "format": "" }, "PrId": { "type": "string", "maxLength": 15, "description": "Project", "format": "" }, "PrSt": { "type": "string", "maxLength": 15, "description": "Project phase", "format": "" }, "BcDa": { "type": "string", "maxLength": 15, "description": "Delivery organisation/person", "format": "" }, "DlAd": { "type": "integer", "description": "Delivery address", "format": "" }, "CdI1": { "type": "integer", "description": "Contact1", "format": "" }, "SignatureFileId1": { "type": "string", "maxLength": 32, "description": "Handtekening1 bestand", "format": "" }, "SignatureFileName1": { "type": "string", "maxLength": 255, "description": "Handtekening1 naam bestand", "format": "" }, "SignatureFileStream1": { "type": "string", "description": "Handtekening1 afbeelding", "format": "byte" }, "CdI2": { "type": "integer", "description": "Contact2", "format": "" }, "SignatureFileId2": { "type": "string", "maxLength": 32, "description": "Handtekening2 bestand", "format": "" }, "SignatureFileName2": { "type": "string", "maxLength": 255, "description": "Handtekening2 naam bestand", "format": "" }, "SignatureFileStream2": { "type": "string", "description": "Handtekening2 afbeelding", "format": "byte" }, "FreeCom": { "type": "string", "enum": [ "0", "1" ], "maxLength": 1, "description": "Verplichtingen vrijgeven\n0 = Nooit;\n1 = Altijd;", "format": "" }, "PocketMode": { "type": "string", "maxLength": 32, "description": "Pocket Mode", "format": "" } }, "required": [ "OrNu" ] }, "Objects": { "type": "array", "items": { "type": "object", "properties": { "FbGoodsReceivedLines": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "VaIt": { "type": "string", "enum": [ "1", "10", "11", "14", "2", "3", "4", "5", "6", "7", "8" ], "maxLength": 10, "description": "Item type\n1 = Work type;\n10 = Production indicator;\n11 = Dough;\n14 = Item dimension total;\n2 = Article;\n3 = Text;\n4 = Sub-total;\n5 = Allowance;\n6 = Costs;\n7 = Assembled item;\n8 = Course;", "format": "" }, "ItCd": { "type": "string", "maxLength": 40, "description": "Itemcode", "format": "" }, "ItSp": { "type": "string", "maxLength": 30, "description": "ItemcodeSupplier", "format": "" }, "Ds": { "type": "string", "maxLength": 255, "description": "Description", "format": "" }, "VaRc": { "type": "string", "maxLength": 4, "description": "VAT rate group", "format": "" }, "BiUn": { "type": "string", "maxLength": 15, "description": "Unit", "format": "" }, "QuUn": { "type": "number", "multipleOf": 1E-05, "description": "Number of units", "format": "float" }, "QuLe": { "type": "number", "multipleOf": 1E-05, "description": "Length", "format": "float" }, "QuWi": { "type": "number", "multipleOf": 1E-05, "description": "Width", "format": "float" }, "QuHe": { "type": "number", "multipleOf": 1E-05, "description": "Height", "format": "float" }, "Qu": { "type": "number", "multipleOf": 1E-05, "description": "Received quantity", "format": "float" }, "PrLi": { "type": "string", "maxLength": 5, "description": "Price list", "format": "" }, "War": { "type": "string", "maxLength": 15, "description": "Warehouse", "format": "" }, "VaWt": { "type": "string", "enum": [ "0", "1", "2", "3", "4", "5" ], "maxLength": 20, "description": "Weight unit\n0 = No weight;\n1 = Microgram (µg);\n2 = Milligram (mg);\n3 = Gram (g);\n4 = Kilogram (kg);\n5 = Ton;", "format": "" }, "NeWe": { "type": "number", "multipleOf": 0.001, "description": "Net weight", "format": "float" }, "GrWe": { "type": "number", "multipleOf": 0.001, "description": "Gross weight", "format": "float" }, "Upri": { "type": "number", "multipleOf": 1E-10, "description": "Price per unit", "format": "float" }, "CoPr": { "type": "number", "multipleOf": 1E-10, "description": "Cost price", "format": "float" }, "VaAD": { "type": "string", "enum": [ "0", "1", "2", "3" ], "maxLength": 20, "description": "Discount allowed\n0 = Invoice and line discount;\n1 = Invoice discount;\n2 = Line discount;\n3 = No invoice and line discount;", "format": "" }, "PRDc": { "type": "number", "multipleOf": 0.01, "description": "% Line discount", "format": "float" }, "ARDc": { "type": "number", "multipleOf": 1E-10, "description": "Amount line discount", "format": "float" }, "MaAD": { "type": "boolean", "description": "Manual line discount amount", "format": "" }, "SoOr": { "type": "string", "maxLength": 12, "description": "Bijbehorende order", "format": "" }, "SoGu": { "type": "string", "maxLength": 38, "description": "GUID source line", "format": "uuid" }, "Re": { "type": "string", "description": "Remark", "format": "byte" }, "PrId": { "type": "string", "maxLength": 15, "description": "Project", "format": "" }, "PrSt": { "type": "string", "maxLength": 15, "description": "Project phase", "format": "" }, "GuLi": { "type": "string", "maxLength": 38, "description": "GUID line", "format": "uuid" }, "StL1": { "type": "string", "maxLength": 10, "description": "Article dimension code 1", "format": "" }, "StL2": { "type": "string", "maxLength": 10, "description": "Article dimension code 2", "format": "" }, "V1Cd": { "type": "string", "maxLength": 16, "description": "Exception axis code 1", "format": "" }, "V2Cd": { "type": "string", "maxLength": 16, "description": "Exception axis code 2", "format": "" }, "V3Cd": { "type": "string", "maxLength": 16, "description": "Exception axis code 3", "format": "" }, "V4Cd": { "type": "string", "maxLength": 16, "description": "Exception axis code 4", "format": "" }, "V5Cd": { "type": "string", "maxLength": 16, "description": "Exception axis code 5", "format": "" }, "Di01": { "type": "integer", "description": "(Not used)", "format": "" }, "Di02": { "type": "integer", "description": "(Not used)", "format": "" }, "Di03": { "type": "integer", "description": "(Not used)", "format": "" }, "Di04": { "type": "integer", "description": "(Not used)", "format": "" }, "Di05": { "type": "integer", "description": "(Not used)", "format": "" }, "MoId": { "type": "string", "maxLength": 15, "description": "Monitoring code", "format": "" }, "CoTy": { "type": "string", "enum": [ "MA", "A", "ME", "OA", "O" ], "maxLength": 20, "description": "Type of project costs\nMA = Material;\nA = Labour;\nME = Equipment;\nOA = Subcontracting;\nO = Other costs;", "format": "" } } }, "Objects": { "type": "array", "items": { "type": "object", "properties": { "FbOrderBatchLines": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "BaNu": { "type": "string", "maxLength": 100, "description": "Partijnummer", "format": "" }, "BiUn": { "type": "string", "maxLength": 15, "description": "Unit", "format": "" }, "QuUn": { "type": "number", "multipleOf": 1E-05, "description": "Number of units", "format": "float" }, "Qu": { "type": "number", "multipleOf": 1E-05, "description": "Number", "format": "float" }, "Re": { "type": "string", "description": "Remark", "format": "byte" }, "QuLe": { "type": "number", "multipleOf": 1E-05, "description": "Length", "format": "float" }, "QuWi": { "type": "number", "multipleOf": 1E-05, "description": "Width", "format": "float" }, "QuHe": { "type": "number", "multipleOf": 1E-05, "description": "Height", "format": "float" }, "DaEx": { "type": "string", "description": "Expiry date", "format": "date" } } }, "Objects": { "type": "array", "items": { "type": "object", "properties": { "FbOrderLocationLines": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "Loc": { "type": "string", "maxLength": 15, "description": "Location", "format": "" }, "Qu": { "type": "number", "multipleOf": 1E-05, "description": "Number", "format": "float" } } } } } } } } } } } } } } } }, "FbOrderSerialLines": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "SeNu": { "type": "string", "maxLength": 100, "description": "Serienummer", "format": "" }, "BiUn": { "type": "string", "maxLength": 15, "description": "Unit", "format": "" }, "QuUn": { "type": "number", "multipleOf": 1E-05, "description": "Number of units", "format": "float" }, "Qu": { "type": "number", "multipleOf": 1E-05, "description": "Number", "format": "float" }, "Re": { "type": "string", "description": "Remark", "format": "byte" } } }, "Objects": { "type": "array", "items": { "type": "object", "properties": { "FbOrderLocationLines": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "Loc": { "type": "string", "maxLength": 15, "description": "Location", "format": "" }, "Qu": { "type": "number", "multipleOf": 1E-05, "description": "Number", "format": "float" } } } } } } } } } } } } } } } }, "FbOrderLocationLines": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "Loc": { "type": "string", "maxLength": 15, "description": "Location", "format": "" }, "Qu": { "type": "number", "multipleOf": 1E-05, "description": "Number", "format": "float" } } } } } } } } } } } } } } } }, "FbGoodsReceivedSubject": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "BasicContact": { "type": "string", "maxLength": 255, "description": "BasicContact", "format": "" }, "ProjectId": { "type": "string", "maxLength": 255, "description": "ProjectId", "format": "" }, "SubjectTypeId": { "type": "string", "maxLength": 255, "description": "SubjectTypeId", "format": "" } } }, "Objects": { "type": "array", "items": { "type": "object", "properties": { "FbGoodsReceivedSubjectAttachment": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "FileName": { "type": "string", "maxLength": 255, "description": "FileName", "format": "" }, "FileId": { "type": "string", "maxLength": 32, "description": "File Id", "format": "" }, "FileStream": { "type": "string", "description": "File as Base64 string", "format": "byte" } } } } } } } } } } } } } } } } } } } } } } } } }, "HrCareerBreak_POST": { "type": "object", "properties": { "HrCareerBreak": { "type": "object", "properties": { "Element": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "Id": { "type": "integer", "description": "Line number", "format": "" }, "EmId": { "type": "string", "maxLength": 15, "description": "Employee", "format": "" }, "DvSn": { "type": "integer", "description": "Employment", "format": "" }, "DaBe": { "type": "string", "description": "Start date", "format": "date" }, "DaEn": { "type": "string", "description": "End date", "format": "date" }, "CoIn": { "type": "string", "enum": [ "1", "2", "3", "4" ], "maxLength": 20, "description": "Suspension\n1 = Full suspension;\n2 = Partial suspension;\n3 = Reduction of wages;\n4 = Group leave with unemployment;", "format": "" }, "CoIc": { "type": "string", "enum": [ "001", "002", "003", "004", "005", "006", "007", "008", "011", "012" ], "maxLength": 20, "description": "Suspension type\n001 = Time credit;\n002 = Long-term sick;\n003 = Military service;\n004 = Parental leave with RVA (Belgian National Employment Office) benefits;\n005 = Parental leave without RVA (Belgian National Employment Office) benefits;\n006 = Palliative leave; care of a seriously sick family member;\n007 = Z-beroep loopbaanonderbreking;\n008 = Partial work resumption;\n011 = Unemployable due to group shutdown and annual holiday;\n012 = Unemployable due to CLA group shutdown - leave;", "format": "" }, "CoIt": { "type": "string", "enum": [ "01", "02", "03", "04", "05", "06", "07" ], "maxLength": 20, "description": "Suspension type\n01 = Crisis time credit;\n02 = Progressive work resumption due to being sick;\n03 = Progressive work resumption after industrial accident;\n04 = Partial pregnancy break/breastfeeding work removal;\n05 = Fixed period for the landingsbaan (system of career breaks and time credit);\n06 = Landingsbaan for an indefinite period;\n07 = Other;", "format": "" }, "CoTc": { "type": "string", "enum": [ "1", "2", "3" ], "maxLength": 20, "description": "Time credit type\n1 = Motivated time credit;\n2 = Not - motivated time credit;\n3 = Time credit end of career;", "format": "" }, "CoRt": { "type": "string", "enum": [ "01", "02", "03", "04", "05", "06" ], "maxLength": 20, "description": "Time credit reason\n01 = Care for a child < 8 year(s);\n02 = Palliative care;\n03 = Care of seriously sick person;\n04 = Education;\n05 = Disable child care < 21 years;\n06 = Seriously sick child care < 18 years;", "format": "" }, "PaLc": { "type": "string", "maxLength": 20, "description": "Wage code", "format": "" }, "PaSc": { "type": "string", "enum": [ "0", "1" ], "maxLength": 20, "description": "Suspension type\n0 = Full-time;\n1 = Part-time;", "format": "" }, "PaBv": { "type": "string", "description": "Replacement wage start date", "format": "date" }, "PaPa": { "type": "number", "description": "Present percentage", "format": "number" }, "PaAl": { "type": "number", "description": "Current wage percentage", "format": "number" }, "PaAf": { "type": "number", "description": "Salary deduction", "format": "number" }, "PaYn": { "type": "boolean", "description": "Indexation", "format": "" }, "PaDw": { "type": "number", "description": "Days per week", "format": "number" }, "PaUw": { "type": "string", "maxLength": 5, "description": "Hours per week", "format": "" }, "ReGs": { "type": "string", "enum": [ "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21" ], "maxLength": 20, "description": "Reason\n01 = Time credit;\n02 = Parental leave (RD 29/10/1997);\n03 = Parental leave (CLA 64);\n04 = Palliative care;\n05 = Partial resumption (sick period or occupational accident);\n06 = Severance payment per month;\n07 = Care of seriously sick person;\n08 = Voluntary week of 4 days;\n09 = Part-time early departure;\n10 = Reduced performance for personal reasons;\n11 = Reduced performance for family-social reasons;\n12 = Reduced performance for specific family social reasons;\n13 = Anti-crisis measures: time credit;\n14 = Verlof zonder wedde;\n15 = Statutory medical leave;\n16 = Work resumption adapted work;\n17 = Employment expert research adjusted work;\n18 = Informal care leave;\n19 = Corona parental leave;\n20 = Corona Time Credit;\n21 = Corona landing strip;", "format": "" }, "TcGs": { "type": "string", "enum": [ "0", "1" ], "maxLength": 20, "description": "Time credit\n0 = Without reason;\n1 = For good reason;", "format": "" }, "GwGs": { "type": "string", "enum": [ "0", "1" ], "maxLength": 20, "description": "Guaranteed salary balance\n0 = Without guaranteed pay;\n1 = With guaranteed pay;", "format": "" }, "Perc": { "type": "number", "description": "Percentage", "format": "number" }, "BeMa": { "type": "string", "description": "Health insurance approval start date", "format": "date" }, "BeCb": { "type": "string", "description": "Being sick start date", "format": "date" } }, "required": [ "Id", "EmId", "DvSn", "DaBe", "CoIn" ] } } } } } } }, "HrCareerBreak_PUT": { "type": "object", "properties": { "HrCareerBreak": { "type": "object", "properties": { "Element": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "Id": { "type": "integer", "description": "Line number", "format": "" }, "EmId": { "type": "string", "maxLength": 15, "description": "Employee", "format": "" }, "DvSn": { "type": "integer", "description": "Employment", "format": "" }, "DaBe": { "type": "string", "description": "Start date", "format": "date" }, "DaEn": { "type": "string", "description": "End date", "format": "date" }, "CoIn": { "type": "string", "enum": [ "1", "2", "3", "4" ], "maxLength": 20, "description": "Suspension\n1 = Full suspension;\n2 = Partial suspension;\n3 = Reduction of wages;\n4 = Group leave with unemployment;", "format": "" }, "CoIc": { "type": "string", "enum": [ "001", "002", "003", "004", "005", "006", "007", "008", "011", "012" ], "maxLength": 20, "description": "Suspension type\n001 = Time credit;\n002 = Long-term sick;\n003 = Military service;\n004 = Parental leave with RVA (Belgian National Employment Office) benefits;\n005 = Parental leave without RVA (Belgian National Employment Office) benefits;\n006 = Palliative leave; care of a seriously sick family member;\n007 = Z-beroep loopbaanonderbreking;\n008 = Partial work resumption;\n011 = Unemployable due to group shutdown and annual holiday;\n012 = Unemployable due to CLA group shutdown - leave;", "format": "" }, "CoIt": { "type": "string", "enum": [ "01", "02", "03", "04", "05", "06", "07" ], "maxLength": 20, "description": "Suspension type\n01 = Crisis time credit;\n02 = Progressive work resumption due to being sick;\n03 = Progressive work resumption after industrial accident;\n04 = Partial pregnancy break/breastfeeding work removal;\n05 = Fixed period for the landingsbaan (system of career breaks and time credit);\n06 = Landingsbaan for an indefinite period;\n07 = Other;", "format": "" }, "CoTc": { "type": "string", "enum": [ "1", "2", "3" ], "maxLength": 20, "description": "Time credit type\n1 = Motivated time credit;\n2 = Not - motivated time credit;\n3 = Time credit end of career;", "format": "" }, "CoRt": { "type": "string", "enum": [ "01", "02", "03", "04", "05", "06" ], "maxLength": 20, "description": "Time credit reason\n01 = Care for a child < 8 year(s);\n02 = Palliative care;\n03 = Care of seriously sick person;\n04 = Education;\n05 = Disable child care < 21 years;\n06 = Seriously sick child care < 18 years;", "format": "" }, "PaLc": { "type": "string", "maxLength": 20, "description": "Wage code", "format": "" }, "PaSc": { "type": "string", "enum": [ "0", "1" ], "maxLength": 20, "description": "Suspension type\n0 = Full-time;\n1 = Part-time;", "format": "" }, "PaBv": { "type": "string", "description": "Replacement wage start date", "format": "date" }, "PaPa": { "type": "number", "multipleOf": 0.0001, "description": "Present percentage", "format": "float" }, "PaAl": { "type": "number", "multipleOf": 0.01, "description": "Current wage percentage", "format": "float" }, "PaAf": { "type": "number", "multipleOf": 0.01, "description": "Salary deduction", "format": "float" }, "PaYn": { "type": "boolean", "description": "Indexation", "format": "" }, "PaDw": { "type": "number", "multipleOf": 0.1, "description": "Days per week", "format": "float" }, "PaUw": { "type": "string", "maxLength": 5, "description": "Hours per week", "format": "" }, "ReGs": { "type": "string", "enum": [ "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21" ], "maxLength": 20, "description": "Reason\n01 = Time credit;\n02 = Parental leave (RD 29/10/1997);\n03 = Parental leave (CLA 64);\n04 = Palliative care;\n05 = Partial resumption (sick period or occupational accident);\n06 = Severance payment per month;\n07 = Care of seriously sick person;\n08 = Voluntary week of 4 days;\n09 = Part-time early departure;\n10 = Reduced performance for personal reasons;\n11 = Reduced performance for family-social reasons;\n12 = Reduced performance for specific family social reasons;\n13 = Anti-crisis measures: time credit;\n14 = Verlof zonder wedde;\n15 = Statutory medical leave;\n16 = Work resumption adapted work;\n17 = Employment expert research adjusted work;\n18 = Informal care leave;\n19 = Corona parental leave;\n20 = Corona Time Credit;\n21 = Corona landing strip;", "format": "" }, "TcGs": { "type": "string", "enum": [ "0", "1" ], "maxLength": 20, "description": "Time credit\n0 = Without reason;\n1 = For good reason;", "format": "" }, "GwGs": { "type": "string", "enum": [ "0", "1" ], "maxLength": 20, "description": "Guaranteed salary balance\n0 = Without guaranteed pay;\n1 = With guaranteed pay;", "format": "" }, "Perc": { "type": "number", "multipleOf": 0.01, "description": "Percentage", "format": "float" }, "BeMa": { "type": "string", "description": "Health insurance approval start date", "format": "date" }, "BeCb": { "type": "string", "description": "Being sick start date", "format": "date" } }, "required": [ "Id" ] } } } } } } }, "HrDeclarationInSite_POST": { "type": "object", "properties": { "HrDeclarationInSite": { "type": "object", "properties": { "Element": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "EmId": { "type": "string", "maxLength": 15, "description": "Employee", "format": "" }, "EnSe": { "type": "integer", "description": "Employment", "format": "" }, "OuId": { "type": "string", "maxLength": 10, "description": "Organisational unit", "format": "" }, "DaTi": { "type": "string", "description": "Date entry", "format": "date" }, "Date": { "type": "string", "description": "Date", "format": "date" }, "Year": { "type": "integer", "description": "Year", "format": "" }, "PeId": { "type": "integer", "description": "Period", "format": "" }, "BiId": { "type": "string", "maxLength": 40, "description": "Declaration type", "format": "" }, "CrId": { "type": "string", "maxLength": 30, "description": "Cost centre", "format": "" }, "CcId": { "type": "string", "maxLength": 30, "description": "Cost unit", "format": "" }, "PrId": { "type": "string", "maxLength": 15, "description": "Project", "format": "" }, "CoAm": { "type": "number", "description": "Total amount", "format": "number" }, "KmFr": { "type": "string", "maxLength": 255, "description": "From", "format": "" }, "KmTo": { "type": "string", "maxLength": 255, "description": "To", "format": "" }, "KmCa": { "type": "number", "description": "Calculated kilometres", "format": "number" }, "KmRt": { "type": "boolean", "description": "Return", "format": "" }, "Qu": { "type": "number", "description": "Number to declare", "format": "number" }, "Ds": { "type": "string", "maxLength": 255, "description": "Description", "format": "" }, "Re": { "type": "string", "description": "Remark", "format": "byte" }, "MoId": { "type": "string", "maxLength": 15, "description": "Monitoring code", "format": "" }, "CoTy": { "type": "string", "enum": [ "MA", "A", "ME", "OA", "O" ], "maxLength": 20, "description": "Type of project costs\nMA = Material;\nA = Labour;\nME = Equipment;\nOA = Subcontracting;\nO = Other costs;", "format": "" }, "PcId": { "type": "string", "maxLength": 12, "description": "Placement", "format": "" }, "PrSt": { "type": "string", "maxLength": 15, "description": "Project phase", "format": "" }, "PyDp": { "type": "boolean", "description": "Pay amount through advance", "format": "" }, "LoFr": { "type": "string", "maxLength": 25, "description": "Location (from)", "format": "" }, "LoTo": { "type": "string", "maxLength": 25, "description": "Location (to)", "format": "" }, "FaDe": { "type": "integer", "description": "Favourite trip", "format": "" }, "FaSa": { "type": "boolean", "description": "Save as favourite trip", "format": "" }, "FaDs": { "type": "string", "maxLength": 255, "description": "Description of favourite trip", "format": "" }, "ViTr": { "type": "string", "enum": [ "11", "12", "13", "14", "15", "21", "22", "31", "32", "41", "51" ], "maxLength": 20, "description": "Transport means for WPM reporting\n11 = Petrol vehicles;\n12 = Diesel vehicle;\n13 = Cars belonging to (plug-in) hybrids;\n14 = Cars 100% electric;\n15 = Other fuel cars;\n21 = Petrol/diesel motorcycle ;\n22 = Electric motorcycle;\n31 = Petrol or diesel moped/scooter;\n32 = Electric moped/scooter (including speed-pedelec);\n41 = (Electric) bicycle (not being a speed-pedelec) or walking;\n51 = Public transportation;", "format": "" }, "ViTv": { "type": "string", "enum": [ "01", "02" ], "maxLength": 20, "description": "Type of journey\n01 = Commuting;\n02 = Business trip;", "format": "" }, "NrPa": { "type": "integer", "description": "Number of passengers", "format": "" }, "DeWW": { "type": "boolean", "description": "Deduct commuting kilometers", "format": "" }, "WWKm": { "type": "number", "description": "Commuting kilometers", "format": "number" }, "FileId": { "type": "string", "maxLength": 32, "description": "Bestand", "format": "" }, "Filename": { "type": "string", "maxLength": 50, "description": "Bestandsnaam", "format": "" }, "FileStream": { "type": "string", "description": "File as base64 string", "format": "byte" }, "ProfileId": { "type": "integer", "description": "Instuurprofiel", "format": "" }, "SbId": { "type": "integer", "description": "Dossieritem", "format": "" } }, "required": [ "EmId", "DaTi", "BiId" ] }, "Objects": { "type": "array", "items": { "type": "object", "properties": { "HrDeclarationInSiteAttachment": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "FileName": { "type": "string", "maxLength": 255, "description": "FileName", "format": "" }, "FileId": { "type": "string", "maxLength": 32, "description": "File Id", "format": "" }, "FileStream": { "type": "string", "description": "File as base64 string", "format": "byte" } } } } } } } } } } } } } } } } }, "HrEmpAdrMutInsite_PUT": { "type": "object", "properties": { "HrEmpAdrMutInsite": { "type": "object", "properties": { "Element": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "DaBe": { "type": "string", "description": "Start date", "format": "date" }, "PAD2": { "type": "boolean", "description": "Also edit postal address", "format": "" }, "PbAd": { "type": "boolean", "description": "P.O. Box address", "format": "" }, "StAd": { "type": "string", "maxLength": 255, "description": "Add. for street", "format": "" }, "Ad": { "type": "string", "maxLength": 60, "description": "Street", "format": "" }, "AdAd": { "type": "string", "maxLength": 255, "description": "Addition to address", "format": "" }, "HmNr": { "type": "integer", "description": "House number", "format": "" }, "HmAd": { "type": "string", "maxLength": 30, "description": "Extension (a, b, etc.) to house number", "format": "" }, "ZpCd": { "type": "string", "maxLength": 15, "description": "Postal code", "format": "" }, "CoId": { "type": "string", "maxLength": 3, "description": "Country", "format": "" }, "Rs": { "type": "string", "maxLength": 50, "description": "City", "format": "" }, "KmTo": { "type": "string", "maxLength": 255, "description": "Destination", "format": "" }, "KmWW": { "type": "number", "multipleOf": 0.001, "description": "Home-to-work distance", "format": "float" }, "KmCa": { "type": "number", "multipleOf": 0.001, "description": "Calculated kilometres", "format": "float" }, "ProfileId": { "type": "integer", "description": "Instuurprofiel", "format": "" }, "SubjectId": { "type": "integer", "description": "Dossieritem", "format": "" } } }, "Objects": { "type": "array", "items": { "type": "object", "properties": { "HrEmpAdrMutInsiteAttachment": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "FileName": { "type": "string", "maxLength": 255, "description": "FileName", "format": "" }, "FileId": { "type": "string", "maxLength": 32, "description": "File Id", "format": "" }, "FileStream": { "type": "string", "description": "File as byte-array", "format": "byte" } } } } } } } } } } } } } } } } }, "HrEmpBinMutInSite_POST": { "type": "object", "properties": { "HrEmpBinMutInsite": { "type": "object", "properties": { "Element": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "CaPa": { "type": "boolean", "description": "Cash payment", "format": "" }, "DsTp": { "type": "boolean", "description": "Payment reference incl. payment text", "format": "" }, "CoId": { "type": "string", "maxLength": 3, "description": "Country of bank", "format": "" }, "BkTp": { "type": "integer", "description": "Bank type", "format": "" }, "Bic": { "type": "string", "maxLength": 11, "description": "BIC code", "format": "" }, "IbCk": { "type": "boolean", "description": "IBAN check", "format": "" }, "BkIc": { "type": "string", "maxLength": 15, "description": "Bank", "format": "" }, "Iban": { "type": "string", "maxLength": 40, "description": "IBAN number", "format": "" }, "BaAc": { "type": "string", "maxLength": 40, "description": "Bank account", "format": "" }, "DiNm": { "type": "string", "maxLength": 80, "description": "Deviating name", "format": "" }, "DiPl": { "type": "string", "maxLength": 35, "description": "Deviating city", "format": "" }, "Ds": { "type": "string", "maxLength": 32, "description": "Payment reference", "format": "" }, "BaNm": { "type": "string", "maxLength": 35, "description": "Name of the bank", "format": "" }, "BaFi": { "type": "string", "maxLength": 35, "description": "Branch of the bank", "format": "" }, "BaAd": { "type": "string", "maxLength": 35, "description": "Bank address", "format": "" }, "BaPl": { "type": "string", "maxLength": 35, "description": "Bank business location", "format": "" }, "CalM": { "type": "string", "enum": [ "1", "2", "3" ], "maxLength": 20, "description": "On-charge code\n1 = All costs borne by beneficiary;\n2 = All costs borne by instructing party;\n3 = Shared costs;", "format": "" }, "ProfileId": { "type": "integer", "description": "Instuurprofiel", "format": "" }, "SubjectId": { "type": "integer", "description": "Dossieritem", "format": "" } } }, "Objects": { "type": "array", "items": { "type": "object", "properties": { "HrEmpBinMutInsiteAttachment": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "FileName": { "type": "string", "maxLength": 255, "description": "FileName", "format": "" }, "FileId": { "type": "string", "maxLength": 32, "description": "File Id", "format": "" }, "FileStream": { "type": "string", "description": "File as byte-array", "format": "byte" } } } } } } } } } } } } } } } } }, "HrEmpCourse_POST": { "type": "object", "properties": { "HrEmpCourse": { "type": "object", "properties": { "Element": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "EmId": { "type": "string", "maxLength": 15, "description": "Employee", "format": "" }, "CoSn": { "type": "integer", "description": "Sequence number", "format": "" }, "ViCo": { "type": "string", "enum": [ "1", "2", "3", "10", "4", "12", "5", "6", "7", "8", "9", "11", "13", "14", "20", "21" ], "maxLength": 20, "description": "Kind\n1 = Boekhouden;\n2 = Vergadertechnieken;\n3 = Leidinggeven;\n10 = Microsoft Office 2000;\n4 = Time Management;\n12 = Profit HRM;\n5 = Doeltreffend Projectmanagement;\n6 = Persoonlijke Effectiviteit;\n7 = Conflicthantering;\n8 = Spreken in het openbaar;\n9 = Microsoft SQL 2000;\n11 = VB 6 Desktop Applications;\n13 = VB 6 Distributed Applications;\n14 = VB 6 Analyzing Requirements;\n20 = E.H.B.O.;\n21 = B.H.V.;", "format": "" }, "DaBc": { "type": "string", "description": "Start date course", "format": "date" }, "DaEc": { "type": "string", "description": "End date course", "format": "date" }, "Ds": { "type": "string", "maxLength": 255, "description": "Description", "format": "" }, "Dura": { "type": "integer", "description": "Course duration", "format": "duration" }, "CoIn": { "type": "string", "maxLength": 255, "description": "Training college", "format": "" }, "ViRc": { "type": "string", "enum": [ "0", "1", "2", "3", "4" ], "maxLength": 20, "description": "Status course\n0 = Bezig met cursus;\n1 = Cursus voltooid, examen volgt;\n2 = Cursus gepland;\n3 = Cursus gestopt;\n4 = Voltooid met goed gevolg;", "format": "" }, "Re": { "type": "string", "description": "Remark", "format": "byte" }, "CrId": { "type": "integer", "description": "Course event", "format": "" }, "Grat": { "type": "boolean", "description": "Certificate obtained", "format": "" }, "DtVf": { "type": "string", "description": "Valid from", "format": "date" }, "DtVt": { "type": "string", "description": "Valid until", "format": "date" }, "FLA": { "type": "boolean", "description": "Falls under statutory education law", "format": "" }, "FLAT": { "type": "string", "enum": [ "1", "2" ], "maxLength": 20, "description": "Type\n1 = Formal;\n2 = Informal;", "format": "" }, "FLAL": { "type": "string", "enum": [ "1", "2", "3", "4" ], "maxLength": 20, "description": "Location\n1 = Internal;\n2 = External;\n3 = Online;\n4 = Abroad;", "format": "" }, "FLAP": { "type": "string", "enum": [ "1", "2", "3", "4" ], "maxLength": 20, "description": "Participation\n1 = Followed;\n2 = Not taken;\n3 = Not appropriate for the employee;\n4 = Reserved;", "format": "" }, "FLAR": { "type": "string", "enum": [ "1", "2", "3", "4", "5" ], "maxLength": 20, "description": "Result\n1 = Passed;\n2 = Failed;\n3 = Interrupted;\n4 = Taken, no result;\n5 = Not yet completed;", "format": "" }, "MeId": { "type": "integer", "description": "Organisation/person", "format": "" }, "CdId": { "type": "integer", "description": "Participant", "format": "" } }, "required": [ "EmId", "CoSn", "DaBc" ] } } } } } } }, "HrEmpCourse_PUT": { "type": "object", "properties": { "HrEmpCourse": { "type": "object", "properties": { "Element": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "EmId": { "type": "string", "maxLength": 15, "description": "Employee", "format": "" }, "CoSn": { "type": "integer", "description": "Sequence number", "format": "" }, "ViCo": { "type": "string", "enum": [ "1", "2", "3", "10", "4", "12", "5", "6", "7", "8", "9", "11", "13", "14", "20", "21" ], "maxLength": 20, "description": "Kind\n1 = Boekhouden;\n2 = Vergadertechnieken;\n3 = Leidinggeven;\n10 = Microsoft Office 2000;\n4 = Time Management;\n12 = Profit HRM;\n5 = Doeltreffend Projectmanagement;\n6 = Persoonlijke Effectiviteit;\n7 = Conflicthantering;\n8 = Spreken in het openbaar;\n9 = Microsoft SQL 2000;\n11 = VB 6 Desktop Applications;\n13 = VB 6 Distributed Applications;\n14 = VB 6 Analyzing Requirements;\n20 = E.H.B.O.;\n21 = B.H.V.;", "format": "" }, "DaBc": { "type": "string", "description": "Start date course", "format": "date" }, "DaEc": { "type": "string", "description": "End date course", "format": "date" }, "Ds": { "type": "string", "maxLength": 255, "description": "Description", "format": "" }, "Dura": { "type": "integer", "description": "Course duration", "format": "duration" }, "CoIn": { "type": "string", "maxLength": 255, "description": "Training college", "format": "" }, "ViRc": { "type": "string", "enum": [ "0", "1", "2", "3", "4" ], "maxLength": 20, "description": "Status course\n0 = Bezig met cursus;\n1 = Cursus voltooid, examen volgt;\n2 = Cursus gepland;\n3 = Cursus gestopt;\n4 = Voltooid met goed gevolg;", "format": "" }, "Re": { "type": "string", "description": "Remark", "format": "byte" }, "CrId": { "type": "integer", "description": "Course event", "format": "" }, "Grat": { "type": "boolean", "description": "Certificate obtained", "format": "" }, "DtVf": { "type": "string", "description": "Valid from", "format": "date" }, "DtVt": { "type": "string", "description": "Valid until", "format": "date" }, "FLA": { "type": "boolean", "description": "Falls under statutory education law", "format": "" }, "FLAT": { "type": "string", "enum": [ "1", "2" ], "maxLength": 20, "description": "Type\n1 = Formal;\n2 = Informal;", "format": "" }, "FLAL": { "type": "string", "enum": [ "1", "2", "3", "4" ], "maxLength": 20, "description": "Location\n1 = Internal;\n2 = External;\n3 = Online;\n4 = Abroad;", "format": "" }, "FLAP": { "type": "string", "enum": [ "1", "2", "3", "4" ], "maxLength": 20, "description": "Participation\n1 = Followed;\n2 = Not taken;\n3 = Not appropriate for the employee;\n4 = Reserved;", "format": "" }, "FLAR": { "type": "string", "enum": [ "1", "2", "3", "4", "5" ], "maxLength": 20, "description": "Result\n1 = Passed;\n2 = Failed;\n3 = Interrupted;\n4 = Taken, no result;\n5 = Not yet completed;", "format": "" }, "MeId": { "type": "integer", "description": "Organisation/person", "format": "" }, "CdId": { "type": "integer", "description": "Participant", "format": "" } }, "required": [ "EmId", "CoSn" ] } } } } } } }, "HrEmpEwhMutInsite_POST": { "type": "object", "properties": { "HrEmpEwhMutInsite": { "type": "object", "properties": { "Element": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "EmId": { "type": "string", "maxLength": 15, "description": "Employee", "format": "" }, "DaBe": { "type": "string", "description": "Start date of the home working days", "format": "date" }, "WhMo": { "type": "boolean", "description": "Monday", "format": "" }, "WhTu": { "type": "boolean", "description": "Tuesday", "format": "" }, "WhWe": { "type": "boolean", "description": "Wednesday", "format": "" }, "WhTh": { "type": "boolean", "description": "Thursday", "format": "" }, "WhFr": { "type": "boolean", "description": "Friday", "format": "" }, "WhSa": { "type": "boolean", "description": "Saturday", "format": "" }, "WhSu": { "type": "boolean", "description": "Sunday", "format": "" }, "ProfileId": { "type": "integer", "description": "Instuurprofiel", "format": "" } }, "required": [ "EmId", "DaBe" ] } } } } } } }, "HrEmployeeducationScope_POST": { "type": "object", "properties": { "KnEmployee": { "type": "object", "properties": { "Element": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "EmId": { "type": "string", "maxLength": 15, "description": "Employee", "format": "" } }, "required": [ "EmId" ] }, "Objects": { "type": "array", "items": { "type": "object", "properties": { "AfasContract": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "DaBe": { "type": "string", "description": "Contract start date", "format": "date" }, "DvSn": { "type": "integer", "description": "Sequence number employment", "format": "" }, "BaAp": { "type": "string", "maxLength": 10, "description": "Appointment basis", "format": "" }, "Sco1": { "type": "string", "maxLength": 10, "description": "Educational field 1", "format": "" }, "Sco2": { "type": "string", "maxLength": 10, "description": "Educational field 2", "format": "" }, "Sco3": { "type": "string", "maxLength": 10, "description": "Educational field 3", "format": "" }, "Sco4": { "type": "string", "maxLength": 10, "description": "Educational field 4", "format": "" } }, "required": [ "DaBe" ] } } } } } } } } } } } } } } }, "HrEmployeeWorkweekTransition_POST": { "type": "object", "properties": { "HrEmployeeWorkweekTransition": { "type": "object", "properties": { "Element": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "EmId": { "type": "string", "maxLength": 15, "description": "Employee", "format": "" } }, "required": [ "EmId" ] }, "Objects": { "type": "array", "items": { "type": "object", "properties": { "AfasContract": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "DaBe": { "type": "string", "description": "Contract start date", "format": "date" }, "WcId": { "type": "string", "maxLength": 15, "description": "Term of employment", "format": "" }, "DvSn": { "type": "integer", "description": "Sequence number employment", "format": "" } }, "required": [ "DaBe", "WcId" ] } } } } } }, "AfasTimeTable": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "DaBg": { "type": "string", "description": "Timetable start date", "format": "date" }, "DvSn": { "type": "integer", "description": "Sequence number employment", "format": "" }, "SeNo": { "type": "integer", "description": "Default timetable", "format": "" }, "StPa": { "type": "boolean", "description": "Variable work pattern", "format": "" }, "Spec": { "type": "boolean", "description": "Alternating work pattern with work timetable", "format": "" }, "DyWk": { "type": "number", "description": "Number of days per week", "format": "number" }, "HrWk": { "type": "number", "description": "Number of hours per week", "format": "number" }, "TbSu": { "type": "string", "description": "Start time Sunday", "format": "date-time" }, "TeSu": { "type": "string", "description": "Sunday end time", "format": "date-time" }, "PsSu": { "type": "string", "description": "Length of break Sunday", "format": "date-time" }, "TbMo": { "type": "string", "description": "Start time Monday", "format": "date-time" }, "TeMo": { "type": "string", "description": "Monday end time", "format": "date-time" }, "PsMo": { "type": "string", "description": "Length of break Monday", "format": "date-time" }, "TbTu": { "type": "string", "description": "Start time Tuesday", "format": "date-time" }, "TeTu": { "type": "string", "description": "Tuesday end time", "format": "date-time" }, "PsTu": { "type": "string", "description": "Length of break Tuesday", "format": "date-time" }, "TbWe": { "type": "string", "description": "Start time Wednesday", "format": "date-time" }, "TeWe": { "type": "string", "description": "Wednesday end time", "format": "date-time" }, "PsWe": { "type": "string", "description": "Length of break Wednesday", "format": "date-time" }, "TbTh": { "type": "string", "description": "Start time Thursday", "format": "date-time" }, "TeTh": { "type": "string", "description": "Thursday end time", "format": "date-time" }, "PsTh": { "type": "string", "description": "Length of break Thursday", "format": "date-time" }, "TbFr": { "type": "string", "description": "Start time Friday", "format": "date-time" }, "TeFr": { "type": "string", "description": "Friday end time", "format": "date-time" }, "PsFr": { "type": "string", "description": "Length of break Friday", "format": "date-time" }, "TbSa": { "type": "string", "description": "Start time Saturday", "format": "date-time" }, "TeSa": { "type": "string", "description": "Saturday end time", "format": "date-time" }, "PsSa": { "type": "string", "description": "Length of break Saturday", "format": "date-time" }, "PcPt": { "type": "number", "description": "Part-time (%)", "format": "number" }, "WdSu": { "type": "boolean", "description": "Sunday working day", "format": "" }, "WdMo": { "type": "boolean", "description": "Monday working day", "format": "" }, "WdTu": { "type": "boolean", "description": "Tuesday working day", "format": "" }, "WdWe": { "type": "boolean", "description": "Wednesday working day", "format": "" }, "WdTh": { "type": "boolean", "description": "Thursday working day", "format": "" }, "WdFr": { "type": "boolean", "description": "Friday working day", "format": "" }, "WdSa": { "type": "boolean", "description": "Saturday working day", "format": "" }, "FtSv": { "type": "boolean", "description": "5 'SV' days", "format": "" }, "Immc": { "type": "boolean", "description": "Apply min./max. contract in Payroll", "format": "" }, "HrMn": { "type": "number", "description": "Minimum hours per week", "format": "number" }, "HrMx": { "type": "number", "description": "Maximum hours per week", "format": "number" }, "Ft": { "type": "number", "description": "Number of FTE", "format": "number" }, "FtSu": { "type": "number", "description": "FTE Sunday", "format": "number" }, "FtMo": { "type": "number", "description": "FTE Monday", "format": "number" }, "FtTu": { "type": "number", "description": "FTE Tuesday", "format": "number" }, "FtWe": { "type": "number", "description": "FTE Wednesday", "format": "number" }, "FtTh": { "type": "number", "description": "FTE Thursday", "format": "number" }, "FtFr": { "type": "number", "description": "FTE Friday", "format": "number" }, "FtSa": { "type": "number", "description": "FTE Saturday", "format": "number" }, "FtBp": { "type": "number", "description": "'BAPO' FTE", "format": "number" }, "FtSb": { "type": "number", "description": "Save 'BAPO' FTE", "format": "number" } }, "required": [ "DaBg", "PcPt" ] }, "Objects": { "type": "array", "items": { "type": "object", "properties": { "AfasWorkTime": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "DaBe": { "type": "string", "description": "Work timetable start date", "format": "date" }, "Twcy": { "type": "integer", "description": "Timetable cycle", "format": "" }, "Twcp": { "type": "integer", "description": "Start weekly timetable", "format": "" }, "Twcc": { "type": "integer", "description": "Sequence number", "format": "" } }, "required": [ "DaBe", "Twcy", "Twcp", "Twcc" ] } } } } } } } } } } } } } }, "AfasVarValue": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "DaBe": { "type": "string", "description": "Start date", "format": "date" }, "VaId": { "type": "integer", "description": "Parameter", "format": "" }, "Va": { "type": "string", "maxLength": 20, "description": "Waarde", "format": "" }, "DaEn": { "type": "string", "description": "End date", "format": "date" }, "EnSe": { "type": "integer", "description": "Employment", "format": "" }, "DiTp": { "type": "string", "enum": [ "T", "V", "H" ], "maxLength": 20, "description": "Application\nT = Apply to all employments;\nV = Distribute across all employments;\nH = Apply to main employment;", "format": "" } }, "required": [ "DaBe", "VaId" ] } } } } } } } } } } } } } } }, "HrEmpMutInSite_POST": { "type": "object", "properties": { "HrEmpMutInsite": { "type": "object", "properties": { "Element": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "CaNm": { "type": "string", "maxLength": 80, "description": "Usual name", "format": "" }, "FiNm": { "type": "string", "maxLength": 50, "description": "First name", "format": "" }, "In": { "type": "string", "maxLength": 15, "description": "Initials", "format": "" }, "Is": { "type": "string", "maxLength": 15, "description": "Prefix", "format": "" }, "LaNm": { "type": "string", "maxLength": 80, "description": "Last name", "format": "" }, "SpNm": { "type": "boolean", "description": "Enter surname at birth seperately", "format": "" }, "IsBi": { "type": "string", "maxLength": 15, "description": "Birth name prefix", "format": "" }, "NmBi": { "type": "string", "maxLength": 80, "description": "Surname at birth", "format": "" }, "IsPa": { "type": "string", "maxLength": 15, "description": "Prefix partner", "format": "" }, "NmPa": { "type": "string", "maxLength": 80, "description": "Partner's usual name", "format": "" }, "ViUs": { "type": "string", "enum": [ "0", "1", "2", "3" ], "maxLength": 20, "description": "Name use\n0 = Birth name;\n1 = Partner's birth name + Birth name;\n2 = Partner birth name;\n3 = Birth name + Partner's birth name;", "format": "" }, "ViGe": { "type": "string", "enum": [ "M", "U", "F", "X" ], "maxLength": 20, "description": "Gender\nM = Male;\nU = Unknown;\nF = Female;\nX = Non-binary;", "format": "" }, "PsNa": { "type": "string", "enum": [ "000", "NL", "DZ", "IN", "RU", "RB", "BU", "RCA", "KM", "RCB", "DY", "ET", "EQ", "ETH", "DJI", "GA", "WAG", "GH", "GN", "CI", "CV", "TC", "EAK", "CD", "LS", "LB", "LAR", "RM", "MW", "RMM", "MA", "RIM", "MS", "MOC", "RN", "WAN", "EAU", "GW", "ZA", "SD", "'ZW'", "RWA", "ST", "SN", "WAL", "SUD", "SP", "EAT", "TG", "TS", "TN", "Z", "SS", "BS", "BH", "CDN", "CR", "C", "DOM", "EL", "GCA", "RH", "HON", "JA", "MEX", "NIC", "PA", "TT", "USA", "RA", "BDS", "BOL", "BR", "RCH", "CO", "EC", "GUY", "PY", "PE", "SME", "ROU", "YV", "WG", "KN", "SK", "CZ", "BA", "GE", "AFG", "BRN", "BT", "BM", "BRU", "K", "CL", "CN", "CY", "RP", "TMN", "RC", "IND", "RI", "IRQ", "IR", "IL", "J", "HKJ", "TAD", "KWT", "LAO", "RL", "MV", "MAL", "MON", "OMA", "NPL", "KO", "OEZ", "PK", "QA", "AS", "SGP", "SYR", "T", "AE", "TR", "UA", "ROK", "VN", "BD", "KG", "MD", "KZ", "BY", "AZ", "AM", "AUS", "PNG", "NZ", "WSM", "WS", "RUS", "SLO", "AG", "VU", "FJI", "GB4", "HR", "TO", "NR", "PLW", "USA2", "LV", "SB", "MIC", "SY", "KIR", "TV", "WL", "WD", "WV", "EE", "IOT", "ZRE", "TLS", "SCG", "SRB", "MNE", "LT", "MAR", "BUR", "NAM", "GRF", "499", "AL", "AND", "B", "BG", "DK", "D", "FIN", "F", "YMN", "GR", "GB", "H", "IRL", "IS", "I", "YU", "FL", "L", "M", "MC", "N", "A", "PL", "P", "RO", "RSM", "E", "VAT", "S", "CH", "GB2", "ERI", "GB3", "XK", "MK", "PSE" ], "maxLength": 20, "description": "Nationality\n000 = Unknown;\nNL = Dutch;\nDZ = Algerian;\nIN = Angolan;\nRU = Burundian;\nRB = Motswana;\nBU = Burkinabe;\nRCA = Central African;\nKM = Citizen of Comoros;\nRCB = Citizen of the Republic of the Congo;\nDY = Citizen of Benin;\nET = Egyptian;\nEQ = Equatorial-Guineas;\nETH = Ethiopian;\nDJI = Djiboutian;\nGA = Gabonese;\nWAG = Gambian;\nGH = Ghanaian;\nGN = Guineas;\nCI = Ivorian;\nCV = Cape Verdean;\nTC = Cameroonian;\nEAK = Kenyan;\nCD = Citizen of Zaire;\nLS = Citizen of Lesotho;\nLB = Liberian;\nLAR = Libyan;\nRM = Malagasy;\nMW = Malawian;\nRMM = Citizen of Mali;\nMA = Moroccan;\nRIM = Mauritanian;\nMS = Mauritian;\nMOC = Mozambican;\nRN = Nigerien;\nWAN = Nigerian;\nEAU = Ugandan;\nGW = Guinea-Bissau;\nZA = South African;\nSD = Eswatini Citizen;\n'ZW' = Zimbabwean;\nRWA = Rwandese;\nST = Citizen of São Tomé and Principe;\nSN = Senegalese;\nWAL = Sierra Leonean;\nSUD = Sudanese;\nSP = Somalian;\nEAT = Tanzanian;\nTG = Togolese;\nTS = Tsjadian;\nTN = Tunisian;\nZ = Zambian;\nSS = South Sudanese;\nBS = Bahamian;\nBH = Belizean;\nCDN = Canadian;\nCR = Costa Rican;\nC = Cuban;\nDOM = Dominican;\nEL = Salvadoran;\nGCA = Guatemalan;\nRH = Haitian;\nHON = Hondurese;\nJA = Jamaican;\nMEX = Mexican;\nNIC = Nicaraguan;\nPA = Panamese;\nTT = Citizen of Trinidad and Tobago;\nUSA = American citizen;\nRA = Argentinean;\nBDS = Barbadian;\nBOL = Bolivian;\nBR = Brazilian;\nRCH = Chilean;\nCO = Colombian;\nEC = Ecuadorian;\nGUY = Guyanese;\nPY = Paraguayan;\nPE = Peruvian;\nSME = Surinamese;\nROU = Uruguayan;\nYV = Venezuelan;\nWG = Grenadian;\nKN = Citizen of Saint Kitts-Nevis;\nSK = Slovak;\nCZ = Czech;\nBA = Citizen of Bosnia-Herzegovina;\nGE = Georgian;\nAFG = Afghan;\nBRN = Bahraini;\nBT = Bhutanese;\nBM = Citizen of Myanmar;\nBRU = Citizen of Brunei Darussalam;\nK = Cambodian;\nCL = Sri Lankan;\nCN = Chinese;\nCY = Cypriot;\nRP = Filipino;\nTMN = Turkmen;\nRC = Taiwanese;\nIND = Indian;\nRI = Indonesian;\nIRQ = Iraqi;\nIR = Iranian;\nIL = Israeli;\nJ = Japanese;\nHKJ = Jordan;\nTAD = Tajikistani;\nKWT = Kuwaiti;\nLAO = Laotian;\nRL = Lebanese;\nMV = Maldivian;\nMAL = Malaysian;\nMON = Mongolian;\nOMA = Omani;\nNPL = Nepalese;\nKO = North Korean;\nOEZ = Uzbekistani;\nPK = Pakistani;\nQA = Qatari;\nAS = Saudi Arabian;\nSGP = Singaporean;\nSYR = Syrian;\nT = Thai;\nAE = Citizen of the United Arab Emirates;\nTR = Turkish;\nUA = Ukrainian;\nROK = South Korean;\nVN = Vietnamese;\nBD = Bangladeshi;\nKG = Kyrgyz;\nMD = Moldovan;\nKZ = Kazakh;\nBY = Belarusian;\nAZ = Azerbaijani;\nAM = Armenian;\nAUS = Australian;\nPNG = Papua New Guinean;\nNZ = New Zealander;\nWSM = West Samoan;\nWS = Samoan;\nRUS = Russian;\nSLO = Slovenian;\nAG = Citizen of Antigua and Barbuda;\nVU = Vanuatu;\nFJI = Fijian;\nGB4 = Citizen of British dependent territories;\nHR = Croatian;\nTO = Tongan;\nNR = Nauruan;\nPLW = Palauan;\nUSA2 = American national;\nLV = Latvian;\nSB = Saloman Islander;\nMIC = Micronesian;\nSY = Citizen of the Seychelles;\nKIR = Kiribati;\nTV = Tuvaluan;\nWL = Saint Lucian;\nWD = Dominican;\nWV = Vincentian;\nEE = Estonian;\nIOT = British National (overseas);\nZRE = Citizen of the Democratic Republic of the Congo;\nTLS = Timorense;\nSCG = Citizen of Serbia and Montenegro;\nSRB = Serbian;\nMNE = Montenegrin;\nLT = Lithuanian;\nMAR = Marshallese;\nBUR = Myanmarese;\nNAM = Namibian;\nGRF = Refugee;\n499 = Stateless;\nAL = Albanian;\nAND = Andorran;\nB = Belgian;\nBG = Bulgarian;\nDK = Danish;\nD = German;\nFIN = Finnish;\nF = French;\nYMN = Citizen of Yemen;\nGR = Greek;\nGB = British citizen;\nH = Hungarian;\nIRL = Irish;\nIS = Icelandic;\nI = Italian;\nYU = Yugoslavian;\nFL = Liechtenstein;\nL = Luxembourg;\nM = Maltese;\nMC = Citizen of Monaco;\nN = Norwegian;\nA = Austrian;\nPL = Polish;\nP = Portuguese;\nRO = Romanian;\nRSM = San Marinese;\nE = Spanish;\nVAT = Vatican;\nS = Swedish;\nCH = Swiss;\nGB2 = British subject;\nERI = Eritrean;\nGB3 = Citizen of British oversea regions;\nXK = Kosovan;\nMK = Macedonian / Citizen of the Republic of North Macedonia;\nPSE = Palestinian;", "format": "" }, "ViCs": { "type": "string", "enum": [ "DZ", "GH", "GP", "GS", "OG", "TR", "WE" ], "maxLength": 20, "description": "Marital status\nDZ = Permanently divorced;\nGH = Married;\nGP = Registered partnership;\nGS = Divorced;\nOG = Unmarried;\nTR = Other;\nWE = Widow/widower;", "format": "" }, "DaMa": { "type": "string", "description": "Wedding date", "format": "date" }, "DaDi": { "type": "string", "description": "Date of divorce", "format": "date" }, "DaDe": { "type": "string", "description": "Date deceased", "format": "date" }, "TtId": { "type": "string", "maxLength": 3, "description": "Title/salutation", "format": "" }, "TtEx": { "type": "string", "maxLength": 3, "description": "Secondary title", "format": "" }, "TeNr": { "type": "string", "maxLength": 255, "description": "Work phone no.", "format": "password" }, "TeN2": { "type": "string", "maxLength": 255, "description": "Personal phone no.", "format": "password" }, "FaNr": { "type": "string", "maxLength": 255, "description": "Work fax", "format": "" }, "MbNr": { "type": "string", "maxLength": 255, "description": "Work mobile no.", "format": "password" }, "MbN2": { "type": "string", "maxLength": 255, "description": "Private mobile no.", "format": "password" }, "EmAd": { "type": "string", "maxLength": 255, "description": "Work e-mail", "format": "email" }, "EmA2": { "type": "string", "maxLength": 255, "description": "Personal e-mail", "format": "email" }, "HoPa": { "type": "string", "maxLength": 255, "description": "Website", "format": "uri" }, "Corr": { "type": "boolean", "description": "Correspondence", "format": "" }, "Re": { "type": "string", "description": "Remark", "format": "byte" }, "SocN": { "type": "string", "maxLength": 255, "description": "Social media", "format": "uri" }, "Face": { "type": "string", "maxLength": 255, "description": "Facebook", "format": "" }, "Link": { "type": "string", "maxLength": 255, "description": "LinkedIn", "format": "" }, "Twtr": { "type": "string", "maxLength": 255, "description": "X (formerly Twitter)", "format": "" }, "LgId": { "type": "string", "maxLength": 5, "description": "Language", "format": "" }, "TRe": { "type": "string", "maxLength": 255, "description": "Reden mutatie", "format": "" }, "FileId": { "type": "string", "maxLength": 32, "description": "Bestand", "format": "" }, "FileName": { "type": "string", "maxLength": 255, "description": "Naam bestand", "format": "" }, "FileStream": { "type": "string", "description": "Afbeelding", "format": "byte" }, "ProfileId": { "type": "integer", "description": "Instuurprofiel", "format": "" }, "SubjectId": { "type": "integer", "description": "Dossieritem", "format": "" } } }, "Objects": { "type": "array", "items": { "type": "object", "properties": { "AfasEmployee": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "PsPv": { "type": "string", "enum": [ "P", "B", "E", "N" ], "maxLength": 20, "description": "Pay slip supply\nP = Print;\nB = Print and message;\nE = Message;\nN = Do not print/No message;", "format": "" }, "YsPv": { "type": "string", "enum": [ "P", "B", "E", "N" ], "maxLength": 20, "description": "Annual statement supply\nP = Print;\nB = Print and message;\nE = Message;\nN = Do not print/No message;", "format": "" }, "PsIn": { "type": "boolean", "description": "Invite to MijnGeldzaken", "format": "" }, "DoPv": { "type": "string", "enum": [ "P", "B", "E", "N" ], "maxLength": 20, "description": "Document supply method\nP = Print;\nB = Print and message;\nE = Message;\nN = Do not print/No message;", "format": "" }, "EmAd": { "type": "string", "enum": [ "P", "S" ], "maxLength": 20, "description": "E-mail digital documents\nP = Private E-mail address;\nS = Work E-mail address;", "format": "" }, "SeAt": { "type": "boolean", "description": "Secure e-mail attachments", "format": "" }, "PwEm": { "type": "string", "maxLength": 70, "description": "Password", "format": "" }, "LgId": { "type": "string", "maxLength": 5, "description": "Language differs from employer", "format": "" }, "ViPa": { "type": "string", "enum": [ "4W", "P" ], "maxLength": 20, "description": "Payment frequency\n4W = 4 week(s);\nP = Period;", "format": "" }, "BlPa": { "type": "boolean", "description": "Blocked for payment", "format": "" }, "SuId": { "type": "string", "maxLength": 15, "description": "Permanent substitute", "format": "" }, "Bddy": { "type": "string", "maxLength": 15, "description": "Buddy", "format": "" }, "TPwEm1": { "type": "string", "maxLength": 255, "description": "Password 1", "format": "" }, "TPwEm2": { "type": "string", "maxLength": 255, "description": "Password 2", "format": "" }, "EmUp": { "type": "boolean", "description": "My private email address may be issued", "format": "" } } } } } } } } } } } } } } } } }, "HrEmpWorkLocation_POST": { "type": "object", "properties": { "HrEmpWorkLocation": { "type": "object", "properties": { "Element": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "DvSn": { "type": "integer", "description": "Sequence number employment", "format": "" }, "Date": { "type": "string", "description": "Date", "format": "date" }, "LoId": { "type": "string", "maxLength": 25, "description": "Location", "format": "" }, "ViML": { "type": "string", "enum": [ "11", "12", "13", "14", "15", "21", "22", "29", "31", "32", "38", "39", "41", "49", "51" ], "maxLength": 20, "description": "Means of transport\n11 = Petrol vehicle;\n12 = Diesel vehicle;\n13 = Auto (Plug in) Hybrid;\n14 = 100% electric vehicle;\n15 = Other fuel car;\n21 = Motorbike petrol;\n22 = Electric motorcycle;\n29 = Motorbike diesel;\n31 = Petrol moped/scooter;\n32 = Moped/scooter 100% electric;\n38 = Moped/scooter diesel;\n39 = Speed-pedelec;\n41 = (Electric) bicycle;\n49 = By foot;\n51 = Public transport ;", "format": "" } }, "required": [ "DvSn", "Date" ] } } } } } } }, "HrFavTravelDeclarations_POST": { "type": "object", "properties": { "HrFavTravelDeclarations": { "type": "object", "properties": { "Element": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "EmId": { "type": "string", "maxLength": 15, "description": "Employee", "format": "" }, "SeNo": { "type": "integer", "description": "Sequence number", "format": "" } }, "required": [ "EmId", "SeNo" ] } } } } } } }, "HrFavTravelDeclarations_PUT": { "type": "object", "properties": { "HrFavTravelDeclarations": { "type": "object", "properties": { "Element": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "EmId": { "type": "string", "maxLength": 15, "description": "Employee", "format": "" }, "SeNo": { "type": "integer", "description": "Sequence number", "format": "" } }, "required": [ "EmId", "SeNo" ] } } } } } } }, "HrJudgement_POST": { "type": "object", "properties": { "HrJudgement": { "type": "object", "properties": { "Element": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "EmId": { "type": "string", "maxLength": 15, "description": "Employee", "format": "" }, "JuSn": { "type": "integer", "description": "Sequence number", "format": "" }, "DaJu": { "type": "string", "description": "Date review", "format": "date" }, "Re": { "type": "string", "description": "Remark", "format": "byte" }, "EmPe": { "type": "string", "enum": [ "4", "3", "2", "1" ], "maxLength": 20, "description": "Performance (HR3P)\n4 = Unsatisfactory;\n3 = Sufficient;\n2 = Good;\n1 = Excellent;", "format": "" }, "DePl": { "type": "string", "enum": [ "1", "2", "3", "4" ], "maxLength": 20, "description": "Potential (HR3P)\n1 = Limit reached;\n2 = Growth within role;\n3 = Promotable in the long term;\n4 = Directly promotable;", "format": "" }, "Dye": { "type": "integer", "description": "Development process", "format": "" }, "Pres": { "type": "string", "enum": [ "1", "2", "3" ], "maxLength": 20, "description": "Performance (9-GRID)\n1 = Layer;\n2 = Normal;\n3 = High;", "format": "" }, "Pot": { "type": "string", "enum": [ "1", "2", "3" ], "maxLength": 20, "description": "Potential (9-GRID)\n1 = Layer;\n2 = Normal;\n3 = High;", "format": "" } }, "required": [ "EmId", "JuSn", "DaJu" ] } } } } } } }, "HrJudgement_PUT": { "type": "object", "properties": { "HrJudgement": { "type": "object", "properties": { "Element": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "EmId": { "type": "string", "maxLength": 15, "description": "Employee", "format": "" }, "JuSn": { "type": "integer", "description": "Sequence number", "format": "" }, "DaJu": { "type": "string", "description": "Date review", "format": "date" }, "Re": { "type": "string", "description": "Remark", "format": "byte" }, "EmPe": { "type": "string", "enum": [ "4", "3", "2", "1" ], "maxLength": 20, "description": "Performance (HR3P)\n4 = Unsatisfactory;\n3 = Sufficient;\n2 = Good;\n1 = Excellent;", "format": "" }, "DePl": { "type": "string", "enum": [ "1", "2", "3", "4" ], "maxLength": 20, "description": "Potential (HR3P)\n1 = Limit reached;\n2 = Growth within role;\n3 = Promotable in the long term;\n4 = Directly promotable;", "format": "" }, "Dye": { "type": "integer", "description": "Development process", "format": "" }, "Pres": { "type": "string", "enum": [ "1", "2", "3" ], "maxLength": 20, "description": "Performance (9-GRID)\n1 = Layer;\n2 = Normal;\n3 = High;", "format": "" }, "Pot": { "type": "string", "enum": [ "1", "2", "3" ], "maxLength": 20, "description": "Potential (9-GRID)\n1 = Layer;\n2 = Normal;\n3 = High;", "format": "" } }, "required": [ "EmId", "JuSn" ] } } } } } } }, "HrMobility_POST": { "type": "object", "properties": { "HrMobility": { "type": "object", "properties": { "Element": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "TrTy": { "type": "string", "enum": [ "1", "2", "3", "4", "5", "O" ], "maxLength": 20, "description": "Type of means of transport\n1 = Car;\n2 = Motorcycle;\n3 = Moped or scooter;\n4 = Bicycle;\n5 = Speed-pedelec;\nO = Other;", "format": "" }, "CmId": { "type": "string", "maxLength": 15, "description": "Employer", "format": "" }, "CcSn": { "type": "integer", "description": "Sequence number", "format": "" }, "CoNu": { "type": "string", "maxLength": 30, "description": "Contract number", "format": "" }, "LsAm": { "type": "number", "description": "Lease amount", "format": "number" }, "DaBl": { "type": "string", "description": "Start date", "format": "date" }, "DaEl": { "type": "string", "description": "End date", "format": "date" }, "NrKm": { "type": "integer", "description": "Final position of contract (km)", "format": "" }, "RgNr": { "type": "string", "maxLength": 16, "description": "Registration number", "format": "" }, "GrRg": { "type": "boolean", "description": "Registered as a van", "format": "" }, "SeNu": { "type": "string", "maxLength": 30, "description": "Serial number", "format": "" }, "ViMr": { "type": "string", "enum": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "54", "55", "56", "57", "58", "59", "60", "61", "62", "63", "64", "65", "66", "67", "68" ], "maxLength": 20, "description": "Make\n1 = Opel;\n2 = Volkswagen;\n3 = Renault;\n4 = Ford;\n5 = Peugeot;\n6 = Citroën;\n7 = Mazda;\n8 = Nissan;\n9 = Toyota;\n10 = Daewoo;\n11 = Rover;\n12 = Mercedes;\n13 = Volvo;\n14 = Saab;\n15 = Jaguar;\n16 = Mitsubishi;\n17 = Alfa Romeo;\n18 = Aston Martin;\n19 = Audi;\n20 = Bentley;\n21 = BMW;\n22 = Bugatti;\n23 = Buick;\n24 = Cadillac;\n25 = Chevrolet;\n26 = Chrysler;\n27 = Daihatsu;\n28 = De Tomasso;\n29 = Donkervoort;\n30 = Ferrari;\n31 = Fiat;\n32 = Ford U.S.A.;\n33 = FSO;\n34 = Galloper;\n35 = Honda;\n36 = Hummer;\n37 = Hyundai;\n38 = Indigo;\n39 = Jeep;\n40 = Kia;\n41 = Lada;\n42 = Lamborghini;\n43 = Lancia;\n44 = Land Rover;\n45 = Lexus;\n46 = Lincoln;\n47 = Lotus;\n48 = Marcos;\n49 = Maserati;\n50 = Maybach;\n51 = Mercury;\n52 = MG;\n53 = Mini;\n54 = Morgan;\n55 = Pontiac;\n56 = Porsche;\n57 = Range Rover;\n58 = Rolls Royce;\n59 = Seat;\n60 = Skoda;\n61 = Smart;\n62 = Spyker;\n63 = SsangYong;\n64 = Subaru;\n65 = Suzuki;\n66 = Tata;\n67 = TVR;\n68 = Venturi;", "format": "" }, "ViMd": { "type": "string", "enum": [ "1", "2", "3", "4", "5", "6" ], "maxLength": 20, "description": "Model\n1 = Hatchback;\n2 = Cabriolet;\n3 = Coupé;\n4 = Station;\n5 = Sedan;\n6 = MPV;", "format": "" }, "Ad": { "type": "string", "maxLength": 50, "description": "Extras", "format": "" }, "Re": { "type": "string", "description": "Remark", "format": "byte" }, "CmUs": { "type": "boolean", "description": "General use", "format": "" }, "InKm": { "type": "integer", "description": "Starting position (km)", "format": "" }, "DaPr": { "type": "string", "description": "Registration date no. 1", "format": "date" }, "CtVl": { "type": "number", "description": "List price", "format": "number" }, "ViFl": { "type": "string", "enum": [ "B", "G", "D", "E", "Y", "Z", "PhD", "PhB" ], "maxLength": 20, "description": "Fuel\nB = Petrol;\nG = Gas;\nD = Diesel;\nE = Electric;\nY = Hybrid petrol;\nZ = Hybrid diesel;\nPhD = Plug-in hybrid diesel;\nPhB = Plug-in hybrid petrol;", "format": "" }, "OnVl": { "type": "boolean", "description": "Default own risk", "format": "" }, "AgId": { "type": "string", "maxLength": 15, "description": "Lease company", "format": "" }, "PeAd": { "type": "integer", "description": "Addition (%)", "format": "" }, "AdLi": { "type": "number", "description": "Addition % limit amount", "format": "number" }, "HiAd": { "type": "integer", "description": "Addition above the limit (%)", "format": "" }, "CO2": { "type": "integer", "description": "CO2 emission", "format": "" }, "ViEl": { "type": "string", "enum": [ "A", "B", "C", "D", "E", "F", "G" ], "maxLength": 20, "description": "Energy label\nA = A label;\nB = B label;\nC = C label;\nD = D label;\nE = E label;\nF = F label;\nG = G label;", "format": "" }, "ReVe": { "type": "boolean", "description": "Replacement car", "format": "" }, "LeTy": { "type": "string", "enum": [ "1", "2", "3" ], "maxLength": 20, "description": "Leasing type\n1 = Financial;\n2 = Operational;\n3 = Self-administered;", "format": "" }, "LeCo": { "type": "string", "enum": [ "ALD", "ALPHA", "AMEC", "ARVAL", "ATHL", "AVIS", "BMW", "CIAC", "DEXIA", "DIET", "DIREC", "EXCEL", "FAVOR", "FIAT", "FORD", "FORTS", "GECFF", "HERTZ", "ICLBE", "ING", "JT", "KBC", "KEDDY", "LP", "MAST", "MBFS", "PARC", "PSA", "RBF", "SERV", "SIXT", "VANC", "WEST" ], "maxLength": 20, "description": "SD lease company\nALD = ALD Automotive;\nALPHA = Alphabet Belgium;\nAMEC = AMEC;\nARVAL = Arval;\nATHL = Athlon Car Lease;\nAVIS = Avis;\nBMW = BMW Financial Services;\nCIAC = CIAC Fleet;\nDEXIA = Dexia Auto Lease;\nDIET = D'Ieteren Lease;\nDIREC = DirectLease;\nEXCEL = Excelease;\nFAVOR = Favor Lease;\nFIAT = Fiat Lease;\nFORD = Ford Business Partner;\nFORTS = Fortis Lease;\nGECFF = GE Commercial Finance Fleet Services;\nHERTZ = Hertz;\nICLBE = ING Car Lease;\nING = ING Car Lease;\nJT = J&T Autolease;\nKBC = KBC Autolease;\nKEDDY = Keddy/Europacar;\nLP = LeasePlan;\nMAST = Masterlease;\nMBFS = Mercedes-Benz Financial Services;\nPARC = Parcours Belgium;\nPSA = PSA Finance Belux;\nRBF = Renault Business Finance;\nSERV = Service Rent;\nSIXT = SIXT;\nVANC = Vancia Rent;\nWEST = West Lease;", "format": "" }, "LeDu": { "type": "number", "description": "Term", "format": "number" }, "KmYe": { "type": "number", "description": "Kilometres per year", "format": "number" }, "LiFr": { "type": "string", "enum": [ "1", "2" ], "maxLength": 20, "description": "Light cargo\n1 = Light cargo with only commuter traffic;\n2 = Light cargo with only private or mixed use (commuter and private);", "format": "" }, "FaHy": { "type": "boolean", "description": "False hybrid", "format": "" }, "CO2n": { "type": "integer", "description": "CO2 not hybrid", "format": "" }, "COfh": { "type": "integer", "description": "CO2 emissions false hybrid", "format": "" }, "CWfh": { "type": "integer", "description": "CO2 WLTP false hybrid", "format": "" }, "CWtp": { "type": "integer", "description": "CO2 WLTP", "format": "" }, "ExSs": { "type": "boolean", "description": "Exclude employers' social-accounting secretariat", "format": "" }, "CaPa": { "type": "string", "enum": [ "M1", "N1" ], "maxLength": 20, "description": "Vehicle category\nM1 = Transport of passengers;\nN1 = Transport of goods;", "format": "" }, "UtWw": { "type": "boolean", "description": "Utility vehicle for commuting", "format": "" }, "CoPa": { "type": "number", "description": "CO2 coefficient", "format": "number" }, "KpPa": { "type": "string", "enum": [ "B", "D", "E", "F", "GB", "I", "L", "NL" ], "maxLength": 20, "description": "Country number plate\nB = Belgium;\nD = Germany;\nE = Spain;\nF = France;\nGB = United Kingdom;\nI = Italy;\nL = Luxembourg;\nNL = Netherlands;", "format": "" }, "DaPu": { "type": "string", "description": "Date of purchase", "format": "date" } }, "required": [ "TrTy", "CmId", "CcSn", "DaBl", "GrRg", "ViMr", "CmUs", "InKm", "DaPr", "CtVl", "OnVl", "AgId", "PeAd", "ReVe", "FaHy", "ExSs", "UtWw" ] }, "Objects": { "type": "array", "items": { "type": "object", "properties": { "HrEmployeeMobility": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "EmId": { "type": "string", "maxLength": 15, "description": "Employee", "format": "" }, "SeNo": { "type": "integer", "description": "Sequence number", "format": "" }, "DaBe": { "type": "string", "description": "Start date", "format": "date" }, "DaEn": { "type": "string", "description": "End date", "format": "date" }, "OwCo": { "type": "number", "description": "Personal contribution for personal use", "format": "number" }, "OwOt": { "type": "number", "description": "Personal contribution for other reasons", "format": "number" }, "EmCo": { "type": "number", "description": "Employee contribution", "format": "number" }, "PeAd": { "type": "integer", "description": "Addition (%)", "format": "" }, "AdLi": { "type": "number", "description": "Addition % limit amount", "format": "number" }, "HiAd": { "type": "integer", "description": "Addition above the limit (%)", "format": "" }, "PaVr": { "type": "boolean", "description": "Include vehicle in wage processing", "format": "" }, "CaUs": { "type": "string", "enum": [ "1", "2", "3" ], "maxLength": 20, "description": "Use of vehicle\n1 = Mixed use;\n2 = Exclusively private use;\n3 = Exclusively for commuting;", "format": "" }, "CO2C": { "type": "string", "enum": [ "5770" ], "maxLength": 20, "description": "Code CO2 contribution\n5770 = Bijdrage op voordeel bedrijfswagen;", "format": "" }, "AdTy": { "type": "string", "maxLength": 20, "description": "Advantage type", "format": "" }, "CoAd": { "type": "string", "maxLength": 20, "description": "Advantage code", "format": "" }, "CnTy": { "type": "string", "enum": [ "1", "2", "3", "4" ], "maxLength": 20, "description": "Own contribution type\n1 = Advantage with commuter traffic;\n2 = Advantage without commuter traffic;\n3 = Manager advantage;\n4 = Own contribution;", "format": "" }, "ApAd": { "type": "boolean", "description": "Own contribution", "format": "" }, "TeVe": { "type": "boolean", "description": "Aanloopwagen", "format": "" }, "PaCa": { "type": "string", "enum": [ "0", "1", "2" ], "maxLength": 20, "description": "Calculation method\n0 = Automatic calculation of the advantage codes in the payroll;\n1 = Only fisal file;\n2 = No automatic calculation of the advantage codes in the payroll;", "format": "" }, "PaCo": { "type": "string", "enum": [ "0", "1", "2", "3", "4", "9" ], "maxLength": 20, "description": "Own contribution\n0 = No allowance;\n1 = Calculate allowance;\n2 = No calculation code, with effect;\n3 = No calculation code, without effect;\n4 = Automatische berekening (volledige tussenkomst werknemer);\n9 = No calculation;", "format": "" }, "PaFo": { "type": "number", "description": "Forf. interv. weeks/month", "format": "number" }, "PaMo": { "type": "boolean", "description": "Mobility budget", "format": "" }, "PaSn": { "type": "integer", "description": "Partena sequence number", "format": "" } }, "required": [ "EmId", "SeNo", "DaBe", "OwCo", "OwOt", "PeAd", "PaVr", "TeVe", "PaMo" ] } } } } } }, "HrEmployeeMobilityRegistration": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "Id": { "type": "integer", "description": "Sequence number", "format": "" }, "DaEn": { "type": "string", "description": "End date", "format": "date" }, "KmEn": { "type": "integer", "description": "End position", "format": "" } }, "required": [ "Id", "DaEn", "KmEn" ] } } } } } } } } } } } } } } }, "HrMobility_PUT": { "type": "object", "properties": { "HrMobility": { "type": "object", "properties": { "Element": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "TrTy": { "type": "string", "enum": [ "1", "2", "3", "4", "5", "O" ], "maxLength": 20, "description": "Type of means of transport\n1 = Car;\n2 = Motorcycle;\n3 = Moped or scooter;\n4 = Bicycle;\n5 = Speed-pedelec;\nO = Other;", "format": "" }, "CmId": { "type": "string", "maxLength": 15, "description": "Employer", "format": "" }, "CcSn": { "type": "integer", "description": "Sequence number", "format": "" }, "CoNu": { "type": "string", "maxLength": 30, "description": "Contract number", "format": "" }, "LsAm": { "type": "number", "multipleOf": 0.01, "description": "Lease amount", "format": "float" }, "DaBl": { "type": "string", "description": "Start date", "format": "date" }, "DaEl": { "type": "string", "description": "End date", "format": "date" }, "NrKm": { "type": "integer", "description": "Final position of contract (km)", "format": "" }, "RgNr": { "type": "string", "maxLength": 16, "description": "Registration number", "format": "" }, "GrRg": { "type": "boolean", "description": "Registered as a van", "format": "" }, "SeNu": { "type": "string", "maxLength": 30, "description": "Serial number", "format": "" }, "ViMr": { "type": "string", "enum": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "54", "55", "56", "57", "58", "59", "60", "61", "62", "63", "64", "65", "66", "67", "68" ], "maxLength": 20, "description": "Make\n1 = Opel;\n2 = Volkswagen;\n3 = Renault;\n4 = Ford;\n5 = Peugeot;\n6 = Citroën;\n7 = Mazda;\n8 = Nissan;\n9 = Toyota;\n10 = Daewoo;\n11 = Rover;\n12 = Mercedes;\n13 = Volvo;\n14 = Saab;\n15 = Jaguar;\n16 = Mitsubishi;\n17 = Alfa Romeo;\n18 = Aston Martin;\n19 = Audi;\n20 = Bentley;\n21 = BMW;\n22 = Bugatti;\n23 = Buick;\n24 = Cadillac;\n25 = Chevrolet;\n26 = Chrysler;\n27 = Daihatsu;\n28 = De Tomasso;\n29 = Donkervoort;\n30 = Ferrari;\n31 = Fiat;\n32 = Ford U.S.A.;\n33 = FSO;\n34 = Galloper;\n35 = Honda;\n36 = Hummer;\n37 = Hyundai;\n38 = Indigo;\n39 = Jeep;\n40 = Kia;\n41 = Lada;\n42 = Lamborghini;\n43 = Lancia;\n44 = Land Rover;\n45 = Lexus;\n46 = Lincoln;\n47 = Lotus;\n48 = Marcos;\n49 = Maserati;\n50 = Maybach;\n51 = Mercury;\n52 = MG;\n53 = Mini;\n54 = Morgan;\n55 = Pontiac;\n56 = Porsche;\n57 = Range Rover;\n58 = Rolls Royce;\n59 = Seat;\n60 = Skoda;\n61 = Smart;\n62 = Spyker;\n63 = SsangYong;\n64 = Subaru;\n65 = Suzuki;\n66 = Tata;\n67 = TVR;\n68 = Venturi;", "format": "" }, "ViMd": { "type": "string", "enum": [ "1", "2", "3", "4", "5", "6" ], "maxLength": 20, "description": "Model\n1 = Hatchback;\n2 = Cabriolet;\n3 = Coupé;\n4 = Station;\n5 = Sedan;\n6 = MPV;", "format": "" }, "Ad": { "type": "string", "maxLength": 50, "description": "Extras", "format": "" }, "Re": { "type": "string", "description": "Remark", "format": "byte" }, "CmUs": { "type": "boolean", "description": "General use", "format": "" }, "InKm": { "type": "integer", "description": "Starting position (km)", "format": "" }, "DaPr": { "type": "string", "description": "Registration date no. 1", "format": "date" }, "CtVl": { "type": "number", "multipleOf": 0.01, "description": "List price", "format": "float" }, "ViFl": { "type": "string", "enum": [ "B", "G", "D", "E", "Y", "Z", "PhD", "PhB" ], "maxLength": 20, "description": "Fuel\nB = Petrol;\nG = Gas;\nD = Diesel;\nE = Electric;\nY = Hybrid petrol;\nZ = Hybrid diesel;\nPhD = Plug-in hybrid diesel;\nPhB = Plug-in hybrid petrol;", "format": "" }, "OnVl": { "type": "boolean", "description": "Default own risk", "format": "" }, "AgId": { "type": "string", "maxLength": 15, "description": "Lease company", "format": "" }, "PeAd": { "type": "integer", "description": "Addition (%)", "format": "" }, "AdLi": { "type": "number", "multipleOf": 0.01, "description": "Addition % limit amount", "format": "float" }, "HiAd": { "type": "integer", "description": "Addition above the limit (%)", "format": "" }, "CO2": { "type": "integer", "description": "CO2 emission", "format": "" }, "ViEl": { "type": "string", "enum": [ "A", "B", "C", "D", "E", "F", "G" ], "maxLength": 20, "description": "Energy label\nA = A label;\nB = B label;\nC = C label;\nD = D label;\nE = E label;\nF = F label;\nG = G label;", "format": "" }, "ReVe": { "type": "boolean", "description": "Replacement car", "format": "" }, "LeTy": { "type": "string", "enum": [ "1", "2", "3" ], "maxLength": 20, "description": "Leasing type\n1 = Financial;\n2 = Operational;\n3 = Self-administered;", "format": "" }, "LeCo": { "type": "string", "enum": [ "ALD", "ALPHA", "AMEC", "ARVAL", "ATHL", "AVIS", "BMW", "CIAC", "DEXIA", "DIET", "DIREC", "EXCEL", "FAVOR", "FIAT", "FORD", "FORTS", "GECFF", "HERTZ", "ICLBE", "ING", "JT", "KBC", "KEDDY", "LP", "MAST", "MBFS", "PARC", "PSA", "RBF", "SERV", "SIXT", "VANC", "WEST" ], "maxLength": 20, "description": "SD lease company\nALD = ALD Automotive;\nALPHA = Alphabet Belgium;\nAMEC = AMEC;\nARVAL = Arval;\nATHL = Athlon Car Lease;\nAVIS = Avis;\nBMW = BMW Financial Services;\nCIAC = CIAC Fleet;\nDEXIA = Dexia Auto Lease;\nDIET = D'Ieteren Lease;\nDIREC = DirectLease;\nEXCEL = Excelease;\nFAVOR = Favor Lease;\nFIAT = Fiat Lease;\nFORD = Ford Business Partner;\nFORTS = Fortis Lease;\nGECFF = GE Commercial Finance Fleet Services;\nHERTZ = Hertz;\nICLBE = ING Car Lease;\nING = ING Car Lease;\nJT = J&T Autolease;\nKBC = KBC Autolease;\nKEDDY = Keddy/Europacar;\nLP = LeasePlan;\nMAST = Masterlease;\nMBFS = Mercedes-Benz Financial Services;\nPARC = Parcours Belgium;\nPSA = PSA Finance Belux;\nRBF = Renault Business Finance;\nSERV = Service Rent;\nSIXT = SIXT;\nVANC = Vancia Rent;\nWEST = West Lease;", "format": "" }, "LeDu": { "type": "number", "description": "Term", "format": "number" }, "KmYe": { "type": "number", "description": "Kilometres per year", "format": "number" }, "LiFr": { "type": "string", "enum": [ "1", "2" ], "maxLength": 20, "description": "Light cargo\n1 = Light cargo with only commuter traffic;\n2 = Light cargo with only private or mixed use (commuter and private);", "format": "" }, "FaHy": { "type": "boolean", "description": "False hybrid", "format": "" }, "CO2n": { "type": "integer", "description": "CO2 not hybrid", "format": "" }, "COfh": { "type": "integer", "description": "CO2 emissions false hybrid", "format": "" }, "CWfh": { "type": "integer", "description": "CO2 WLTP false hybrid", "format": "" }, "CWtp": { "type": "integer", "description": "CO2 WLTP", "format": "" }, "ExSs": { "type": "boolean", "description": "Exclude employers' social-accounting secretariat", "format": "" }, "CaPa": { "type": "string", "enum": [ "M1", "N1" ], "maxLength": 20, "description": "Vehicle category\nM1 = Transport of passengers;\nN1 = Transport of goods;", "format": "" }, "UtWw": { "type": "boolean", "description": "Utility vehicle for commuting", "format": "" }, "CoPa": { "type": "number", "multipleOf": 0.01, "description": "CO2 coefficient", "format": "float" }, "KpPa": { "type": "string", "enum": [ "B", "D", "E", "F", "GB", "I", "L", "NL" ], "maxLength": 20, "description": "Country number plate\nB = Belgium;\nD = Germany;\nE = Spain;\nF = France;\nGB = United Kingdom;\nI = Italy;\nL = Luxembourg;\nNL = Netherlands;", "format": "" }, "DaPu": { "type": "string", "description": "Date of purchase", "format": "date" } }, "required": [ "CcSn" ] }, "Objects": { "type": "array", "items": { "type": "object", "properties": { "HrEmployeeMobility": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "EmId": { "type": "string", "maxLength": 15, "description": "Employee", "format": "" }, "SeNo": { "type": "integer", "description": "Sequence number", "format": "" }, "DaBe": { "type": "string", "description": "Start date", "format": "date" }, "DaEn": { "type": "string", "description": "End date", "format": "date" }, "OwCo": { "type": "number", "multipleOf": 0.01, "description": "Personal contribution for personal use", "format": "float" }, "OwOt": { "type": "number", "multipleOf": 0.01, "description": "Personal contribution for other reasons", "format": "float" }, "EmCo": { "type": "number", "multipleOf": 0.01, "description": "Employee contribution", "format": "float" }, "PeAd": { "type": "integer", "description": "Addition (%)", "format": "" }, "AdLi": { "type": "number", "multipleOf": 0.01, "description": "Addition % limit amount", "format": "float" }, "HiAd": { "type": "integer", "description": "Addition above the limit (%)", "format": "" }, "PaVr": { "type": "boolean", "description": "Include vehicle in wage processing", "format": "" }, "CaUs": { "type": "string", "enum": [ "1", "2", "3" ], "maxLength": 20, "description": "Use of vehicle\n1 = Mixed use;\n2 = Exclusively private use;\n3 = Exclusively for commuting;", "format": "" }, "CO2C": { "type": "string", "enum": [ "5770" ], "maxLength": 20, "description": "Code CO2 contribution\n5770 = Bijdrage op voordeel bedrijfswagen;", "format": "" }, "AdTy": { "type": "string", "maxLength": 20, "description": "Advantage type", "format": "" }, "CoAd": { "type": "string", "maxLength": 20, "description": "Advantage code", "format": "" }, "CnTy": { "type": "string", "enum": [ "1", "2", "3", "4" ], "maxLength": 20, "description": "Own contribution type\n1 = Advantage with commuter traffic;\n2 = Advantage without commuter traffic;\n3 = Manager advantage;\n4 = Own contribution;", "format": "" }, "ApAd": { "type": "boolean", "description": "Own contribution", "format": "" }, "TeVe": { "type": "boolean", "description": "Aanloopwagen", "format": "" }, "PaCa": { "type": "string", "enum": [ "0", "1", "2" ], "maxLength": 20, "description": "Calculation method\n0 = Automatic calculation of the advantage codes in the payroll;\n1 = Only fisal file;\n2 = No automatic calculation of the advantage codes in the payroll;", "format": "" }, "PaCo": { "type": "string", "enum": [ "0", "1", "2", "3", "4", "9" ], "maxLength": 20, "description": "Own contribution\n0 = No allowance;\n1 = Calculate allowance;\n2 = No calculation code, with effect;\n3 = No calculation code, without effect;\n4 = Automatische berekening (volledige tussenkomst werknemer);\n9 = No calculation;", "format": "" }, "PaFo": { "type": "number", "multipleOf": 0.01, "description": "Forf. interv. weeks/month", "format": "float" }, "PaMo": { "type": "boolean", "description": "Mobility budget", "format": "" }, "PaSn": { "type": "integer", "description": "Partena sequence number", "format": "" } }, "required": [ "EmId", "SeNo" ] } } } } } }, "HrEmployeeMobilityRegistration": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "Id": { "type": "integer", "description": "Sequence number", "format": "" }, "DaEn": { "type": "string", "description": "End date", "format": "date" }, "KmEn": { "type": "integer", "description": "End position", "format": "" } }, "required": [ "Id" ] } } } } } } } } } } } } } } }, "HrRelative_POST": { "type": "object", "properties": { "HrRelative": { "type": "object", "properties": { "Element": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "EmId": { "type": "string", "maxLength": 15, "description": "Employee", "format": "" }, "FaSn": { "type": "integer", "description": "Sequence number", "format": "" }, "MuId": { "type": "string", "maxLength": 32, "description": "Entry ID", "format": "" }, "ViFt": { "type": "string", "maxLength": 20, "description": "Family relationship", "format": "" }, "CpEm": { "type": "boolean", "description": "Emergency contact person", "format": "" }, "Nm": { "type": "string", "maxLength": 30, "description": "Last name", "format": "" }, "In": { "type": "string", "maxLength": 10, "description": "Initials", "format": "" }, "Is": { "type": "string", "maxLength": 10, "description": "Prefix", "format": "" }, "FiNm": { "type": "string", "maxLength": 30, "description": "First name", "format": "" }, "ViGe": { "type": "string", "enum": [ "M", "U", "F", "X" ], "maxLength": 20, "description": "Gender\nM = Male;\nU = Unknown;\nF = Female;\nX = Non-binary;", "format": "" }, "DaBi": { "type": "string", "description": "Date of birth", "format": "date" }, "DaDe": { "type": "string", "description": "Date deceased", "format": "date" }, "Te": { "type": "string", "maxLength": 16, "description": "Phone no.", "format": "password" }, "PaHi": { "type": "boolean", "description": "Collective med. ins. participant", "format": "" }, "Mchi": { "type": "boolean", "description": "Multiple birth", "format": "" }, "PaLe": { "type": "boolean", "description": "Is eligible for partner leave", "format": "" }, "Hdcp": { "type": "boolean", "description": "Has a disability or impairment", "format": "" }, "ProfileId": { "type": "string", "maxLength": 3, "description": "Profielselectie", "format": "" } }, "required": [ "EmId", "FaSn", "MuId", "ViFt", "ViGe", "DaBi" ] }, "Objects": { "type": "array", "items": { "type": "object", "properties": { "HrRelativeAttachment": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "FileName": { "type": "string", "maxLength": 255, "description": "FileName", "format": "" }, "FileId": { "type": "string", "maxLength": 32, "description": "File Id", "format": "" }, "FileStream": { "type": "string", "description": "File as Base64 string", "format": "byte" } } } } } } } } } } } } } } } } }, "HrSelectionModel_POST": { "type": "object", "properties": { "HrSelectionModel": { "type": "object", "properties": { "Element": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "EmId": { "type": "string", "maxLength": 15, "description": "Employee", "format": "" }, "DaBe": { "type": "string", "description": "Start date", "format": "date" }, "DaEn": { "type": "string", "description": "End date", "format": "date" }, "SmId": { "type": "string", "maxLength": 10, "description": "Target", "format": "" }, "Ds": { "type": "string", "maxLength": 80, "description": "Description", "format": "" }, "Amnt": { "type": "number", "description": "Amount", "format": "number" }, "PoTa": { "type": "boolean", "description": "Pay target to employee", "format": "" }, "ViRs": { "type": "string", "enum": [ "1", "2" ], "maxLength": 20, "description": "Insufficient source\n1 = Deduct untaxed the remaining period amount;\n2 = Deduct taxed the remaining period amount of the salary;", "format": "" }, "ViPa": { "type": "string", "enum": [ "1", "2" ], "maxLength": 20, "description": "Settle when leaving employment\n1 = Deduct maximum taxation remainder (VT, EJU, salary + untaxed);\n2 = Deduct remainder as a regular period (sources + set insufficient source);", "format": "" } }, "required": [ "EmId", "DaBe", "SmId" ] }, "Objects": { "type": "array", "items": { "type": "object", "properties": { "HrSelectionModelSource": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "DaBe": { "type": "string", "description": "Start date", "format": "date" }, "EmsFsSa": { "type": "boolean", "description": "Bron salaris", "format": "" }, "EmsInSa": { "type": "number", "description": "Totaal inzet salaris", "format": "number" }, "EmsPeSa": { "type": "number", "description": "Periodieke inzet salaris", "format": "number" }, "EmsFsVt": { "type": "boolean", "description": "Bron vakantietoeslag", "format": "" }, "EmsInVt": { "type": "number", "description": "Totaal inzet VT", "format": "number" }, "EmsYrVt": { "type": "number", "description": "Jaarlijkse inzet VT", "format": "number" }, "EmsFsYt": { "type": "boolean", "description": "Bron eindejaarsuitkering", "format": "" }, "EmsInYt": { "type": "number", "description": "Totaal inzet EJU", "format": "number" }, "EmsYrYt": { "type": "number", "description": "Jaarlijkse inzet EJU", "format": "number" }, "EmsViHt": { "type": "string", "maxLength": 10, "description": "Type uren", "format": "" }, "EmsViLs": { "type": "string", "maxLength": 10, "description": "Type verlof", "format": "" }, "EmsInAl": { "type": "number", "description": "Bedrag inzet uren", "format": "number" }, "EmsYnLh": { "type": "boolean", "description": "Verlofcorrectie aanmaken voor verkopen verlof", "format": "" }, "EmsViCr": { "type": "string", "maxLength": 10, "description": "Reden verlofcorrectie", "format": "" }, "EmsRe": { "type": "string", "description": "Opmerking verlofcorrectie", "format": "byte" } }, "required": [ "DaBe" ] } } } } } } } } } } } } } } }, "HrTimeRegSocSec_POST": { "type": "object", "properties": { "HrTimeRegSocSec": { "type": "object", "properties": { "Element": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "Id": { "type": "integer", "description": "Line number", "format": "" }, "Date": { "type": "string", "description": "Date", "format": "date" }, "WaCo": { "type": "string", "maxLength": 20, "description": "Wage code", "format": "" }, "NrHr": { "type": "number", "description": "Number of hours", "format": "number" }, "CmId": { "type": "string", "maxLength": 15, "description": "Employer", "format": "" }, "EmId": { "type": "string", "maxLength": 15, "description": "Employee", "format": "" }, "DvSn": { "type": "integer", "description": "Sequence number employment", "format": "" }, "Ac01": { "type": "string", "maxLength": 1, "description": "Action indication", "format": "" }, "Ac02": { "type": "string", "maxLength": 70, "description": "Legal entity number", "format": "" }, "Ac03": { "type": "string", "maxLength": 20, "description": "HR employment contract number", "format": "" }, "Ac04": { "type": "string", "maxLength": 10, "description": "Date", "format": "" }, "Ac05": { "type": "number", "description": "Sequence number", "format": "number" }, "Ac06": { "type": "string", "maxLength": 6, "description": "Day code", "format": "" }, "Ac07": { "type": "string", "maxLength": 4, "description": "Number of hours", "format": "" }, "Ac08": { "type": "string", "maxLength": 1, "description": "Shift code", "format": "" }, "Ac09": { "type": "number", "description": "Hourly wage", "format": "number" }, "Ac10": { "type": "string", "enum": [ "1", "2" ], "maxLength": 20, "description": "Payment code\n1 = Yes;\n2 = No;", "format": "" }, "Ac11": { "type": "string", "enum": [ "1", "2" ], "maxLength": 20, "description": "New absence\n1 = Yes;\n2 = No;", "format": "" }, "Ac12": { "type": "string", "maxLength": 9, "description": "Wage scale", "format": "" }, "Ac13": { "type": "string", "maxLength": 20, "description": "Scheduled wage code", "format": "" }, "Ac14": { "type": "string", "maxLength": 8, "description": "Payment schedule", "format": "" }, "Ac15": { "type": "string", "maxLength": 1, "description": "Shift code", "format": "" }, "Ac16": { "type": "string", "maxLength": 12, "description": "Department/cost centre", "format": "" }, "GS01": { "type": "string", "maxLength": 10, "description": "Registration number of the employer", "format": "" }, "GS02": { "type": "string", "maxLength": 6, "description": "Presta-nummer", "format": "" }, "GS03": { "type": "string", "maxLength": 8, "description": "Date of the performance", "format": "" }, "GS04": { "type": "string", "maxLength": 3, "description": "Mnemoniek code van de puntering", "format": "" }, "GS05": { "type": "string", "maxLength": 1, "description": "Voorbehouden", "format": "" }, "GS06": { "type": "string", "maxLength": 1, "description": "Teken van de prestatie", "format": "" }, "GS07": { "type": "string", "maxLength": 4, "description": "Duration of the service", "format": "" }, "GS08": { "type": "integer", "description": "Level 1", "format": "" }, "GS09": { "type": "integer", "description": "Level 2", "format": "" }, "GS10": { "type": "integer", "description": "Level 3", "format": "" }, "GS11": { "type": "number", "description": "Unit value of the service", "format": "number" }, "GS12": { "type": "number", "description": "Percentage linked to the service", "format": "number" }, "GS13": { "type": "string", "maxLength": 20, "description": "Mnemoniek code van de puntering 2", "format": "" }, "GS14": { "type": "string", "maxLength": 20, "description": "Mnemoniek code van de puntering 3", "format": "" }, "GS15": { "type": "string", "maxLength": 20, "description": "Mnemoniek code van de puntering 4", "format": "" }, "GS16": { "type": "integer", "description": "Begin uur", "format": "" }, "GS17": { "type": "string", "enum": [ "1", "2", "3" ], "maxLength": 20, "description": "Reason\n1 = No relapse;\n2 = Submit late;\n3 = No relapse and late submission;", "format": "" }, "GS18": { "type": "integer", "description": "Standaard duur van de dag", "format": "" }, "GS19": { "type": "string", "maxLength": 9, "description": "Mnemoniek code van de functie", "format": "" }, "GS20": { "type": "string", "maxLength": 9, "description": "Mnemoniek code van de premie 1", "format": "" }, "GS21": { "type": "string", "maxLength": 9, "description": "Mnemoniek code van de premie 2", "format": "" }, "GS22": { "type": "string", "maxLength": 9, "description": "Mnemoniek code van de premie 3", "format": "" }, "GS23": { "type": "number", "description": "Eenheidswaarde van de premie 1", "format": "number" }, "GS24": { "type": "number", "description": "Eenheidswaarde van de premie 2", "format": "number" }, "GS25": { "type": "number", "description": "Eenheidswaarde van de premie 3", "format": "number" }, "GS26": { "type": "string", "maxLength": 20, "description": "Imputatie 1", "format": "" }, "GS27": { "type": "string", "maxLength": 20, "description": "Imputatie 2", "format": "" }, "GS28": { "type": "string", "maxLength": 20, "description": "Imputatie 3", "format": "" }, "GS29": { "type": "string", "maxLength": 2, "description": "Code mobiliteit", "format": "" }, "GS30": { "type": "string", "maxLength": 2, "description": "Code verplaatsing", "format": "" }, "GS31": { "type": "string", "maxLength": 20, "description": "Code opstapplaats", "format": "" }, "GS32": { "type": "integer", "description": "Aantal km mobiliteit", "format": "" }, "GS33": { "type": "integer", "description": "Aantal km verplaatsing", "format": "" }, "GS34": { "type": "string", "maxLength": 1, "description": "Category of social charges", "format": "" }, "GS35": { "type": "string", "maxLength": 1, "description": "Allocation of social charges", "format": "" }, "SD01": { "type": "string", "maxLength": 7, "description": "Employer number", "format": "" }, "SD02": { "type": "string", "maxLength": 17, "description": "Employee number", "format": "" }, "SD03": { "type": "string", "maxLength": 10, "description": "Calendar day", "format": "" }, "SD04": { "type": "string", "maxLength": 4, "description": "Wage code", "format": "" }, "SD05": { "type": "string", "maxLength": 5, "description": "Number of hours", "format": "" }, "SD06": { "type": "number", "description": "Percent", "format": "number" }, "SD07": { "type": "integer", "description": "Shift code", "format": "" }, "SD08": { "type": "number", "description": "Hourly wage", "format": "number" }, "SD09": { "type": "string", "maxLength": 7, "description": "Cost centre", "format": "" } }, "required": [ "Date", "CmId", "EmId" ] } } } } } } }, "HrTimeRegSocSec_PUT": { "type": "object", "properties": { "HrTimeRegSocSec": { "type": "object", "properties": { "Element": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "Id": { "type": "integer", "description": "Line number", "format": "" }, "Date": { "type": "string", "description": "Date", "format": "date" }, "WaCo": { "type": "string", "maxLength": 20, "description": "Wage code", "format": "" }, "NrHr": { "type": "number", "multipleOf": 0.01, "description": "Number of hours", "format": "float" }, "CmId": { "type": "string", "maxLength": 15, "description": "Employer", "format": "" }, "EmId": { "type": "string", "maxLength": 15, "description": "Employee", "format": "" }, "DvSn": { "type": "integer", "description": "Sequence number employment", "format": "" }, "Ac01": { "type": "string", "maxLength": 1, "description": "Action indication", "format": "" }, "Ac02": { "type": "string", "maxLength": 70, "description": "Legal entity number", "format": "" }, "Ac03": { "type": "string", "maxLength": 20, "description": "HR employment contract number", "format": "" }, "Ac04": { "type": "string", "maxLength": 10, "description": "Date", "format": "" }, "Ac05": { "type": "number", "description": "Sequence number", "format": "number" }, "Ac06": { "type": "string", "maxLength": 6, "description": "Day code", "format": "" }, "Ac07": { "type": "string", "maxLength": 4, "description": "Number of hours", "format": "" }, "Ac08": { "type": "string", "maxLength": 1, "description": "Shift code", "format": "" }, "Ac09": { "type": "number", "multipleOf": 1E-05, "description": "Hourly wage", "format": "float" }, "Ac10": { "type": "string", "enum": [ "1", "2" ], "maxLength": 20, "description": "Payment code\n1 = Yes;\n2 = No;", "format": "" }, "Ac11": { "type": "string", "enum": [ "1", "2" ], "maxLength": 20, "description": "New absence\n1 = Yes;\n2 = No;", "format": "" }, "Ac12": { "type": "string", "maxLength": 9, "description": "Wage scale", "format": "" }, "Ac13": { "type": "string", "maxLength": 20, "description": "Scheduled wage code", "format": "" }, "Ac14": { "type": "string", "maxLength": 8, "description": "Payment schedule", "format": "" }, "Ac15": { "type": "string", "maxLength": 1, "description": "Shift code", "format": "" }, "Ac16": { "type": "string", "maxLength": 12, "description": "Department/cost centre", "format": "" }, "GS01": { "type": "string", "maxLength": 10, "description": "Registration number of the employer", "format": "" }, "GS02": { "type": "string", "maxLength": 6, "description": "Presta-nummer", "format": "" }, "GS03": { "type": "string", "maxLength": 8, "description": "Date of the performance", "format": "" }, "GS04": { "type": "string", "maxLength": 3, "description": "Mnemoniek code van de puntering", "format": "" }, "GS05": { "type": "string", "maxLength": 1, "description": "Voorbehouden", "format": "" }, "GS06": { "type": "string", "maxLength": 1, "description": "Teken van de prestatie", "format": "" }, "GS07": { "type": "string", "maxLength": 4, "description": "Duration of the service", "format": "" }, "GS08": { "type": "integer", "description": "Level 1", "format": "" }, "GS09": { "type": "integer", "description": "Level 2", "format": "" }, "GS10": { "type": "integer", "description": "Level 3", "format": "" }, "GS11": { "type": "number", "multipleOf": 0.0001, "description": "Unit value of the service", "format": "float" }, "GS12": { "type": "number", "multipleOf": 0.01, "description": "Percentage linked to the service", "format": "float" }, "GS13": { "type": "string", "maxLength": 20, "description": "Mnemoniek code van de puntering 2", "format": "" }, "GS14": { "type": "string", "maxLength": 20, "description": "Mnemoniek code van de puntering 3", "format": "" }, "GS15": { "type": "string", "maxLength": 20, "description": "Mnemoniek code van de puntering 4", "format": "" }, "GS16": { "type": "integer", "description": "Begin uur", "format": "" }, "GS17": { "type": "string", "enum": [ "1", "2", "3" ], "maxLength": 20, "description": "Reason\n1 = No relapse;\n2 = Submit late;\n3 = No relapse and late submission;", "format": "" }, "GS18": { "type": "integer", "description": "Standaard duur van de dag", "format": "" }, "GS19": { "type": "string", "maxLength": 9, "description": "Mnemoniek code van de functie", "format": "" }, "GS20": { "type": "string", "maxLength": 9, "description": "Mnemoniek code van de premie 1", "format": "" }, "GS21": { "type": "string", "maxLength": 9, "description": "Mnemoniek code van de premie 2", "format": "" }, "GS22": { "type": "string", "maxLength": 9, "description": "Mnemoniek code van de premie 3", "format": "" }, "GS23": { "type": "number", "multipleOf": 0.0001, "description": "Eenheidswaarde van de premie 1", "format": "float" }, "GS24": { "type": "number", "multipleOf": 0.0001, "description": "Eenheidswaarde van de premie 2", "format": "float" }, "GS25": { "type": "number", "multipleOf": 0.0001, "description": "Eenheidswaarde van de premie 3", "format": "float" }, "GS26": { "type": "string", "maxLength": 20, "description": "Imputatie 1", "format": "" }, "GS27": { "type": "string", "maxLength": 20, "description": "Imputatie 2", "format": "" }, "GS28": { "type": "string", "maxLength": 20, "description": "Imputatie 3", "format": "" }, "GS29": { "type": "string", "maxLength": 2, "description": "Code mobiliteit", "format": "" }, "GS30": { "type": "string", "maxLength": 2, "description": "Code verplaatsing", "format": "" }, "GS31": { "type": "string", "maxLength": 20, "description": "Code opstapplaats", "format": "" }, "GS32": { "type": "integer", "description": "Aantal km mobiliteit", "format": "" }, "GS33": { "type": "integer", "description": "Aantal km verplaatsing", "format": "" }, "GS34": { "type": "string", "maxLength": 1, "description": "Category of social charges", "format": "" }, "GS35": { "type": "string", "maxLength": 1, "description": "Allocation of social charges", "format": "" }, "SD01": { "type": "string", "maxLength": 7, "description": "Employer number", "format": "" }, "SD02": { "type": "string", "maxLength": 17, "description": "Employee number", "format": "" }, "SD03": { "type": "string", "maxLength": 10, "description": "Calendar day", "format": "" }, "SD04": { "type": "string", "maxLength": 4, "description": "Wage code", "format": "" }, "SD05": { "type": "string", "maxLength": 5, "description": "Number of hours", "format": "" }, "SD06": { "type": "number", "multipleOf": 0.01, "description": "Percent", "format": "float" }, "SD07": { "type": "integer", "description": "Shift code", "format": "" }, "SD08": { "type": "number", "multipleOf": 0.0001, "description": "Hourly wage", "format": "float" }, "SD09": { "type": "string", "maxLength": 7, "description": "Cost centre", "format": "" } }, "required": [ "Id" ] } } } } } } }, "KnCustomK01_POST": { "type": "object", "properties": { "KnCustomK01": { "type": "object", "properties": { "Element": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "AuNu": { "type": "boolean", "description": "Autonummering gebruiken", "format": "" }, "SqNo": { "type": "integer", "description": "Sequence number", "format": "" }, "Da": { "type": "string", "description": "Date", "format": "date" }, "Ds": { "type": "string", "maxLength": 50, "description": "Description", "format": "" } } } } } } } } }, "KnCustomK01_PUT": { "type": "object", "properties": { "KnCustomK01": { "type": "object", "properties": { "Element": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "AuNu": { "type": "boolean", "description": "Autonummering gebruiken", "format": "" }, "SqNo": { "type": "integer", "description": "Sequence number", "format": "" }, "Da": { "type": "string", "description": "Date", "format": "date" }, "Ds": { "type": "string", "maxLength": 50, "description": "Description", "format": "" } }, "required": [ "SqNo" ] } } } } } } }, "KnCustomK02_POST": { "type": "object", "properties": { "KnCustomK02": { "type": "object", "properties": { "Element": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "AuNu": { "type": "boolean", "description": "Autonummering gebruiken", "format": "" }, "SqNo": { "type": "integer", "description": "Sequence number", "format": "" }, "Da": { "type": "string", "description": "Date", "format": "date" }, "Ds": { "type": "string", "maxLength": 50, "description": "Description", "format": "" } } } } } } } } }, "KnCustomK02_PUT": { "type": "object", "properties": { "KnCustomK02": { "type": "object", "properties": { "Element": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "AuNu": { "type": "boolean", "description": "Autonummering gebruiken", "format": "" }, "SqNo": { "type": "integer", "description": "Sequence number", "format": "" }, "Da": { "type": "string", "description": "Date", "format": "date" }, "Ds": { "type": "string", "maxLength": 50, "description": "Description", "format": "" } }, "required": [ "SqNo" ] } } } } } } }, "KnCustomK03_POST": { "type": "object", "properties": { "KnCustomK03": { "type": "object", "properties": { "Element": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "AuNu": { "type": "boolean", "description": "Autonummering gebruiken", "format": "" }, "SqNo": { "type": "integer", "description": "Sequence number", "format": "" }, "Da": { "type": "string", "description": "Date", "format": "date" }, "Ds": { "type": "string", "maxLength": 50, "description": "Description", "format": "" } } } } } } } } }, "KnCustomK03_PUT": { "type": "object", "properties": { "KnCustomK03": { "type": "object", "properties": { "Element": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "AuNu": { "type": "boolean", "description": "Autonummering gebruiken", "format": "" }, "SqNo": { "type": "integer", "description": "Sequence number", "format": "" }, "Da": { "type": "string", "description": "Date", "format": "date" }, "Ds": { "type": "string", "maxLength": 50, "description": "Description", "format": "" } }, "required": [ "SqNo" ] } } } } } } }, "KnCustomK04_POST": { "type": "object", "properties": { "KnCustomK04": { "type": "object", "properties": { "Element": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "AuNu": { "type": "boolean", "description": "Autonummering gebruiken", "format": "" }, "SqNo": { "type": "integer", "description": "Sequence number", "format": "" }, "Da": { "type": "string", "description": "Date", "format": "date" }, "Ds": { "type": "string", "maxLength": 50, "description": "Description", "format": "" } } } } } } } } }, "KnCustomK04_PUT": { "type": "object", "properties": { "KnCustomK04": { "type": "object", "properties": { "Element": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "AuNu": { "type": "boolean", "description": "Autonummering gebruiken", "format": "" }, "SqNo": { "type": "integer", "description": "Sequence number", "format": "" }, "Da": { "type": "string", "description": "Date", "format": "date" }, "Ds": { "type": "string", "maxLength": 50, "description": "Description", "format": "" } }, "required": [ "SqNo" ] } } } } } } }, "KnCustomK05_POST": { "type": "object", "properties": { "KnCustomK05": { "type": "object", "properties": { "Element": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "AuNu": { "type": "boolean", "description": "Autonummering gebruiken", "format": "" }, "SqNo": { "type": "integer", "description": "Sequence number", "format": "" }, "Da": { "type": "string", "description": "Date", "format": "date" }, "Ds": { "type": "string", "maxLength": 50, "description": "Description", "format": "" } } } } } } } } }, "KnCustomK05_PUT": { "type": "object", "properties": { "KnCustomK05": { "type": "object", "properties": { "Element": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "AuNu": { "type": "boolean", "description": "Autonummering gebruiken", "format": "" }, "SqNo": { "type": "integer", "description": "Sequence number", "format": "" }, "Da": { "type": "string", "description": "Date", "format": "date" }, "Ds": { "type": "string", "maxLength": 50, "description": "Description", "format": "" } }, "required": [ "SqNo" ] } } } } } } }, "KnCustomK06_POST": { "type": "object", "properties": { "KnCustomK06": { "type": "object", "properties": { "Element": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "AuNu": { "type": "boolean", "description": "Autonummering gebruiken", "format": "" }, "SqNo": { "type": "integer", "description": "Sequence number", "format": "" }, "Da": { "type": "string", "description": "Date", "format": "date" }, "Ds": { "type": "string", "maxLength": 50, "description": "Description", "format": "" } } } } } } } } }, "KnCustomK06_PUT": { "type": "object", "properties": { "KnCustomK06": { "type": "object", "properties": { "Element": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "AuNu": { "type": "boolean", "description": "Autonummering gebruiken", "format": "" }, "SqNo": { "type": "integer", "description": "Sequence number", "format": "" }, "Da": { "type": "string", "description": "Date", "format": "date" }, "Ds": { "type": "string", "maxLength": 50, "description": "Description", "format": "" } }, "required": [ "SqNo" ] } } } } } } }, "KnCustomK07_POST": { "type": "object", "properties": { "KnCustomK07": { "type": "object", "properties": { "Element": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "AuNu": { "type": "boolean", "description": "Autonummering gebruiken", "format": "" }, "SqNo": { "type": "integer", "description": "Sequence number", "format": "" }, "Da": { "type": "string", "description": "Date", "format": "date" }, "Ds": { "type": "string", "maxLength": 50, "description": "Description", "format": "" } } } } } } } } }, "KnCustomK07_PUT": { "type": "object", "properties": { "KnCustomK07": { "type": "object", "properties": { "Element": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "AuNu": { "type": "boolean", "description": "Autonummering gebruiken", "format": "" }, "SqNo": { "type": "integer", "description": "Sequence number", "format": "" }, "Da": { "type": "string", "description": "Date", "format": "date" }, "Ds": { "type": "string", "maxLength": 50, "description": "Description", "format": "" } }, "required": [ "SqNo" ] } } } } } } }, "KnCustomK08_POST": { "type": "object", "properties": { "KnCustomK08": { "type": "object", "properties": { "Element": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "AuNu": { "type": "boolean", "description": "Autonummering gebruiken", "format": "" }, "SqNo": { "type": "integer", "description": "Sequence number", "format": "" }, "Da": { "type": "string", "description": "Date", "format": "date" }, "Ds": { "type": "string", "maxLength": 50, "description": "Description", "format": "" } } } } } } } } }, "KnCustomK08_PUT": { "type": "object", "properties": { "KnCustomK08": { "type": "object", "properties": { "Element": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "AuNu": { "type": "boolean", "description": "Autonummering gebruiken", "format": "" }, "SqNo": { "type": "integer", "description": "Sequence number", "format": "" }, "Da": { "type": "string", "description": "Date", "format": "date" }, "Ds": { "type": "string", "maxLength": 50, "description": "Description", "format": "" } }, "required": [ "SqNo" ] } } } } } } }, "KnCustomK09_POST": { "type": "object", "properties": { "KnCustomK09": { "type": "object", "properties": { "Element": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "AuNu": { "type": "boolean", "description": "Autonummering gebruiken", "format": "" }, "SqNo": { "type": "integer", "description": "Sequence number", "format": "" }, "Da": { "type": "string", "description": "Date", "format": "date" }, "Ds": { "type": "string", "maxLength": 50, "description": "Description", "format": "" } } } } } } } } }, "KnCustomK09_PUT": { "type": "object", "properties": { "KnCustomK09": { "type": "object", "properties": { "Element": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "AuNu": { "type": "boolean", "description": "Autonummering gebruiken", "format": "" }, "SqNo": { "type": "integer", "description": "Sequence number", "format": "" }, "Da": { "type": "string", "description": "Date", "format": "date" }, "Ds": { "type": "string", "maxLength": 50, "description": "Description", "format": "" } }, "required": [ "SqNo" ] } } } } } } }, "KnCustomK10_POST": { "type": "object", "properties": { "KnCustomK10": { "type": "object", "properties": { "Element": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "AuNu": { "type": "boolean", "description": "Autonummering gebruiken", "format": "" }, "SqNo": { "type": "integer", "description": "Sequence number", "format": "" }, "Da": { "type": "string", "description": "Date", "format": "date" }, "Ds": { "type": "string", "maxLength": 50, "description": "Description", "format": "" } } } } } } } } }, "KnCustomK10_PUT": { "type": "object", "properties": { "KnCustomK10": { "type": "object", "properties": { "Element": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "AuNu": { "type": "boolean", "description": "Autonummering gebruiken", "format": "" }, "SqNo": { "type": "integer", "description": "Sequence number", "format": "" }, "Da": { "type": "string", "description": "Date", "format": "date" }, "Ds": { "type": "string", "maxLength": 50, "description": "Description", "format": "" } }, "required": [ "SqNo" ] } } } } } } }, "KnDayContract_POST": { "type": "object", "properties": { "KnDayContract": { "type": "object", "properties": { "Element": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "EmId": { "type": "string", "maxLength": 15, "description": "Employee", "format": "" }, "DaDe": { "type": "string", "description": "Date deceased", "format": "date" }, "DaMa": { "type": "string", "description": "Wedding date", "format": "date" }, "DaDi": { "type": "string", "description": "Date of divorce", "format": "date" }, "ViSe": { "type": "string", "enum": [ "I", "S", "U" ], "maxLength": 20, "description": "Status\nI = Employed;\nS = Applicant;\nU = Employment ended;", "format": "" }, "WrLv": { "type": "integer", "description": "Work level", "format": "" }, "Bl": { "type": "boolean", "description": "Blocked", "format": "" }, "LwOb": { "type": "boolean", "description": "Objection to recording", "format": "" }, "LwTg": { "type": "boolean", "description": "Belonging to target group", "format": "" }, "LwRs": { "type": "string", "maxLength": 50, "description": "Place of birth", "format": "" }, "LwNa": { "type": "string", "maxLength": 3, "description": "Country of birth", "format": "" }, "LwFa": { "type": "string", "maxLength": 3, "description": "Father's country of birth", "format": "" }, "LwMo": { "type": "string", "maxLength": 3, "description": "Country of birth mother", "format": "" }, "Re": { "type": "string", "description": "Remark", "format": "byte" }, "RlBh": { "type": "string", "maxLength": 15, "description": "Account manager", "format": "" }, "StFs": { "type": "string", "enum": [ "1", "12", "2", "3", "4", "A", "B", "C", "G" ], "maxLength": 20, "description": "Start phase\n1 = Phase 1;\n12 = Phase 1-2;\n2 = Phase 2;\n3 = Phase 3;\n4 = Phase 4;\nA = Phase A;\nB = Phase B;\nC = Phase C;\nG = No phase count;", "format": "" }, "BeSf": { "type": "string", "description": "Start phase start date", "format": "date" }, "BePe": { "type": "string", "description": "Previous employer start date", "format": "date" }, "DlWk": { "type": "string", "description": "Date when last worked", "format": "date" }, "WkWh": { "type": "integer", "description": "Weeks worked in employment history", "format": "" }, "CF3h": { "type": "integer", "description": "Phase 3 calendar weeks in employment history", "format": "" }, "CFBh": { "type": "integer", "description": "Phase B calendar weeks in employment history", "format": "" }, "AF3h": { "type": "integer", "description": "Number of phase 3 contracts in employment history", "format": "" }, "AFBh": { "type": "integer", "description": "Number of phase B contracts in employment history", "format": "" }, "ViPa": { "type": "string", "enum": [ "4W", "P" ], "maxLength": 20, "description": "Payment frequency\n4W = 4 week(s);\nP = Period;", "format": "" }, "BlPa": { "type": "boolean", "description": "Blocked for payment", "format": "" }, "PsPv": { "type": "string", "enum": [ "P", "B", "E", "N" ], "maxLength": 20, "description": "Pay slip supply\nP = Print;\nB = Print and message;\nE = Message;\nN = Do not print/No message;", "format": "" }, "YsPv": { "type": "string", "enum": [ "P", "B", "E", "N" ], "maxLength": 20, "description": "Annual statement supply\nP = Print;\nB = Print and message;\nE = Message;\nN = Do not print/No message;", "format": "" }, "EmAd": { "type": "string", "enum": [ "P", "S" ], "maxLength": 20, "description": "E-mail for digital documents\nP = Private E-mail address;\nS = Work E-mail address;", "format": "" }, "SeAt": { "type": "boolean", "description": "Secure e-mail attachments", "format": "" }, "PwEm": { "type": "string", "maxLength": 70, "description": "Password", "format": "" }, "BeVo": { "type": "boolean", "description": "Administration", "format": "" }, "LdBb": { "type": "string", "description": "Last bicycle purchase date", "format": "date" } }, "required": [ "EmId", "ViSe", "LwOb", "LwTg" ] }, "Objects": { "type": "array", "items": { "type": "object", "properties": { "KnPerson": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "PadAdr": { "type": "boolean", "description": "Postadres is adres", "format": "" }, "AutoNum": { "type": "boolean", "description": "Autonummering", "format": "" }, "MatchPer": { "type": "string", "enum": [ "0", "1", "2", "3", "4", "5", "6", "7" ], "maxLength": 1, "description": "Persoon vergelijken op\n0 = Zoek op BcCo (Persoons-ID);\n1 = Burgerservicenummer;\n2 = Naam + voorvoegsel + initialen + geslacht;\n3 = Naam + voorvoegsel + initialen + geslacht + e-mail werk;\n4 = Naam + voorvoegsel + initialen + geslacht + mobiel werk;\n5 = Naam + voorvoegsel + initialen + geslacht + telefoon werk;\n6 = Naam + voorvoegsel + initialen + geslacht + geboortedatum;\n7 = Altijd nieuw toevoegen;", "format": "" }, "BcId": { "type": "integer", "description": "Organisation/Person (internal)", "format": "" }, "BcCo": { "type": "string", "maxLength": 15, "description": "Number", "format": "" }, "SeNm": { "type": "string", "maxLength": 10, "description": "Search name", "format": "" }, "CaNm": { "type": "string", "maxLength": 80, "description": "Usual name", "format": "" }, "FiNm": { "type": "string", "maxLength": 50, "description": "First name", "format": "" }, "In": { "type": "string", "maxLength": 15, "description": "Initials", "format": "" }, "Is": { "type": "string", "maxLength": 15, "description": "Prefix", "format": "" }, "LaNm": { "type": "string", "maxLength": 80, "description": "Last name", "format": "" }, "SpNm": { "type": "boolean", "description": "Enter surname at birth seperately", "format": "" }, "IsBi": { "type": "string", "maxLength": 15, "description": "Birth name prefix", "format": "" }, "NmBi": { "type": "string", "maxLength": 80, "description": "Surname at birth", "format": "" }, "IsPa": { "type": "string", "maxLength": 15, "description": "Prefix partner", "format": "" }, "NmPa": { "type": "string", "maxLength": 80, "description": "Partner's usual name", "format": "" }, "ViUs": { "type": "string", "enum": [ "0", "1", "2", "3" ], "maxLength": 20, "description": "Name use\n0 = Birth name;\n1 = Partner's birth name + Birth name;\n2 = Partner birth name;\n3 = Birth name + Partner's birth name;", "format": "" }, "ViGe": { "type": "string", "enum": [ "M", "U", "F", "X" ], "maxLength": 20, "description": "Gender\nM = Male;\nU = Unknown;\nF = Female;\nX = Non-binary;", "format": "" }, "PsNa": { "type": "string", "enum": [ "000", "NL", "DZ", "IN", "RU", "RB", "BU", "RCA", "KM", "RCB", "DY", "ET", "EQ", "ETH", "DJI", "GA", "WAG", "GH", "GN", "CI", "CV", "TC", "EAK", "CD", "LS", "LB", "LAR", "RM", "MW", "RMM", "MA", "RIM", "MS", "MOC", "RN", "WAN", "EAU", "GW", "ZA", "SD", "'ZW'", "RWA", "ST", "SN", "WAL", "SUD", "SP", "EAT", "TG", "TS", "TN", "Z", "SS", "BS", "BH", "CDN", "CR", "C", "DOM", "EL", "GCA", "RH", "HON", "JA", "MEX", "NIC", "PA", "TT", "USA", "RA", "BDS", "BOL", "BR", "RCH", "CO", "EC", "GUY", "PY", "PE", "SME", "ROU", "YV", "WG", "KN", "SK", "CZ", "BA", "GE", "AFG", "BRN", "BT", "BM", "BRU", "K", "CL", "CN", "CY", "RP", "TMN", "RC", "IND", "RI", "IRQ", "IR", "IL", "J", "HKJ", "TAD", "KWT", "LAO", "RL", "MV", "MAL", "MON", "OMA", "NPL", "KO", "OEZ", "PK", "QA", "AS", "SGP", "SYR", "T", "AE", "TR", "UA", "ROK", "VN", "BD", "KG", "MD", "KZ", "BY", "AZ", "AM", "AUS", "PNG", "NZ", "WSM", "WS", "RUS", "SLO", "AG", "VU", "FJI", "GB4", "HR", "TO", "NR", "PLW", "USA2", "LV", "SB", "MIC", "SY", "KIR", "TV", "WL", "WD", "WV", "EE", "IOT", "ZRE", "TLS", "SCG", "SRB", "MNE", "LT", "MAR", "BUR", "NAM", "GRF", "499", "AL", "AND", "B", "BG", "DK", "D", "FIN", "F", "YMN", "GR", "GB", "H", "IRL", "IS", "I", "YU", "FL", "L", "M", "MC", "N", "A", "PL", "P", "RO", "RSM", "E", "VAT", "S", "CH", "GB2", "ERI", "GB3", "XK", "MK", "PSE" ], "maxLength": 20, "description": "Nationality\n000 = Unknown;\nNL = Dutch;\nDZ = Algerian;\nIN = Angolan;\nRU = Burundian;\nRB = Motswana;\nBU = Burkinabe;\nRCA = Central African;\nKM = Citizen of Comoros;\nRCB = Citizen of the Republic of the Congo;\nDY = Citizen of Benin;\nET = Egyptian;\nEQ = Equatorial-Guineas;\nETH = Ethiopian;\nDJI = Djiboutian;\nGA = Gabonese;\nWAG = Gambian;\nGH = Ghanaian;\nGN = Guineas;\nCI = Ivorian;\nCV = Cape Verdean;\nTC = Cameroonian;\nEAK = Kenyan;\nCD = Citizen of Zaire;\nLS = Citizen of Lesotho;\nLB = Liberian;\nLAR = Libyan;\nRM = Malagasy;\nMW = Malawian;\nRMM = Citizen of Mali;\nMA = Moroccan;\nRIM = Mauritanian;\nMS = Mauritian;\nMOC = Mozambican;\nRN = Nigerien;\nWAN = Nigerian;\nEAU = Ugandan;\nGW = Guinea-Bissau;\nZA = South African;\nSD = Eswatini Citizen;\n'ZW' = Zimbabwean;\nRWA = Rwandese;\nST = Citizen of São Tomé and Principe;\nSN = Senegalese;\nWAL = Sierra Leonean;\nSUD = Sudanese;\nSP = Somalian;\nEAT = Tanzanian;\nTG = Togolese;\nTS = Tsjadian;\nTN = Tunisian;\nZ = Zambian;\nSS = South Sudanese;\nBS = Bahamian;\nBH = Belizean;\nCDN = Canadian;\nCR = Costa Rican;\nC = Cuban;\nDOM = Dominican;\nEL = Salvadoran;\nGCA = Guatemalan;\nRH = Haitian;\nHON = Hondurese;\nJA = Jamaican;\nMEX = Mexican;\nNIC = Nicaraguan;\nPA = Panamese;\nTT = Citizen of Trinidad and Tobago;\nUSA = American citizen;\nRA = Argentinean;\nBDS = Barbadian;\nBOL = Bolivian;\nBR = Brazilian;\nRCH = Chilean;\nCO = Colombian;\nEC = Ecuadorian;\nGUY = Guyanese;\nPY = Paraguayan;\nPE = Peruvian;\nSME = Surinamese;\nROU = Uruguayan;\nYV = Venezuelan;\nWG = Grenadian;\nKN = Citizen of Saint Kitts-Nevis;\nSK = Slovak;\nCZ = Czech;\nBA = Citizen of Bosnia-Herzegovina;\nGE = Georgian;\nAFG = Afghan;\nBRN = Bahraini;\nBT = Bhutanese;\nBM = Citizen of Myanmar;\nBRU = Citizen of Brunei Darussalam;\nK = Cambodian;\nCL = Sri Lankan;\nCN = Chinese;\nCY = Cypriot;\nRP = Filipino;\nTMN = Turkmen;\nRC = Taiwanese;\nIND = Indian;\nRI = Indonesian;\nIRQ = Iraqi;\nIR = Iranian;\nIL = Israeli;\nJ = Japanese;\nHKJ = Jordan;\nTAD = Tajikistani;\nKWT = Kuwaiti;\nLAO = Laotian;\nRL = Lebanese;\nMV = Maldivian;\nMAL = Malaysian;\nMON = Mongolian;\nOMA = Omani;\nNPL = Nepalese;\nKO = North Korean;\nOEZ = Uzbekistani;\nPK = Pakistani;\nQA = Qatari;\nAS = Saudi Arabian;\nSGP = Singaporean;\nSYR = Syrian;\nT = Thai;\nAE = Citizen of the United Arab Emirates;\nTR = Turkish;\nUA = Ukrainian;\nROK = South Korean;\nVN = Vietnamese;\nBD = Bangladeshi;\nKG = Kyrgyz;\nMD = Moldovan;\nKZ = Kazakh;\nBY = Belarusian;\nAZ = Azerbaijani;\nAM = Armenian;\nAUS = Australian;\nPNG = Papua New Guinean;\nNZ = New Zealander;\nWSM = West Samoan;\nWS = Samoan;\nRUS = Russian;\nSLO = Slovenian;\nAG = Citizen of Antigua and Barbuda;\nVU = Vanuatu;\nFJI = Fijian;\nGB4 = Citizen of British dependent territories;\nHR = Croatian;\nTO = Tongan;\nNR = Nauruan;\nPLW = Palauan;\nUSA2 = American national;\nLV = Latvian;\nSB = Saloman Islander;\nMIC = Micronesian;\nSY = Citizen of the Seychelles;\nKIR = Kiribati;\nTV = Tuvaluan;\nWL = Saint Lucian;\nWD = Dominican;\nWV = Vincentian;\nEE = Estonian;\nIOT = British National (overseas);\nZRE = Citizen of the Democratic Republic of the Congo;\nTLS = Timorense;\nSCG = Citizen of Serbia and Montenegro;\nSRB = Serbian;\nMNE = Montenegrin;\nLT = Lithuanian;\nMAR = Marshallese;\nBUR = Myanmarese;\nNAM = Namibian;\nGRF = Refugee;\n499 = Stateless;\nAL = Albanian;\nAND = Andorran;\nB = Belgian;\nBG = Bulgarian;\nDK = Danish;\nD = German;\nFIN = Finnish;\nF = French;\nYMN = Citizen of Yemen;\nGR = Greek;\nGB = British citizen;\nH = Hungarian;\nIRL = Irish;\nIS = Icelandic;\nI = Italian;\nYU = Yugoslavian;\nFL = Liechtenstein;\nL = Luxembourg;\nM = Maltese;\nMC = Citizen of Monaco;\nN = Norwegian;\nA = Austrian;\nPL = Polish;\nP = Portuguese;\nRO = Romanian;\nRSM = San Marinese;\nE = Spanish;\nVAT = Vatican;\nS = Swedish;\nCH = Swiss;\nGB2 = British subject;\nERI = Eritrean;\nGB3 = Citizen of British oversea regions;\nXK = Kosovan;\nMK = Macedonian / Citizen of the Republic of North Macedonia;\nPSE = Palestinian;", "format": "" }, "DaBi": { "type": "string", "description": "Date of birth", "format": "date" }, "CoBi": { "type": "string", "maxLength": 3, "description": "Country of birth", "format": "" }, "RsBi": { "type": "string", "maxLength": 50, "description": "Place of birth", "format": "" }, "SoSe": { "type": "string", "maxLength": 25, "description": "'BSN'", "format": "" }, "ViCs": { "type": "string", "enum": [ "DZ", "GH", "GP", "GS", "OG", "TR", "WE" ], "maxLength": 20, "description": "Marital status\nDZ = Permanently divorced;\nGH = Married;\nGP = Registered partnership;\nGS = Divorced;\nOG = Unmarried;\nTR = Other;\nWE = Widow/widower;", "format": "" }, "DaMa": { "type": "string", "description": "Wedding date", "format": "date" }, "DaDi": { "type": "string", "description": "Date of divorce", "format": "date" }, "DaDe": { "type": "string", "description": "Date deceased", "format": "date" }, "TtId": { "type": "string", "maxLength": 3, "description": "Title/salutation", "format": "" }, "TtEx": { "type": "string", "maxLength": 3, "description": "Secondary title", "format": "" }, "LeHe": { "type": "string", "maxLength": 255, "description": "Salutation", "format": "" }, "TeNr": { "type": "string", "maxLength": 255, "description": "Work phone no.", "format": "password" }, "TeN2": { "type": "string", "maxLength": 255, "description": "Personal phone no.", "format": "password" }, "FaNr": { "type": "string", "maxLength": 255, "description": "Work fax", "format": "" }, "MbNr": { "type": "string", "maxLength": 255, "description": "Work mobile no.", "format": "password" }, "MbN2": { "type": "string", "maxLength": 255, "description": "Private mobile no.", "format": "password" }, "EmAd": { "type": "string", "maxLength": 255, "description": "Work e-mail", "format": "email" }, "EmA2": { "type": "string", "maxLength": 255, "description": "Personal e-mail", "format": "email" }, "HoPa": { "type": "string", "maxLength": 255, "description": "Website", "format": "uri" }, "Corr": { "type": "boolean", "description": "Correspondence", "format": "" }, "ViMd": { "type": "string", "enum": [ "EMA", "FAX", "PRS", "PST", "TEL" ], "maxLength": 20, "description": "Preferred medium\nEMA = E-mail;\nFAX = Fax;\nPRS = Personal;\nPST = Post;\nTEL = Phone no.;", "format": "" }, "Re": { "type": "string", "description": "Remark", "format": "byte" }, "CoLw": { "type": "string", "maxLength": 2, "description": "Legislative country", "format": "" }, "FileId": { "type": "string", "maxLength": 32, "description": "Naam bestand", "format": "" }, "FileName": { "type": "string", "maxLength": 255, "description": "Naam bestand", "format": "" }, "FileStream": { "type": "string", "description": "Afbeelding", "format": "byte" }, "AddToPortal": { "type": "boolean", "description": "Persoon toegang geven tot afgeschermde deel van de portal(s)", "format": "" }, "EmailPortal": { "type": "string", "maxLength": 255, "description": "E-mail toegang", "format": "" } }, "required": [ "PadAdr", "AutoNum", "MatchPer", "BcId", "BcCo", "AddToPortal" ] }, "Objects": { "type": "array", "items": { "type": "object", "properties": { "KnBankAccount": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "CoId": { "type": "string", "maxLength": 3, "description": "Country of bank", "format": "" }, "IbCk": { "type": "boolean", "description": "IBAN check", "format": "" }, "Iban": { "type": "string", "maxLength": 40, "description": "IBAN number", "format": "" }, "BaAc": { "type": "string", "maxLength": 40, "description": "Bank account", "format": "" }, "BkTp": { "type": "integer", "description": "Bank type", "format": "" }, "BkIc": { "type": "string", "maxLength": 15, "description": "Bank", "format": "" }, "AcCk": { "type": "boolean", "description": "Cheque", "format": "" }, "DiNm": { "type": "string", "maxLength": 80, "description": "Deviating name", "format": "" }, "DiPl": { "type": "string", "maxLength": 35, "description": "Deviating city", "format": "" }, "Bic": { "type": "string", "maxLength": 11, "description": "BIC code", "format": "" }, "BaNm": { "type": "string", "maxLength": 35, "description": "Name of the bank", "format": "" }, "BaFi": { "type": "string", "maxLength": 35, "description": "Branch of the bank", "format": "" }, "BaAd": { "type": "string", "maxLength": 35, "description": "Bank address", "format": "" }, "BaPl": { "type": "string", "maxLength": 35, "description": "Bank business location", "format": "" }, "CalM": { "type": "string", "enum": [ "1", "2", "3" ], "maxLength": 20, "description": "On-charge code\n1 = All costs borne by beneficiary;\n2 = All costs borne by instructing party;\n3 = Shared costs;", "format": "" } }, "required": [ "CoId" ] } } } } } }, "KnBasicAddressAdr": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "CoId": { "type": "string", "maxLength": 3, "description": "Country", "format": "" }, "PbAd": { "type": "boolean", "description": "P.O. Box address", "format": "" }, "StAd": { "type": "string", "maxLength": 255, "description": "Add. for street", "format": "" }, "Ad": { "type": "string", "maxLength": 60, "description": "Street", "format": "" }, "HmNr": { "type": "integer", "description": "House number", "format": "" }, "HmAd": { "type": "string", "maxLength": 30, "description": "Extension (a, b, etc.) to house number", "format": "" }, "ZpCd": { "type": "string", "maxLength": 15, "description": "Postal code", "format": "" }, "Rs": { "type": "string", "maxLength": 50, "description": "City", "format": "" }, "AdAd": { "type": "string", "maxLength": 255, "description": "Addition to address", "format": "" }, "BeginDate": { "type": "string", "description": "Ingangsdatum adreswijziging (wordt genegeerd bij eerste datum)", "format": "date" }, "ResZip": { "type": "boolean", "description": "Zoek woonplaats bij postcode", "format": "" } }, "required": [ "CoId", "PbAd", "BeginDate", "ResZip" ] } } } } } }, "KnBasicAddressPad": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "CoId": { "type": "string", "maxLength": 3, "description": "Country", "format": "" }, "PbAd": { "type": "boolean", "description": "P.O. Box address", "format": "" }, "StAd": { "type": "string", "maxLength": 255, "description": "Add. for street", "format": "" }, "Ad": { "type": "string", "maxLength": 60, "description": "Street", "format": "" }, "HmNr": { "type": "integer", "description": "House number", "format": "" }, "HmAd": { "type": "string", "maxLength": 30, "description": "Extension (a, b, etc.) to house number", "format": "" }, "ZpCd": { "type": "string", "maxLength": 15, "description": "Postal code", "format": "" }, "Rs": { "type": "string", "maxLength": 50, "description": "City", "format": "" }, "AdAd": { "type": "string", "maxLength": 255, "description": "Addition to address", "format": "" }, "BeginDate": { "type": "string", "description": "Ingangsdatum adreswijziging (wordt genegeerd bij eerste datum)", "format": "date" }, "ResZip": { "type": "boolean", "description": "Zoek woonplaats bij postcode", "format": "" } }, "required": [ "CoId", "PbAd", "BeginDate", "ResZip" ] } } } } } } } } } } } } } }, "AfasContract": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "DaBe": { "type": "string", "description": "Contract start date", "format": "date" }, "ClId": { "type": "string", "maxLength": 15, "description": "CLA", "format": "" }, "WcId": { "type": "string", "maxLength": 15, "description": "Term of employment", "format": "" }, "ApCo": { "type": "string", "enum": [ "U", "H", "Y", "S", "HY", "7M", "8M", "9M" ], "maxLength": 20, "description": "Contract type\nU = Indefinite time;\nH = Half-yearly contract;\nY = Annual contract;\nS = Specific time;\nHY = One and a half years;\n7M = 7-month contract;\n8M = 8-month contract;\n9M = 9-month contract;", "format": "" }, "DaEn": { "type": "string", "description": "End date contract", "format": "date" }, "PEmTy": { "type": "string", "maxLength": 1, "description": "Type dienstverband", "format": "" }, "DvSn": { "type": "integer", "description": "Sequence number employment", "format": "" }, "CmId": { "type": "string", "maxLength": 15, "description": "Employer", "format": "" }, "DaEe": { "type": "string", "description": "Employment end date", "format": "date" }, "EmMt": { "type": "string", "enum": [ "1", "T", "2", "3", "4", "5", "6", "7", "S", "8", "e" ], "maxLength": 20, "description": "Employee type\n1 = Member of staff;\nT = Transitional allowance;\n2 = Temp;\n3 = Borrowed from another company/branch;\n4 = Entrepeneur - with salary;\n5 = Entrepeneur - without salary;\n6 = Placement - with salary;\n7 = Placement - without salary;\nS = Back-payment after departure;\n8 = Interim employee;\ne = Expat;", "format": "" }, "DbYs": { "type": "string", "description": "Employed (re. seniority)", "format": "date" }, "ViEt": { "type": "string", "enum": [ "F", "P", "T", "S", "H", "V", "U" ], "maxLength": 20, "description": "Employment type\nF = Full-timer;\nP = Part-timer;\nT = Casual staff;\nS = Placement;\nH = Hulpkracht;\nV = Vakantiewerker;\nU = Uitzendkracht;", "format": "" }, "ViRe": { "type": "string", "enum": [ "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "O" ], "maxLength": 20, "description": "Reason\n0 = Position elsewhere;\n1 = Resignation;\n2 = Immediate dismissal;\n3 = Dissatisfied terms of employment;\n4 = Dissatisfied work environment;\n5 = Pension;\n6 = 'VUT';\n7 = Disablement;\n8 = Unpaid leave;\n9 = Death;\nO = Transfer, do not settle;", "format": "" }, "ViIe": { "type": "string", "enum": [ "M", "W", "O" ], "maxLength": 20, "description": "Initiative\nM = Employee;\nW = Employer;\nO = Mutual agreement;", "format": "" }, "ViTo": { "type": "string", "enum": [ "1M", "2M", "OM", "6M", "12M", "9M", "NM", "2W", "3M" ], "maxLength": 20, "description": "Probationary period\n1M = One month;\n2M = Two months;\nOM = Other;\n6M = Half year;\n12M = One year;\n9M = Nine months;\nNM = None;\n2W = Two weeks;\n3M = Three months;", "format": "" }, "DaEt": { "type": "string", "description": "End probationary period per", "format": "date" }, "PeNo": { "type": "integer", "description": "Period number periodic", "format": "" }, "PeRp": { "type": "integer", "description": "Repeat after (periods)", "format": "" }, "PeFt": { "type": "string", "maxLength": 15, "description": "Period next increase", "format": "" }, "ViBg": { "type": "string", "enum": [ "AAN", "IND", "OBV", "REV", "OVR" ], "maxLength": 20, "description": "Reason employed\nAAN = Institution registration;\nIND = Entering service;\nOBV = Resuming after unpaid leave;\nREV = Resume after 'WIA';\nOVR = Other reasons;", "format": "" }, "RtDa": { "type": "boolean", "description": "Apply qualifying days", "format": "" }, "ViTK": { "type": "string", "enum": [ "01", "26", "31", "33", "34", "36", "41", "42", "43", "51", "71", "02", "81", "86", "09", "32", "03", "04", "11", "53", "12", "13", "22", "24" ], "maxLength": 20, "description": "End of employment reason (TKP)\n01 = Acceptance work elsewhere and benefit.;\n26 = Reorganisation and no SBR;\n31 = 'VUT';\n33 = Pension;\n34 = Death;\n36 = Prepension;\n41 = Complete disability;\n42 = Partial disability;\n43 = Par. Empl. Disability. <15%;\n51 = Transfer PAO;\n71 = AO for a specific time;\n02 = Acceptance work elsewhere;\n81 = Dismissal + emp same date;\n86 = Emp. Disabled reappointment;\n09 = Summary dismissal;\n32 = VUT SUMP;\n03 = Pers. Reasons and benefits;\n04 = Other personal reason;\n11 = During probationary period;\n53 = Senior leave;\n12 = Insufficient functioning;\n13 = Condemnable behaviour / verst. A;\n22 = SBR 55+;\n24 = SBR, but no 55+;", "format": "" }, "TpWr": { "type": "string", "enum": [ "1", "2", "3", "4" ], "maxLength": 20, "description": "Labour relation type\n1 = Fixed;\n2 = Specific time;\n3 = Specific time for replacement.;\n4 = Employment without appointment;", "format": "" }, "FiBr": { "type": "string", "enum": [ "1", "2", "3", "4", "5" ], "maxLength": 20, "description": "Financing source\n1 = Regular;\n2 = Reimbursements by'Vervangingsfonds';\n3 = Wage cost subsidy;\n4 = Other means;\n5 = 'Risicofonds';", "format": "" }, "InTp": { "type": "string", "enum": [ "00", "01", "02", "03" ], "maxLength": 20, "description": "Insurance\n00 = None;\n01 = 'VF' Mandatory;\n02 = 'VF' Voluntary;\n03 = 'Risicofonds';", "format": "" }, "InMe": { "type": "string", "enum": [ "0", "1", "2", "3", "4", "5", "6" ], "maxLength": 20, "description": "Method for granting periodic increase\n0 = No periodic increment;\n1 = According to wage scales;\n2 = Deviating factor for min/max wage scale;\n3 = Increase by an amount;\n4 = Increase by a percentage;\n5 = Increase by a percentage relative to max (Min/max wage scale);\n6 = Percentage increase relative to medium (min/max wage scale);", "format": "" }, "Pfmm": { "type": "number", "description": "Deviating min./max. factor", "format": "number" }, "InVl": { "type": "number", "description": "Increase by an amount", "format": "number" }, "InPc": { "type": "number", "description": "Increase by a percentage", "format": "number" }, "ViFz": { "type": "string", "enum": [ "O", "1", "12", "13", "14", "AU", "B", "C", "2", "3", "AZU", "4", "AZ", "41", "42", "43", "44", "W", "K" ], "maxLength": 20, "description": "Flex and Security phase classification\nO = Unknown or N.A.;\n1 = Phase 1 with temporary employment clause (up to 2019);\n12 = Phase 1-2 with temporary employment clause;\n13 = Phase 1-2 without temporary employment clause;\n14 = Phase 1-2 without temp. employment clause with exclusion of the cont. payment of wages obligation;\nAU = Phase A with transmission request;\nB = Phase B;\nC = Phase C;\n2 = Phase 2 with temporary employment clause (up to 2019);\n3 = Phase 3;\nAZU = Phase A without temporary employment clause, with exclusion of obligation for continued payment;\n4 = Phase 4;\nAZ = Phase A without transmission condition;\n41 = Phase 1 without temporary employment clause (up to 2019);\n42 = Phase 2 without temporary employment clause (up to 2019);\n43 = Phase 1 without temp. employm. clause with exclus. of contd. payment of wages obligat. (up to 2019);\n44 = Phase 2 without temp. employm. clause with exclus. of contind. paymnt of wages obligat. (up to 2019);\nW = Legal regime;\nK = Chain system;", "format": "" }, "ViRf": { "type": "string", "enum": [ "0", "1", "2", "3", "4", "5", "6" ], "maxLength": 20, "description": "Reason of end labour relationship flex-worker\n0 = Not applicable;\n1 = End of job/end of contract, no work offered;\n2 = End of job/end of contract, work offered;\n3 = No end of work/end of contract; current employment contract;\n4 = Hirer has withdrawn order;\n5 = Temporary worker has been dismissed;\n6 = End of work/end of contract due to illness;", "format": "" }, "DaSc": { "type": "string", "description": "Contract chain start date", "format": "date" }, "ViKe": { "type": "string", "enum": [ "0", "1", "2", "3", "4", "5", "6", "To be determined" ], "maxLength": 20, "description": "Chain number\n0 = Not applicable;\n1 = Fixed-term 1;\n2 = Fixed-term 2;\n3 = Fixed-term 3;\n4 = Fixed-term 4;\n5 = Fixed-term 5;\n6 = Fixed-term 6;\nTo be determined = To be determined;", "format": "" }, "PdQ1": { "type": "integer", "description": "Scheduled hours (quarter 1)", "format": "" }, "PdQ2": { "type": "integer", "description": "Scheduled hours (quarter 2)", "format": "" }, "PdQ3": { "type": "integer", "description": "Scheduled hours (quarter 3)", "format": "" }, "PdQ4": { "type": "integer", "description": "Scheduled hours (quarter 4)", "format": "" }, "PdQ5": { "type": "integer", "description": "Scheduled hours (quarter 5)", "format": "" }, "JcIn": { "type": "string", "maxLength": 7, "description": "Commission paritaire indexatie", "format": "" }, "AcDe": { "type": "string", "enum": [ "1", "11", "12", "2", "21", "22", "23", "24", "25", "26", "27", "3", "31", "32", "4", "41", "42", "43" ], "maxLength": 20, "description": "Education degree\n1 = (Onbruikbaar Vanaf 01/04/2006)Lager Onderwijs;\n11 = Lager Onderwijs Of Geen Onderwijs;\n12 = Lager Sec. Ond./Buso 1,2,3/Dt Lager Sec.Beroepsond;\n2 = (Onbruikbaar Vanaf 01/04/2006)Secundair Onderwijs;\n21 = 2e Jr. 3e Gr. Bso + 3e Jr. 3e Gr. Bso Z. Gts. Hso;\n22 = 3 Gr.Tso,Kso+Bso Spec.Jr Gts Hso/Buso4 Dip/Gts Hso;\n23 = 3e Graad Aso;\n24 = Deeltijds Technisch Onderwijs;\n25 = Deeltijds Bso Hoger Middelbaar;\n26 = Buso 4 Zonder Getuigschrift Of Diploma Hso;\n27 = 7E JR BSO MET DIP SO/GTS HSO//>=1E J 4E GR BSO;\n3 = (Onbruikbaar Vanaf 01/04/06)Hoger Niet Univ Onderw;\n31 = Hoger Niet-Universitair Onderwijs Korte Type;\n32 = Hoger Niet-Universitair Onderwijs Lange Type;\n4 = (Onbruikbaar Vanaf 01/04/06) Hoger Univ Onderwijs;\n41 = Universitair Onderwijs;\n42 = Post-Universitair Onderwijs;\n43 = Doctoraat Met Proefschrift;", "format": "" }, "RDDF": { "type": "boolean", "description": "RDDF", "format": "" }, "BaAp": { "type": "string", "maxLength": 10, "description": "Appointment basis", "format": "" }, "Sco1": { "type": "string", "maxLength": 10, "description": "Educational field 1", "format": "" }, "Sco2": { "type": "string", "maxLength": 10, "description": "Educational field 2", "format": "" }, "Sco3": { "type": "string", "maxLength": 10, "description": "Educational field 3", "format": "" }, "Sco4": { "type": "string", "maxLength": 10, "description": "Educational field 4", "format": "" }, "PCK": { "type": "string", "enum": [ "1", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "2", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "3", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "4", "40", "41", "42", "43", "44", "45", "46", "48", "49", "5", "50", "51", "52", "53", "55", "56", "57", "58", "59", "6", "60", "7", "8", "9", "98", "99" ], "maxLength": 20, "description": "Contract specification\n1 = Ordinary employee;\n10 = Temporary employee;\n11 = Leerling stagiair (>60 dagen);\n12 = Trainee intern;\n13 = \"Canada dry\" plan;\n14 = No right of abode;\n15 = Early retirement old system;\n16 = Early retirement new system;\n17 = 'Buitenlandse bestuurder';\n18 = Disabled employee;\n19 = Early retirement half-time;\n2 = Pensioned employee;\n20 = Instapstage (TRI);\n21 = Vocational training - RVA;\n22 = Contractually subsidised;\n23 = Artiste or musician (specific category);\n24 = Industrial trainee;\n25 = Trainee entrepreneur;\n26 = K.B. 498;\n27 = K.B. 495 (-18 year);\n28 = Law Programme (# 1st recruited);\n29 = K.B. 483;\n3 = Work placement;\n30 = Working partner;\n31 = Statutory;\n32 = Unemployed guidance plan;\n33 = Young unemployed <26 year 6m;\n34 = Young unemployed <26 year 9m;\n35 = Young unemployed K.B. 495;\n36 = Induction post;\n37 = Young unemployed (paid in gratuities) <26 year 6m;\n38 = Young unemployed (paid in gratuities) <26 year 9m;\n39 = Unemployed > 1 years;\n4 = Student;\n40 = Unemployed > 2 years;\n41 = Unemployed gratuity > 1 year;\n42 = Unemployed gratuity > 2 year;\n43 = EWE; half-time;\n44 = EWE other than half-time;\n45 = EWE half-time with gratuities;\n46 = EWE other / with gratuities;\n48 = Paid athletes act 24/02/78;\n49 = Paid athletes outside of act 24/02/78;\n5 = 'Bestuurder';\n50 = Personnel with incomes 30;\n51 = Programme prime;\n52 = Trainee Socio-prof.Inpas.;\n53 = 'Werkloze in een VZW';\n55 = Leerling beroepsinlevingsovereenk.;\n56 = Beroepsvorming - AWIPH;\n57 = Sportomkadering;\n58 = Alternerende opleiding - Waals Gewest;\n59 = Alternerend leren - Franstalig België;\n6 = Home-worker;\n60 = Flexi-job;\n7 = Employee with gratuities;\n8 = Pensioned manager;\n9 = Sales representative;\n98 = Werkloze - overmacht;\n99 = Not remunerated;", "format": "" }, "Stat": { "type": "string", "enum": [ "1", "10", "11", "12", "13", "14", "16", "17", "18", "19", "2", "20", "21", "3", "4", "5", "6", "9" ], "maxLength": 20, "description": "Statute\n1 = Contractueel;\n10 = Pensioner;\n11 = 'Bruggepensioneerde';\n12 = Weduwen;\n13 = Orphan/other relative;\n14 = Reservemilitairen/gepensioneerde vep;\n16 = Vrijwilliger;\n17 = Werkloze;\n18 = Pfi/stage d'insertion;\n19 = Tijdskrediet can dry (decavaa);\n2 = Temporary;\n20 = Werkloze canada dry (decavaa);\n21 = Beroepsinlevingsovereenkomst;\n3 = Vastbenoemd;\n4 = Mandataris;\n5 = Manager;\n6 = 'Bestuurder';\n9 = Beheerder (vzw);", "format": "" }, "CtTy": { "type": "string", "enum": [ "1", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "2", "3", "4", "5", "6", "7", "8", "9", "99" ], "maxLength": 20, "description": "Contract type\n1 = Onbepaalde duur;\n10 = Welomschreven werk < 3 maanden;\n11 = Welomschreven werk >= 3 maanden;\n12 = Vervangingscontract < 3 maanden;\n13 = Vervangingscontract >= 3 maanden;\n14 = Seizoensarbeider zonder dagforfait;\n15 = Bepaalde duur < 3 maanden;\n16 = Flexi met periode dimona;\n17 = Flexi met dagdimona;\n18 = Flexi niet aanvaard;\n19 = Funeral home limited performance (LP);\n2 = Bepaalde duur;\n3 = Welomschreven werk;\n4 = Replacement contract;\n5 = Gelimiteerde prestaties (lp op de aangifte);\n6 = Arb./bed. Met tussenpozen (t op de aangifte);\n7 = Seizoensarb. Groen/piekextra dagforfait;\n8 = Bepaalde duur < 3 maanden;\n9 = Bepaalde duur > 3 maanden;\n99 = None;", "format": "" }, "TRsz": { "type": "string", "enum": [ "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "24", "50", "51", "52", "53", "54", "60", "61", "62", "63", "64", "65", "66", "67", "70", "71", "72", "73", "74", "75", "76", "77", "78", "79", "80", "81", "82", "84", "85", "86", "87", "99" ], "maxLength": 20, "description": "Type #1 employee\n11 = Gewone categorie;\n12 = Rva-stagair;\n13 = Gesubsidieerde contractueel;\n14 = Deeltijds leerplichtige;\n15 = Jobstudent;\n16 = Eerste werkervaring;\n17 = Interdepartementeel begrotingsfonds;\n18 = 'Derde arbeidscircuit';\n19 = Moeilijk te plaatsen mval werkloze besch. Werkpl.;\n20 = Geneesheer in opleid tot specialist;\n21 = Bursalen zndr bi/multilat.overeenk sz;\n22 = Prime;\n24 = Contractual substitute for work reallocation in public sector;\n50 = Tijdelijk arbeider tuinbouw;\n51 = Taxichauffeur (rsz);\n52 = Acad. En wet. Pers, univ(rsz);\n53 = Ambtenaar met kinderbijslag (rsz);\n54 = Houder staffunctie in overheid;\n60 = F1 worker;\n61 = F2 worker;\n62 = F1 bediende;\n63 = F2 employee;\n64 = F1 worker (without dimona);\n65 = F2 worker (without dimona);\n66 = F1 employee (without dimona);\n67 = F2 employee (without dimona);\n70 = Geneesheer (rszppo);\n71 = Vrijgestelde geneesheer;\n72 = Monitor;\n73 = Bedienaars van de eredienst(rszppo);\n74 = Schouwspelartiest;\n75 = Vrijwillige brandweerman (rszppo);\n76 = Vrijgestelde vrijwilliger(rszppo);\n77 = Onbeschermde mandataris;\n78 = 'Politiepersoneel';\n79 = Burgerpersoneel van de politie;\n80 = Gesubsidieerd personeel onderwijs;\n81 = Syndicaal gedetacheerde werknemer;\n82 = Deeltijds leerplichtige schouwspelartiest;\n84 = Verenigingswerker (sportactiviteiten);\n85 = Verenigingswerker (socio-cult. en overige act);\n86 = Multiple-year student in alternating training;\n87 = Underage student in alternating training;\n99 = Andere niet rsz-onderworpen;", "format": "" }, "TRs2": { "type": "string", "enum": [ "1", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "2", "20", "3", "4", "5", "6", "9" ], "maxLength": 20, "description": "Type #2 employee\n1 = Deelt.leerplichtige leerl. Of beroepsinl.overeenk.;\n10 = Kunstenaar;\n11 = Podiumkunstenaar;\n12 = Kunstenaar(student);\n13 = Podiumkunstenaar(student);\n14 = Kunstenaar(gepensioneerde met bijberoep);\n15 = Podiumkunstenaar(gepensioneerde met bijberoep);\n16 = Betaalde sportbeoefenaars;\n17 = Collectief akkoord;\n18 = Betaalde sportbeoefenaars (gepens met bijberoep);\n19 = Individueel akkoord;\n2 = Home worker;\n20 = Huisbediende/arbeider;\n3 = Deeltijdse leerplichtige of schoolstagiar;\n4 = Trade representative;\n5 = Gepensioneerde met bijberoep;\n6 = Student niet onderworpen aan solidariteitsbijdrage;\n9 = Sector CLA or doesn't apply;", "format": "" }, "SCAc": { "type": "string", "enum": [ "1", "2", "3", "4", "5", "6", "7", "8", "9" ], "maxLength": 20, "description": "Salary processing\n1 = Per month;\n2 = Per hour;\n3 = Fixed;\n4 = Per item;\n5 = Met bedieningsgeld;\n6 = Per prestatie;\n7 = Volledig met commissieloon;\n8 = Per maand + gedeeltelijk met commissieloon;\n9 = Per uur + gedeeltelijk met commissieloon;", "format": "" }, "RSRi": { "type": "boolean", "description": "Reduce and date of rule", "format": "" }, "RSDa": { "type": "string", "description": "Start National Office for Social Security reductio", "format": "date" }, "StAc": { "type": "string", "description": "Seniority start date", "format": "date" }, "FiAn": { "type": "string", "description": "Fictitious seniority date", "format": "date" }, "DaRt": { "type": "string", "description": "Start ‘aanwervingskader’", "format": "date" }, "ReTy": { "type": "string", "enum": [ "10", "100", "101", "102", "103", "104", "105", "106", "107", "108", "11", "110", "111", "120", "140", "141", "142", "143", "145", "146", "147", "148", "149", "150", "156", "157", "158", "160", "161", "162", "170", "171", "172", "173", "174", "175", "176", "177", "178", "179", "180", "181", "182", "183", "184", "185", "186", "187", "188", "189", "190", "191", "192", "193", "194", "195", "196", "20", "200", "201", "202", "203", "204", "205", "206", "207", "208", "209", "21", "210", "211", "212", "213", "214", "215", "216", "217", "218", "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232", "233", "234", "235", "236", "237", "238", "239", "240", "241", "242", "243", "244", "245", "246", "247", "248", "249", "250", "251", "252", "253", "254", "255", "256", "257", "258", "259", "260", "261", "262", "263", "264", "265", "266", "267", "268", "269", "270", "271", "272", "273", "274", "275", "276", "277", "278", "279", "280", "281", "282", "283", "284", "285", "286", "287", "288", "289", "290", "291", "292", "293", "294", "295", "296", "297", "298", "30", "300", "301", "302", "303", "304", "305", "306", "307", "310", "311", "312", "320", "324", "325", "350", "351", "352", "353", "354", "358", "359", "360", "361", "362", "363", "40", "400", "401", "402", "403", "404", "41", "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460", "50", "500", "501", "51", "510", "511", "512", "513", "514", "515", "516", "517", "518", "519", "52", "520", "521", "522", "523", "524", "525", "526", "527", "53", "54", "55", "550", "551", "552", "553", "554", "555", "556", "557", "558", "559", "56", "560", "561", "562", "563", "564", "565", "567", "568", "569", "57", "571", "572", "574", "575", "576", "577", "578", "579", "58", "580", "581", "582", "583", "584", "59", "590", "591", "592", "593", "594", "595", "596", "597", "598", "599", "60", "600", "601", "602", "603", "604", "605", "606", "607", "608", "609", "61", "610", "611", "612", "613", "614", "615", "616", "617", "618", "619", "62", "620", "621", "622", "623", "624", "625", "626", "627", "628", "629", "63", "630", "631", "632", "633", "634", "635", "636", "637", "638", "639", "640", "643", "644", "645", "646", "647", "648", "649", "650", "651", "652", "653", "654", "655", "70", "700", "701", "702", "703", "704", "705", "706", "707", "708", "709", "71", "710", "711", "712", "713", "714", "715", "716", "717", "718", "72", "720", "721", "722", "723", "724", "728", "729", "73", "74", "75", "76", "77", "78", "79", "795", "796", "797", "798", "799", "80", "800", "801", "803", "81", "82", "83", "84", "85", "90", "900", "902", "91", "999" ], "maxLength": 20, "description": "Recruitment context\n10 = Jongerenbanen Plan Vermind. Wg + Wn (J9);\n100 = Banenplan 12 Maanden Werkloos (B1);\n101 = Banenplan 24 Maanden Werkloos (B2);\n102 = Moeilijk Te Plaatsen Werknemer +50j (B3);\n103 = Herinschakeljobs (B4);\n104 = Invoeg Werknemers (B4);\n105 = Banenplan 12 Maanden Werkloos Ouder Dan 45 Jaar;\n106 = Banenplan 24 Maanden Werkloos Ouder Dan 45 Jaar;\n107 = Banenplan 24 Maanden Werkl. +45 J 60m Uvw/36m Ocmw;\n108 = Persons without sustainable work experience;\n11 = Jongerenbanen Plan Vermind. Wg (J6);\n110 = Kb495: Jongeren Tussen 18 En 25 Jaar (U);\n111 = Kb495: Deeltijds Leerplichtige (U);\n120 = Kb483: Eerste Wn In Hoedanigh. Huispersoneel;\n140 = Smet-Banen Gedurende Eerste 36 Maanden;\n141 = Smet-Banen Met Verhoogde Tussenkomst Eerste 36 Mnd;\n142 = Smet-Banen Na 36 Maanden En < 45 Jaar;\n143 = Smet-Banen Na 36 Maanden En > 45 Jaar;\n145 = Wep Plus Plan Min. 12m Mi -45 Jaar 50% 250 Eur;\n146 = Wep Plus Plan Min. 24m Uvw -45 Jaar 50% 247.89 Eur;\n147 = Wep+ 24 Maanden Werkloos-3/4tew-12000fr;\n148 = Wep Plus Plan Min. 24m Uvw -45 Jaar 50% 297.47 Eur;\n149 = Wep+ 24 Maanden Werkloos-3/4tew-Pwa-14000fr;\n150 = Banenplan 24mnd Werkloos Met Integratie-Uitkering;\n156 = Wep+ 12 Maanden Werkloos-3/4tew-12000fr;\n157 = Wep Plus Plan Min. 12m Mi -45 Jaar 50% 300 Eur;\n158 = Wep+ 12 Maanden Werkloos-3/4tew-Pwa-14000fr;\n160 = Vervanger Loopbaanonderbreking: Deeltijds (D1);\n161 = Vervanger Loopbaanonderbreking: Voltijds (D2);\n162 = Vervanger Loopbaanonderbreking: Deeltijds Kmo (D3);\n170 = Vervanger Bruggepensioneerde: Deeltijds (G1);\n171 = Vervanger Bruggepensioneerde: Voltijds (G2);\n172 = Vervanger Bruggepensioneerde: Deeltijds Kmo (G3);\n173 = Wep Plus Plan Min. 24m Uvw -45 Jaar 80% 322.26 Eur;\n174 = Wep Plus Plan Min. 24m Uvw -45 Jaar 80% 371.84 Eur;\n175 = Wep Plus Plan Min. 24m Uvw -45 Jaar 50% 433.81 Eur;\n176 = Wep Plus Plan Min. 24m Uvw -45 Jaar 80% 545.37 Eur;\n177 = Wep+ (> 50% Tewerkst - 10000 Fr);\n178 = Wep+ (> 80% Tewerkst - 16000 Fr);\n179 = Wep+ (100% Tewerkst - 20000 Fr);\n180 = Wetenschappelijk Personeel;\n181 = Wep-Pr-Plan 36/48 Mnd Werkl,50%Tew,5000 Fr;\n182 = Wep-Pr-Plan 36/48 Mnd Werkl,80%Tew,8000 Fr;\n183 = Wep-Pr-Plan 48/60 Mnd Werkl,50%Tew,10000 Fr;\n184 = Wep-Pr-Plan 48/60 Mnd Werkl,80%Tew,16000 Fr;\n185 = Wep-Pr-Plan > 60 Mnd Werkl,50%Tew, 9000 Fr;\n186 = Wep-Pr-Plan > 60 Mnd Werkl,80%Tew, 18000 Fr;\n187 = Wep Plus Plan Min. 12m Mi -45 Jaar 50% 435 Eur;\n188 = Wep Plus Plan Min. 12m Mi -45 Jaar 80% 325 Eur;\n189 = Wep Plus Plan Min. 12m Mi -45 Jaar 80% 375 Eur;\n190 = Wep Plus Plan Min. 12m Mi -45 Jaar 80% 545 Eur;\n191 = Wep Plus Plan Min. 24m Mi -45 Jaar 50% 250 Eur;\n192 = Wep Plus Plan Min. 24m Mi -45 Jaar 50% 300 Eur;\n193 = Wep Plus Plan Min. 24m Mi -45 Jaar 50% 435 Eur;\n194 = Wep Plus Plan Min. 24m Mi -45 Jaar 80% 325 Eur;\n195 = Wep Plus Plan Min. 24m Mi -45 Jaar 80% 375 Eur;\n196 = Wep Plus Plan Min. 24m Mi -45 Jaar 80% 545 Eur;\n20 = Kb 111 Eerst Aangeworvene;\n200 = Ptp 24 Maanden Werkloos-50%Tew-10000fr;\n201 = Ptp 24 Maanden Werkloos-50%Tew-17500fr;\n202 = Ptp 24 Maanden Werkloos-80%Tew-13000fr;\n203 = Ptp 24 Maanden Werkloos-80%Tew-22000fr;\n204 = Ptp 12 Maanden Werkloos-50%Tew-10000fr;\n205 = Ptp 12 Maanden Werkloos-50%Tew-17500fr;\n206 = Ptp 12 Maanden Werkloos-80%Tew-13000fr;\n207 = Ptp 12 Maanden Werkloos-80%Tew-22000fr;\n208 = Dsp Brussel Min. 24m Uvw -45 Jaar 50% 247.89 Eur;\n209 = Dsp Brussel Min. 24m Uvw -45 Jaar 50% 297.47 Eur;\n21 = Kb 111 Vervanger Eerst Aangeworvene;\n210 = Dsp Brussel Min. 24m Uvw -45 Jaar 50% 433.81 Eur;\n211 = Wep+ Bxl 24 Maanden Werkloos- >50% Tew -17500fr;\n212 = Dsp Brussel Min. 24m Uvw -45 Jaar 80% 322.26 Eur;\n213 = Dsp Brussel Min. 24m Uvw -45 Jaar 80% 371.84 Eur;\n214 = Dsp Brussel Min. 24m Uvw -45 Jaar 80% 545.37 Eur;\n215 = Wep+ Bxl 24 Maanden Werkloos- >80% Tew -22000fr;\n216 = Wep+ Bxl 24 Maanden Werkloos- >75% Tew -12000fr;\n217 = Dsp Brussel Min. 12m Mi -45 Jaar 50% 250 Eur;\n218 = Dsp Brussel Min. 12m Mi -45 Jaar 50% 300 Eur;\n219 = Dsp Brussel Min. 12m Mi -45 Jaar 50% 435 Eur;\n220 = Wep+ Bxl 12 Maanden Werkloos- >50% Tew -17500fr;\n221 = Dsp Brussel Min. 12m Mi -45 Jaar 80% 325 Eur;\n222 = Dsp Brussel Min. 12m Mi -45 Jaar 80% 375 Eur;\n223 = Dsp Brussel Min. 12m Mi -45 Jaar 80% 545 Eur;\n224 = Wep+ Bxl 12 Maanden Werkloos- >80% Tew -22000fr;\n225 = Wep+ Bxl 12 Maanden Werkloos- >75% Tew -12000fr;\n226 = Dsp Brussel Uvw Laagg -25 Jaar 50% 247.89 Eur;\n227 = Dsp Brussel Min. 9m Mi Laagg -25 Jaar 50% 250 Eur;\n228 = Wep+ Bxl Voll.Werkl<25j, 9m Wz, >50% Tew -10000fr;\n229 = Wep+ Bxl Voll.Werkl,12m Wz, >50% Tew -10000fr;\n230 = Dsp Brussel Min. 24m Mi -45 Jaar 50% 250 Eur;\n231 = Dsp Brussel Uvw Laagg -25 Jaar 50% 297.47 Eur;\n232 = Dsp Brussel Laagg Min. 9m Mi -25 Jaar 50% 300 Eur;\n233 = Wep+ Bxl Voll.Werkl<25j, 9m Wz, >50% Tew -12000fr;\n234 = Wep+ Bxl Voll.Werkl,12m Wz, >50% Tew -12000fr;\n235 = Dsp Brussel Min. 24m Mi -45 Jaar 50% 300 Eur;\n236 = Dsp Brussel Laaggeschoold -25 Jaar 50% 433.81 Eur;\n237 = Dsp Brussel Laagg Min.9m Mi -25 Jaar 50% 435 Eur;\n238 = Wep+ Bxl Voll.Werkl<25j, 9m Wz, >50% Tew -17500fr;\n239 = Wep+ Bxl Voll.Werkl,12m Wz, >50% Tew -17500fr;\n240 = Dsp Brussel Min. 24m Mi -45 Jaar 50% 435 Eur;\n241 = Dsp Brussel Laaggeschoold -25 Jaar 80% 322.26 Eur;\n242 = Dsp Brussel Laagg Min.9m Mi -25 Jaar 80% 325 Eur;\n243 = Wep+ Bxl Voll.Werkl<25j, 9m Wz, >80% Tew -13000fr;\n244 = Wep+ Bxl Voll.Werkl,12m Wz, >80% Tew -13000fr;\n245 = Dsp Brussel Min. 24m Mi -45 Jaar 80% 325 Eur;\n246 = Dsp Brussel Min. 9 M Uvw -25 Jaar 80% 371.84 Eur;\n247 = Dsp Brussel Laagg Min.9m Mi -25 Jaar 80% 375 Eur;\n248 = Wep+ Bxl Voll.Werkl<25j, 9m Wz, >80% Tew -15000fr;\n249 = Wep+ Bxl Voll.Werkl,12m Wz, >80% Tew -15000fr;\n250 = Dsp Brussel Min. 24m Mi -45 Jaar 80% 375 Eur;\n251 = Dsp Brussel Min. 9 M Uvw -25 Jaar 80% 545.37 Eur;\n252 = Dsp Brussel Laagg Min.9m Mi -25 Jaar 80% 545 Eur;\n253 = Wep+ Bxl Voll.Werkl<25j, 9m Wz, >80% Tew -22000fr;\n254 = Wep+ Bxl Voll.Werkl,12m Wz, >80% Tew -22000fr;\n255 = Dsp Brussel Min. 24m Mi -45 Jaar 80% 545 Eur;\n256 = Wep+ 24 Mnd Werkl. +45j (>50% Tewerkst - 10000 Fr);\n257 = Wep+ 24 Mnd Werkl. +45j (>50% Tewerkst - 12000 Fr);\n258 = Wep+ 24 Mnd Werkl. +45j (>50% Tewerkst - 17500 Fr);\n259 = Wep+ 24 Mnd Werkl. +45j (>80% Tewerkst - 13000 Fr);\n260 = Wep+ 24 Mnd Werkl. +45j (>80% Tewerkst - 15000 Fr);\n261 = Wep+ 24 Mnd Werkl. +45j (>80% Tewerkst - 22000 Fr);\n262 = 12m Wz In 18m Activa +25 En -45 Jaar;\n263 = Activa -45jaar 24m Werkloos In 36 M (+50%Tew)- 500;\n264 = 24m Wz In 36m Activa -45 Jaar;\n265 = Activa 6m Wz In 9m Ug +45j - 50% Tew;\n266 = 6 M Wz In 9m Activa +45 Jaar;\n267 = Activa 12m Wz In 18m Ug +45j - 50% Tew;\n268 = 12m Wz In 18m Activa +45 Jaar;\n269 = Activa +45jaar 24m Werkloos In 36 M(+50%Tew) - 500;\n270 = Activa +45jaar 24m Werkloos In 36 M (+50%Tew) - 0;\n271 = 24m Mi In 36m Activa - 45 Jaar;\n272 = 6m Mi In 9m Acitiva +45 Jaar;\n273 = 12m Mi In 18m Activa +45 Jaar;\n274 = 18m Mi In 27m Activa +45 Jaar 500 Eur M Id +29;\n275 = Wep Plus Plan Min. 24m Uvw +45 Jaar 50% 247.89 Eur;\n276 = Wep Plus Plan Min. 24m Uvw +45 Jaar 50% 297.47 Eur;\n277 = Wep Plus Plan Min. 24m Uvw +45 Jaar 50% 433.81 Eur;\n278 = Wep Plus Plan Min. 24m Uvw +45 Jaar 80% 322.26 Eur;\n279 = Wep Plus Plan Min. 24m Uvw +45 Jaar 80% 371.84 Eur;\n280 = Wep Plus Plan Min. 24m Uvw +45 Jaar 80% 545.37 Eur;\n281 = Wep Plus Plan Min. 24m Mi +45 Jaar 50% 250 Eur;\n282 = Wep Plus Plan Min. 24m Mi +45 Jaar 50% 300 Eur;\n283 = Wep Plus Plan Min. 24m Mi +45 Jaar 50% 435 Eur;\n284 = Wep Plus Plan Min. 24m Mi +45 Jaar 80% 325 Eur;\n285 = Wep Plus Plan Min. 24m Mi +45 Jaar 80% 375 Eur;\n286 = Wep Plus Plan Min. 24m Mi +45 Jaar 80% 545 Eur;\n287 = Wep Plus Plan Min. 12m Mi +45 Jaar 50% 250 Eur;\n288 = Wep Plus Plan Min. 12m Mi +45 Jaar 50% 300 Eur;\n289 = Wep Plus Plan Min. 12m Mi +45 Jaar 50% 435 Eur;\n290 = Wep Plus Plan Min. 12m Mi +45 Jaar 80% 325 Eur;\n291 = Wep Plus Plan Min. 12m Mi +45 Jaar 80% 375 Eur;\n292 = Wep Plus Plan Min. 12m Mi +45 Jaar 80% 545 Eur;\n293 = Dsp Brussel Uvw 12m -45 Jaar 50% 247.89 Eur;\n294 = Dsp Brussel Uvw 12m -45 Jaar 50% 297.47 Eur;\n295 = Dsp Brussel Uvw 12m -45 Jaar 50% 433.81 Eur;\n296 = Dsp Brussel Uvw 12m -45 Jaar 80% 322.26 Eur;\n297 = Dsp Brussel Uvw 12m -45 Jaar 80% 371.84 Eur;\n298 = Dsp Brussel Uvw 12m -45 Jaar 80% 545.37 Eur;\n30 = Kb 494 Tweede Werknemer;\n300 = Gesco Wet 30/12/88;\n301 = Gesco Wep+ Wet 30/12/88;\n302 = Gesco Sociale Werkplaats;\n303 = Sine Wn Sociale Werkplaats, 17500 Fr;\n304 = Sine Wn Sociale Werkplaats, 22000 Fr;\n305 = Gesco Wep+ Kb474 (Rszppo);\n306 = Sine Wn Sociale Werkplaats, 435 Euro;\n307 = Sine Wn Sociale Werkplaats, 545 Euro;\n310 = Gesco Kb474 (Rszppo - Tot 31/12/1992);\n311 = Gesco Kb474 Premie 230000;\n312 = Gesco Kb474 Premie 400000;\n320 = Laaggeschoolde Jongere Sbo (Rszppo);\n324 = Erg Laaggeschoolde Jongere Sbo (Rszppo);\n325 = Kunstenaar Ppo;\n350 = Gesco Kb474 Bxl Premie 230000;\n351 = Gesco Kb474 Bxl Premie 400000;\n352 = Gesco Bxl: Verbetering Onthaal Bij Loketdiensten;\n353 = Gesco Bxl: Toevoeging Maatsch. Assistent In Ocmw;\n354 = Gesco Bxl: Toevoeging Licentiaten In Ocmw;\n358 = Dg 6 -45 Jaar Verminderingskaart Herstructur;\n359 = Dg 6 +45 Jaar Verminderingskaart Herstructur;\n360 = Tewerkstelling Ontslagen Wn Herstructurering;\n361 = Activa -25 Jaar 12m Uvw In 18m 500 Eur;\n362 = Act Pvp 12m Wz In 18m, Uvw, <25j;\n363 = Act Pvp 12m Wz In 18m, <25j;\n40 = Kb 498 Jonge Werkz. Langd. Werkl(T),Verm.Admiekost;\n400 = Gesco Waals: Bestrijding Sociale Uitsluiting;\n401 = Gesco Waals Premie 205000;\n402 = Gesco Waals Premie 410000;\n403 = Gesco Waals Premie 615000;\n404 = Gesco Waals Premie 700000;\n41 = Kb 498 Jonge Werkz.Langd.Werkl(T),Z.Verm.Admiekost;\n450 = Gesco Vlaams - Besluit 27/02/1991 (Tot 31/12/1992);\n451 = Gesco Vlaams - Besluit 27/10/1993;\n452 = Gesco Vlaams - Premie 230000 - Besluit 27/10/1993;\n453 = Gesco Vlaams - Premie 440000 - Besluit 27/10/199;\n454 = Gesco Vlaams - Jeugdwerkgarantieplan;\n455 = Gesco Vlaams - Project Vl Gemeenschap;\n456 = Gesco Vlaams - Kinderdagverblijven;\n457 = Gesco Vlaams - Weerwerk (+ Op Proef);\n458 = Gesco Vlaams - Werkervaringsplan;\n459 = Gesco Vlaams - Jeugdwerkgarantieplan;\n460 = Politiepersoneel-Vlaams Gewest;\n50 = Prog. Wet 88: Eerste Werknemer (T1);\n500 = Ingroeibanen;\n501 = Collectieve Arbeidsduurverm. Bedrijf In Herstr.;\n51 = Prog. Wet 88: Vervanger Eerste Werknemer (T2);\n510 = Dsp Brussel Min. 12m Mi +45 Jaar 50% 250 Eur;\n511 = Dsp Brussel Min. 12m Mi +45 Jaar 50% 300 Eur;\n512 = Dsp Brussel Min. 12m Mi +45 Jaar 50% 435 Eur;\n513 = Dsp Brussel Min. 12m Mi +45 Jaar 80% 325 Eur;\n514 = Dsp Brussel Min. 12m Mi +45 Jaar 80% 375 Eur;\n515 = Dsp Brussel Min. 12m Mi +45 Jaar 80% 545 Eur;\n516 = Dsp Brussel Min. 24m Uvw +45 Jaar 50% 247.89 Eur;\n517 = Dsp Brussel Min. 24m Uvw +45 Jaar 50% 297.47 Eur;\n518 = Dsp Brussel Min. 24m Uvw +45 Jaar 50% 433.81 Eur;\n519 = Dsp Brussel Min. 24m Uvw +45 Jaar 80% 322.26 Eur;\n52 = Prog. Wet 88: Bijk. Wn Met Verm. Admiekost (T3);\n520 = Dsp Brussel Min. 24m Uvw +45 Jaar 80% 371.84 Eur;\n521 = Dsp Brussel Min. 24m Uvw +45 Jaar 80% 545.37 Eur;\n522 = Dsp Brussel Min. 24m Mi +45 Jaar 50% 250 Eur;\n523 = Dsp Brussel Min. 24m Mi +45 Jaar 50% 300 Eur;\n524 = Dsp Brussel Min. 24m Mi +45 Jaar 50% 435 Eur;\n525 = Dsp Brussel Min. 24m Mi +45 Jaar 80% 325 Eur;\n526 = Dsp Brussel Min. 24m Mi +45 Jaar 80% 375 Eur;\n527 = Dsp Brussel Min. 24m Mi +45 Jaar 80% 545 Eur;\n53 = Prog. Wet 88: Bijk. Wn Zonder Verm. Admiekost (T3);\n54 = Prog. Wet 88: Verv. Bijk. Wn, Verm. Admiekost (T4);\n55 = Prog. Wet 88: Verv.Bijk.Wn,Zonder Verm. Admie (T4);\n550 = Activa Mi - 25 Jaar 500 Eur;\n551 = 12m Uvw In 18m Activa Plus -25 Jaar 500 Eur;\n552 = 6m Uvw In 9m Activa Plus +45 Jaar 500 Eur;\n553 = 6m Mi In 9m Activa Plus +45 Jaar 500 Eur;\n554 = 12m Uvw In 18m Activa Plus +45 Jaar 500 Eur;\n555 = 12m Mi In 18m Activa Plus +45 Jaar 500 Eur;\n556 = Activa Sluiting 12m Wz In 9m +45j -50%Tew;\n557 = Activa Sluiting 6m Wz In 9m -45j - 50% Tew;\n558 = Activa Sluiting 6m Wz In 9m +45j - 50% Tew;\n559 = 24m Uvw In 36m Activa -45 Jaar 500 Eur;\n56 = Prog. Wet 88: Nieuwe Wn.Tvv Vrijw. Ontsl,Va (T5);\n560 = 36m Uvw In 54m Activa -45 Jaar 500 Eur;\n561 = 60m Uvw In 90m Activa -45 Jaar 500 Eur;\n562 = 18m Uvw In 27m Activa +45 Jaar 500 Eur;\n563 = 12m Uvw In 18m Sine -45 Jaar 500 Eur;\n564 = 6m Wz In 9m Activa Sluiting - 45 Jaar 500 Eur;\n565 = 6m Mi In 9m Sine - 45 Jaar 500 Eur;\n567 = 24m Uvw In 36m Sine - 45 Jaar 500 Eur;\n568 = 6m Uvw In 9m Activa Sluiting +45 Jaar 500 Eur;\n569 = Sine 12m Wz In 18m Mi -45j;\n57 = Prog. Wet 88: Nieuwe Wn.Tvv Vrijw. Ontsl,Zva (T5);\n571 = 6m Uvw In 9m Sine +45 Jaar 500 Eur;\n572 = 36m Wz In 54m Activa -45 Jaar;\n574 = 6m Mi In 9m Sine +45 Jaar 500 Eur;\n575 = 12m Mi In 18m Activa - 25 Jaar 500 Eur;\n576 = 24m Mi In 36m Activa - 25 Jaar 500 Eur;\n577 = 36m Mi In 54m Activa - 25 Jaar 500 Eur;\n578 = 60m Mi In 90m Activa - 25 Jaar 500 Eur;\n579 = 12m Mi In 18m Activa - 45 Jaar;\n58 = Prog. Wet 88: Vervanger Nieuwe Wn, Va (T6);\n580 = 36m Mi In 54m Activa - 45 Jaar 500 Eur;\n581 = 60m Mi In 90m Activa - 45 Jaar 500 Eur;\n582 = 18m Mi In 27m Activa +45 Jaar;\n583 = 60m Wz In 90m Activa -45 Jaar;\n584 = 18 M Wz In 27m Activa +45 Jaar;\n59 = Prog. Wet 88: Vervanger Nieuwe Wn, Zva (T6);\n590 = Generatiepact (Erg) Laaggeschoolden;\n591 = Activa Start;\n592 = Activa Start;\n593 = Rva C24;\n594 = Rva C29;\n595 = Rva C25;\n596 = Rva C26;\n597 = Rva C27;\n598 = Rva C28;\n599 = Rva C30;\n60 = Prog. Wet 88: Begeleiding Werkl., Va (T7);\n600 = Rva C31;\n601 = Rva C32;\n602 = Rva C33;\n603 = Rva C34;\n604 = Rva D13;\n605 = Rva D14 / D15;\n606 = Rva D16 En D17;\n607 = Rsz Verm Mentor;\n608 = Opleider Met Herstruct;\n609 = Werkervaring Volgens Regels Van Dsp Brussel;\n61 = Prog. Wet 88: Begeleiding Werkl., Zva (T7);\n610 = Rva C24 2011;\n611 = Rva C29 2011;\n612 = Rva C25 2011;\n613 = Rva C26 2011;\n614 = Rva C27 2011;\n615 = Rva C28 2011;\n616 = Rva C30 2011;\n617 = Rva C31 2011;\n618 = Rva C32 2011;\n619 = Rva C33 2011;\n62 = Prog. Wet 88: Verv. Begeleiding Werkl., Va (T8);\n620 = Rva C34 2011;\n621 = Rva D13 2011;\n622 = Rva D14 En D15 2011;\n623 = Rva D16 En D17 2011;\n624 = Werkervaring <45j 247,89;\n625 = Werkervaring <45j 297,47;\n626 = Werkervaring <45j 433,81;\n627 = Werkervaring <45j 371,84;\n628 = Werkervaring <45j 545,37;\n629 = Werkervaring >45j 247,89;\n63 = Prog. Wet 88: Verv. Begeleiding Werkl., Zva (T8);\n630 = Werkervaring >45j 297,47;\n631 = Werkervaring >45j 433,81;\n632 = Werkervaring >45j 322,26;\n633 = Werkervaring >45j 371,84;\n634 = Werkervaring >45j 545,37;\n635 = Rva C35;\n636 = Rva D18;\n637 = Rva D19;\n638 = Rva C36;\n639 = Rva D20;\n640 = Rva C37;\n643 = RVA D21 >=45 jr;\n644 = Rva C40< 27j;\n645 = 'RVA C'42 < 27 year;\n646 = copy 563 enkel RSZ verm: 12m UVW in 18m SINE -45 jaar 500 EUR;\n647 = copy 567 enkel RSZ verm: 24m UVW in 36m SINE -45 jaar 500 EUR;\n648 = copy 571 enkel RSZ verm: 6m UVW in 9m SINE +45 jaar 500 EUR;\n649 = copy 563 enkel herinsch: 12m UVW in 18m SINE -45 jaar 500 EUR;\n650 = copy 567 enkel herinsch: 24m UVW in 36m SINE -45 jaar 500 EUR;\n651 = copy 571 enkel herinsch: 6m UVW in 9m SINE +45 jaar 500 EUR;\n652 = copy 303 enkel RSZ verm: SINE wn 17500 fr;\n653 = copy 304 enkel RSZ verm: SINE wn 22000 fr;\n654 = copy 303 enkel herinschakeling: SINE wn 17500 fr;\n655 = copy 304 enkel herinschakeling: SINE wn 22000 fr;\n70 = Plus 1 Plan: Without reduction of admin. costs (P);\n700 = Herverdeling Arbeid Openb.Sector (Verv.4dagenweek);\n701 = Logistiek Assistent Kb05-02-1997 (Rszppo);\n702 = Kb Veiligheidscontract;\n703 = Gerechtigden Op Bestaansminimum;\n704 = <18j Voldoen Aan Kb 495, Instap In Jong.Ban.Plan;\n705 = <18j Altern Tewerst En Opleid - Kb495 + Brugprojn.;\n706 = Jongeren Socio-Professionele Inpassing;\n707 = Wn. In Dienst Na Startbaanovereenkomst (Enkel Ppo);\n708 = Contr. Ter Vervanging Van Opleiding Verpleegkundig;\n709 = Contr. Bezoldigd Afwezig Wegens Opleid Verpleegk.;\n71 = Plus 1 Plan: Met Vermindering Admin. Kosten (P);\n710 = Activa -45jr 12 Mnd Wz In 18 Mnd;\n711 = Activa +45jr 6 Mnd Wz In 9 Mnd;\n712 = Activa - Sluiting;\n713 = Activa -45jr 24 Mnd Wz In 36 Mnd;\n714 = Activa +45jr Wz > 1 Jaar;\n715 = Activa -45jr 36 Mnd Wz In 54 Mnd;\n716 = Activa -45jr 60 Mnd Wz In 90 Mnd;\n717 = Activa -45jr Preventie & Veiligheid;\n718 = Activa +45jr Preventie & Veiligheid;\n72 = Plus 2 Plan: Zonder Vermindering Admin. Kost. (P2);\n720 = Dsp -25jr;\n721 = Dsp -45jr Min 12mnd Uitkering;\n722 = Dsp -45jr Min 24mnd Uitkering;\n723 = Dsp +45jr Min 12mnd Uitkering;\n724 = Dsp -45jr Min 24mnd Uitkering;\n728 = Logistiek Ass. + Opl. Verpleegkundige + Bez Afw;\n729 = Geen Log. Ass. + Opl. Verpleegkundige + Bez Afw;\n73 = Plus 2 Plan: Met Vermindering Admin. Kosten (P2);\n74 = Plus 3 Plan: Zonder Vermindering Admin.Kosten (P3);\n75 = Plus 3 Plan: Met Vermindering Admin.Kosten (P3);\n76 = Vervanger Plus 2 Plan: Zonder Vermind. Adm.K (P2);\n77 = Vervanger Plus 2 Plan: Met Vermind. Admin Ko (P2);\n78 = Vervanger Plus 3 Plan: Zonder Vermind. Adm. K (P3);\n79 = Vervanger Plus 3 Plan: Met Vermind. Adm. Ko (P3);\n795 = Gesco Contingent;\n796 = Gesco Projecten;\n797 = Gesco Openbare Besturen;\n798 = Activa Plan (Geen Berekeningen In L4);\n799 = Wep+ Algemeen (Geen Berekeningen In L4);\n80 = Vervanger Plus 1 Plan: Zonder Vermind. Adm.Ko (P);\n800 = Benefit -25 years low-skilled Wallonia;\n801 = Middengesch. - 6m werkzoekend / Wallonië;\n803 = Impulsion -25, 55+, insertion;\n81 = Vervanger Plus 1 Plan: Met Vermindering Adm. K (P);\n82 = Plus 1 Plan: Gewezen Uitzendkracht;\n83 = Plus 2 Plan: Gewezen Uitzendkracht;\n84 = Plus 3 Plan: Gewezen Uitzendkracht;\n85 = Plus 2 Plan: Gewezen Uitzendkracht Zonder Verm Adm;\n90 = Ex Rva-Stagiair Kb 230 (R);\n900 = Activa Brussel langdurig werkzoekend;\n902 = Benefit long-term unemployed (age) Brussels;\n91 = Ex Rva-Stagiair (Eerste Jaar Geen Rsz-Verm);\n999 = No recruitment context;", "format": "" }, "SoMb": { "type": "number", "description": "Sociale Maribel", "format": "number" }, "PeEx": { "type": "string", "enum": [ "0", "1", "2", "3", "4", "5", "6", "7", "8" ], "maxLength": 20, "description": "Notie vrijstelling prestaties\n0 = No exception of services;\n1 = Exemption from performance;\n2 = Exemption of services during a full quarter;\n3 = Exemption of services prior to 28/09/2017;\n4 = Exemption of services during a full quarter of the CLA concluded prior to 28/09/2017;\n5 = Exemption of services during a full quarter and training w/costs >= 20% of the gross annual wage;\n6 = Exemption of services and employment of at least 1/3 time during a full quarter;\n7 = Exemption from benefits during a full quarter to less than 1/3 of full-time employment.;\n8 = Exempt fr benefits during quart up to >= 1/3 of ft empl and training cost = 20% spec rate ann salary;", "format": "" }, "DaEx": { "type": "string", "description": "Exemption start date", "format": "date" }, "DaEd": { "type": "string", "description": "Training status start date", "format": "date" }, "StEd": { "type": "string", "enum": [ "0", "1", "2" ], "maxLength": 20, "description": "Training status\n0 = No training followed by the employee;\n1 = Required training followed by the employee;\n2 = Obligation to follow outplacement assistance;", "format": "" }, "WrCt": { "type": "boolean", "description": "Written employment contract", "format": "" }, "StCd": { "type": "string", "maxLength": 20, "description": "Steering group key", "format": "" }, "FaGr": { "type": "integer", "description": "Invoicing group", "format": "" }, "KRS": { "type": "string", "maxLength": 20, "description": "'RSZ' indicator", "format": "" }, "RMfa": { "type": "string", "enum": [ "1", "2", "3", "4", "401", "402", "403", "404", "405", "406", "407", "408", "409", "410", "411", "412", "5", "6" ], "maxLength": 20, "description": "DMFA Risk class\n1 = Arbeider zonder verplaatsing;\n2 = Worker on the factory floor;\n3 = Huisbewaarders (arbeider);\n4 = Schoonmaak- en onderhoudspersoneel(arbeider);\n401 = Bediende zonder verplaatsing;\n402 = Bediende met occasionele opdrachten buiten ondern.;\n403 = Bediende met regelmatige opdrachten buiten ondern.;\n404 = Vertegenw., reizend person., loopjongen (bediende);\n405 = Office worker who performs manual labour;\n406 = Thuiswerkende bediende;\n407 = Verplegend personeel;\n408 = Verkoper (bediende);\n409 = Voetballer met statuut betaalde sportbeoefenaar;\n410 = Voetballer zonder stat bet. Sportbeoef.> 1239,47e;\n411 = Voetballer zonder stat bet. Sportbeoef.< 1239,47e;\n412 = Andere sportbeoefenaar dan voetballer;\n5 = Keukenpersoneel (niet voor horeca) (arbeider);\n6 = Chauffeur(arbeider);", "format": "" }, "Z36": { "type": "string", "enum": [ "a", "b" ], "maxLength": 20, "description": "Fixed-term contract\na = Less than 3 months;\nb = More than 3 months;", "format": "" }, "CDT": { "type": "string", "enum": [ "1", "2", "3", "4", "5", "6", "7", "8" ], "maxLength": 20, "description": "Full-time/part-time\n1 = Full-time work;\n2 = Voluntary part-time - full days;\n3 = Voluntary part-time - incomplete days;\n4 = Full-time + occasional incomplete days;\n5 = Voluntary part-time - undefined hour scheme;\n6 = Involuntary part-time - full days;\n7 = Involuntary part-time - complete days;\n8 = Involuntary part-time - undefined hour scheme;", "format": "" }, "COR": { "type": "boolean", "description": "Subject to 'RSZ'", "format": "" }, "CCW": { "type": "string", "enum": [ "0", "000", "010", "011", "012", "013", "014", "015", "016", "017", "020", "022", "023", "024", "025", "026", "027", "028", "029", "035", "039", "041", "045", "046", "047", "050", "10", "11", "12", "13", "14", "15", "16", "17", "20", "22", "23", "24", "25", "26", "27", "28", "29", "35", "39", "41", "43", "439", "45", "450", "46", "47", "480", "484", "485", "486", "487", "490", "491", "492", "493", "494", "495", "496", "497", "498", "50", "675", "74", "75", "82", "83", "84", "840", "85", "87", "879", "883", "885", "91", "92", "95" ], "maxLength": 20, "description": "RSZ-categorie\n0 = No meaning;\n000 = No meaning;\n010 = Temp. empl. hort-agric/SUPextra catering;\n011 = Work paid with fixed amount;\n012 = Handicapped worker in a protected workplace;\n013 = Worker special case;\n014 = Worker normal category;\n015 = Worker normal category;\n016 = Miner, surface;\n017 = Miner, underground;\n020 = Trainee worker SUPextra Hotel, Restauarant and Catering;\n022 = Trainee worker & intern with fixed amount wage;\n023 = Contractually subsidised;\n024 = Contractually subsidised;\n025 = Handicapped subsidised contract;\n026 = Normal trainee worker & intern;\n027 = Normal trainee worker & intern;\n028 = Handicapped subsidised contractual with fixed amount wage;\n029 = Subsidised contractual with fixed amount wage;\n035 = Accredited trainee worker;\n039 = Apprentice non-manual worker;\n041 = Industrial accident;\n045 = Domestic servant;\n046 = Artist;\n047 = Part-time artiste of school age;\n050 = Flexi-job;\n10 = Temp. empl. hort-agric/SUPextra catering;\n11 = Work paid with fixed amount;\n12 = Handicapped worker in a protected workplace;\n13 = Worker special case;\n14 = Worker normal category;\n15 = Worker normal category;\n16 = Miner, surface;\n17 = Miner, underground;\n20 = Trainee worker SUPextra Hotel, Restauarant and Catering;\n22 = Trainee worker & intern with fixed amount wage;\n23 = Contractually subsidised;\n24 = Contractually subsidised;\n25 = Handicapped subsidised contract;\n26 = Normal trainee worker & intern;\n27 = Normal trainee worker & intern;\n28 = Handicapped subsidised contractual with fixed amount wage;\n29 = Subsidised contractual with fixed amount wage;\n35 = Accredited trainee worker;\n39 = Apprentice non-manual worker;\n41 = Industrial accident;\n43 = In-house staff 1st recruited;\n439 = Trainee office worker;\n45 = Domestic servant;\n450 = Bediende Flexi-job;\n46 = Artist;\n47 = Part-time artiste of school age;\n480 = Trainee office worker SUPextra Catering;\n484 = Subsidised contractual office worker;\n485 = Handicapped subsidised contractual office worker;\n486 = School-aged occ. office work (fixed rate);\n487 = Norm. trainee office worker & intern.;\n490 = Office worker SUPextra Catering;\n491 = Office worker ANPCB;\n492 = Disabled office worker;\n493 = Bediende (speciaal geval);\n494 = Bediende (speciaal geval);\n495 = Ordinary office worker;\n496 = Occass. office worker (fixed amount);\n497 = Host family;\n498 = Doctoral thesis outside EA;\n50 = Flexi-job;\n675 = Statutory;\n74 = Enkel vrz.gz (a) (any education);\n75 = Enkel vrz.gz (b) (University education);\n82 = Trainee office worker & intern (ANPCB);\n83 = Bediende huispersoneel;\n84 = Subsidised contractual (b);\n840 = Student;\n85 = Subsidised contractual handicapped protected workplace;\n87 = Trainee office worker & intern;\n879 = 'Bruggepensioneerde';\n883 = 'Pseudo-bruggepensioneerde (canada dry)';\n885 = Pseudo early retiree (time credit);\n91 = Office worker (ANPCB);\n92 = Handicapped non-manual worker - protected workplace;\n95 = Ordinary office worker& paid athlete;", "format": "" }, "BOR": { "type": "number", "description": "Foreign origin", "format": "number" }, "DtIn": { "type": "string", "description": "Dismissal on", "format": "date" }, "SDGr": { "type": "string", "maxLength": 20, "description": "Group SD Worx", "format": "" }, "PaGr": { "type": "string", "maxLength": 20, "description": "Partena Group", "format": "" }, "PaCc": { "type": "string", "enum": [ "A", "B", "C", "D", "E", "F" ], "maxLength": 20, "description": "Contract categorie\nA = Worker;\nB = Office worker;\nC = Apprenticeship contract blue-collar worker;\nD = Apprenticeship contract white-collar worker;\nE = Niet onderworpen;\nF = Domestic staff;", "format": "" }, "PaCt": { "type": "string", "enum": [ "0", "9", "A", "B", "C", "D" ], "maxLength": 20, "description": "Contract type\n0 = No object;\n9 = Unknown;\nA = Onbepaalde duur;\nB = Bepaalde duur;\nC = Duidelijk omschreven werk;\nD = Substitution;", "format": "" }, "PaPc": { "type": "string", "enum": [ "0", "1", "2", "3", "4", "5", "6", "7", "8", "E", "F", "J", "P", "S", "T", "W", "X" ], "maxLength": 20, "description": "Contract specification\n0 = No special contract;\n1 = Initial placement;\n2 = Trainee R.D. 230;\n3 = Half-time PEP (1st job exp) with deduct. on net;\n4 = Half-time PEP (1st job exp) without deduct. on net;\n5 = PEP (1st job exp) other than half-time;\n6 = Student;\n7 = Training in relation to school training;\n8 = Extra HORECA;\nE = Super-Extra HORECA;\nF = Occasional worker HORECA;\nJ = Worker -15 years;\nP = Occasional worker funerals;\nS = Startersjob;\nT = Instapstage;\nW = Linked training in the Walloon region;\nX = Flexijobs;", "format": "" }, "PaTc": { "type": "string", "enum": [ "0", "I", "S", "T" ], "maxLength": 20, "description": "Temporary contract\n0 = Not applicable;\nI = Temporary worker;\nS = Seasonal worker;\nT = Intermittent worker;", "format": "" }, "PaNr": { "type": "string", "maxLength": 15, "description": "Student number", "format": "" }, "PaTl": { "type": "string", "enum": [ "0", "1", "2", "3", "4", "5", "6", "7", "8" ], "maxLength": 20, "description": "Type of student\n0 = No object;\n1 = Apprentice SME’s;\n2 = Industrial apprentice;\n3 = Training company manger (Fr.Comm);\n4 = Insertion contract CEFA;\n5 = training company manager (Fl.Comm);\n6 = Beroepsinlevingsovereenkomst;\n7 = Work-link contract;\n8 = Work-link contract Flanders;", "format": "" }, "PaRe": { "type": "string", "enum": [ "0", "1", "2", "3" ], "maxLength": 20, "description": "Region apprenticeship contract\n0 = No object;\n1 = Flemish Region;\n2 = French Region (Walloon Region and Brussels Capital Region);\n3 = German Region;", "format": "" }, "PaRu": { "type": "string", "enum": [ "00", "01", "02", "03", "04", "05", "06", "07", "08", "09", "11", "12", "13", "15", "16", "17", "22", "24", "25", "27" ], "maxLength": 20, "description": "Reason end employment\n00 = (Employed);\n01 = Dismissal (by employer);\n02 = Resignation (by worker);\n03 = Serious misconduct;\n04 = Definite term/well-defined work;\n05 = Pension;\n06 = Early retirement;\n07 = Death;\n08 = Change of status;\n09 = Andere;\n11 = Resumption of work after time credit;\n12 = Early retirement;\n13 = Early retirement due to illness;\n15 = End of official status;\n16 = Resignation in a body;\n17 = Termination medical reasons;\n22 = Verbreking door de werkgever;\n24 = In onderling akkoord;\n25 = Force majeure;\n27 = Welldefined work;", "format": "" }, "PaJf": { "type": "number", "description": "Fictitious seniority years", "format": "number" }, "PaPr": { "type": "number", "description": "Prof. years", "format": "number" }, "PaTi": { "type": "string", "enum": [ "1", "2", "3" ], "maxLength": 20, "description": "Title\n1 = Mrs.;\n2 = Ms;\n3 = Mr;", "format": "" }, "PaOp": { "type": "string", "enum": [ "0", "1", "2", "3", "4", "9" ], "maxLength": 20, "description": "Educational level\n0 = No code;\n1 = Primary education;\n2 = Sec/secondary education;\n3 = High degree (non university);\n4 = University education;\n9 = Unknown;", "format": "" }, "PaEd": { "type": "string", "description": "Last study end date", "format": "date" }, "PaDp": { "type": "string", "description": "Prof. seniority", "format": "date" }, "PaCa": { "type": "boolean", "description": "CAO42", "format": "" }, "DvbAbId": { "type": "integer", "description": "Verzuim", "format": "" }, "DvbLeId": { "type": "integer", "description": "Verlof", "format": "" }, "DvbSEns": { "type": "integer", "description": "DV Verlof", "format": "" }, "DvbSuDv": { "type": "boolean", "description": "Vervangingsdienstverband", "format": "" }, "DvbIsAt": { "type": "boolean", "description": "Uitbreiding", "format": "" }, "DvbDecl": { "type": "boolean", "description": "Declareren bij Vervangingsfonds", "format": "" }, "DvbPool": { "type": "boolean", "description": "Poolvervanger", "format": "" }, "DvbViCv": { "type": "string", "maxLength": 10, "description": "Contractvorm", "format": "" }, "DvbSubs": { "type": "string", "maxLength": 15, "description": "Vervangt", "format": "" }, "DvbInFt": { "type": "boolean", "description": "Vervanging binnen eigen FTE bij vrijwillige verz.", "format": "" }, "EnS2": { "type": "integer", "description": "Income relationship no.", "format": "" }, "EnSe": { "type": "integer", "description": "Employment", "format": "" }, "DvbEnSe": { "type": "integer", "description": "Dienstverband", "format": "" }, "DvbZ59": { "type": "string", "description": "Einde opzegvergoeding", "format": "date" }, "DvbDAP": { "type": "string", "description": "Begindatum (brug)pensioen", "format": "date" }, "DvbStat": { "type": "string", "maxLength": 10, "description": "Statuut", "format": "" }, "DvbPNR": { "type": "number", "description": "Medewerkernummer", "format": "number" }, "DvbCCK": { "type": "string", "maxLength": 10, "description": "Contractcategorie", "format": "" }, "DvbCPI": { "type": "string", "maxLength": 10, "description": "RIZIV pensioen", "format": "" }, "DvbPRR": { "type": "string", "maxLength": 10, "description": "Periodiciteit RIZIV", "format": "" }, "DvbAGK": { "type": "boolean", "description": "Onderworpen aan arbeidsgeneeskunde", "format": "" }, "DvbZ27": { "type": "number", "description": "Medische dienst", "format": "number" }, "DvbBSZ": { "type": "boolean", "description": "Onderworpen bijz. soc. Zekerheid", "format": "" }, "DvbSBZ": { "type": "string", "maxLength": 10, "description": "Bijz. soc. Zekerheid", "format": "" }, "DvbIBZ": { "type": "string", "maxLength": 8, "description": "Inschrijfnummer", "format": "" }, "DvbZIV": { "type": "string", "maxLength": 10, "description": "Afhouding Z.I.V.", "format": "" }, "DvbSdNr": { "type": "string", "maxLength": 2, "description": "Identificatie SD Worx", "format": "" }, "DvbRESd": { "type": "string", "maxLength": 10, "description": "Reden uit dienst", "format": "" }, "DvbFiTy": { "type": "string", "maxLength": 10, "description": "Ontslagwijze", "format": "" }, "DvbViSs": { "type": "string", "maxLength": 10, "description": "Wijze betekening", "format": "" }, "DvbSdDi": { "type": "string", "description": "Betekening opzegging", "format": "date" }, "DvbSdDa": { "type": "string", "description": "Datum verzending opzegging", "format": "date" }, "DvbDaDi": { "type": "string", "description": "Begindatum opzegging", "format": "date" }, "DvbTxEm": { "type": "string", "maxLength": 10, "description": "Fiscale vrijstelling ontslag", "format": "" }, "DvbStAn": { "type": "string", "description": "Startdatum anciënniteit", "format": "date" }, "DvbSeAc": { "type": "integer", "description": "Volgnummer Acerta", "format": "" }, "DvbREAc": { "type": "string", "maxLength": 10, "description": "Reden uit dienst", "format": "" }, "DvbCtTy": { "type": "string", "maxLength": 10, "description": "ContractType", "format": "" }, "DvbTRsz": { "type": "string", "maxLength": 10, "description": "Type #1 medewerker", "format": "" }, "DvbTRs2": { "type": "string", "maxLength": 10, "description": "Type #2 medewerker", "format": "" }, "DvbSwt": { "type": "string", "maxLength": 10, "description": "Code brugpensioen", "format": "" }, "DvbRizi": { "type": "string", "maxLength": 10, "description": "RIZIV code", "format": "" }, "DvbPRiz": { "type": "string", "maxLength": 10, "description": "Periodiciteit RIZIV", "format": "" }, "DvbRvpC": { "type": "string", "maxLength": 10, "description": "RVP categorie", "format": "" }, "DvbMaWe": { "type": "string", "maxLength": 10, "description": "Maatregel werkhervatting", "format": "" }, "DvbDaLa": { "type": "string", "description": "Datum laatste toekenning", "format": "date" }, "DvbRrRe": { "type": "string", "maxLength": 11, "description": "Rijksregisternr vervanger", "format": "" }, "DvbDeNo": { "type": "string", "maxLength": 10, "description": "Notie debiteur", "format": "" }, "DvbNoDm": { "type": "integer", "description": "Teller breuk DMFA", "format": "" }, "DvbSbo": { "type": "string", "maxLength": 10, "description": "Startbaanovereenkomst", "format": "" }, "DvbViAo": { "type": "string", "maxLength": 10, "description": "Reden einde arbeidsovereenkomst", "format": "" }, "DvbWWHe": { "type": "boolean", "description": "WW herzien", "format": "" }, "DvbCAHi": { "type": "string", "maxLength": 10, "description": "Cao-code inlener", "format": "" }, "DvbGmAk": { "type": "string", "description": "Einddatum vergoeding in gemeenschappelijk akkoord", "format": "date" }, "DvbViRe": { "type": "string", "maxLength": 10, "description": "Reden einde dienstverband België", "format": "" }, "DvbViMa": { "type": "string", "maxLength": 10, "description": "Wijze einde dienstverband België", "format": "" }, "ArvStPn": { "type": "string", "maxLength": 10, "description": "Start pensioenregeling", "format": "" }, "ArvStwp": { "type": "integer", "description": "Start weken pensioen", "format": "" }, "ArvDaLw": { "type": "string", "description": "Laatste werkdag", "format": "date" }, "PeDa": { "type": "string", "description": "Statutory pension date", "format": "date" }, "B2Pp": { "type": "boolean", "description": "2st pension pillar contribution", "format": "" }, "RSZE": { "type": "string", "enum": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C", "D", "E" ], "maxLength": 20, "description": "RSZ exemption\n1 = 'Tewerkgestelde werkloze in een VZW';\n2 = Vocational training / Apprenticeship;\n3 = Pays 'RSZ' abroad;\n4 = RSZ als zelfstandige;\n5 = 'Overzeese sociale zekerheid';\n6 = Short duration employment;\n7 = 'Binnenschipper';\n8 = Working student;\n9 = 'Begeleid leerlingenvervoer of middagtoezichter';\nA = Huispersoneel max. 8u/week;\nB = Instapstage;\nC = Beroepsinlevingsovereenkomst;\nD = Brugproject;\nE = VDAB stage (onbezoldigd);", "format": "" }, "LeAg": { "type": "string", "enum": [ "1", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "2", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "3", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "4", "40", "5", "6", "7", "8", "9" ], "maxLength": 20, "description": "Contract of employment\n1 = Worker;\n10 = Professional sportsman;\n11 = Student;\n12 = Unemployed placed in employment;\n13 = -;\n14 = 'Derde arbeidscircuit';\n15 = Employee with limited RSZ obligations (compulsory education);\n16 = Part-time apprenticeship (compulsory school attendance);\n17 = RVA vocational training;\n18 = Apprenticeship (RD 230) / Starter job contract;\n19 = Temporary work (interim);\n2 = Worker paid with gratuities;\n20 = 'Openbare dienst';\n21 = Leerling / stage geen dimona;\n22 = 'Bestuurder';\n23 = Pensioner;\n24 = 'Bruggepensioneerde';\n25 = Professional journalist;\n26 = 'Tewerkgestelde onder volmachtsbesluiten';\n27 = 'Arbeider met fooien bezoldigd onder volmachtsbesluiten';\n28 = 'Werknemer met tegemoetkoming werkgever';\n29 = 'Werknemer met tegemoetkoming werkgever (fooien)';\n3 = Alternerend leren-werken / ond.opl.;\n30 = 'Binnenschipper';\n31 = 'DOSZ';\n32 = 'Vliegend personeel';\n33 = 'Zaakvoerder';\n34 = Expatriates;\n35 = 'TCN';\n36 = Expatriates;\n37 = On assignments;\n38 = 'Detachering';\n39 = Additional allowance with unemployment benefit (canada dry);\n4 = Industrial learning contract / socio-professional contract;\n40 = 'Aanvullende vergoeding bij onderbrekingsuitkering bij tijdskrediet';\n5 = Articles of apprenticeship (disabled);\n6 = Home worker;\n7 = Domestic servant;\n8 = Office worker;\n9 = Trade representative;", "format": "" } }, "required": [ "DaBe", "ClId", "WcId", "ApCo", "CmId", "EmMt", "ViEt", "RtDa", "DvbSuDv", "DvbIsAt", "DvbDecl", "DvbPool", "DvbInFt", "DvbCCK", "DvbAGK", "DvbBSZ", "DvbWWHe" ] }, "Objects": { "type": "array", "items": { "type": "object", "properties": { "AfasContractAddition": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "DaCo": { "type": "string", "description": "Group date", "format": "date" }, "InCa": { "type": "string", "maxLength": 20, "description": "Statutory insurance category", "format": "" }, "ReAc": { "type": "string", "enum": [ "1" ], "maxLength": 20, "description": "Retiree with achievements\n1 = Yes;", "format": "" }, "HaRe": { "type": "string", "enum": [ "1" ], "maxLength": 20, "description": "Halftijds bruggepensioneerd\n1 = Yes;", "format": "" }, "CoRe": { "type": "string", "maxLength": 5, "description": "Early retirement cost ctr.", "format": "" }, "HoRe": { "type": "number", "description": "u/wk DT brugpens dagprijs", "format": "number" }, "Ap": { "type": "string", "enum": [ "1", "2", "3", "4", "5", "6", "7" ], "maxLength": 20, "description": "Learning agreement\n1 = Alternating study/work older than 18 years;\n2 = Apprenticeship of tradespeople older than 18 years;\n3 = Industrial apprenticeship older than 18 years;\n4 = Industrial socio-professional apprenticeship older than 18 years;\n5 = First work experience older than 18 years;\n6 = Alternerende opleiding Vlaanderen na 18 jaar;\n7 = Alternerende opleiding Wallonië na 18 jaar;", "format": "" }, "EdLe": { "type": "string", "enum": [ "1", "2", "3", "4" ], "maxLength": 20, "description": "Niveau opleiding\n1 = Lager onderwijs;\n2 = Secondary education;\n3 = Bachelor;\n4 = Master;", "format": "" }, "Ed": { "type": "string", "maxLength": 20, "description": "Education", "format": "" }, "EdHc": { "type": "string", "maxLength": 20, "description": "Opleiding (zorg)", "format": "" }, "RiGr": { "type": "string", "enum": [ "001", "002", "003", "004", "005", "006", "401", "402", "403", "404", "405", "406", "407", "408", "409", "410", "411", "412" ], "maxLength": 20, "description": "Risicoklasse arbeidsong.\n001 = Arbeider zonder verplaatsingen;\n002 = Worker on the factory floor;\n003 = Huisbewaarders;\n004 = Schoonmaak- en onderhoudspersoneel;\n005 = Keukenpersoneel;\n006 = Driver;\n401 = Bediende zonder verplaatsingen;\n402 = Bediende occasioneel opdrachten buiten bedrijf;\n403 = Bediende regelmatig opdrachten buiten bedrijf;\n404 = Vertegenwoordiger, reizend personeel, loopjongen;\n405 = Bediende die manueel werk verricht;\n406 = Thuiswerkende bediende;\n407 = Care personnel;\n408 = Salesperson;\n409 = Voetballer met statuut betaald sportbeoefenaar;\n410 = Voetballer zonder statuut betaald sportbeoefenaar, jaarwedde groter dan € 1239,46;\n411 = Voetballer zonder statuut betaald sportbeoefenaar, jaarwedde kleiner dan € 1239,47;\n412 = Andere sportbeoefenaar dan voetballer;", "format": "" }, "CoTy": { "type": "string", "enum": [ "1", "2", "3", "4", "5" ], "maxLength": 20, "description": "Contract type\n1 = Onbepaalde duur;\n2 = Bepaalde duur;\n3 = Welldefined work;\n4 = Substitution of an indefinite duration;\n5 = Substitution of a definite duration;", "format": "" }, "AgTy": { "type": "string", "enum": [ "3" ], "maxLength": 20, "description": "Soort overeenkomst\n3 = Student contract;", "format": "" }, "DaRb": { "type": "string", "description": "Begindatum herstructurering", "format": "date" }, "CoPl": { "type": "string", "enum": [ "1", "2", "3", "4", "5", "6", "7" ], "maxLength": 20, "description": "Company plan\n1 = Reorganisation plan;\n2 = Company plan with redistribution in de private sector;\n3 = Employment agreement for 1995 - 1996;\n4 = Employment agreement for 1997 - 1998;\n5 = Collective agreement ADV-defensie plan Van Delanotte;\n6 = Collective agreement ADV-offensie plan Van Delanotte;\n7 = Company plan with redistribution in de public sector;", "format": "" }, "DaBB": { "type": "string", "description": "Begin recht BBT/BBK", "format": "date" }, "CoIz": { "type": "string", "maxLength": 20, "description": "Campuscode IZAG", "format": "" }, "PrWN": { "type": "string", "enum": [ "1", "2", "3", "4" ], "maxLength": 20, "description": "Vroegere soort WN\n1 = Bijzonder tijdelijk kader;\n2 = derde arbeiderscircuit;\n3 = tewerkgestelde werkloze;\n4 = andere;", "format": "" }, "IpIz": { "type": "string", "enum": [ "0", "1", "10", "100", "101", "102", "103", "104", "105", "106", "107", "108", "109", "11", "110", "111", "112", "113", "114", "115", "116", "117", "118", "119", "12", "120", "121", "122", "123", "13", "132", "133", "134", "135", "136", "137", "138", "139", "14", "140", "141", "142", "143", "144", "145", "15", "16", "17", "19", "2", "20", "21", "22", "23", "24", "25", "26", "27", "29", "3", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "4", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "5", "-5", "50", "500", "501", "502", "503", "504", "505", "506", "507", "508", "509", "51", "510", "511", "512", "513", "514", "515", "517", "518", "519", "52", "520", "521", "522", "523", "524", "525", "526", "527", "528", "529", "53", "530", "531", "532", "533", "534", "54", "55", "56", "57", "58", "59", "6", "60", "600", "601", "602", "603", "604", "605", "606", "607", "608", "609", "61", "610", "611", "612", "613", "614", "615", "616", "617", "618", "619", "62", "620", "621", "622", "623", "624", "625", "626", "627", "628", "629", "63", "630", "631", "632", "633", "635", "636", "637", "638", "64", "640", "641", "642", "643", "644", "645", "646", "647", "648", "649", "65", "650", "651", "652", "653", "654", "655", "66", "67", "68", "69", "70", "701", "702", "703", "704", "705", "706", "707", "708", "709", "71", "710", "711", "712", "713", "714", "715", "716", "72", "73", "74", "75", "76", "77", "78", "79", "8", "80", "800", "801", "802", "803", "804", "805", "806", "807", "808", "809", "81", "810", "811", "812", "813", "814", "815", "816", "817", "818", "819", "82", "820", "821", "822", "823", "824", "825", "826", "827", "828", "829", "83", "830", "831", "84", "85", "86", "87", "88", "89", "9", "90", "91", "92", "93", "94", "95", "96", "97", "98", "99" ], "maxLength": 20, "description": "IPAG/IZAG\n0 = UNKNOWN;\n1 = not specified;\n10 = kinderverzorging;\n100 = geneesheer-specialist arbeidsgeneeskunde;\n101 = houder BBT-nucl. in vitro geneesk.;\n102 = houder BBT-funct./prof. reval.gehand.;\n103 = bijz beroepstitel gen-spec geriatrie;\n104 = houder BBT-mond,kaak,aangezichtschir.;\n105 = houder BBT-specialist intensieve zorgen;\n106 = houder BBT-specialist urgentiegeneesk.;\n107 = houder BBT-specialist pediatr. neurologi;\n108 = bijz beroepstitel gen-spec nefrologie;\n109 = houder BBT-spec. endocr.-diabetologie;\n11 = personenzorg;\n110 = bijz beroepstitel gen-spec oncologie;\n111 = houder BBT -medische oncologie;\n112 = bijz beroepstitel gen-spec neonatologie;\n113 = aggregaat med.-soc. wetensch./zh.beleid;\n114 = licentiaat med.-soc. Wetensch./zhbeleid;\n115 = licentiaat pedagogie;\n116 = licentiaat psychologie;\n117 = licentiaat sociologie;\n118 = licentiaat economische wetenschappen;\n119 = licentiaat ziekenhuishygiëne;\n12 = gezins- en sanitaire hulp;\n120 = licentiaat kinesitherapie;\n121 = Apotheker-bioloog;\n122 = fysicus;\n123 = interculturele bemiddeling gezondh.zorg;\n13 = not specified;\n132 = Pharmacist;\n133 = gebrev.verpleegk.Geest. Gezondheidszorg;\n134 = gebrev.verpleegk. in de geriatrie;\n135 = gebrev.verpleegk.intensieve zorg en spoe;\n136 = bijz.bekwam. Gebrev.verpleegk. oncologie;\n137 = bijz.bekwam. in de medische beeldvormin;\n138 = bijz.bekwam. in de operatiekamer;\n139 = bijz.bekwam. in de palliatieve zorg;\n14 = ziekenhuisassistent;\n140 = bijz.bekwam. in de endoscopie;\n141 = bijz.bekwam. in de hemodialyse;\n142 = bijz.bekwam. in de radiotherapie;\n143 = bijz.bekwam. gezondheidsopvoeding;\n144 = bijz.bekwam. Adj.-hoofdverpleegk.;\n145 = bijz bekw van gebrev hoofdverpleegk;\n15 = psychiatrische verpleegkunde;\n16 = ziekenhuisverpleegkunde;\n17 = gebrev verpleegk;\n19 = not specified;\n2 = not specified;\n20 = gegradueerde ziekenhuisverpleegk;\n21 = gegradueerde pediatrische verpleegk;\n22 = gegrad. in de socialegezondheidszorg;\n23 = gegrad. verpleegk. geest.Gezondh.zorg;\n24 = gegradueerde geriatrische verpleegk;\n25 = gegrad.verpleegk.intens.en spoedgev.zorg;\n26 = bijz bekw van verpleegk oncologie;\n27 = bijz.bekwam. in medische beeldvorming;\n29 = bijz bekw van verpleegk operatiekamer;\n3 = hoger algemeen secundair;\n30 = bijz.bekwam. in de palliatieve zorg;\n31 = bijz bekw van verpleegk endoscopie;\n32 = bijz bekw van verpleegk hemodialyse;\n33 = bijz bekw van verpleegk radiotherapie;\n34 = bijz.bekwam. in de gezondheidsopvoeding;\n35 = bijz bekw van adjunct-hoofdverpleegk;\n36 = bijz bekw van hoofdverpleegk;\n37 = bijz bekw van verpleegk hoofd van dienst;\n38 = bijz.bekwam. hfd (geriatrische)verpleegk;\n39 = bijz.bekwam. hfd (pediatrische)verpleegk;\n4 = hoger technisch secundair;\n40 = bijz.bekwam. hfd (psychiatr.)verpleegk.;\n41 = bijz.bekwam. hfd (vroedvrouw)verpleegk.;\n42 = bijz.bekwam. verpleegk. perman. opleidin;\n43 = bijz bekw ziekenhuishygiënist;\n44 = bijz. bekwam. directeur verpleegk. depar;\n45 = bijz. bekwam. verpleegk. kwalit.bewaking;\n46 = vroedvrouw;\n47 = gegradueerde ergotherapie;\n48 = gegradueerde kinesitherapie;\n49 = gegradueerde arbeidstherapie;\n5 = hoger kunst secundair;\n-5 = Not applicable;\n50 = gegradueerde othopedie;\n500 = Niet gespecifieerd;\n501 = Bachelor bedrijfsverpleegkunde;\n502 = Bachelor biomed.Labo.technologie;\n503 = Bachelor biomedische wetenschappen;\n504 = Bachelor biowetenschappen;\n505 = Bachelor ergotherapie;\n506 = Bachelor farmaceutische wetenschappen;\n507 = Bachelor geestelijke gezondheidszorg;\n508 = Bachelor geneeskunde;\n509 = Bachelor geriatrische gezondheidszorg;\n51 = gegradueerde podologie;\n510 = Bachelor intensieve zorgen in de spoed;\n511 = Bachelor kinesitherapie;\n512 = Bachelor LO/bewegingswetenschappen;\n513 = Bachelor logopedie en de audiologie;\n514 = Bachelor logoped. en audiolog. Wetensch;\n515 = Bachelor medische beeldvorming;\n517 = Bachelor oncologische zorg;\n518 = Bachelor operatieverpleegkunde;\n519 = Bachelor orthopedie;\n52 = gegradueerde logopedie;\n520 = Bachelor osteopathie;\n521 = Bachelor palliatieve hulpverlening;\n522 = Bachelor pediatrische gezondheidszorg;\n523 = Bachelor podologie;\n524 = Bachelor psychologie;\n525 = Bachelor radiol. en de med.beeldvorming;\n526 = Bachelor reval.wetensch./kinesitherapie;\n527 = Bachelor sociale gezondheidszorg;\n528 = Bachelor tandheelkunde;\n529 = Bachelor thuisgezondheidszorg;\n53 = gegradueerde audiologie;\n530 = Bachelor verpleegkunde;\n531 = Bachelor voedings- en dieetkunde;\n532 = Bachelor vroedkunde;\n533 = Bachelor wondzorg en het weefselherstel;\n534 = Bachelor in het zorgmanagement;\n54 = gegradueerde klinische chemie;\n55 = gegradueerde dieetleer;\n56 = gegradueerde medische beeldvorming;\n57 = gegradueerde optiek en optometrie;\n58 = gegrad. in de med.laboratoriumtechn.;\n59 = diploma van ambulancier;\n6 = verpleegaspirant;\n60 = diploma van audicien;\n600 = Niet gespecifieerd;\n601 = Master en Contrôle des Maladies;\n602 = Master arbeidsgeneeskunde;\n603 = Master biomedische beeldvorming;\n604 = Master endodontologie;\n605 = Master farmaceutische zorg;\n606 = Master gehandicaptenzorg;\n607 = Master geneeskunde;\n608 = Master geneesmiddelenontwikkeling;\n609 = Master gespec.reval.wetensch./kinesith.;\n61 = diploma van bandagist;\n610 = Master gezondh.vrlichting/bevord.;\n611 = Master huisartsgeneeskunde;\n612 = Master industriële farmacie;\n613 = Master jeugdgezondheidszorg;\n614 = Master kindertandheelkunde;\n615 = Master kinesitherapie;\n616 = Master kinesitherapie bij bijz groepen;\n617 = Master klinische biologie;\n618 = Master klinische biologie voor apotheke;\n619 = Master logop. en audiolog.Wetensch.;\n62 = diploma van orthesist;\n620 = Master lymfedrainage/verlosk. revalidat;\n621 = Master manuele therapie;\n622 = Master moleculaire levenswetenschappen;\n623 = Master neurologische revalidatie;\n624 = Master orthodontie/Master of Orthodonti;\n625 = Master parodontologie;\n626 = Master psychologie;\n627 = Master restauratieve tandheelkunde;\n628 = Master revalidatiewet/kinesitherapie;\n629 = Master seksuologie;\n63 = diploma van prothesist;\n630 = Master sportgeneeskunde;\n631 = Master sportkinesitherapie;\n632 = Master tandheelkunde;\n633 = Master verpleegkunde en de vroedkunde;\n635 = Master verzeker.geneesk. med. expertise;\n636 = Master voedings- en gezondheidswetensch;\n637 = Master ziekenhuisfarmacie;\n638 = Master ziekenhuishygiëne;\n64 = diploma van assistent psychologie;\n640 = Master in het beheer van gezondheidsgeg.;\n641 = Master man. en beleidgezondheidszorg;\n642 = Master in mgt, zorg en beleid gerontolog;\n643 = Master in het sociaal werk;\n644 = Master Public Health;\n645 = Master of Applied Pharmaceutical Science;\n646 = Master of Bio-ethics;\n647 = Master of Biomedical Engineering;\n648 = Master of Exercise and Sport Psychology;\n649 = Master of Gerontological Sciences;\n65 = gegrad. in de maatschappelijke adviserin;\n650 = Master of Medical Imaging;\n651 = Master of Molecular Biotechnology;\n652 = Master of Oral Health Research;\n653 = Master Paed. Dentistry/Special DentalCar;\n654 = Master of Periodontology;\n655 = Master of Restorative Dentistry;\n66 = gegrad. algemeen maatsch.werk;\n67 = gegradueerde in het personeelswerk;\n68 = gegrad. in het sociaal-cultureel werk;\n69 = gegradueerde in het onderwijs;\n70 = gegradueerde othopedagogie;\n701 = na- of bijscholing: cardiologische verpl;\n702 = na- of bijscholing:chron. zieke kind;\n703 = na- of bijscholing: Hulpverlening hersen;\n704 = na- of bijscholing: locom. en neurol.rev;\n705 = na- of bijschol.: med. dring. hulp vr le;\n706 = na- of bijscholing: Neonatologie;\n707 = na- of bijscholing: Opvoedingsondersteun;\n708 = na- of bijscholing: palliatieve zorg;\n709 = na- of bijscholing: Pijnreferentieverple;\n71 = industrieel ingenieur;\n710 = na- of bijscholing: radioprotectie;\n711 = na- of bijscholing: radiotherapie;\n712 = na- of bijscholing: refer.verpl.in)conti;\n713 = na- of bijscholing: refer.verplgk.diabet;\n714 = na- of bijscholing: Ref.verpl. diabetes;\n715 = na- of bijscholing: refer.verplgk.wondz.;\n716 = Niet gespecifieerd;\n72 = niet-gespecificeerd;\n73 = huisarts;\n74 = specialist in de anesthesiereanimatie;\n75 = geneesheer-specialist klinische biologie;\n76 = geneesheer-specialist cardiologie;\n77 = geneesheer-specialist heelkunde;\n78 = geneesheer-specialist neurochirurgie;\n79 = spec. plast. ,reconstr. en esthet. heelk;\n8 = not specified;\n80 = specialist in de dermatovenereologie;\n800 = Niet gespecifieerd;\n801 = PG Basiscursus Oncologische Zorg;\n802 = PG Desinfectie en sterilisatietechnieken;\n803 = PG Gedragsprobl. personen handicap;\n804 = PG Intensieve zorg en spoedgevallenzorg;\n805 = PG Psychodiagnostiek;\n806 = PG Zorgmanagement;\n807 = postgr. in de radioprotectie;\n808 = postgr. palliatieve zorg;\n809 = postgr. radiotherapie;\n81 = geneesheer-specialist gastro-enterologie;\n810 = postgr.: anesthesiologie, basisbeginsele;\n811 = postgr.: anesthesiologie, verdergevorder;\n812 = postgr.: autisme spectrum-stoornissen;\n813 = postgr.: diabeteseducator;\n814 = postgr.: radio-isotopen vitro diagn. Tec;\n815 = postgr.: gedragstherapie;\n816 = postgr.: lactatiekunde;\n817 = postgr.: lymfedrainage;\n818 = postgr.: Médecine Tropicale;\n819 = postgr.: Médecine Tropicale;\n82 = specialist in de gynaecologieverloskunde;\n820 = postgr.:concepten leer- en ontw.problemen;\n821 = postgr.: musculoskeletale kinesitherapie;\n822 = postgr.: neurologische taal- en spraakst;\n823 = postgr.: oncologische zorg;\n824 = postgr.: pelvische revalidatie;\n825 = postgr.: psychoanalytische psychotherapie;\n826 = postgr.: Referentiepersoon ethiek;\n827 = postgr.: sociale en emotionele zorg;\n828 = postgr.: Tropical Medicin;\n829 = postgr.: Tropische Geneeskunde;\n83 = specialist in de inwendige geneeskunde;\n830 = postgr.: verloskundige revalidatie;\n831 = postgr.: verpleegkunde en andere culture;\n84 = geneesheer-specialist neurologie;\n85 = geneesheer-specialist psychiatrie;\n86 = geneesheer-specialist neuropsychiatrie;\n87 = geneesheer-specialist oftalmologie;\n88 = specialist in de orthopedische heelkunde;\n89 = specialist in de otorhinolaryngologie;\n9 = verzorging;\n90 = geneesheer-specialist pediatrie;\n91 = specialist in de fys. geneesk.en reval.;\n92 = geneesheer-specialist pneumologie;\n93 = geneesheer-specialist röntgendiagnose;\n94 = specialist in de radiotherapieoncologie;\n95 = geneesheer-specialist reumatologie;\n96 = geneesheer-specialist stomatologie;\n97 = geneesheer-specialist urologie;\n98 = specialist in de pathologische anatomie;\n99 = specialist in de nucleaire geneeskunde;", "format": "" }, "RiDe": { "type": "string", "enum": [ "1" ], "maxLength": 20, "description": "Afwijking rechten\n1 = Do not process contract in calculator;", "format": "" }, "CtSb": { "type": "string", "enum": [ "0", "1", "2", "3" ], "maxLength": 20, "description": "Hist contracttype soc bal\n0 = Indefinite time;\n1 = Specific time;\n2 = Duidelijk omschreven werk;\n3 = Vervangingsovereenkomst;", "format": "" }, "CDNu": { "type": "number", "description": "Contract quantity duration", "format": "number" }, "CDUn": { "type": "string", "enum": [ "1", "2", "3", "4" ], "maxLength": 20, "description": "Contract unit duration\n1 = Years;\n2 = Months;\n3 = Weeks;\n4 = Calendar days;", "format": "" }, "NDBn": { "type": "number", "description": "Number cancelled before 2014", "format": "number" }, "NDBu": { "type": "string", "enum": [ "2", "3", "4" ], "maxLength": 20, "description": "Unit cancelled before 2014\n2 = Months;\n3 = Weeks;\n4 = Calendar days;", "format": "" }, "NDFn": { "type": "number", "description": "Number cancelled from 2014", "format": "number" }, "NDFu": { "type": "string", "enum": [ "2", "3", "4" ], "maxLength": 20, "description": "Unit cancelled from 2014\n2 = Months;\n3 = Weeks;\n4 = Calendar days;", "format": "" }, "DcHr": { "type": "integer", "description": "Show no. of decimals hours", "format": "" }, "FiRe": { "type": "string", "enum": [ "1", "2", "3", "6" ], "maxLength": 20, "description": "Fiscal regimen\n1 = Pays company advance tax;\n2 = Does not pay company advance tax;\n3 = Non-resident advance tax;\n6 = Fictitious PAYE;", "format": "" }, "ExFi": { "type": "string", "enum": [ "1", "2", "3", "4", "5", "6", "7" ], "maxLength": 20, "description": "Rsn exemption fisc. regime\n1 = Pays taxes as independant;\n2 = Pays taxes in a foreign country;\n3 = Taxes paid by the fund of disabled persons;\n4 = Working student;\n5 = Tax exemption for young workers;\n6 = Flex employee;\n7 = Society worker;", "format": "" }, "LDRi": { "type": "string", "description": "RIZIV departure date", "format": "date" }, "PRiS": { "type": "string", "enum": [ "1", "2", "3", "4", "6", "unique amount", "yearly amount", "amount in capital" ], "maxLength": 20, "description": "'RIVIZ' periodicity\n1 = Monthly;\n2 = Two-monthly;\n3 = Three-monthly;\n4 = Every four months;\n6 = Half yearly;\nunique amount = Unique amount;\nyearly amount = Yearly amount;\namount in capital = Amount in capital;", "format": "" } } } } } } } } } } } } } } } }, "AfasOrgunitFunction": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "DaBe": { "type": "string", "description": "Start date function", "format": "date" }, "DpId": { "type": "string", "maxLength": 10, "description": "Organisational unit", "format": "" }, "FuId": { "type": "string", "maxLength": 10, "description": "Job", "format": "" }, "CcId": { "type": "string", "maxLength": 30, "description": "Cost unit", "format": "" }, "CrId": { "type": "string", "maxLength": 30, "description": "Cost centre", "format": "" }, "DvSn": { "type": "integer", "description": "Sequence number employment", "format": "" }, "FpId": { "type": "string", "maxLength": 15, "description": "Position", "format": "" }, "EIId": { "type": "string", "maxLength": 15, "description": "Educational institution", "format": "" }, "BFun": { "type": "boolean", "description": "Multi-school function", "format": "" }, "RePe": { "type": "number", "description": "Research percentage", "format": "number" }, "SoSe": { "type": "string", "enum": [ "1", "10", "12", "2", "3", "4", "5", "50", "51", "52", "53", "55", "56", "57", "6", "60", "7", "70", "71", "72", "73", "74", "75", "76", "77", "78", "8", "80", "81", "82", "90" ], "maxLength": 20, "description": "Social benefit\n1 = Steward;\n10 = Seizoenarbeider waarborgfonds netto 0;\n12 = Schepenen;\n2 = Piloot;\n3 = Journalist;\n4 = Podiumkunstenaar niet-inwoner;\n5 = Baten niet-inwoner;\n50 = Werknemer met ploeg- of nachtarbeid;\n51 = Working in immovable condition;\n52 = Piloot met ploeg- of nachtarbeid;\n53 = Journalist met ploeg- of nachtarbeid;\n55 = Baten sportbeoefenaar niet-inwoner max. 30 dagen;\n56 = Baten sportbeoefenaar niet-inwoner meer dan 30 d.;\n57 = Baten scheidsr.,trainer,begel.opl. Niet-inwoner;\n6 = Inkomsten sportbeoef. Niet-inwoner max. 30 dagen;\n60 = Seizoenarb. Waarborgfonds netto 0 ploeg/nacht;\n7 = Ander vliegend personeel;\n70 = Onderzoeker universiteiten en hogescholen (-50%);\n71 = Onderzoeker universiteiten en hogescholen (-75%);\n72 = Onderzoeker erkende wetenschappelijke instelling;\n73 = Onderzoeker privé partnerships;\n74 = Onderzoeker yin;\n75 = Onderzoeker burgerlijk ingenieurs + doctors;\n76 = Onderzoeker masters;\n77 = Bachelor niet KMO;\n78 = Bachelor KMO;\n8 = Inkomsten scheidsr,trainer,begel,opleider;\n80 = Employee with shift or night work (after 31/03/22);\n81 = Employee with shift work (after 31/03/22);\n82 = Employee with night work (after 31/03/22);\n90 = Night shift/shift work in non-stop system;", "format": "" }, "FuLe": { "type": "string", "enum": [ "1", "2", "3" ], "maxLength": 20, "description": "Job level\n1 = Uitvoerend personeel;\n2 = Kaderpersoneel;\n3 = Leidinggevend personeel;", "format": "" }, "DeGi": { "type": "string", "enum": [ "000", "001", "002", "006", "007", "008", "009", "010", "011", "012", "013", "014", "016", "017", "018", "019", "021", "023", "024", "025", "032", "042", "045", "046", "079", "080", "081", "084", "085", "086", "087", "088", "094", "096", "098", "159", "200", "201", "202", "203", "204", "205", "206", "207", "208", "209", "213", "214", "215", "216", "217", "218", "219", "220", "221", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232", "233", "234", "235", "236", "237", "238", "239", "240", "241", "242", "243", "244", "245", "246", "247", "300", "301", "303", "304", "305", "306", "307", "308", "309", "310", "311", "312", "313", "314", "315", "316", "317", "318", "319", "320", "321", "322", "323", "324", "325", "326", "327", "328", "329", "330", "331", "332", "333", "334", "335", "336", "337", "338", "339", "340", "341", "342", "343", "344", "345", "346", "347", "348", "349", "350", "351", "352", "353", "354", "355", "356", "357", "358", "359", "360", "361", "369", "370", "371", "400", "401", "402", "403", "404", "405", "406", "407", "408", "409", "410", "411", "412", "413", "414", "415", "416", "417", "418", "419", "420", "421", "422", "423", "424", "425", "426", "427", "428", "429", "430", "431", "432", "433", "434", "435", "436", "437", "438", "439", "440", "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460", "461", "462", "463", "464", "465", "466" ], "maxLength": 20, "description": "Cash group settlement\n000 = ING Insurance;\n001 = AGF De Schelde;\n002 = APRA: Antwerpse Professionele Assurantie;\n006 = AGF Belg Insurance Assubel NV;\n007 = Noordstar - Mercator;\n008 = Mercator - Noordstar;\n009 = Groep Eagle Star - Brusselse Maatschappij;\n010 = Fortis AG;\n011 = AXA Belgium;\n012 = KBC Verzekeringen (ABB);\n013 = De Bij - De Vrede;\n014 = De Luikse Verzekering;\n016 = De Belgische Lloyd;\n017 = Helvetia;\n018 = Patroonkas;\n019 = Zurich;\n021 = Urbaine U.A.P.;\n023 = SV De Sociale Voorzorg;\n024 = Fidea;\n025 = Winterthur;\n032 = Federale Verzekeringen;\n042 = Centrale Verzekeringsmaatschappij;\n045 = De Verenigde Meesters;\n046 = De Ster;\n079 = Utrecht;\n080 = Ethias;\n081 = Le Mans Verzekeringen;\n084 = Precam;\n085 = Algemene Verzekeringen van Frankrijk;\n086 = KBC Verzekeringen;\n087 = PV Verzekeringen;\n088 = Delta Lloyd Life;\n094 = Gan-Les Assur Nation;\n096 = Securex;\n098 = Generali Belgium;\n159 = ASBL Alfometal;\n200 = ASLK;\n201 = Volksverzekeringen;\n202 = De Nederlanden V 1871;\n203 = Vita;\n204 = De Familie;\n205 = Swiss Life Belgium;\n206 = Ennia;\n207 = L'Integrale;\n208 = DKV International;\n209 = RVS;\n213 = Nationale Kas voor Bediendenpensioenen;\n214 = Justitia;\n215 = Amf Ass Maatschappij Financia;\n216 = Hamburg Mannheimer;\n217 = Thibaut-Colson-De Nef;\n218 = Merbel;\n219 = CB Direkt;\n220 = Centrale Levensverzekeringsmaatschappij Gi Josi;\n221 = AXA Gemeenschappelijke Kas;\n223 = Verzekeringsmaatschappij J. Vanbreda & Co;\n224 = Naviga NV;\n225 = Norwich Union Life Insurance Soc;\n226 = Goudse Verzekeringen;\n227 = De Verenigde Meesters NV;\n228 = Antverpia Leven NV;\n229 = Zwitser Leven;\n230 = Delphi;\n231 = Commercial Union Belgium;\n232 = Royal Nederland Levensverz NV;\n233 = AXA Belgium;\n234 = Ethias;\n235 = DVV;\n236 = FB Verzekeringen;\n237 = Zurich Levensverzekeringsmaatschappij;\n238 = Dkv;\n239 = Cgu Insurance;\n240 = Logica Belgium Vzw;\n241 = Ethias;\n242 = Fina Life NV;\n243 = Enerbel;\n244 = Levob Verzekeringen;\n245 = Za Verzekeringen;\n246 = Vivium Lifte NV;\n247 = Centaal Beheer / Achmea;\n300 = Voorzorgsfonds Bunge Vzw;\n301 = Pensioenfonds Avanti Cementw;\n303 = Social Fonds Spaarkrediet;\n304 = Ici Pension Fund Asbl;\n305 = Ucben pensioenfonds;\n306 = Pensioenplan Monsanto;\n307 = Pensioenfonds Merbel Vzw;\n308 = Voorzorgsfonds A.D.B.;\n309 = Pensioenfonds BP Ov;\n310 = Abott Belg Pension Fund;\n311 = Pensioenfonds NV Btmc Vzw;\n312 = Voorzorgfonds Belgoprocess Vzw;\n313 = Voorzorgfonds Eurochemic Vzw;\n314 = Pensioenfonds Spiers Vzw;\n315 = Cgr-Tecnomatic Pensioenfonds;\n316 = Pensioenfonds Ford Vzw;\n317 = Vzw Wellcome Pensioenfonds;\n318 = Quaker Oats Eur. Empl. Benefit;\n319 = Pensioenfonds Interbrew Vzw;\n320 = Actua Pensioenfonds Groep Gti Vzw;\n321 = Az Vub Pensioenfonds Vzw;\n322 = Elgabel Vzw;\n323 = Pensiobel Oud Vzw;\n324 = Pensioenfonds Mobil Belgie Vzw;\n325 = Les Moustiques Prvoyants Asbl;\n326 = Abn Amro Bank NV;\n327 = Nike Belgium Pensioenfonds Vzw;\n328 = Pensioenfonds Philips Eindhoven;\n329 = Spillers Petfds Empl Ben Fund;\n330 = Belgian Shell Pensioenfonds Vzw;\n331 = Royale Life;\n332 = Infact NV;\n333 = Vzw Spaarplan Arb Cdv 50458;\n334 = Vzw Basf Sprpl Tarbed Cdv 50467;\n335 = Vzw Basf Sprpl Kader Cdv 50462;\n336 = Vzw Basf Sprpl Hogkad Of 50463;\n337 = Pensioenfonds Belgian Shell;\n338 = Ouderdomstoelage Werkloosheid Shell;\n339 = Westhinghouse Pension Fund Belgium;\n340 = Vzw Aanvullend Pensioen van de BBL;\n341 = Ver Vh Pensioenplan Solutia Vzw;\n342 = Vzw Pensioenfonds AXA Bank;\n343 = Ov Pensioenfonds Arbeiderspers Decloedt;\n344 = Pensioenfonds Furness Belgium;\n345 = Pension Fund Nutreco Belg Ov;\n346 = Pensiobel Oud Gazelec;\n347 = Pensiobel Sector;\n348 = Elgabel 1943;\n349 = Paritair Regime;\n350 = Powerbel Directie;\n351 = Powerbel Kader;\n352 = Pensioenfonds Ravago Plastics;\n353 = Pensioenfonds Basf Belg Vzw;\n354 = Pensioenfonds Pfizer Vzw;\n355 = Pensioenfonds Solvay;\n356 = Cerestar Pensioenfonds;\n357 = Pensioenfonds Deutsche Bank;\n358 = Pensioenfonds Texaco Vzw;\n359 = Ovv Pensioenfonds Oleon;\n360 = Pensioenfonds Furness Logistics;\n361 = Protect pensioenfonds OVV;\n369 = Pensioenfonds Ravago Plastics;\n370 = Vzw Pensioenfonds Handel Brandst;\n371 = Pensioenfonds huisvestingsmaatschappij Antwerpen VZW;\n400 = Thee Lee Int Life Insurance;\n401 = Ctrl Beheer Pensioenverzekering;\n402 = De Nationale Nederlanden;\n403 = Winterthur;\n404 = Ennia;\n405 = Tvd Pensioenfonds;\n406 = Stichting Pensioen Wilma;\n407 = Pensionsklasse 510;\n408 = Centrale Levensverzekeringsbank;\n409 = De Arend;\n410 = Swiss Life Belgium;\n411 = St PHV Puyenbroeck;\n412 = Bah Deitersfonds;\n413 = Dbv Levensverzekeringsmaatschappij Nv;\n414 = Agf Belg Insurance Sa;\n415 = Eridania Beghin Say Pensioenfonds;\n416 = Axa Industry Nv;\n417 = Pensioenfonds Nestle;\n418 = Aegon Verzekeringen;\n419 = Elvia;\n420 = Pensioenkas Bazel Vzw;\n421 = Contassur;\n422 = Amev Nv;\n423 = Pensioenfonds Cpc Group Belg Vzw;\n424 = De Integrale;\n425 = Dhl International Pensioenfonds;\n426 = U.N.A.T.;\n427 = Stichting Pensioenfonds Wessamen;\n428 = Zeneca Pension Fund Belgium Vzw;\n429 = Ici Pension Fund Vzw;\n430 = Belstar;\n431 = Omniver (Kbc Verzekeringen);\n432 = Alpha-Life;\n433 = Dhl Employee Benefit Fund;\n434 = Pensioenkas Tractebel;\n435 = Aon Belgium Nv;\n436 = Delta Lloyd Levensverzekeringen;\n437 = K.A.P.B.B.L. Vzw;\n438 = Caisse Communale L'Integrale;\n439 = Sa Vermont;\n440 = Pensioenfonds Betz Dearborn;\n450 = Fortis +Axa;\n451 = Cgl;\n452 = Zelia Nv;\n453 = Agrr;\n454 = Verspieren;\n455 = Cavcic;\n456 = Vnps;\n457 = Hercules Pensioenfonds Vzw;\n458 = Delta Lloyd;\n459 = Dexia Insurance;\n460 = La Luxembourgeoise Vie;\n461 = Lion Belge;\n462 = Belgisch notariaat;\n463 = ING Insurance;\n464 = Pensioensfonds SG Bank De Maertelaere;\n465 = Monroe Pensioenfonds;\n466 = Corona Direct Verzekeringen;", "format": "" }, "ReTy": { "type": "string", "enum": [ "1", "2", "3", "4", "5", "6", "7" ], "maxLength": 20, "description": "Investigation type\n1 = Universiteiten 65%;\n2 = Samenwerkingsovereenkomst met een universiteit 50%;\n3 = PH. D's (doctors) 25%;\n4 = Young innovative company 50%;\n5 = Andere wetenschappelijke instellingen 50%;\n6 = Specific master diplomas;\n7 = Specific bachelor;", "format": "" }, "GrFu": { "type": "string", "enum": [ "10800", "10801", "10810", "10830", "11416", "11426", "11476", "11486", "11496", "11906", "12326", "12336", "12337", "12376", "12377", "12396", "12397", "12399", "13502", "13504", "13516", "13517", "13518", "13526", "13536", "13546", "13547", "13548", "13556", "13566", "13596", "13599", "13626", "13627", "13628", "13636", "13637", "13646", "24102", "24103", "24104", "24105", "24115", "24116", "24117", "24126", "24127", "24136", "24137", "24140", "24141", "24142", "24143", "24144", "24145", "24150", "24151", "24152", "24153", "24154", "24156", "24163", "24164", "24165", "24166", "24176", "24186", "24196", "24197", "24199", "25200", "25226", "25230", "25256", "25299", "25300", "36414", "36415", "36416", "36424", "36425", "36426", "36434", "36444", "36445", "36446", "36454", "36455", "36456", "36464", "36465", "36466", "36467", "36468", "36469", "36470", "36471", "36472", "36473", "36474", "36475", "36476", "36477", "36478", "36479", "36480", "36481", "36486", "36496", "36499", "47000", "47001", "47003", "47016", "47026", "47036", "47046", "47056", "47099", "99999" ], "maxLength": 20, "description": "Scale/job\n10800 = Directie (2);\n10801 = Adjunct van de directie (2);\n10810 = Hoofdgeneesheer (2);\n10830 = Administratief Directeur (2);\n11416 = Biochemicus (5);\n11426 = Fysicus (5);\n11476 = Apotheker-Biochemicus (5);\n11486 = Apotheker (5);\n11496 = Burgerlijk ingenieur (in medisch-technische diensten) (5);\n11906 = Andere (5);\n12326 = Schoonmaak, keuken, was en linnen personeel en ploegbaas (1);\n12336 = Burgerlijk ingenieur (in de onderhoudsdiensten) (1);\n12337 = Onderhoudswerkman en ploegbaas (1);\n12376 = Industrieel of technisch ingenieur (1);\n12377 = Technicus (o.a. onderhoud van medisch materieel) (1);\n12396 = Brancardier (1);\n12397 = Bewakingsagent (Generatiepact) (1);\n12399 = Student (1);\n13502 = Directeur departement (hoofd van de personeeldienst, enz.) (2);\n13504 = Bestuurschef (2);\n13516 = Directiesecretaris (2);\n13517 = Bestuurssecretaris (2);\n13518 = Bestuursassistent (2);\n13526 = Medisch secretaris (2);\n13536 = Boekhouder (2);\n13546 = Analist (2);\n13547 = Programmeur (2);\n13548 = Operateur (2);\n13556 = Econoom (2);\n13566 = Onthaal-Telefonist (2);\n13596 = Klerk (2);\n13599 = Student (2);\n13626 = Maatschapp.assist. en assist. psycholoog (hoofd inbegrepen) (2);\n13627 = Ombudsman/vrouw patiëntenrechten (2);\n13628 = Intercultureel bemiddelaar (2);\n13636 = Onderwijzer (2);\n13637 = Opvoeder (2);\n13646 = Aalmoezenier, lekenraadgever, enz. (2);\n24102 = Hoofd van het verpleegkundig departement (3);\n24103 = Verpleegkundig-diensthoofd (Middenkader) (3);\n24104 = Hoofdverpleegkundige (3);\n24105 = Adjunct-hoofdverpleegkundige (3);\n24115 = 54 bis personeel (3);\n24116 = Gegradueerd verpleegkundige (3);\n24117 = Gebrevetteerd verpleegkundige (3);\n24126 = Gegradueerd psychiatrisch verpleegkundige (3);\n24127 = Gebrevetteerd psychiatrisch verpleegkundige (3);\n24136 = Gegradueerd kinderverpleegkundige (3);\n24137 = Gegradueerd sociaal verpleegkundige (3);\n24140 = Verpleegkundige BBT voor de intensieve zorg en spoedgevallen (3);\n24141 = Verpleegkundige BBT gespecialiseerd in geriatrie (3);\n24142 = Verpleegkundige BBT gespecialiseerd in de oncologie (3);\n24143 = BBT pediatrie en neonatologie (3);\n24144 = BBT gespecialiseerd in geest. gezondheidszorg en psychiatrie (3);\n24145 = BBT gespecialiseerd in de peri-operatieve zorg (3);\n24150 = Andere verpleegkundige die houder is van een BBT (3);\n24151 = Verpleegkundige BBB met bijz. deskundigheid in de geriatrie (3);\n24152 = BBB diabetologie (3);\n24153 = BBB bijz. desk. in geest. gezondheidszorg en psychiatrie (3);\n24154 = Verpleegkundige BBB met bijz. desk. in de palliatieve zorg (3);\n24156 = Andere verpleegkundige BBB met een bijzondere deskundigheid (3);\n24163 = Vroedvrouw -Diensthoofd (3);\n24164 = Hoofdvroedvrouw (3);\n24165 = Adjunct - hoofdvroedvrouw (3);\n24166 = Vroedvrouw (3);\n24176 = Opvoeder (3);\n24186 = Onderwijzer (3);\n24196 = Assistent in ziekenhuisverzorging (3);\n24197 = Psychiatrisch assistent in ziekenhuisverzorging (3);\n24199 = Student (3);\n25200 = Zorgkundige (3);\n25226 = Kinderverzorgster (3);\n25230 = Kinderverzorgster (Generatiepact) (3);\n25256 = Ziekenhuissecretaris (van een verpleegeenheid) (3);\n25299 = Student (3);\n25300 = Logistiek assistent (3);\n36414 = Hoofd medisch laboratorium technoloog (4);\n36415 = Adjunct - hoofd medisch laboratorium technoloog (4);\n36416 = Medisch laboratorium technoloog (4);\n36424 = Hoofd technoloog medische beeldvorming (4);\n36425 = Adjunct - hoofd technoloog medische beeldvorming (4);\n36426 = Technoloog medische beeldvorming (4);\n36434 = Technicus van het medisch materiaal (4);\n36444 = Hoofddiëtist (4);\n36445 = Adjunct - hoofddiëtist (4);\n36446 = Diëtist (4);\n36454 = Hoofdkinesitherapeut of hoofdergotherapeut (4);\n36455 = Adjunct - hoofdkinesitherapeut of adjunct - hoofdergotherap. (4);\n36456 = Kinesitherapeut of ergotherapeut (4);\n36464 = Hoofdlogopedist (4);\n36465 = Adjunct - hoofdlogopedist (4);\n36466 = Logopedist (4);\n36467 = Hoofdaudioloog - hoofdaudicien (4);\n36468 = Audioloog - audicien (4);\n36469 = Hoofdpsycholoog in verplegeneenheden (4);\n36470 = Psycholoog in verplegeneenheden (4);\n36471 = Hoofdbandagist, hoofdorthesist, hoofdprothesist (4);\n36472 = Bandagist, orthesist, prothesist (4);\n36473 = Orthopedagoog (4);\n36474 = Pedagoog (4);\n36475 = Hoofdorthoptist (4);\n36476 = Orthoptist (4);\n36477 = Hoofd farmaceutisch-technisch assistent (4);\n36478 = Farmaceutisch-technisch assistent (4);\n36479 = Hoofdpodoloog (4);\n36480 = Podoloog (4);\n36481 = Ambulancier (4);\n36486 = Maatschappelijk assistent en assistent-psycholoog (4);\n36496 = Ander paramedisch personeel (4);\n36499 = Student (4);\n47000 = Hoofdgeneesheer van een ziekenhuis campus (0);\n47001 = Adjunct - hoofdgeneesheer van een ziekenhuis campus (0);\n47003 = Geneesheer-directeur van het departement (0);\n47016 = Geneesheer (0);\n47026 = Verblijvend geneesheer (0);\n47036 = Raadgevend geneesheer (0);\n47046 = Kandidaat geneesheer specialist (0);\n47056 = Kandidaat geneesheer algemene geneeskunde (0);\n47099 = Student in de geneeskunde (0);\n99999 = Geen controle op aard en type (X);", "format": "" }, "MPCa": { "type": "string", "enum": [ "01", "02", "03", "04", "05", "06" ], "maxLength": 20, "description": "MZG personnel category\n01 = Verpleegk./vroedvrouw met univ.diploma;\n02 = Verpleegk./vroedvrouw met diploma HO;\n03 = Verpleegk. met diploma HSO/brevet;\n04 = Care personnel;\n05 = Logistieke ondersteuning;\n06 = Studenten;", "format": "" }, "MFun": { "type": "string", "enum": [ "F11001", "F11002", "F12001", "F12002", "F21001", "F21002", "F21003", "F21004", "F21005", "F21009", "F22001", "F40001", "F50001", "F60001", "F60002", "F70001", "F70002", "F80002", "F80011", "F80012", "F80019", "F99999" ], "maxLength": 20, "description": "MZG job\nF11001 = Head nurse;\nF11002 = Adjunct-hoofdverpleegkundige;\nF12001 = Hoofdvroedvrouw;\nF12002 = Adjunct-hoofdvroedvrouw;\nF21001 = Verpleegkundige;\nF21002 = Ref.verpl. voor wondzorg en stomatherapie;\nF21003 = Ref.verpl. voor pijnbestrijding;\nF21004 = Ref.verpl. voor opvang v diabetespatiënt;\nF21005 = Verpleegkundige klinisch onderzoek;\nF21009 = Andere referentieverpleegkundigen;\nF22001 = Vroedvrouw;\nF40001 = Verzorgend pers: zorgkundige, personeel;\nF50001 = Ondersteunend pers in afwachting van eve;\nF60001 = Paramed.pers: ergother., kinesither., lo;\nF60002 = Personeel voor (bloed)afname;\nF70001 = Pers opvoeding/onderwijs : opvoeder, spe;\nF70002 = Psychosoc.pers: soc.assistent, cult.bemi;\nF80002 = Personeel voor intern patiëntenvervoer;\nF80011 = Registratiepersoneel VG-MZG;\nF80012 = Registratiepersoneel ICD9;\nF80019 = Registratiepersoneel andere gegevens;\nF99999 = Andere;", "format": "" }, "MQua": { "type": "string", "enum": [ "Q10001", "Q10002", "Q20001", "Q20002", "Q21001", "Q21002", "Q21003", "Q21004", "Q21005", "Q21006", "Q21007", "Q21008", "Q21009", "Q21010", "Q21011", "Q22001", "Q23001", "Q23002", "Q23003", "Q23004", "Q23005", "Q23006", "Q30001", "Q30002", "Q33001", "Q33002", "Q33003", "Q33004", "Q33005", "Q33006", "Q40001", "Q40002", "Q40003", "Q40004", "Q50001", "Q60001", "Q60002", "Q60003", "Q60004", "Q60005", "Q70001", "Q70002", "Q70003", "Q70004", "Q70005", "Q70006", "Q99999" ], "maxLength": 20, "description": "MZG qualification\nQ10001 = Dipl Dr.soc.gezondheidswet. = 9J;\nSN202 = Sec.Onderwijs < 9 Jaar Anc.;\nSN203 = Sec.Onderwijs >= 9 Jaar Anc.;\nSN345 = Hoger Onderw. 1 cyclus >= 9J;\nSN542 = Academisch niveau;\nSNCAT1 = Ongeschoolden;\nSNCAT2 = Eenvoudig geoefenden;\nSNCAT3 = Volledig geoefenden;\nSNCAT4 = Geschoolden;\nSNCAT5 = Meergeschoolden en vaklieden;\nSNCAT6 = Ploegbazen;\nZB02 = Zh-blauw: schaal 02: 1.11/1.12;\nZB03 = Zh-blauw: schaal 03: 1.14;\nZB04 = Zh-blauw: schaal 04: 1.16;\nZB05 = Zh-blauw: schaal 05: 1.18;\nZB06 = Zh-blauw: schaal 06: 1.22;\nZB07 = Zh-blauw: schaal 07: 1.24;\nZB08 = Zh-blauw: schaal 08: 1.26;\nZB09 = Zh-blauw: schaal 09: 1.30;\nZB10 = Zh-blauw: schaal 10: 1.31;\nZB11 = Zh-blauw: schaal 11: 1.35;\nZB12 = Zh-blauw: schaal 12: 1.39;\nZB13 = Zh-blauw: schaal 13: 1.40;\nZB14 = Zh-blauw: schaal 14: 1.40/1.57;\nZB15 = Zh-blauw: schaal 15: 1.43/1.55;\nZB16 = Zh-blauw: schaal 16: 1.45;\nZB17 = Zh-blauw: schaal 17: 1.47;\nZB18 = Zh-blauw: schaal 18: 1.50;\nZB19 = Zh-blauw: schaal 19: 1.53;\nZB20 = Zh-blauw: schaal 20: 1.54;\nZB21 = Zh-blauw: schaal 21: 1.55/1.61/1.77;\nZB22 = Zh-blauw: schaal 22: 1.55/1.61/1.77(+2J);\nZB23 = Zh-blauw: schaal 23: 1.59;\nZB24 = Zh-blauw: schaal 24: 1.61/1.77;\nZB25 = Zh-blauw: schaal 25: 1.62;\nZB26 = Zh-blauw: schaal 26: 1.63;\nZB27 = Zh-blauw: schaal 27: 1.66;\nZB28 = Zh-blauw: schaal 28: 1.78SP;\nZB29 = Zh-blauw: schaal 29: 1.79;\nZB30 = Zh-blauw: schaal 30: 1.80;\nZB31 = Zh-blauw: schaal 31: 1.81;\nZD01 = Zh-Dep.Hoofd-Alg.Dir.: 200 / 300;\nZD02 = Zh-Dep.Hoofd-Alg.Dir.: 201 / 300;\nZD03 = Zh-Dep.Hoofd-Alg.Dir.: 100 / 300;\nZD04 = Zh-Dep.Hoofd-Alg.Dir.: 101 / 300;\nZG01 = Zh-groen: schaal 01: 1.16;\nZG02 = Zh-groen: schaal 02: 1.30;\nZG03 = Zh-groen: schaal 03: 1.43;\nZG04 = Zh-groen: schaal 04: 1.58;\nZG05 = Zh-groen: schaal 05: 1.59;\nZG06 = Zh-groen: schaal 06: 1.67;\nZG07 = Zh-groen: schaal 07: 1.75;\nZG08 = Zh-groen: schaal 08: 1.86;\nZW01 = Zh-wit: schaal 01: 1.00;\nZW02 = Zh-wit: schaal 02: 1.01;\nZW03 = Zh-wit: schaal 03: 1.79;\nZW04 = Zh-wit: schaal 04: 1.81;\nZW05 = Zh-wit: schaal 05: 1.87;\nZW06 = Zh-wit: schaal 06: 1.91;\nZW07 = Zh-wit: schaal 07: 1.92;\nZW08 = Zh-wit: schaal 08: 1.93;\nZW09 = Zh-wit: schaal 09: 1.94;\nZW10 = Zh-wit: schaal 10: 1.95;\nZW11 = Zh-wit: schaal 11: 1.99;\nZW12 = Zh-wit: schaal 12: 13.3;\nZY01 = Zh-geel schaal 1.11;\nZY02 = Zh-geel schaal 1.12;\nZY03 = Zh-geel schaal 1.14;\nZY04 = Zh-geel schaal 1.16;\nZY05 = Zh-geel schaal 1.18;\nZY06 = Zh-geel schaal 1.22;\nZY07 = Zh-geel schaal 1.22/1.30;\nZY08 = Zh-geel schaal 1.24;\nZY09 = Zh-geel schaal 1.26;\nZY10 = Zh-geel schaal 1.30;\nZY11 = Zh-geel schaal 1.31;\nZY12 = Zh-geel schaal 1.39;\nZY13 = Zh-geel schaal 1.40;\nZY14 = Zh-geel schaal 1.40/1.57;\nZY15 = Zh-geel schaal 1.43/1.55;\nZY16 = Zh-geel schaal 1.45;\nZY17 = Zh-geel schaal 1.47;\nZY18 = Zh-geel schaal 1.50;\nZY19 = Zh-geel schaal 1.53;\nZY20 = Zh-geel schaal 1.54;\nZY21 = Zh-geel schaal 1.55/1.61/1.77;\nZY22 = Zh-geel schaal 1.55/16/1.77(+2J);\nZY23 = Zh-geel schaal 1.59;\nZY24 = Zh-geel schaal 1.61/1.77;\nZY25 = Zh-geel schaal 1.62;\nZY26 = Zh-geel schaal 1.63;\nZY27 = Zh-geel schaal 1.66;\nZY28 = Zh-geel schaal 1.78;\nZY29 = Zh-geel schaal 1.80;\nZY30 = Zh-geel schaal 1.81;", "format": "" }, "HiBd": { "type": "string", "description": "Hist. salary scale date", "format": "date" }, "LoFu": { "type": "string", "enum": [ "1", "2", "3", "4", "5", "C", "F", "H", "S", "T", "X", "Y" ], "maxLength": 20, "description": "Job work location\n1 = haardvergoeding (niet uit barema) ;\n2 = standplaatsvergoeding (niet uit barema);\n3 = functietoeslag (niet uit barema);\n4 = functiecomplement (niet uit barema);\n5 = functietoeslag en -complement (niet uit barema);\nC = job complement;\nF = job allowance;\nH = haardvergoeding;\nS = standplaatsvergoeding;\nT = functietoeslag en -complement;\nX = RH - forfaitaire vergoed cat.8 (uit barema);\nY = RH - forfaitaire vergoed cat.9 (uit barema);", "format": "" }, "SaCa": { "type": "string", "maxLength": 20, "description": "Category", "format": "" }, "BaAn": { "type": "string", "maxLength": 10, "description": "Barema anciënniteit", "format": "" }, "TrAn": { "type": "string", "maxLength": 6, "description": "Actual seniority", "format": "" }, "AHSF": { "type": "number", "description": "Bedrag H/S/F", "format": "number" }, "AmFc": { "type": "number", "description": "Job complement amount", "format": "number" }, "PrHw": { "type": "string", "enum": [ "A", "B", "C" ], "maxLength": 20, "description": "Prorated theor. hourly wage\nA = Fixed average hourly wage for year;\nB = Fixed average hourly wage for month;\nC = Variable effective hourly wage for month;", "format": "" }, "PrLc": { "type": "string", "enum": [ "01", "02", "03", "04", "05" ], "maxLength": 20, "description": "Prorated work location\n01 = Z1/Z2*Z3;\n02 = Kinderdagverblijven;\n03 = Op basis van te werken uren;\n04 = KDV werkregime 40 uren;\n05 = Gewerkte + gelijkgestelde/te werken uren;", "format": "" }, "PrAd": { "type": "string", "enum": [ "01", "02", "03", "04", "05", "06" ], "maxLength": 20, "description": "Prorated allowances\n01 = Gewerkte dagen / te werken dagen;\n02 = Gewerkte uren / te werken uren;\n03 = Gewerkte+gelijkgest.uren/te werken uren;\n04 = Verrekening in functie van 25 dagen;\n05 = Vast bedrag of 0;\n06 = Z2/Z3 * Z4;", "format": "" }, "Rpl1": { "type": "string", "maxLength": 50, "description": "Substitute 1", "format": "" }, "RpN1": { "type": "string", "maxLength": 255, "description": "Substitute name 1", "format": "" }, "RIn1": { "type": "string", "maxLength": 12, "description": "INSZ number 1", "format": "" }, "RHw1": { "type": "number", "description": "Hours per week 1", "format": "number" }, "RRe1": { "type": "string", "enum": [ "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "13", "14", "15", "16", "17", "18", "98", "99" ], "maxLength": 20, "description": "Substitution reason 1\n01 = Ongeval (arbeidsongeval);\n02 = Ziekte (arbeidsongeval);\n03 = Bijstand zwaar zieke;\n04 = Borstvoedingsverlof;\n05 = Early retirement;\n06 = Extra legaal verlof;\n07 = Moederschapsrust;\n08 = Parental leave;\n09 = Palliatief verlof;\n10 = Profylactisch verlof;\n11 = Tijdskrediet;\n12 = Verlof zonder wedde;\n13 = Schorsing onderling akkoord;\n14 = Project 600;\n15 = Peter/meterschap;\n16 = Mentor;\n17 = Andere;\n18 = Einde loopbaan maatregelen;\n98 = Additional leave project;\n99 = CAO45+;", "format": "" }, "Rpl2": { "type": "string", "maxLength": 50, "description": "Substitute 2", "format": "" }, "RpN2": { "type": "string", "maxLength": 255, "description": "Substitute name 2", "format": "" }, "RIn2": { "type": "string", "maxLength": 12, "description": "INSZ number 2", "format": "" }, "RHw2": { "type": "number", "description": "Hours per week 2", "format": "number" }, "RRe2": { "type": "string", "enum": [ "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "13", "14", "15", "16", "17", "18", "98", "99" ], "maxLength": 20, "description": "Substitution reason 2\n01 = Ongeval (arbeidsongeval);\n02 = Ziekte (arbeidsongeval);\n03 = Bijstand zwaar zieke;\n04 = Borstvoedingsverlof;\n05 = Early retirement;\n06 = Extra legaal verlof;\n07 = Moederschapsrust;\n08 = Parental leave;\n09 = Palliatief verlof;\n10 = Profylactisch verlof;\n11 = Tijdskrediet;\n12 = Verlof zonder wedde;\n13 = Schorsing onderling akkoord;\n14 = Project 600;\n15 = Peter/meterschap;\n16 = Mentor;\n17 = Andere;\n18 = Einde loopbaan maatregelen;\n98 = Additional leave project;\n99 = CAO45+;", "format": "" }, "Rpl3": { "type": "string", "maxLength": 50, "description": "Substitute 3", "format": "" }, "RpN3": { "type": "string", "maxLength": 255, "description": "Substitute name 3", "format": "" }, "RIn3": { "type": "string", "maxLength": 12, "description": "INSZ number 3", "format": "" }, "RHw3": { "type": "number", "description": "Hours per week 3", "format": "number" }, "RRe3": { "type": "string", "enum": [ "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "13", "14", "15", "16", "17", "18", "98", "99" ], "maxLength": 20, "description": "Substitution reason 3\n01 = Ongeval (arbeidsongeval);\n02 = Ziekte (arbeidsongeval);\n03 = Bijstand zwaar zieke;\n04 = Borstvoedingsverlof;\n05 = Early retirement;\n06 = Extra legaal verlof;\n07 = Moederschapsrust;\n08 = Parental leave;\n09 = Palliatief verlof;\n10 = Profylactisch verlof;\n11 = Tijdskrediet;\n12 = Verlof zonder wedde;\n13 = Schorsing onderling akkoord;\n14 = Project 600;\n15 = Peter/meterschap;\n16 = Mentor;\n17 = Andere;\n18 = Einde loopbaan maatregelen;\n98 = Additional leave project;\n99 = CAO45+;", "format": "" }, "Rpl4": { "type": "string", "maxLength": 50, "description": "Substitute 4", "format": "" }, "RpN4": { "type": "string", "maxLength": 255, "description": "Substitute name 4", "format": "" }, "RIn4": { "type": "string", "maxLength": 12, "description": "INSZ number 4", "format": "" }, "RHw4": { "type": "number", "description": "Hours per week 4", "format": "number" }, "RRe4": { "type": "string", "enum": [ "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "13", "14", "15", "16", "17", "18", "98", "99" ], "maxLength": 20, "description": "Substitution reason 4\n01 = Ongeval (arbeidsongeval);\n02 = Ziekte (arbeidsongeval);\n03 = Bijstand zwaar zieke;\n04 = Borstvoedingsverlof;\n05 = Early retirement;\n06 = Extra legaal verlof;\n07 = Moederschapsrust;\n08 = Parental leave;\n09 = Palliatief verlof;\n10 = Profylactisch verlof;\n11 = Tijdskrediet;\n12 = Verlof zonder wedde;\n13 = Schorsing onderling akkoord;\n14 = Project 600;\n15 = Peter/meterschap;\n16 = Mentor;\n17 = Andere;\n18 = Einde loopbaan maatregelen;\n98 = Additional leave project;\n99 = CAO45+;", "format": "" }, "Rpl5": { "type": "string", "maxLength": 50, "description": "Substitute 5", "format": "" }, "RpN5": { "type": "string", "maxLength": 255, "description": "Substitute name 5", "format": "" }, "RIn5": { "type": "string", "maxLength": 12, "description": "INSZ number 5", "format": "" }, "RHw5": { "type": "number", "description": "Hours per week 5", "format": "number" }, "RRe5": { "type": "string", "enum": [ "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "13", "14", "15", "16", "17", "18", "98", "99" ], "maxLength": 20, "description": "Substitution reason 5\n01 = Ongeval (arbeidsongeval);\n02 = Ziekte (arbeidsongeval);\n03 = Bijstand zwaar zieke;\n04 = Borstvoedingsverlof;\n05 = Early retirement;\n06 = Extra legaal verlof;\n07 = Moederschapsrust;\n08 = Parental leave;\n09 = Palliatief verlof;\n10 = Profylactisch verlof;\n11 = Tijdskrediet;\n12 = Verlof zonder wedde;\n13 = Schorsing onderling akkoord;\n14 = Project 600;\n15 = Peter/meterschap;\n16 = Mentor;\n17 = Andere;\n18 = Einde loopbaan maatregelen;\n98 = Additional leave project;\n99 = CAO45+;", "format": "" }, "SoMa": { "type": "string", "enum": [ "001", "002", "003", "F" ], "maxLength": 20, "description": "Soc. Maribel type\n001 = Logistiek assistent;\n002 = Ander personeel sociale maribel;\n003 = bijkomende tewerkstl soc.akk.ZH 2011;\nF = Fiscale maribel;", "format": "" }, "SmPe": { "type": "number", "description": "Soc. Maribel percentage", "format": "number" }, "BtBk": { "type": "string", "enum": [ "1", "2", "J" ], "maxLength": 20, "description": "BBT/BBK\n1 = Bijzondere beroepstitel;\n2 = Bijzondere beroepsbekwaamheid;\nJ = Artsen;", "format": "" }, "AD45": { "type": "number", "description": "% Premie ADV CAO 45+", "format": "number" }, "AC45": { "type": "string", "enum": [ "45G", "45T", "NT" ], "maxLength": 20, "description": "45 year choice\n45G = money;\n45T = time;\nNT = not applicable;", "format": "" }, "AC50": { "type": "string", "enum": [ "45G", "45T", "50G", "50T", "50TOV", "NT" ], "maxLength": 20, "description": "50 year choice\n45G = money;\n45T = time;\n50G = money;\n50T = time;\n50TOV = tijd (bonobo's);\nNT = not applicable;", "format": "" }, "AC52": { "type": "string", "enum": [ "45G", "45T", "50G", "50T", "50TOV", "52TOV", "NT" ], "maxLength": 20, "description": "52 year choice\n45G = money;\n45T = time;\n50G = money;\n50T = time;\n50TOV = tijd (bonobo's);\n52TOV = tijd (bonobo's);\nNT = not applicable;", "format": "" }, "AC55": { "type": "string", "enum": [ "45G", "45T", "50G", "50T", "50TOV", "52TOV", "55G", "55T", "55TOV", "NT" ], "maxLength": 20, "description": "55 year choice\n45G = money;\n45T = time;\n50G = money;\n50T = time;\n50TOV = tijd (bonobo's);\n52TOV = tijd (bonobo's);\n55G = money;\n55T = time;\n55TOV = tijd (bonobo's);\nNT = not applicable;", "format": "" }, "Eq": { "type": "boolean", "description": "Gelijkgestelde", "format": "" }, "Of": { "type": "boolean", "description": "Ambtshalve", "format": "" }, "NoFu": { "type": "boolean", "description": "Geen financiering", "format": "" }, "DcHw": { "type": "integer", "description": "Number added to hourly wage", "format": "" }, "DcPw": { "type": "integer", "description": "Quantity with period wages", "format": "" }, "DcDw": { "type": "integer", "description": "Number for daily wage", "format": "" } } } } } } } } } } } } } } } }, "AfasBankInfo": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "AcId": { "type": "string", "maxLength": 42, "description": "Account number", "format": "" }, "NoBk": { "type": "boolean", "description": "Cash payment", "format": "" }, "SeNo": { "type": "integer", "description": "Sequence number", "format": "" }, "SaAc": { "type": "boolean", "description": "Salary account", "format": "" }, "Ds": { "type": "string", "maxLength": 32, "description": "Payment reference", "format": "" }, "Nm": { "type": "string", "maxLength": 80, "description": "Deviating name", "format": "" }, "Rs": { "type": "string", "maxLength": 50, "description": "Deviating city", "format": "" }, "ScId": { "type": "integer", "description": "Wage component", "format": "" }, "CoId": { "type": "string", "maxLength": 3, "description": "Country", "format": "" }, "BkTp": { "type": "integer", "description": "Bank type", "format": "" }, "BkIc": { "type": "string", "maxLength": 15, "description": "Bank", "format": "" }, "ViBk": { "type": "string", "enum": [ "1591", "4093", "5597", "7595", "15082", "16094", "16599", "22596", "24099", "24594", "26097", "25593", "27096", "32599", "35596", "36090", "37099", "38593", "42097", "43591", "44079", "44590", "45094", "45599", "47597", "49090", "49595", "50092", "50597", "51091", "52090", "54551", "62093" ], "maxLength": 20, "description": "Bank (expired)\n1591 = ABN/AMRO;\n4093 = Aruba Bank;\n5597 = Banco de Venezuela;\n7595 = Banco di Caribe;\n15082 = Caribbean Mercantile Bank;\n16094 = Centrale HypotheekBank;\n16599 = SFT;\n22596 = VGKS;\n24099 = Coop Spaar-en Crediet Ver Consales/Zuikertuintie;\n24594 = Coop Spaar-en Crediet Vereniging C D M;\n26097 = Coop Spaar-en Crediet Vereniging Ambtenaren;\n25593 = Coop Spaar-en Crediet Vereniging Ogem;\n27096 = Coop Spaar-en Crediet Vereniging Setel;\n32599 = Fundashon Empresa Chiki Korsou;\n35596 = Interfinance Curacao;\n36090 = Internationale Nederlanden Bank;\n37099 = Island Finace Curacao;\n38593 = Kooperativa di Empleadonan Petrolero;\n42097 = Korporashon pa Desaroyo di Korsou;\n43591 = Maduro & Curiel's Bank;\n44079 = Maduro & Curiel's Bank (Bonaire);\n44590 = Maduro & Curiel's Credit Comany;\n45094 = Antilles Banking Corporation;\n45599 = Mees Pierson (Curacao);\n47597 = Nationale Investeringsbank;\n49090 = N.V. de Curacaosche Hypotheek Bank;\n49595 = N.V. de Spaar- en Beleenbank van Curacao;\n50092 = Ontwikkelingsbank van de Nederlandse Antillen;\n50597 = Orco Bank;\n51091 = Postspaarbank van de Nederlandse Antillen;\n52090 = Rabobank Curaçao;\n54551 = The Windward islands Bank;\n62093 = Giro Curaçao;", "format": "" }, "FoPa": { "type": "boolean", "description": "Account outside SEPA area", "format": "" }, "IbCk": { "type": "boolean", "description": "IBAN controle", "format": "" }, "Iban": { "type": "string", "maxLength": 40, "description": "IBAN nummer", "format": "" }, "Bic": { "type": "string", "maxLength": 40, "description": "BIC Code", "format": "" } }, "required": [ "AcId", "NoBk", "SeNo", "SaAc", "BkTp" ] } } } } } }, "AfasAgencyGAK": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "DaBe": { "type": "string", "description": "Start date", "format": "date" }, "AyId": { "type": "string", "maxLength": 15, "description": "Agency", "format": "" }, "DaEn": { "type": "string", "description": "End date", "format": "date" }, "ViGw": { "type": "string", "enum": [ "01", "10", "02", "03", "04", "05", "06", "07", "08", "09", "93", "95" ], "maxLength": 20, "description": "'GAK' basic insurance\n01 = Contract of employment;\n10 = Individual labour against payment;\n02 = Acceptance of work;\n03 = Sales representative;\n04 = Wsw'er;\n05 = Placement;\n06 = Volunteer/standby police/fire brigade;\n07 = Home-worker;\n08 = Temp;\n09 = Musician/artist;\n93 = Conscientious scrupled employee;\n95 = Over 65;", "format": "" }, "DsEm": { "type": "string", "maxLength": 12, "description": "Description profession", "format": "" }, "YnCf": { "type": "boolean", "description": "Family of owner", "format": "" }, "YnCs": { "type": "boolean", "description": "'Directeur/grootaandeelhouder'", "format": "" }, "YnCo": { "type": "boolean", "description": "Previous owner", "format": "" }, "YnCc": { "type": "boolean", "description": "On-call/stand-in worker", "format": "" }, "YnZw": { "type": "boolean", "description": "PR", "format": "" }, "YnWw": { "type": "boolean", "description": "'WW'", "format": "" }, "YWAO": { "type": "boolean", "description": "'WAO/WIA'", "format": "" }, "YZFW": { "type": "boolean", "description": "'ZFW'", "format": "" }, "CoId": { "type": "string", "maxLength": 3, "description": "Country", "format": "" }, "Ad": { "type": "string", "maxLength": 60, "description": "Address", "format": "" }, "HmNr": { "type": "integer", "description": "House number", "format": "" }, "HmAd": { "type": "string", "maxLength": 30, "description": "Extension (a, b, etc.) to house number", "format": "" }, "ZpCd": { "type": "string", "maxLength": 15, "description": "Postal code", "format": "" }, "Rs": { "type": "string", "maxLength": 50, "description": "City", "format": "" }, "InYr": { "type": "boolean", "description": "Do not include in year-end work", "format": "" }, "ChGb": { "type": "boolean", "description": "Do not include in PGB year-end work", "format": "" }, "ViUs": { "type": "string", "enum": [ "00", "01", "11", "02", "20", "25", "26", "30", "35", "36", "60", "70" ], "maxLength": 20, "description": "Code speciale aanduiding UWV\n00 = Not applicable;\n01 = 'Vakantiebonnen' up to 20 days;\n11 = Bakkers: Aandeelhouders/bestuurders, niet verzekerd voor WW, ZW, WAO en ZFW;\n02 = 'Vakantiebonnen' 20 days or more;\n20 = Catering industry: artist (main profession not an artist) or amateur artist;\n25 = WW- en/of WAO-uitkering, medewerker verzekeringsplichtig voor de WW,ZW,WAO en ZFW;\n26 = WW- en/of WAO-uitkering, medewerker verzekeringsplichtig voor de WW,ZW,WAO;\n30 = Vut early retirement or Act Calling-in Jobseekers.;\n35 = Public servant in the sense of the 'Ambtenarenwet' with a wage lower than the threshold.;\n36 = People receiving unemployment benefits insured under 'ZFW'.;\n60 = Supplement welfare benefit for people of 65 years and older.;\n70 = Tip money (no tips);", "format": "" }, "GbSe": { "type": "integer", "description": "PGB sequence number", "format": "" }, "Vi9": { "type": "string", "enum": [ "1", "2", "3", "4" ], "maxLength": 20, "description": "ZFW pension type\n1 = None;\n2 = 'VUT';\n3 = Early pension;\n4 = Pension;", "format": "" } }, "required": [ "DaBe", "AyId", "ViGw" ] } } } } } }, "AfasAgencyFiscus": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "DaBe": { "type": "string", "description": "Start date", "format": "date" }, "AyId": { "type": "string", "maxLength": 15, "description": "Agency", "format": "" }, "DaEn": { "type": "string", "description": "End date", "format": "date" }, "ViIn": { "type": "string", "enum": [ "11", "12", "13", "14", "15", "17", "18", "21", "22", "23", "24", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "42", "43", "44", "45", "46", "50", "51", "52", "53", "54", "55", "56", "57", "58", "59", "60", "61", "62", "63" ], "maxLength": 20, "description": "Income relationship type\n11 = Wage or salary of officers in the sense of the Dutch 'Ambtenarenwet';\n12 = Loon werknemers van gepremieerde, gesubsidieerde of gebudgetteerde instellingen (geldig t/m 2015);\n13 = Wage or salary of directors of an NV/BV, insured under the employee insurances;\n14 = Loon of salaris overige werknemers niet verzekerd voor de WIA of WAO (geldig t/m 2015);\n15 = Wage or salary cannot be brought under 11 up to and including 14 or 17;\n17 = Wages/salary of major shareholders/directors of an NV/BV, not insured under the employee insurances;\n18 = Waiting money of a government institution;\n21 = Other pensions, annuities etc. (not 23) (valid through 2016);\n22 = Benefit within the framework of the General Act on Age (AOW);\n23 = War and Resistance pensions;\n24 = Benefit within the framework of the General Act on Last Living Individuals (ANW);\n31 = Benefit under Sickn. Ben., Act (ZW), sickn. insur, based on Sickn. Ben. Act and Work-Care Act (WAZO);\n32 = Benefit based on 'WAO' and private health, disability and accident insurance;\n33 = Benefit within the framework of the 'Nieuwe Werkloosheidswet' ('nWW');\n34 = Benefits under the 'Wet inkomensvoorz. oud. en ged. arbeidsong. werkloze werknemers (IOAW)';\n35 = Vervolguitkering in het kader van de Nieuwe Werkloosheidswet (nWW) (geldig t/m 2021);\n36 = Benefit within the framework of the Act on Employment Disability Insurance independents (WAZ);\n37 = Wet arbeidsongeschiktheidsvoorziening jonggehandicapten (Wajong);\n38 = Combination (simultaneous or consecutive) of 'WAJONG' and 'WAZ WAO/IVA' or 'WGA';\n39 = Benefit related to 'IVA' arrangement;\n40 = Benefit related to 'WGA' arrangement;\n42 = Benefit within the framework of the Social Security Act Independents;\n43 = Benefit related to 'Participatiewet' (previously WWB);\n44 = Benefits under the terms of 'Wet Werk en Inkomen Kunstenaars' ('WWIK’) (valid until 2013).;\n45 = Benefits under the 'Wet inkomensvoorz. oud. en ged. arbeidsong. gew. zelfstandigen (IOAZ)';\n46 = Benefit on the basis of the Allowances Act.;\n50 = Benefits under the terms of other social security acts (not 22, 24, 31 until 45 or 52);\n51 = Benefit under the terms of the ‘Wet investeren in jongeren (WIJ)’ Act (valid up to and incl. 2013);\n52 = Benefit in the context of the Income Provisions for Elderly Unemployed Act (IOW);\n53 = Payment within the framework of early retirement;\n54 = Withdrawal of life-course credit by an employee who is 61 years or older on 1 January (up to 2021);\n55 = Benefit within the context of the Algemene Pensioenwet Politieke Ambtsdragers (APPA);\n56 = Retirement pension accrued via the employer;\n57 = Surviving relatives' pension accrued via the employer;\n58 = Disability pension accrued via the employer;\n59 = Annuities agreed upon in relation to individual or collective contract of employment;\n60 = Annuities not agreed upon in relation to individual or collective contract of employment;\n61 = Employer supplement to an employee insurance benefit; employment has been terminated;\n62 = Severance pay / transfer allowance;\n63 = Other pensions or combination of pensions/annuities or payment after employment end;", "format": "" }, "ViEm": { "type": "string", "enum": [ "1", "10", "11", "12", "13", "14", "17", "18", "19", "2", "21", "22", "23", "24", "3", "4", "5", "6", "7", "78", "79", "8", "80", "81", "82", "83", "9" ], "maxLength": 20, "description": "Labour relation type\n1 = Employment contract (excluding BBL);\n10 = Wet sociale werkvoorziening (WSW) (geldig t/m 2021);\n11 = Temp;\n12 = Persoonlijke arbeid tegen beloning (geldig t/m 2015);\n13 = Ambtenaar / ABP'er (geldig t/m 2015);\n14 = A-Topsporter (geldig t/m 2015);\n17 = Vutter (geldig t/m 2015);\n18 = Appointment pertaining to public law;\n19 = Severance pay (valid through 2014);\n2 = Aanneming van werk (geldig t/m 2015);\n21 = WSW beschut werk;\n22 = WSW Detachering at a regular employer, not being an SW company.;\n23 = WSW begeleid werk;\n24 = Participatiewet beschut werk;\n3 = Bestuurder coöperatieve vereniging met werknemerszelfbestuur (geldig t/m 2015);\n4 = Shareholding fisherman;\n5 = Conscript (valid until 2012);\n6 = Musician/artist;\n7 = Placement;\n78 = Werk als zelfstandige (geldig t/m 2015);\n79 = Opt-in arrangement;\n8 = Thuiswerker (geldig t/m 2015);\n80 = Sekswerker in fictieve dienstbetrekking (geldig t/m 2015);\n81 = Other fictitious employments;\n82 = Payrolling;\n83 = Practical training of the profession supporting learning path (BBL);\n9 = Vertegenwoordiger / provisiewerker (geldig t/m 2015);", "format": "" }, "ViTs": { "type": "string", "enum": [ "W", "G" ], "maxLength": 20, "description": "'Tabelkleur'\nW = White;\nG = Green;", "format": "" }, "ViCd": { "type": "string", "enum": [ "0", "3", "221", "940", "999", "224", "225", "250", "950", "5", "252", "6", "7", "228", "226", "227", "210", "220" ], "maxLength": 20, "description": "Table code\n0 = Table used without conversion line;\n3 = Only liable to pay premiums (A, G);\n221 = Foreign artists or professional sportsmen and sportswoman (lower rate);\n940 = 52% rate related to anonymous employees;\n999 = Other cases in which no table is used;\n224 = Foreign artist groups and sports teams;\n225 = Foreign professional sportsmen and sportswoman (lower rate by ministerial decree);\n250 = Welfare percentage rate;\n950 = 52% rate in connection with negative expenses for buying out income provisions;\n5 = Only liable to tax (B, H);\n252 = Curaçao pensions source levy (valid through 2016);\n6 = Liable to pay tax and premiums AOW and ANW (C, I);\n7 = Liable to pay tax and Wlz premiums (D, J);\n228 = Employee not liable for taxes, only liable for AOW/ANW (E) premiums;\n226 = Employee not liable for taxes, only liable for Wlz premiums (F, L);\n227 = Employee not liable for taxes, only liable for ANW (K) premiums;\n210 = Contractors of work, home workers, sex workers and equivalent;\n220 = Local artists;", "format": "" }, "ViLk": { "type": "string", "enum": [ "0", "1" ], "maxLength": 20, "description": "'Loonheffingskorting'\n0 = Do not apply;\n1 = Apply;", "format": "" }, "ViZv": { "type": "string", "enum": [ "A", "CEF", "K", "L", "M", "B", "C", "D", "E", "F", "G", "H", "I" ], "maxLength": 20, "description": "'ZVW'\nA = Not subject to compulsory insurance as person not insured under the Wlz either;\nCEF = Subject to compulsory insurance (rate determined in calculation) (valid through 2012);\nK = Subject to compulsory insurance, normal 'Werkgeversheffing' rate;\nL = Subject to compulsory insurance, 0% rate for 'Werkgeversheffing (zeelieden)';\nM = Subject to compulsory insurance, withheld amount;\nB = Niet verzekeringsplichtig, persoon militair ambt. in werkelijke dienst of met buitengewoon verlof;\nC = Wel verzekeringsplichtig, normaal tarief (geldig t/m 2006);\nD = Subject to compulsory insurance, deviating ‘Zeelieden’ rate (valid through 2012);\nE = Subject to compulsory insurance, reduced rate (valid through 2012);\nF = 'Wel verzekeringsplichtig, meer tarieven toegepast (geldig t/m 2006)';\nG = Insurance not compulsory, foreign artist/professional sportsman and/or code LB 221, 224, 225;\nH = Subject to compulsory insurance, no rate applied, domestic artist with LB code 220;\nI = Not subject to compulsory insurance as person not insured under Wlz, liable for pseudo contribution;", "format": "" }, "YnZW": { "type": "boolean", "description": "PR", "format": "" }, "YnWW": { "type": "boolean", "description": "'WW'", "format": "" }, "YWAO": { "type": "boolean", "description": "'WAO/WIA'", "format": "" }, "DoPs": { "type": "boolean", "description": "'Ufo'", "format": "" }, "ViRi": { "type": "string", "enum": [ "0000", "0101", "0102", "0201", "0301", "0302", "0401", "0501", "0601", "0701", "0801", "0901", "0902", "0903", "1001", "1101", "1201", "1301", "1401", "1501", "1601", "1701", "1801", "1901", "2001", "2101", "2201", "2301", "2401", "2501", "2601", "2701", "2801", "2901", "3001", "3101", "3201", "3301", "3302", "3401", "3501", "3801", "3901", "4001", "4101", "4201", "4301", "4401", "4501", "4502", "4601", "4701", "4801", "4901", "5001", "5101", "5200", "5201", "5202", "5203", "5204", "5205", "5206", "5207", "5208", "5209", "5210", "5211", "5301", "5401", "5402", "5501", "5601", "5602", "5701", "5801", "5901", "6001", "6101", "6201", "6301", "6401", "6402", "6501", "6601", "6602", "6701", "6702", "6801", "6901" ], "maxLength": 20, "description": "Deviating 'Sector risicogroep'\n0000 = Not applicable;\n0101 = Agricultural company - short;\n0102 = Agrarisch bedrijf - lang (geldig t/m 2021);\n0201 = Tobacco processing industry;\n0301 = Construction company - short;\n0302 = Bouwbedrijf - lang (geldig t/m 2021);\n0401 = Dredging company;\n0501 = Hout en emballage industrie, houtwaren- en borstelindustrie;\n0601 = Carpstart date;\n0701 = Furniture and organ manufacturer;\n0801 = Wholesale in wood, sawmill and timber industry;\n0901 = Grafische industrie, exclusief fotografen (geldig t/m 2017);\n0902 = Fotografen (geldig t/m 2017);\n0903 = Graphic industry;\n1001 = Metallurgy industry;\n1101 = Electro technique industry;\n1201 = Metal and technical industries;\n1301 = Bakeries;\n1401 = Sugar processing industry;\n1501 = Butcher industry;\n1601 = 'Slagers' (other);\n1701 = Retail trade and crafts;\n1801 = Cleaning;\n1901 = Chain-store business;\n2001 = Port operators;\n2101 = Port ship's cleaners;\n2201 = Inland navigation;\n2301 = Fishing industry;\n2401 = Merchant shipping;\n2501 = Vervoer KLM;\n2601 = NS transportation;\n2701 = Post office transportation;\n2801 = Taxivervoer;\n2901 = Public Transport;\n3001 = Private bus transport;\n3101 = Other transport of passengers on land and by plane;\n3201 = Other transport of goods on land and by plane;\n3301 = General catering industry - short;\n3302 = Horeca algemeen - lang (geldig t/m 2021);\n3401 = Catering industry;\n3501 = Health, mental and social interests;\n3801 = Banks;\n3901 = Verzekeringswezen;\n4001 = Publisher;\n4101 = Wholesaler's I;\n4201 = Wholesaler's II;\n4301 = Professional service industry I;\n4401 = Professional service industry II;\n4501 = Professional service industry III;\n4502 = Commercial services III - substitution premium reduced pay (through July 2007);\n4601 = Dairy industry;\n4701 = Textile industry;\n4801 = Stone, cement, glass and ceramics industries;\n4901 = Chemical industry;\n5001 = Food industry;\n5101 = General industry;\n5200 = Employment agencies;\n5201 = Uitzendbedrijven IIA kortingklasse (geldig t/m 2013);\n5202 = Uitzendbedrijven IIA middenklasse (geldig t/m 2013);\n5203 = Uitzendbedrijven IIA opslagklasse (geldig t/m 2013);\n5204 = Uitzendbedrijven IA kortingklasse (geldig t/m 2013);\n5205 = Uitzendbedrijven IA middenklasse (geldig t/m 2013);\n5206 = Uitzendbedrijven IA opslagklasse (geldig t/m 2013);\n5207 = Detachering (geldig t/m 2021);\n5208 = Intermediaire diensten (geldig t/m 2021);\n5209 = Uitzendbedrijven I B + II B (geldig t/m 2021);\n5210 = Uitzendbedrijven IA (geldig t/m 2021);\n5211 = Uitzendbedrijven IIA (geldig t/m 2021);\n5301 = Security firms;\n5401 = Cultural institutions - short;\n5402 = Cultural institutions - long;\n5501 = Other company and professional sectors;\n5601 = Painting company - short;\n5602 = Schildersbedrijf - lang (geldig t/m 2021);\n5701 = Plasterers and cement masons industry;\n5801 = Roofing company;\n5901 = Cement and masonry company;\n6001 = Stonecutter Company;\n6101 = Government, education and science;\n6201 = Government, state, police and judiciary power;\n6301 = Government, defence;\n6401 = Government, provinces, municipalities and district water boards;\n6402 = Municipalities - alternative sector premium;\n6501 = Government, public service corporations;\n6601 = Government, other institutions;\n6602 = Overheid, overige instellingen - vervangende sectorpremie (geldig t/m 2021);\n6701 = Werk en (re)integratie;\n6702 = Work and (re)integration - alternative sector premium (valid until 2012);\n6801 = Rail construction industry;\n6901 = Telecommunications;", "format": "" }, "ViFc": { "type": "string", "enum": [ "10", "100", "1009", "1010", "1011", "1013", "1018", "1021", "1022", "1024", "1027", "1029", "1030", "1031", "1041", "1042", "1044", "1045", "1047", "105", "1050", "1052", "1054", "1055", "1056", "1057", "1059", "106", "1060", "1065", "1067", "1069", "107", "1071", "1075", "1077", "1079", "1094", "1095", "11", "1106", "1109", "1110", "1111", "1112", "1115", "1121", "1123", "1125", "1128", "1132", "1133", "1137", "114", "1141", "1142", "1144", "115", "1154", "1158", "1160", "1165", "117", "1171", "1172", "1178", "118", "1180", "1183", "1188", "1190", "1191", "1192", "1193", "1194", "1196", "1197", "1198", "120", "1200", "1201", "1202", "1206", "1207", "1210", "1213", "1214", "1215", "1218", "1221", "1227", "1228", "1229", "1233", "1234", "1236", "1238", "1239", "124", "1246", "125", "1252", "1258", "1259", "1261", "1262", "1264", "1266", "1267", "1268", "127", "1277", "1278", "128", "1283", "1285", "1286", "1287", "1288", "1289", "1291", "1293", "1294", "1296", "1302", "1308", "1312", "1315", "1318", "1322", "1328", "1329", "1335", "1336", "1342", "1343", "1345", "1347", "1352", "1353", "1359", "136", "137", "1375", "1379", "1380", "1381", "1386", "1388", "1390", "1393", "1397", "14", "140", "1404", "1405", "1407", "1408", "1414", "1415", "1417", "1420", "1424", "1425", "1428", "1429", "1433", "1435", "1438", "144", "1442", "1446", "1449", "145", "1450", "1451", "1457", "1458", "1459", "1460", "1461", "1462", "1463", "1464", "1469", "1470", "1471", "1475", "1476", "1478", "1479", "148", "1480", "1481", "1486", "1489", "1490", "1494", "1495", "1496", "1497", "1499", "15", "1504", "1506", "1507", "151", "1512", "1513", "1516", "1517", "1518", "1519", "152", "1520", "1521", "1524", "1525", "1526", "1528", "1530", "1531", "1532", "1533", "1534", "1535", "1536", "1537", "1538", "1539", "1540", "1541", "1542", "1544", "1545", "1546", "1547", "1549", "1550", "1552", "1555", "1556", "1557", "1558", "1559", "156", "1563", "157", "1570", "1574", "1576", "1577", "1578", "1579", "158", "1581", "1584", "1585", "1586", "159", "1591", "1596", "1597", "1600", "1601", "1606", "1608", "161", "1610", "1612", "1613", "1616", "1618", "1619", "162", "1620", "1621", "1622", "1625", "1626", "1627", "1629", "163", "1630", "1631", "1632", "1633", "1634", "1635", "1636", "1637", "1639", "164", "1640", "1641", "1642", "1643", "1644", "1645", "1646", "1647", "1648", "1651", "1652", "1653", "1654", "1656", "1658", "1659", "166", "1664", "1668", "1669", "1671", "1672", "1674", "1676", "1678", "1681", "1683", "1685", "1688", "169", "1691", "1694", "1695", "1696", "1697", "1699", "170", "1700", "1703", "1704", "1707", "1708", "1709", "171", "1714", "1715", "1716", "1719", "1722", "1723", "1725", "1730", "1731", "1732", "1735", "1737", "1739", "174", "1745", "1747", "1752", "1755", "1756", "1759", "1762", "1763", "1764", "1765", "1766", "1769", "1771", "1772", "1774", "1777", "178", "1783", "1787", "1788", "1789", "179", "1792", "18", "1806", "1809", "1812", "1813", "1814", "1815", "182", "1821", "1827", "1828", "1829", "183", "1838", "184", "1840", "1841", "1848", "1849", "185", "1852", "1854", "1855", "1856", "1858", "1861", "1869", "187", "1873", "1878", "1879", "1881", "1885", "1886", "1887", "1888", "1889", "1893", "1894", "1895", "1896", "1897", "190", "1900", "1901", "1902", "1905", "1907", "1910", "1912", "1915", "1918", "1926", "1927", "1928", "1929", "193", "1931", "1932", "1936", "1941", "1944", "1945", "1951", "1953", "1954", "1955", "1956", "1957", "1959", "1964", "1967", "197", "1971", "1973", "1974", "1976", "1977", "1980", "1983", "1988", "1989", "199", "1990", "1991", "1993", "1994", "1995", "1998", "20", "2001", "2002", "2003", "2005", "2008", "2011", "2018", "2019", "2020", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2034", "2036", "2043", "2044", "2045", "2046", "2047", "2048", "2050", "2053", "2054", "2055", "2056", "2057", "2058", "2059", "206", "2060", "2061", "2062", "2063", "2065", "2066", "2067", "2068", "2069", "2070", "2071", "2072", "2075", "2076", "2077", "2078", "2079", "2081", "2085", "2086", "2087", "2089", "209", "2090", "2092", "2093", "2094", "2095", "2096", "2097", "2099", "21", "2105", "2106", "2108", "2113", "2114", "2123", "2124", "2126", "2131", "2133", "2136", "214", "2140", "2141", "2143", "2146", "2154", "2155", "2158", "216", "2161", "2164", "2165", "2167", "2169", "2173", "2174", "2175", "2176", "218", "2180", "2181", "2184", "219", "2192", "2194", "2195", "22", "2200", "221", "222", "224", "225", "2252", "2260", "2262", "2266", "2269", "227", "2272", "2273", "2274", "2275", "2276", "228", "2280", "2284", "2285", "229", "2291", "2295", "2296", "2297", "2299", "23", "2301", "2302", "2304", "2305", "2306", "2307", "2308", "2310", "2311", "2314", "2315", "2316", "2318", "2321", "2323", "2324", "2328", "2329", "233", "2330", "2332", "2334", "234", "2341", "2343", "2347", "2348", "2350", "2353", "2354", "2359", "2362", "2365", "2368", "2369", "237", "2370", "2378", "2379", "2380", "2384", "2385", "2389", "239", "24", "2403", "2404", "2407", "2408", "241", "2411", "2414", "2416", "2417", "242", "2424", "2425", "2426", "243", "2431", "2435", "2437", "2439", "2440", "2442", "2443", "2444", "2449", "245", "2451", "2455", "2457", "2458", "2462", "2465", "2467", "2468", "247", "2474", "2479", "2488", "2489", "249", "2491", "2492", "2493", "2496", "2499", "2500", "2502", "2509", "2511", "2513", "2515", "2519", "2520", "2527", "253", "2534", "2535", "2538", "2539", "254", "2540", "2541", "2545", "2549", "2551", "2553", "2554", "2555", "2557", "2559", "2560", "2561", "2566", "257", "2571", "2577", "2580", "2584", "2586", "2587", "259", "2594", "26", "2600", "2601", "2610", "2611", "2612", "2617", "2618", "2621", "2624", "263", "2630", "2642", "2645", "2647", "2648", "265", "2651", "266", "2668", "267", "2672", "2674", "2678", "2679", "268", "2683", "2687", "2688", "269", "2693", "2694", "27", "2700", "2702", "271", "2711", "2719", "272", "2722", "2724", "2731", "2736", "2737", "2742", "2745", "2746", "275", "2750", "2754", "2756", "2761", "2765", "2767", "2768", "2769", "2772", "2773", "2775", "2776", "2777", "2778", "2780", "2787", "279", "2790", "2791", "2793", "2797", "2799", "28", "2804", "2811", "2814", "2816", "2820", "2821", "2822", "2825", "2833", "2841", "2842", "2847", "2848", "2851", "2852", "2854", "2855", "2856", "2857", "2859", "2861", "2862", "2863", "2864", "2865", "2866", "2867", "2868", "2870", "2872", "2875", "2878", "2880", "2881", "2884", "2892", "2894", "2895", "2896", "2898", "29", "2900", "2903", "2907", "2908", "2910", "2911", "2914", "2917", "2918", "2919", "2921", "2928", "2931", "2932", "2933", "2934", "2935", "2936", "2937", "2938", "2939", "2940", "2941", "2942", "2943", "2944", "2945", "2946", "2947", "2948", "2949", "2950", "2951", "2952", "2953", "2954", "2955", "2956", "2957", "2958", "2959", "2960", "2961", "2962", "2963", "2964", "2965", "2966", "2967", "2968", "2969", "2970", "2971", "2972", "2973", "2974", "2975", "2976", "2977", "2978", "2979", "2980", "2981", "2982", "2983", "2984", "2985", "2986", "2987", "2988", "2989", "2990", "2991", "2992", "2993", "2994", "2995", "2996", "2997", "2998", "2999", "30", "300", "3000", "3001", "3002", "3003", "3004", "3005", "3006", "3007", "3008", "3009", "301", "3010", "3011", "3012", "3013", "3014", "3015", "3016", "3017", "3018", "3019", "3020", "3021", "3022", "3023", "3024", "3025", "3026", "3027", "3028", "3029", "303", "3030", "3031", "3032", "3033", "3034", "3035", "3036", "3037", "3038", "3039", "304", "3040", "3041", "3042", "3043", "3044", "3045", "3046", "3047", "3048", "3049", "305", "3050", "3051", "3052", "3053", "3054", "3055", "3056", "3057", "3058", "3059", "306", "3060", "3061", "3062", "3063", "3064", "3065", "3066", "3067", "3068", "3069", "3070", "3071", "3072", "3073", "3074", "3075", "3076", "3077", "3078", "3079", "3080", "3081", "3082", "3083", "3084", "3085", "3086", "3087", "3088", "3089", "3090", "3091", "3092", "3093", "3094", "3095", "3096", "3097", "3098", "3099", "31", "310", "3100", "3101", "3102", "3103", "3104", "3105", "3106", "3107", "3108", "3109", "3110", "3111", "3112", "3113", "3114", "3115", "3116", "3117", "3118", "3119", "3120", "3121", "3122", "3123", "3124", "3125", "3126", "3127", "3128", "3129", "313", "3130", "3131", "3132", "3133", "3134", "3135", "3136", "3137", "3138", "3139", "314", "3140", "3141", "3142", "3143", "3144", "3145", "3146", "3147", "3148", "3149", "3150", "3151", "3152", "3153", "3154", "3155", "3156", "3157", "3158", "3159", "316", "3160", "3161", "3162", "3163", "3164", "3165", "3166", "3167", "3168", "3169", "317", "3170", "3171", "3172", "3173", "3174", "3175", "3176", "3177", "3178", "3179", "318", "3180", "3181", "3182", "3183", "3184", "3185", "3186", "3187", "3188", "3189", "3190", "3191", "3192", "3193", "3194", "3195", "3196", "3197", "3198", "3199", "320", "3200", "3201", "3202", "3203", "3204", "3205", "3206", "3207", "3208", "3209", "3210", "3211", "3212", "3213", "3214", "3215", "3216", "3217", "3218", "3219", "3220", "3221", "3222", "3223", "3224", "3225", "3226", "3227", "3228", "3229", "323", "3230", "3231", "3232", "3233", "3234", "3235", "3236", "3237", "3238", "3239", "3240", "3241", "3242", "3243", "3244", "3245", "3246", "3247", "3248", "3249", "3250", "3251", "3252", "3253", "3254", "3255", "3256", "3257", "3258", "3259", "3260", "3261", "3262", "3263", "3264", "3265", "3266", "3267", "3268", "3269", "3270", "3271", "3272", "3273", "3274", "3275", "3276", "3277", "3278", "3279", "3280", "3281", "3282", "3283", "3284", "3285", "3286", "3287", "3288", "3289", "329", "3290", "3291", "3292", "3293", "3294", "3295", "3296", "3297", "3298", "3299", "33", "330", "3300", "3301", "3302", "3303", "3304", "3305", "3306", "3307", "3308", "3309", "331", "3310", "3311", "3312", "3313", "3314", "3315", "3316", "3317", "3318", "3319", "3320", "3321", "3322", "3323", "3324", "3325", "3326", "3327", "3328", "3329", "3330", "3331", "3332", "3333", "3334", "3335", "3336", "3337", "3338", "3339", "3340", "3341", "3342", "3343", "3344", "3345", "3346", "3347", "3348", "3349", "3350", "3351", "3352", "3353", "3354", "3355", "3356", "3357", "3358", "3359", "3360", "3361", "3362", "3363", "3364", "3365", "3366", "3367", "3368", "3369", "3370", "3371", "3372", "3373", "3374", "3375", "3376", "3377", "3378", "3379", "3380", "3381", "3382", "3383", "3384", "3385", "3386", "3387", "3388", "3389", "3390", "3391", "3392", "3393", "3394", "3395", "3396", "3397", "3398", "3399", "3400", "3401", "3402", "3403", "3404", "3405", "3406", "3407", "3408", "3409", "3410", "3411", "3412", "3413", "3414", "3415", "3416", "3417", "3418", "3419", "3420", "3421", "3422", "3423", "3424", "3425", "3426", "3427", "3428", "3429", "3430", "3431", "3432", "3433", "3434", "3435", "3436", "3437", "3438", "3439", "344", "3440", "3441", "3442", "3443", "3444", "3445", "3446", "3447", "3448", "3449", "345", "3450", "3451", "3452", "3453", "3454", "3455", "3456", "3457", "3458", "3459", "3460", "3461", "3462", "3463", "3464", "3465", "3466", "3467", "3468", "3469", "3470", "3471", "3472", "3473", "3474", "3475", "3476", "3477", "3478", "3479", "3480", "3481", "3482", "3483", "3484", "3485", "3486", "3487", "3488", "3489", "349", "3490", "3491", "3492", "3493", "3494", "3495", "3496", "3497", "3498", "3499", "35", "3500", "3501", "3502", "3503", "3504", "3505", "3506", "3507", "3508", "3509", "351", "3510", "3511", "3512", "3513", "3514", "3515", "3516", "3517", "3518", "3519", "352", "3520", "3521", "3522", "3523", "3524", "3525", "3526", "3527", "3528", "3529", "353", "3530", "3531", "3532", "3533", "3534", "3535", "3536", "3537", "3538", "3539", "3540", "3541", "3542", "3543", "3544", "3545", "3546", "3547", "3548", "3549", "3550", "3551", "3552", "3553", "3554", "3555", "3556", "3557", "3558", "3559", "3560", "3561", "3562", "3563", "3564", "3565", "3566", "3567", "3568", "3569", "3570", "3571", "3572", "3573", "3574", "3575", "3576", "3577", "3578", "3579", "3580", "3581", "3582", "3583", "3584", "3585", "3586", "3587", "3588", "3589", "359", "3590", "3591", "3592", "3593", "3594", "3595", "3596", "3597", "3598", "3599", "360", "3600", "3601", "3602", "3603", "3604", "3605", "3606", "3607", "3608", "3609", "361", "3610", "3611", "3612", "3613", "3614", "3615", "3616", "3617", "3618", "3619", "3620", "3621", "3622", "3623", "3624", "3625", "3626", "3627", "3628", "3629", "363", "3630", "3631", "3632", "3633", "3634", "3635", "3636", "3637", "3638", "3639", "364", "3640", "3641", "3642", "3643", "3644", "3645", "3646", "3647", "3648", "3649", "365", "3650", "3651", "3652", "3653", "3654", "3655", "3656", "3657", "3658", "3659", "366", "3660", "3661", "3662", "3663", "3664", "3665", "3666", "3667", "3668", "3669", "3670", "3671", "3672", "3673", "3674", "3675", "3676", "3677", "3678", "3679", "368", "3680", "3681", "3682", "3683", "3684", "3685", "3686", "3687", "3688", "3689", "3690", "3691", "3692", "3693", "3694", "3695", "3696", "3697", "3698", "3699", "370", "3700", "3701", "3702", "3703", "3704", "3705", "3706", "3707", "3708", "3709", "3710", "3711", "3712", "3713", "3714", "3715", "3716", "3717", "3718", "3719", "3720", "3721", "3722", "3723", "3724", "3725", "3726", "3727", "3728", "3729", "373", "3730", "3731", "3732", "3733", "3734", "3735", "3736", "3737", "3738", "3739", "3740", "3741", "3742", "3743", "3744", "3745", "3746", "3747", "3748", "3749", "3750", "3751", "3752", "3753", "3754", "3755", "3756", "3757", "3758", "3759", "376", "3760", "3761", "3762", "3763", "3764", "3765", "3766", "3767", "3768", "3769", "3770", "3771", "3772", "3773", "3774", "3775", "3776", "3777", "3778", "3779", "3780", "3781", "3782", "3783", "3784", "3785", "3786", "3787", "3788", "3789", "3790", "3791", "3792", "3793", "3794", "3795", "3796", "3797", "3798", "3799", "3800", "3801", "3802", "3803", "3804", "3805", "3806", "3807", "3808", "3809", "3810", "3811", "3812", "3813", "3814", "3815", "3816", "3817", "3818", "3819", "3820", "3821", "3822", "3823", "3824", "3825", "3826", "3827", "3828", "3829", "3830", "3831", "3832", "3833", "3834", "3835", "3836", "3837", "3838", "3839", "3840", "3841", "3842", "3843", "3844", "3845", "3846", "3847", "3848", "3849", "3850", "3851", "3852", "3853", "3854", "3855", "3856", "3857", "3858", "3859", "3860", "3861", "3862", "3863", "3864", "3865", "3866", "3867", "3868", "3869", "387", "3870", "3871", "3872", "3873", "3874", "3875", "3876", "3877", "3878", "3879", "388", "3880", "3881", "3882", "3883", "3884", "3885", "3886", "3887", "3888", "3889", "389", "3890", "3891", "3892", "3893", "3894", "3895", "3896", "3897", "3898", "3899", "3900", "3901", "3902", "3903", "3904", "3905", "3906", "3907", "3908", "3909", "391", "3910", "3911", "3912", "3913", "3914", "3915", "3916", "3917", "3918", "3919", "392", "3920", "3921", "3922", "3923", "3924", "3925", "3926", "3927", "3928", "3929", "3930", "3931", "3932", "3933", "3934", "3935", "3936", "3937", "3938", "3939", "394", "3940", "3941", "3942", "3943", "3944", "3945", "3946", "3947", "3948", "3949", "395", "3950", "3951", "3952", "3953", "3954", "3955", "3956", "3957", "3958", "3959", "396", "3960", "3961", "3962", "3963", "3964", "3965", "3966", "3967", "3968", "3969", "397", "3970", "3971", "3972", "3973", "3974", "3975", "3976", "3977", "3978", "3979", "3980", "3981", "3982", "3983", "3984", "3985", "3986", "3987", "3988", "3989", "399", "3990", "3991", "3992", "3993", "3994", "3995", "3996", "3997", "3998", "3999", "4", "40", "400", "4000", "4001", "4002", "4003", "4004", "4005", "4006", "4007", "4008", "4009", "4010", "4011", "4012", "4013", "4014", "4015", "4016", "4017", "4018", "4019", "402", "4020", "4021", "4022", "4023", "4024", "4025", "4026", "4027", "4028", "4029", "403", "4030", "4031", "4032", "4033", "4034", "4035", "4036", "4037", "4038", "4039", "4040", "4041", "4042", "4043", "4044", "4045", "4046", "4047", "4048", "4049", "405", "4050", "4051", "4052", "4053", "4054", "4055", "4056", "4057", "4058", "4059", "406", "4060", "4061", "4062", "4063", "4064", "4065", "4066", "4067", "4068", "4069", "4070", "4071", "4072", "4073", "4074", "4075", "4076", "4077", "4078", "4079", "408", "4080", "4081", "4082", "4083", "4084", "4085", "4086", "4087", "4088", "4089", "4090", "4091", "4092", "4093", "4094", "4095", "4096", "4097", "4098", "4099", "41", "410", "4100", "4101", "4102", "4103", "4104", "4105", "4106", "4107", "4108", "4109", "411", "4110", "4111", "4112", "4113", "4114", "4115", "4116", "4117", "4118", "4119", "412", "4120", "4121", "4122", "4123", "4124", "4125", "4126", "4127", "4128", "4129", "413", "4130", "4131", "4132", "4133", "4134", "4135", "4136", "4137", "4138", "4139", "4140", "4141", "4142", "4143", "4144", "4145", "4146", "4147", "4148", "4149", "4150", "4151", "4152", "4153", "4154", "4155", "4156", "4157", "4158", "4159", "4160", "4161", "4162", "4163", "4164", "4165", "4166", "4167", "4168", "4169", "417", "4170", "4171", "4172", "4173", "4174", "4175", "4176", "4177", "4178", "4179", "418", "4180", "4181", "4182", "4183", "4184", "4185", "4186", "4187", "4188", "4189", "4190", "4191", "4192", "4193", "4194", "4195", "4196", "4197", "4198", "4199", "420", "4200", "4201", "4202", "4203", "4204", "4205", "4206", "4207", "4208", "4209", "4210", "4211", "4212", "4213", "4214", "4215", "4216", "4217", "4218", "4219", "4220", "4221", "4222", "4223", "4224", "4225", "4226", "4227", "4228", "4229", "423", "4230", "4231", "4232", "4233", "4234", "4235", "4236", "4237", "4238", "4239", "4240", "4241", "4242", "4243", "4244", "4245", "4246", "4247", "4248", "4249", "4250", "4251", "4252", "4253", "4254", "4255", "4256", "4257", "4258", "4259", "426", "4260", "4261", "4262", "4263", "4264", "4265", "4266", "4267", "4268", "4269", "427", "4270", "4271", "4272", "4273", "4274", "4275", "4276", "4277", "4278", "4279", "4280", "4281", "4282", "4283", "4284", "4285", "4286", "4287", "4288", "4289", "429", "4290", "4291", "4292", "4293", "4294", "4295", "4296", "4297", "4298", "4299", "43", "4300", "4301", "4302", "4303", "4304", "4305", "4306", "4307", "4308", "4309", "431", "4310", "4311", "4312", "4313", "4314", "4315", "4316", "4317", "4318", "4319", "4320", "4321", "4322", "4323", "4324", "4325", "4326", "4327", "4328", "4329", "433", "4330", "4331", "4332", "4333", "4334", "4335", "4336", "4337", "4338", "4339", "434", "4340", "4341", "4342", "4343", "4344", "4345", "4346", "4347", "4348", "4349", "4350", "4351", "4352", "4353", "4354", "4355", "4356", "4357", "4358", "4359", "436", "4360", "4361", "4362", "4363", "4364", "4365", "4366", "4367", "4368", "4369", "437", "4370", "4371", "4372", "4373", "4374", "4375", "4376", "4377", "4378", "4379", "438", "4380", "4381", "4382", "4383", "4384", "4385", "4386", "4387", "4388", "4389", "4390", "4391", "4392", "4393", "4394", "4395", "4396", "4397", "4398", "4399", "44", "4400", "4401", "4402", "4403", "4404", "4405", "4406", "4407", "4408", "4409", "441", "4410", "4411", "4412", "4413", "4414", "4415", "4416", "4417", "4418", "4419", "4420", "4421", "4422", "4423", "4424", "4425", "4426", "4427", "4428", "4429", "4430", "4431", "4432", "4433", "4434", "4435", "4436", "4437", "4438", "4439", "4440", "4441", "4442", "4443", "4444", "4445", "4446", "4447", "4448", "4449", "445", "4450", "4451", "4452", "4453", "4454", "4455", "4456", "4457", "4458", "4459", "4460", "4461", "4462", "4463", "4464", "4465", "4466", "4467", "4468", "4469", "4470", "4471", "4472", "4473", "4474", "4475", "4476", "4477", "4478", "4479", "448", "4480", "4481", "4482", "4483", "4484", "4485", "4486", "4487", "4488", "4489", "449", "4490", "4491", "4492", "4493", "4494", "4495", "4496", "4497", "4498", "4499", "450", "4500", "4501", "4502", "4503", "4504", "4505", "4506", "4507", "4508", "4509", "4510", "4511", "4512", "4513", "4514", "4515", "4516", "4517", "4518", "4519", "4520", "4521", "4522", "4523", "4524", "4525", "4526", "4527", "4528", "4529", "453", "4530", "4531", "4532", "4533", "4534", "4535", "4536", "4537", "4538", "4539", "454", "4540", "4541", "4542", "4543", "4544", "4545", "4546", "4547", "4548", "4549", "455", "4550", "4551", "4552", "4553", "4554", "4555", "4556", "4557", "4558", "4559", "4560", "4561", "4562", "4563", "4564", "4565", "4566", "4567", "4568", "4569", "457", "4570", "4571", "4572", "4573", "4574", "4575", "4576", "4577", "4578", "4579", "4580", "4581", "4582", "463", "465", "466", "467", "468", "469", "473", "475", "476", "477", "479", "48", "480", "482", "483", "487", "488", "49", "491", "496", "5", "50", "505", "506", "509", "51", "510", "511", "512", "513", "514", "516", "517", "518", "52", "521", "526", "53", "531", "532", "533", "534", "540", "541", "542", "544", "545", "549", "555", "556", "557", "558", "559", "56", "561", "563", "565", "569", "57", "571", "572", "573", "576", "58", "581", "582", "588", "589", "592", "595", "6", "60", "603", "604", "607", "609", "61", "615", "618", "619", "621", "623", "624", "625", "626", "627", "629", "63", "630", "632", "633", "634", "636", "637", "639", "64", "641", "644", "645", "65", "650", "659", "66", "660", "662", "663", "664", "668", "670", "675", "679", "682", "683", "685", "686", "69", "696", "698", "699", "7", "70", "700", "703", "705", "706", "709", "710", "714", "716", "719", "72", "720", "721", "724", "725", "727", "73", "730", "733", "734", "735", "738", "739", "740", "741", "742", "744", "745", "748", "750", "753", "756", "757", "758", "759", "76", "762", "771", "775", "776", "780", "782", "785", "787", "788", "789", "791", "797", "8", "80", "800", "8004", "8005", "8006", "8007", "8008", "8009", "8010", "8012", "8013", "8016", "8017", "8019", "802", "8020", "8021", "8022", "8023", "8025", "8026", "8027", "8028", "8029", "8030", "8032", "8034", "8035", "8036", "8040", "8041", "8044", "8046", "8047", "8048", "8049", "805", "8053", "8056", "8057", "8058", "806", "8060", "8063", "8068", "8069", "807", "8070", "8071", "8073", "8074", "8075", "8076", "8077", "8078", "8079", "8080", "8081", "8082", "8083", "8084", "8085", "8087", "8088", "8089", "8090", "8091", "8092", "8093", "8094", "8095", "8096", "8097", "8098", "8099", "810", "8100", "8101", "8102", "8103", "8104", "8105", "8106", "8107", "8108", "8109", "811", "8110", "8111", "8112", "8113", "8114", "8115", "8116", "8117", "8118", "8119", "8120", "8121", "8122", "8123", "8124", "8125", "8126", "8127", "8128", "8129", "8130", "8131", "8132", "8133", "8134", "8135", "8136", "8137", "8138", "8139", "8140", "8141", "8142", "8143", "8144", "8145", "8146", "8147", "8148", "8149", "8150", "8151", "8152", "8153", "8154", "8155", "8156", "8157", "8158", "8159", "8160", "8161", "8162", "8163", "8164", "8165", "8166", "8167", "8168", "8169", "8170", "8171", "8172", "8173", "8174", "8175", "8176", "8177", "8178", "8179", "8180", "8181", "8182", "8183", "8184", "8185", "8186", "8187", "8188", "8189", "819", "8190", "8191", "8192", "8193", "8194", "8195", "8196", "8197", "8198", "8199", "820", "8200", "8201", "8202", "8203", "8204", "8205", "8206", "8207", "8208", "8209", "821", "8210", "8211", "8212", "8213", "8214", "8215", "8216", "8217", "8218", "8219", "822", "8220", "8221", "8222", "8223", "8224", "8225", "8226", "8227", "8228", "8229", "823", "8230", "8231", "8232", "8233", "8234", "8235", "8236", "8237", "8238", "8239", "824", "8240", "8241", "8242", "8243", "8244", "8245", "8246", "8247", "8248", "8249", "825", "8250", "8251", "8252", "8253", "8254", "8255", "8256", "8257", "8258", "8259", "826", "8260", "8261", "8262", "8263", "8264", "8265", "8266", "8267", "8268", "8269", "827", "8270", "8271", "8272", "8273", "8274", "8275", "8276", "8277", "8278", "8279", "8280", "8281", "8282", "8283", "8284", "8285", "8286", "8287", "8288", "8289", "8290", "8291", "8292", "8293", "8294", "8295", "8296", "8297", "8298", "8299", "83", "830", "8300", "8301", "8302", "8303", "8304", "8305", "8306", "8307", "8308", "8309", "8310", "8311", "8312", "833", "834", "835", "836", "838", "839", "84", "840", "841", "843", "845", "848", "85", "851", "854", "855", "857", "858", "864", "874", "876", "877", "880", "884", "887", "889", "892", "893", "898", "9", "90", "903", "904", "910", "911", "914", "917", "918", "921", "923", "924", "925", "929", "93", "930", "931", "932", "938", "94", "941", "942", "943", "945", "947", "955", "956", "96", "97", "972", "979", "983", "985", "987", "988", "989", "997", "9999" ], "maxLength": 20, "description": "Deviating CBS CLA\n10 = BOUW & INFRA;\n100 = TRANSAVIA AIRLINES GRONDPERSONEEL;\n1009 = REDERIJ T. MULLER B.V.;\n1010 = NOORDGASTRANSPORT B.V.;\n1011 = ATOGLAS NEDERLAND B.V. (V/H ATOHAAS NEDERLAND B.V.;\n1013 = VCK AIR;\n1018 = POLAROID EUROPA EN POLARIOD TRADING V/H POLAROID;\n1021 = BASF COLOR SOLUTIONS NETHERLANDS B.V. ( VH BASF NEDERLAND B.V.);\n1022 = BEROEPSONDERWIJS EN VOLWASSENENEDUCATIE, MBO;\n1024 = ELEMENTIS MINERALS B.V.;\n1027 = DE VOLKSBANK;\n1029 = HANDELSVAART;\n1030 = ALMATIS BV;\n1031 = ALUMINIUM CHEMIE ROTTERDAM;\n1041 = EVERZINC NEDERLAND B.V.;\n1042 = TATE AND LYLE NETHERLANDS B.V.;\n1044 = CNC GRONDSTOFFEN BV;\n1045 = THUISZORG;\n1047 = ATLANTIC CONTAINER LINE EUROPE, ACL;\n105 = NATIONAL STARCH & CHEMICAL;\n1050 = AAR AIRCRAFT COMPONENT SERVICES;\n1052 = SMALS BOUWGRONDSTOFFEN B.V.;\n1054 = KLM CARGO-VLIEGERS;\n1055 = MARTINAIR HOLLAND BOORDWERKTUIGKUNDIGEN;\n1056 = MARTINAIR HOLLAND CABINEPERSONEEL;\n1057 = ALCATEL-LUCENT NEDERLAND B.V. CAO;\n1059 = GEZONDHEIDSDIENSTEN VOOR DIEREN;\n106 = LUXAN BV;\n1060 = NBBU UITZENDKRACHTEN;\n1065 = NU3;\n1067 = PORCELEYNE FLES;\n1069 = ADM EUROPOORT B.V. AEBT;\n107 = KONINKLIJKE EUROMA BV;\n1071 = KLM-VLIEGERS OP VLEUGELVLIEGTUIGEN;\n1075 = FORBO FLOORING B.V.;\n1077 = SCHOEN- EN LEDERWARENINDUSTRIE REG;\n1079 = HES BULK TERMINAL MAASDELTA (HBTM) B.V.;\n1094 = NBBU VASTE MEDEWERKERS UITZENDBUREAUS;\n1095 = SOCIAAL ECONOMISCHE RAAD, SER;\n11 = TICHELAARS KONINKLIJKE MAKKUMER AARDEWERK- EN TEGELFABRIEK;\n1106 = TRAINER/COACHES BETAALD VOETBAL;\n1109 = MENZIES AVIATION GROUP (VH OGDEN);\n1110 = SMIT TAK WIJKPLAATSPERSONEEL MAASSLUIS;\n1111 = CARGILL CACAO;\n1112 = IHD SCHIPHOL SERVICE;\n1115 = FREUDENBERG HOUSEHOLD PRODUCTS;\n1121 = RAIL SERVICE CENTER ROTTERDAM B.V.;\n1123 = LAMB WESTON;\n1125 = VNU VERKOOPGROEP;\n1128 = BIK BOUWPRODUKTEN;\n1132 = HUMAN TOTAL CARE B.V. (VH ARBONED);\n1133 = JAMES HARDIE NETHERLANDS B.V.;\n1137 = REGELING ARBEIDSVOORZIENING ZEESCHEEPVAART RAZ;\n114 = RODENSTOCK BENELUX B.V.;\n1141 = SWECO;\n1142 = HET NOORDEN INGENIEURSBUREAU;\n1144 = MEDICA EUROPE B.V.;\n115 = MARS FOOD EUROPE C.V.;\n1154 = NOVARTIS NUTRITION BENELUX;\n1158 = CENTRALE EXPERTISE DIENST BERGWEG;\n1160 = GRONTMIJ GEOGROEP;\n1165 = RECREATIE;\n117 = RECLASSERING;\n1171 = HONEYWELL FLUORINE PROD. EUROPE BV CAO I V/H ALLIE;\n1172 = HONEYWELL FLUORINE PROD. EUROPE BV CAO II V/H ALLI;\n1178 = GWK TRAVELEX NV ( VH TRAVELEX BANK N.V.);\n118 = BITUMINEUZE EN KUNSTSTOF DAKBEDEKKINGSBEDRIJVEN;\n1180 = KOPPERT BV EN KOPPERT BEHEER BV;\n1183 = APG GROEP CAO;\n1188 = VOORTGEZET ONDERWIJS VO;\n1190 = LICOM;\n1191 = NOORDZEE VEERDIENSTEN (NORTH SEA FERRIES) KANTOORPERSONEEL;\n1192 = CAOP CENTRUM ARBEIDSVERHOUDINGEN;\n1193 = TENTOONSTELLINGSBEDRIJVEN;\n1194 = LUCENT CAO V/H LUCENT CAO A;\n1196 = GRADA B.V.;\n1197 = VRIJGEVESTIGDE FYSIOTHERAPIEPRAKTIJK;\n1198 = WAGENBORG SLEEPDIENST B.V.;\n120 = KLK KOLB SPECIALTIES B.V.;\n1200 = MOVARES NEDERLAND B.V.;\n1201 = BELDEN WIRE & CABLE CAO A;\n1202 = BELDEN WIRE & CABLE CAO B;\n1206 = JONGE GEZINNEN BV VH FELICITAS BV;\n1207 = WATERVOORZIENING HATENBOER NEPTUNUS BV;\n1210 = INCHCAPE TESTING SERVICES (BEAMBTEN);\n1213 = AQUINOS BEDDING NETHERLANDS B.V.;\n1214 = KENNISCENTRA BEROEPSONDERWIJS BEDRIJFSLEVEN ( VH LANDELIJKE ORGANEN BEROEPSONDERWIJS);\n1215 = MAAS INTERNATIONAL B.V.;\n1218 = PIPELIFE NEDERLAND B.V.;\n1221 = FAVINI MEERSSEN B.V. (VH MEERSSEN PAPIER);\n1227 = KLOCKNER PENTAPLAST B.V.;\n1228 = TRAWLVISSERIJ;\n1229 = MARFO B.V.;\n1233 = LOPAREX BV;\n1234 = RENOLIT NEDERLAND BV;\n1236 = DEBIS IT SERVICES BENELUX;\n1238 = INV NYLON CHEMICALS NETHERLANDS B.V.;\n1239 = GENENCOR INTERNATIONAL BV;\n124 = MELK- EN ZUIVELDETAILHANDELSBEDRIJF;\n1246 = TETTERODE NEDERLAND;\n125 = GROENTEN- EN FRUITVERWERKENDE INDUSTRIE;\n1252 = CENTRALE ORGANISATIE VOOR RADIOACTIEF AFVAL (COVRA);\n1258 = DEPRON BV;\n1259 = TRESPA INTERNATIONAL BV EN FACILITIES WETERING BV;\n1261 = KANTOORVAKHANDEL;\n1262 = KPN CORPORATE MARKET B.V. (VH GETRONICS NEDERLAND B.V.);\n1264 = VEILIGHEIDSDOMEIN;\n1266 = HOUSEHOLD AND BODY CARE (VH DOUWE EGBERTS HOUSEHOLD AND BODY);\n1267 = DECS OPERATING;\n1268 = DSM ENGINEERING PLASTICS (EMMEN) B.V. en DSM ADVANCED POLYESTER (EMMEN) B.V.;\n127 = FORBO-NOVILON B.V.;\n1277 = GRONTMIJ BRAVENBOER EN SCHEERS / COMAN;\n1278 = ECOVYST ZEOLITES B.V.;\n128 = ADAPA THE NETHERLANDS LEEK BV;\n1283 = ROTTERDAM-ANTWERPEN PIJPLEIDING (NEDERLAND) NV;\n1285 = TANKSTATIONS EN WASBEDRIJVEN;\n1286 = HTL-DHT B.V.;\n1287 = GRAFIMEDIA;\n1288 = SMURFIT KAPPA SOLID BOARD HOOGKERK B.V. (VH SMURFIT KAPPA DE HALM KARTON);\n1289 = SECTOR RECHTERLIJKE MACHT;\n1291 = NEDERLANDS HORECA GILDE (NHG CAO);\n1293 = DUCOR PETROCHEMICALS B.V.;\n1294 = WERKEN VOOR WATERSCHAPPEN;\n1296 = INFORMATIE-, COMMUNICATIE- EN KANTOORTECHNOLOGIEBRANCHE (ICK);\n1302 = Sigma Coatings B.V. Cao II (vervallen);\n1308 = LA PLACE B.V. (VH VROOM & DREESMANN FOOD);\n1312 = NESTLE PURINA PETCARE NEDERLAND B.V. VH FRISKIES NEDERLAND B.V.;\n1315 = MOSA PORSELEIN NV;\n1318 = NS REIZIGERS;\n1322 = PLUKON POULTRY HOLDING B.V.;\n1328 = P&O NEDLLOYD;\n1329 = POPPIES (BAKERY) NEDERLAND B.V.;\n1335 = SANARO BV V/H NATRENA B.V.;\n1336 = WELKOOP;\n1342 = AXEL CHRISTIERNSSON B.V.;\n1343 = INTERNATIONAL AUTOMOTIVE COMPENENTS IAC;\n1345 = SOCIALE WERKVOORZIENING;\n1347 = SVITZER WIJSMULLER ZEEVAREND PERSONEEL ( VH WIJSMULLER REGLEMENT ZEEVARENDEN);\n1352 = KCA DEUTAG (VH DEUTAG NEDERLAND);\n1353 = SOCIALE VERZEKERINGSBANK;\n1359 = VT PERSONNEL SERVICES VLOOTPERSONEEL;\n136 = HTM CAO;\n137 = TRONOX PIGMENTS (HOLLAND) B.V.;\n1375 = P&O NORTH SEA FERRIES KANTOORPERSONEEL;\n1379 = KEMIRA AGRO ROZENBURG B.V.;\n1380 = HAYS LOGISTIC SERVICES B.V. V/H VAN DER HEIJDEN VA;\n1381 = ETOS DISTRIBUTIE & LOGISTIEK BV / HOOFDKANT- ETOS BV;\n1386 = CINOP;\n1388 = SMIT NEDERLAND B.V. KANTOOR- EN WALPERSONEEL;\n1390 = THEATER (VH NEDERLANDS THEATER);\n1393 = RAILINFRASTRUCTUUR;\n1397 = SOS INTERNATIONAL AMSTERDAM;\n14 = PHILIPS CAO-A (VH PHILIPS BEDRIJVEN A);\n140 = PARKETVLOERENONDERNEMINGEN;\n1404 = SECTOR ONDERWIJS (PRIMAIR ONDERWIJS);\n1405 = MAASTRICHT AACHEN AIRPORT;\n1407 = CHEP BENELUX NEDERLAND BV;\n1408 = LINDE GAS BENELUX B.V.;\n1414 = WET INSCHAKELING WERKZOEKENDE (WIW);\n1415 = ATOS- ORIGIN IN NEDERLAND;\n1417 = ESSITY OPERATIONS HOOGEZAND BV;\n1420 = DIXONS B.V. DYNABYTE B.V. EN DEXCON RETAIL B.V.;\n1424 = ENERGIE- EN NUTSBEDRIJVEN KABEL EN TELECOM SECTOR CAO;\n1425 = FRANS MAAS LOGISTICS NEDERLAND;\n1428 = ECT;\n1429 = REGELING TEWERKSTELLING NIET EU-OFFICIEREN. OP ZEESCHEPEN ONDER NEDERLANDSE VLAG;\n1433 = MELKCONTROLESTATIONS;\n1435 = EDS INTERNATIONAL B.V.;\n1438 = RECHTSBIJSTAND;\n144 = ROYAL FLORAHOLLAND;\n1442 = TOMINGROEP BV;\n1446 = GOUDA VUURVAST OVENBOUW;\n1449 = TREGA INTERNATIONAL BV (V/H SPHINX TEGELS BV);\n145 = ZEEPFABRIEK DALLI DE KLOK;\n1450 = STICHTING VAKOPLEIDING TRANSPORT EN LOGISTIEK;\n1451 = UNIVERSITEIT NYENRODE B.V.;\n1457 = WELLMAN (VOORHEEN WELLMAN PET RESINS EUROPA);\n1458 = LEDERWAREN EN REISARTIKELEN DETAILHANDEL IN-;\n1459 = VERF EN BEHANG DETAILHANDEL IN-;\n1460 = FOTOGRAFISCHE ARTIKELEN DETAILHANDEL IN-;\n1461 = PARFUMERIEARTIKELEN DETAILHANDEL IN-;\n1462 = DIBEVO NPMB-VMN;\n1463 = TABAKSARTIKELEN DETAILHANDEL;\n1464 = JUWELIERSARTIKELEN DETAILHANDEL IN-;\n1469 = FLEXSYS BV;\n1470 = NS SOCIALE EENHEID;\n1471 = ENERGIE- EN NUTSBEDRIJVEN WENB SECTOR CAO GEO PROCES EN SERVICES;\n1475 = STICHTING WAGENINGEN RESEARCH;\n1476 = BIERBROUWERIJ DE LEEUW B.V.;\n1478 = CARGILL BIOINDUSTRIAL B.V.;\n1479 = ALIPHOS ROTTERDAM B.V.;\n148 = GRAANBE- EN VERWERKENDE BEDRIJVEN;\n1480 = BLOEMENVEILING AALSMEER;\n1481 = RENDAC SON B.V. SONAC BURGUM B.V. ECOSON B.V.DARLING INGREDIENTS NEDERLAND B.V.;\n1486 = JOHMA NEDERLAND B.V.;\n1489 = CARWASH & TRUCKWASHBRANCHE EN POETSBEDRIJVEN;\n1490 = CONSUMENTENBOND;\n1494 = PRIMAIR ONDERWIJS;\n1495 = MEDIA MOTION B.V. (V/H CINRAM NEDERLAND B.V.);\n1496 = BAKKERSBEDRIJF;\n1497 = UITVAARTVERZORGING;\n1499 = HORECAPRODUCTEN GROOTHANDEL IN-;\n15 = PHILIPS CAO;\n1504 = BOEKEN- EN TIJDSCHRIFTUITGEVERIJBEDRIJF;\n1506 = PADDESTOELEN;\n1507 = FIRET INTERLININGS;\n151 = TUINBOUWVEILINGEN;\n1512 = ACHMEA B.V.;\n1513 = SLIJPPOL AMSTERDAM B.V.;\n1516 = ANWB FACILITAIR BEDRIJF;\n1517 = ANWB CONCERNAFDELINGEN;\n1518 = ANWB HULPVERLENING;\n1519 = ANWB VERKOOP EN SERVICES;\n152 = BAKSTEENINDUSTRIE, NEDERLANDSE;\n1520 = ANWB UITGEVERIJ, INFORMATIE EN BEWEGWIJZERING;\n1521 = POSTNL CAO VOOR POSTNL;\n1524 = TJOAPACK;\n1525 = KALIBRA INTERNATIONAL B.V.;\n1526 = P. BAKKER HILLEGOM B.V.;\n1528 = KOSA NETHERLANDS B.V.;\n1530 = CF (NETHERLANDS) HOLDING LIMITED B.V. (VH GBC FILMS GROUP EUROPE);\n1531 = VASTGOEDBEDRIJVEN VESTEDA BV;\n1532 = GULPENER BIERBROUWERIJ BV;\n1533 = TRANSAVIA AIRLINES OPROEPKRACHTEN CABINEPERSONEEL;\n1534 = TRANSAVIA AIRLINES CONTRACTENGEBOUW CABINE;\n1535 = ONDERZOEKINSTELLINGEN CAO;\n1536 = NEDERLANDSE UNIVERSITEITEN;\n1537 = OMROEPPERSONEEL;\n1538 = BLUE SKY GROUP;\n1539 = NS STATIONS BV;\n1540 = KPN CAO;\n1541 = FARM FRITES INTERNATIONAL BV;\n1542 = AVIKO B.V.;\n1544 = TWEEWIELERCAO;\n1545 = POSTKANTOREN BV;\n1546 = NS OPLEIDINGEN;\n1547 = BLOEMEN EN PLANTEN GROOTHANDEL IN-;\n1549 = KONINKLIJK CONCERTGEBOUWORKEST VOOR ORKESTLEDEN;\n1550 = VISAFSLAG URK;\n1552 = GEREFORMEERD VOORTGEZET ONDERWIJS;\n1555 = RPC BEBO NED. BV (V/H THOMPACK/AEP RIGID;\n1556 = RIOOLREINIGINGSBEDRIJF VAN DER WEG B.V.;\n1557 = CARGLASS B.V.;\n1558 = IGMA;\n1559 = DIABETESVERENIGING NEDERLAND;\n156 = ZIEKENHUIZEN;\n1563 = TEVA PHARMACHEMIE B.V.;\n157 = ZUIVELINDUSTRIE I;\n1570 = PAPIERFABRIEK SCHUT BV;\n1574 = GEESTELIJKE GEZONDHEIDSZORG (GGZ);\n1576 = BRUNNER MOND B.V. (NETHERLANDS);\n1577 = TONEEL EN DANS;\n1578 = DE OMROEP;\n1579 = STORK NV SOCIAAL KADER;\n158 = CSM SUIKER I;\n1581 = AEDES VERENIGING VAN WONINGCORPORATIES;\n1584 = Ipv Industrial Parc Vlissingen (Vh Hoech) (vervallen);\n1585 = ARBO UNIE;\n1586 = DOSSCHE MILLS B.V.;\n159 = APOLLO TYRES (NL) B.V.;\n1591 = SYNTENS;\n1596 = HARTMAN PRODUKTIE & EVENEMENTENSERVICE BV;\n1597 = SECTOR DEFENSIE;\n1600 = CHROMAFLO TECHNOLOGIES BV (VH EVONIK COLORTREND B.V.);\n1601 = ZOUTWATER CAO;\n1606 = RABOBANK;\n1608 = EIEREN EN EIPRODUCTEN EN DE EIPRODUCTENINDUSTRIE GROOTHANDEL IN-;\n161 = NEDERLANDSE GASUNIE N.V. CAO;\n1610 = GOEDERENVERVOER OVER HET SPOOR;\n1612 = KINDEROPVANG VOOR KINDERCENTRA EN GASTOUDEROPVANG;\n1613 = SOLIDUS SOLUTIONS;\n1616 = EUROP ASSISTANCE NEDERLAND ( VH VHD FACILITAIR BV);\n1618 = UNIVERSITAIRE MEDISCHE CENTRA;\n1619 = NUFFIC;\n162 = SIGARENINDUSTRIE;\n1620 = DIOLEN 1 (V/H ACORDIS CAO 1);\n1621 = DIOLEN 2 (V/H ACORDIS CAO-2);\n1622 = HEYE GLAS NEDERLAND CV;\n1625 = DNV CAO;\n1626 = GIVAUDAN NEDERLAND BV;\n1627 = PINKROCCADE;\n1629 = DETAILHANDEL IN MUZIEKINSTRUMENTEN EN BLADMUZIEK, PIANOSTEMMERS EN PIANOTECHNICI;\n163 = OPENBAAR VERVOER;\n1630 = BRANCHE CAO GEMEENTEN;\n1631 = IMK INTERMEDIAIR B.V.;\n1632 = DICOM NEDERLAND BV;\n1633 = ABN-AMRO;\n1634 = FORTIS BANK NEDERLAND;\n1635 = ING BANK;\n1636 = SECTOR POLITIE;\n1637 = PROVINCIALE SECTOR;\n1639 = DOE-HET-ZELFBRANCHE;\n164 = PRIL BV;\n1640 = MONDI HEERLEN B.V.;\n1641 = STICHTING AMSTERDAMS UIT BURO;\n1642 = PHARMACEUTICAL RESEARCH ASSOCIATIES GROUP;\n1643 = DSM FINE CHEMICALS NETHERLANDS B.V.;\n1644 = TEXTIEL GROOTWINKELBEDRIJVEN;\n1645 = SBB;\n1646 = RIJK CAO;\n1647 = NEDERLANDSE OPERA;\n1648 = NATIONALE OPERA EN BALLET;\n1651 = HEMA;\n1652 = MENZIES WORLD CARGO / FREIGHT EIGHT;\n1653 = GEREFORMEERD PRIMAIR ONDERWIJS;\n1654 = IMPERIAL BRANDS JOURE;\n1656 = NETHERLANDS SCHOOL OF PUBLIC EN OCCUPATIONAL HEALTH (NSPOH);\n1658 = H.VAN WIJNEN B.V.;\n1659 = ING CAO;\n166 = VERBRUGGE TERNEUZEN TERMINALS B.V.;\n1664 = NEDTRAIN;\n1668 = PRAXIS GROEP;\n1669 = PRAXIS HOGER PERSONEEL;\n1671 = THERMPHOS (VH THERMPHOS INTERNATIONAL BV);\n1672 = NS VASTGOED;\n1674 = SPF BEHEER BV;\n1676 = TRANSPORTMAATSCHAPPIJ SCHEFFER B.V.;\n1678 = FRISIA ZOUT BV;\n1681 = FNV-ORGANISATIES, WERKGEVERSVERENIGING;\n1683 = COSCO SHIPPING LINES(NETHERLANDS) BV EN CROSS-OCEAN BV;\n1685 = TIBBETT & BRITTEN B.V.;\n1688 = TCG BV EN DE AAN HAAR GELIEERDE VENNOOTSCHAPPEN;\n169 = WOLTERS KLUWER NEDERLAND;\n1691 = AVIA PARTNER;\n1694 = AFA POLYTEK;\n1695 = MONSTERNEMERS BIJ DE MELKPRODUCTIEREGISTRATIE IN N;\n1696 = STICHTING METRIUM ONDERWIJSDIENSTVERLENING CAO (VH DCO NOORD- EN OOST NL);\n1697 = ALGEMENE ONDERWIJSBOND - FNV PERSONEEL;\n1699 = SNT NEDERLAND;\n170 = FOKUS EXPLOITATIE STICHTING;\n1700 = AMVEST MANAGEMENT B.V.;\n1703 = AV FACILITAIR BEDRIJF V/H CINEVIDEOGROEP EN CAMCO;\n1704 = SHB ROTTERDAM CAO ( VH SAMENWERKENDE HAVENBEDRIJVEN, OPERATIONELE WERKNE);\n1707 = PRISMANT;\n1708 = MAETIS ARBO;\n1709 = TATA STEEL;\n171 = ORSIMA;\n1714 = ARDAGH GLASS BENELUX;\n1715 = ENERGIE EN NUTSBEDRIJVEN SECTOR-CAO DISTRIBUTIE;\n1716 = CLEARWATER CREW BV;\n1719 = ITS CALEB BRETT B.V. KANTOORPERSONEEL;\n1722 = ENERGIE EN NUTSBEDRIJVEN SECTOR-CAO ADVIES;\n1723 = BAYER MATERIALSCIENCE B.V.;\n1725 = COMBISERVICES B.V.;\n1730 = DR. OETKER NEDERLAND BV;\n1731 = REMPLACANTEN NEDERLANDSE ORKESTEN;\n1732 = O-I NETHERLANDS BV EN O-I EUROPEAN GROUP BV;\n1735 = MULTIFUNCTIONELE SPORT EN FITNESSCENTRA;\n1737 = STICHTING OMROEP MUZIEK COLLECTIEVE ARBEIDSOVEREENKOMST;\n1739 = PAYROLL SERVICES B.V. CAO II;\n174 = SECURITAS;\n1745 = P EN O NORTH SEA FERRIES ZEEVAREND PERSONEEL;\n1747 = LANDELIJKE ONDERWIJSVERZORGINGSINSTELLINGEN;\n1752 = VERPLEEG- EN VERZORGINGSHUIZEN ARBEID EN GEZONDHEID;\n1755 = HEMA HOGER PERSONEEL;\n1756 = LYPACK B.V.;\n1759 = EECV (ERTSOVERSLAGBEDRIJF);\n1762 = VOPAK CHEMICAL TANKERS SERVICES B.V.;\n1763 = AVERY DENNISON MATERIALS NEDERLAND B.V.;\n1764 = TEIJIN TWARON B.V. ADDENDUM DELFZIJL;\n1765 = TEIJIN ARAMID;\n1766 = TEIJIN ARAMID CAO-II (VH TEIJIN TWARON CAO-II);\n1769 = ALLIANCE HEALTHCARE B.V. (V/H/ INTERPHARM B.V.);\n1771 = INTERNATIONAL SALES PROMOTION EN HOSPITALITY SERVICES;\n1772 = LWB EINDHOVEN B.V.;\n1774 = TANDARTSASSISTENTEN;\n1777 = LARCOM DIENSTEN B.V.;\n178 = JAARBEURS VERENIGING KONINKLIJKE NEDERLANDSE;\n1783 = STENA LINE STEVEDORING B.V.;\n1787 = VILLEROY & BOCH WELLNESS B.V.;\n1788 = ABAB GROEP B.V.;\n1789 = STICHTING DYADE DIENSTVERLENING;\n179 = TALENS, KONINKLIJKE I;\n1792 = JUMBO CREW SERVICES B.V.;\n18 = MOSA, KONINKLIJKE;\n1806 = VERONICA;\n1809 = (ASSISTENT-) SCHEIDSRECHTERS BETAALD VOETBAL;\n1812 = ORBIS B.V. STICHTING;\n1813 = VOPAK NEDERLAND (VH VOPAK TANKOPSLAG NEDERLAND);\n1814 = Holland Media Groep S.A. (vervallen);\n1815 = TARBIT TANKERS SERVICES B.V. (VH THEODORA TANKER SERVICES B.V.);\n182 = HORECA- EN AANVERWANTE BEDRIJF;\n1821 = SHIPPING & SIGNALLING SERVICES N.V.;\n1827 = BORE NL BRANCHE (BORE LTD) ( VH BORE SHIPOWNERS B.V.);\n1828 = VPK PACKAGING B.V.;\n1829 = SEABREX ROTTERDAM B.V.;\n183 = CURVER B.V. V/H CURVER RUBBERMAID;\n1838 = HUTCHISON PORTS DELTA II;\n184 = CURTEC NEDERLAND;\n1840 = KATWIJK CHEMIE B.V.;\n1841 = BLOEMBOLLEN, GROOTHANDEL IN-;\n1848 = CURIUM NETHERLANDS B.V.;\n1849 = UITVOERINGSINSTITUUT WERKNEMERSVERZEKERINGEN (UWV);\n185 = DSM GIST SERVICES B.V. V/H GISTBROCADES;\n1852 = SGS NEDERLAND B.V. BUSINESS LINE OGC VOOR HET BUITENDIENST- EN LABORATORIUMPERSONEEL;\n1854 = PFIZER GLOBAL MANUFACTURING (PGM) WEESP ( VH FORT DODGE ANIMAL HEALTH);\n1855 = KLIQ;\n1856 = KIJKSHOP BV;\n1858 = FLEXTRONICS INTERNATIONAL EUROPE B.V.;\n1861 = SCHOUWBURGCOMPLEX GOUDA, STICHTING;\n1869 = GLASTUINBOUW;\n187 = BOS- EN NATUUR RAAM-CAO;\n1873 = INSTITUUT SCHOEVERS B.V.;\n1878 = ONS MIDDELBAAR ONDERWIJS;\n1879 = IMPERIAL TOBACCO NEDERLAND;\n1881 = ENERGIE EN NUTSBEDRIJVEN SECTOR CAO-PRODUKTIE;\n1885 = UNIVERSAL MUSIC B.V.;\n1886 = ROTTERDAM SHORTSEA TERMINALS BV (RST);\n1887 = GEZAGVERVOERDERS RECHTSPOSITIEREGELING;\n1888 = DFDS SEAWAYS B.V.;\n1889 = APOTEX NEDERLAND B.V.;\n1893 = ARBODUO BV;\n1894 = ROLL-ON-ROLL-OFF BEDRIJVEN;\n1895 = SMURFIT WESTROCK PARENCO;\n1896 = ONDERTITELVERTALING (FREELANCE);\n1897 = VOLKER WESSELS TELECOM B.V. (VH VOLKER WESSELS NETWERK BOUW B.V.);\n190 = DRANKINDUSTRIE EN GROOTHANDEL IN DRANKEN;\n1900 = ASR NEDERLAND N.V. CAO WINSTDELING (VH FORTIS VERZEKERINGEN NEDERLAND N.V. WINSTDELINGSREGELING);\n1901 = FORTIS VERZEKERINGEN NEDERLAND N.V. KEUZESYSTEEM ARBEIDSDUUR EN ARBEIDSVOORWAARDEN;\n1902 = ASR NEDERLAND N.V. FUNCTIE-INDELING EN BELONINGSSTRUCTUUR BINNENDIENST;\n1905 = STRUIK HOLDING N.V. EN STRUIK FOODS B.V.;\n1907 = VHP SECURITY PAPER B.V.;\n1910 = VINAMUL POLYMERS;\n1912 = SYNTHOMER MIDDELBURG B.V.;\n1915 = DHL LOGISTICS NEDERLAND;\n1918 = ESSITY OPERATIONS GENNEP B.V.;\n1926 = PGI NONWOVENS CAO;\n1927 = RDW;\n1928 = PGI NONWOVENS CAO II;\n1929 = A. SCHULMAN 'S-GRAVENDEEL BV;\n193 = SENZORA;\n1931 = PLASTIROL BV;\n1932 = MAJA STUWADOORSGROEP B.V.;\n1936 = ALGEMENE VERPAKKINGS INDUSTRIE B.V.;\n1941 = MAXEDA IT SERVICES B.V. ( VH VENDEX KBB IT SERVICES B.V.);\n1944 = OPEN TEELTEN;\n1945 = PRODUCTIEGERICHTE DIERHOUDERIJ;\n1951 = GENPACT NL BV;\n1953 = TERSCHELLINGER STOOMBOOT MAATSCHAPPIJ;\n1954 = NOORDT, VAN DER, PERSONEELSDIENSTEN;\n1955 = NOORDT, VAN DER, PAYROLLING BASIC;\n1956 = NOORDT, VAN DER, PROJECT PAYROLLING;\n1957 = NOORDT, VAN DER, PAYROLLING PLUS;\n1959 = KONINKLIJK CONCERTGEBOUWORKEST VOOR STAFLEDEN;\n1964 = PLEASE BV;\n1967 = BASELL BENELUX;\n197 = SUIKERWERK- EN CHOCOLADEVERWERKENDE INDUSTRIE;\n1971 = SNV EU EXPAT ( VH SNV EU EXPAT 2003);\n1973 = SNV NL;\n1974 = UNIE VAN DE REDDING- EN SLEEPDIENST NEDERLAND BV;\n1976 = CHAMPIGNONKWEKERIJ CHAMPIBELLE BV;\n1977 = VROON OFFSHORE SERVICES B.V.;\n1980 = MENKEN DRINKS BV ONDERDEEL VAN REFRESCO BENELUX BV;\n1983 = HILTON MEATS ZAANDAM B.V.;\n1988 = CHC CAO VOOR GRONDPERSONEEL;\n1989 = DNB CAO;\n199 = VLAKGLAS, GLASBEWERKINGS- EN GLAZENIERSBEDRIJF, GROOTHANDEL IN-;\n1990 = CHC HELICOPTERS NETHERLANDS B.V. - OVN (VH CHC AIRWAYS B.V. CAO (OVN));\n1991 = SCHOENTECHNIEK;\n1993 = EWAGRO BV EN AGERLAND TE VEGHEL;\n1994 = HEUVELMAN SOUND EN VISION B.V.;\n1995 = CENTRUM VOOR WERK EN INKOMEN (CWI);\n1998 = FACTOR TRAININGSACTEURS BV;\n20 = GOEDERENVERVOER NEDERLAND;\n2001 = ABBOT HEALTHCARE PRODUCTS B.V.;\n2002 = KUYICHI INTERNATIONAL BV;\n2003 = BEDRIJFSPROTOCOL DISTRIBUTIE ESSENT N.V.;\n2005 = VOORTGEZET ONDERWIJS KATHOLIEK ONDERWIJS VOLENDAM, STICHTING;\n2008 = DYKA AANVULLENDE AFSPRAKEN ARBEIDSVOORWAARDEN;\n2011 = PEKO BEHEER B.V.;\n2018 = PUBLIEKRECHTELIJKE BEDRIJFSORGANISATIE;\n2019 = LEKKERLAND VENDING SERVICES B.V. (V/H/ MAAS SERVICES B.V.);\n2020 = CNV BEDRIJVENBOND ( VH CAO-CNV);\n2023 = VGSB-SCHOLEN;\n2024 = LOODSWEZEN B.V. NEDERLANDS;\n2025 = POST NL CAO VOOR POSTBEZORGERS;\n2026 = EXEL FREIGHT MANAGEMENT (NETHERLANDS) B.V.;\n2027 = KISUMA CHEMICALS B.V.;\n2028 = SABIC LIMBURG B.V.;\n2029 = OLLY S HOLDING BV, OLLY S BV, OILILY STORES BV;\n2034 = PERSONEEL VAN DE ST-JOZEFSCHOOL VOOR MAVO;\n2036 = BIOMERIEUX BOXTEL;\n2043 = BLUE AMIGO WATERBORNE PUBLIC TRANSPORT NETHERLANDS B.V.;\n2044 = HOMESHOPPING BEDRIJVEN (VH VERENIGING POSTORDERSPECIFIEKE BEDRIJVEN);\n2045 = DELTA LLOYD GROEP;\n2046 = CNV PUBLIEKE ZAAK;\n2047 = COMPAGNIE DE MANUTENTION ROTTERDAM B.V. (CDMR);\n2048 = MILITAIR-HISTORISCH MUSEUM, STICHTING REGLEMENT ARBEIDSVOORWAARDEN;\n2050 = MULTIMODAAL VERVOER;\n2053 = FA DE HOOP WEGTRANSPORT;\n2054 = ADO BV ALMERE DISTRIBUTIE EN OPSLAG;\n2055 = GRANDO LOGISTICS;\n2056 = DE JONG GAMEREN B.V.;\n2057 = B.A.M. VERMEER TRANSPORT B.V.;\n2058 = GETRU KOELTRANSPORT B.V.;\n2059 = VAN VLASTUIN AGRO B.V.;\n206 = ZIEGLER;\n2060 = BENELUX COURIERS B.V.;\n2061 = W. KUIJF TRANSPORT B.V.;\n2062 = VAN WIJNGEN TRANSPORT B.V.;\n2063 = TRANSPORT EN LOGISTICTS P. V. D. MAAT B.V.;\n2065 = PS PAKKET EN TRANSPORT BV;\n2066 = SKYLINE EXPRESS;\n2067 = STEIJNS TRANSPORT BV;\n2068 = NIGHTFREIGHT BENELUX B.V.;\n2069 = TRAMO N.V.;\n2070 = FACILITAIRE CONTACTCENTERS;\n2071 = SAINT-GOBAIN CONSTRUCTION PRODUCTS NEDERLAND B.V.;\n2072 = ENERGIE NUTSBEDRIJF N.V. HAARLEMMERMEER;\n2075 = VAN WANROOY SNELTRANSPORT B.V.;\n2076 = HTS TRANSPORT CV;\n2077 = ENERGIE EN NUTSBEDRIJVEN WESTLAND ENERGIE BEHEER B.V.;\n2078 = ENERGIE EN NUTSBEDRIJVEN INTERGAS B.V.;\n2079 = ENERGIE EN NUTSBEDRIJVEN ONS GROEP;\n2081 = ETOS DROGISTERIJEN;\n2085 = POSTMA INTERNATIONAAL TRANSPORT BV;\n2086 = KAATEE TRANSPORT B.V.;\n2087 = KALE BV;\n2089 = STICHTING CARMELCOLLEGE;\n209 = CODI INTERNATIONAL;\n2090 = DELE XL B.V;\n2092 = ZON;\n2093 = YOUNGS INTERNATIONAL TRANSPORTB.V. F.P.;\n2094 = SCANDIXPRESS B.V.;\n2095 = TILBURG HOLDING B.V., VAN;\n2096 = EURO COURIER, DE;\n2097 = TRANSCOMP V.O.F.;\n2099 = AIR LIQUIDE INDUSTRIE B.V. (VH AIR LIQUIDE - EINDHOVEN);\n21 = BEROEPSGOEDERENVERVOER OVER DE WEG;\n2105 = VAN UDEN STEVEDORING B.V.;\n2106 = CHANE TERMINALS;\n2108 = GREENCORE V/H HAZLEWOOD;\n2113 = WIAL;\n2114 = VERENIGDE BEDRIJVEN VANDERVALK+DE GROOT B.V.;\n2123 = VOEDINGSCENTRUM NEDERLAND STICHTING;\n2124 = ONSTREAM PROJECT SERVICES B.V.;\n2126 = DUIZENDPOOT STICHTING;\n2131 = PQ NEDERLAND;\n2133 = Pensioen- & Verzekeringskamer Stichting (vervallen);\n2136 = VEROCOG;\n214 = BIBLIOTHEKEN, OPENBARE;\n2140 = HEXION VAD B.V.;\n2141 = HAVENBEDRIJF ROTTERDAM;\n2143 = NEDERLANDSE PODIA;\n2146 = BRINFLEX B.V.;\n2154 = INTERPOLIS MENS & WERK BEDRIJFSZORG N.V.;\n2155 = DEKRA RAIL BV;\n2158 = NEDERLANDS KAMERKOOR;\n216 = PPG COATINGS NEDERLAND B.V.;\n2161 = PRORAIL;\n2164 = PURAC GLUCOCHEM B.V.;\n2165 = SIGNBEDRIJVEN;\n2167 = M&S CAO HP;\n2169 = TOEZICHTHOUDERS;\n2173 = BURGER NEDERLAND;\n2174 = LUCENT TECHNOLOGIES NEDERLAND B.V.;\n2175 = STICHTING CLINICLOWNS NEDERLAND;\n2176 = BORDEN CHEMICAL HOLLAND;\n218 = BESLOTEN BUSVERVOER;\n2180 = SFB GROEP;\n2181 = AZL N.V.;\n2184 = SIEMENS VDO TRADING B.V.;\n219 = GEZONDHEIDSCENTRA;\n2192 = BURO WITTENBURG BV;\n2194 = INCLUSIEF GROEP NV;\n2195 = HTC BV;\n22 = BASF NEDERLAND;\n2200 = PANTEIA;\n221 = ETEX BUILDING PERFORMANCE;\n222 = QUEST INTERNATIONAL NEDERLAND;\n224 = CANON CAO;\n225 = VOPAK BARGING EUROPE;\n2252 = VISVERWERKENDE INDUSTRIE EN HANDEL;\n2260 = ORION TAXI BV;\n2262 = DOCKWISE BV;\n2266 = VISDETAILHANDEL;\n2269 = BERGINGS- EN TRANSPORTMIJ (BTS);\n227 = WEEFSELKWEEKSECTOR;\n2272 = GELUIDS- EN BEELDDRAGERS SAMENWERKENDE WINKELS EN KETENS;\n2273 = KLAPWIJK/RAPIDE HAVEN- EN TRANSPORTBEDRIJF B.V.;\n2274 = MINI MOVE MAATSCHAPPIJ BV;\n2275 = LOGISTIEKE MEESTERS BV;\n2276 = TENTOO COLLECTIVE FREELANCE & FLEX B.V.;\n228 = JOURNALISTEN BIJ ASSOCIATED PRESS;\n2280 = PROFCORE DETACHEREN;\n2284 = OORDT PORTIONPACK B.V. VAN;\n2285 = VANDIJK CAO (VH THE LEARNING NETWORK);\n229 = Gelatin Delft (vervallen);\n2291 = POPPINK (CAO POPPINK);\n2295 = FORTIS VERZEKERINGEN NEDERLAND N.V. BELONINGSREGELING BUITENDIENST;\n2296 = VAN DER NOORDT PAYROLLING;\n2297 = M EN T TECHNISCH INSTALLATIEBEDRIJF;\n2299 = REFORMATORISCH PRIMAIR ONDERWIJS;\n23 = ICL FERTILIZER EUROPE BV;\n2301 = FORTIS VERZEKERINGEN NEDERLAND N.V BELONINGSREGELING MANAGEMENT BUITENDIENST;\n2302 = DSM PHARMA CHEMICALS VENLO B.V.;\n2304 = KROPFELD TRANSPORT EMMEN;\n2305 = SYSTEEM DISTRIBUTIE GROEP NEDERLAND BV;\n2306 = THE NUANCE GROUP NETHERLANDS BV;\n2307 = VERMO;\n2308 = INTERGOM PERSONEELSVOORZIENING;\n2310 = NEDERLANDSE RODE KRUIS;\n2311 = DIERENTEHUIS DEN HELDER;\n2314 = REIS & BUS BROKER BV;\n2315 = ELBO TOURS BV;\n2316 = DIVERSEY NEDERLAND;\n2318 = NEDERLANDSE ALGEMENE KEURINGSDIENST VOOR ZAAIGOED EN POOTGROND V LANDBOUWGEWASSEN (NAK);\n2321 = DIERENASIELEN;\n2323 = APM TERMINALS ROTTERDAM B.V. VOOR TERMINAL OPERATORS, GATE-INSPECTORS EN MECHANICS;\n2324 = ATRADIUS NEDERLAND;\n2328 = INTERNATIONAAL TRANSPORTBEDRIJF DE HAAN VROOMSHOOP BV;\n2329 = W. SLEEGERS INTERNATIONAAL VEETRANSPORT BV EN W. SLEEGERS VEETRANSPORT BV;\n233 = HOUTHANDEL;\n2330 = MOSTERT & VAN DE WEG BV;\n2332 = VERBRUGGE ZEELAND TERMINALS BV;\n2334 = ACTIEV;\n234 = JEUGDZORG;\n2341 = THE PHONE HOUSE;\n2343 = A. VOGEL B.V.;\n2347 = HFP OFFSHORE;\n2348 = HANDELSONDERNEMING MIN BV;\n2350 = RADIO HOLLAND NETHERLANDS;\n2353 = MARKO B.V.;\n2354 = NAUTISCHE CAO SWETS ODV MARITIEM;\n2359 = DOCMORRIS NV;\n2362 = ADIDAS LOGISTIC SERVICES MOERDIJK MAASVLAKTE;\n2365 = AVEBE HOGER PERSONEEL;\n2368 = BUNGE LODERS CROKLAAN B.V.;\n2369 = CAMPINA NEDERLAND HOLDING B.V. inzake overeenkomst inzet van arbeid binnen holding;\n237 = SAPPI NETHERLANDS B.V.;\n2370 = UNIQ;\n2378 = AC-S AGERLAND BV;\n2379 = RANN B.V.;\n2380 = SMARTHANDLING;\n2384 = COTRANS TRANSPORT BV;\n2385 = MAECON GROEP B.V.;\n2389 = SONNEBORN REFINED PRODUCTS B.V.;\n239 = AVANTOR PERFORMANCE MATERIALS BV;\n24 = STAHL HOLLAND;\n2403 = VLISSINGSE BOOTLIEDENWACHT B.V.;\n2404 = CIZ;\n2407 = ELECTRABEL NEDERLAND SALES B.V.;\n2408 = TECHNOTEX INDUSTRIAL SUPPLY B.V.;\n241 = GLASFABRIEK \"SAS VAN GENT\";\n2411 = NORTH REFINERY REFINING AND TRADING HOLLAND NV;\n2414 = FICO MOLDING SYSTEMS B.V. EN FICO TOOLING B.V.;\n2416 = THYSSENKRUPP VEERHAVEN B.V. BISON;\n2417 = HONIG MERKARTIKELEN B.V.;\n242 = SCHIPHOL NEDERLAND B.V.;\n2424 = NUFARM B.V.;\n2425 = BRANCHE KINDEROPVANG NEDERLAND;\n2426 = ROYAL LEERDAM;\n243 = HOVENIERSBEDRIJF IN NEDERLAND;\n2431 = KIWA NV ADVIES CAO;\n2435 = SAMCO AIRCRAFT MAINTENANCE B.V.;\n2437 = KRINGLOOP NEDERLAND;\n2439 = ARBEIDSBEMIDDELING BUITENLANDSE WERKNEMERS IN NEDERLAND;\n2440 = CAMPBELLS NETHERLANDS BV;\n2442 = SMINK COLLECTIEVE ARBEIDSOVEREENKOMST;\n2443 = ALTRO VIA LOGIN KOERIERBEDRIJVEN;\n2444 = ALTRO VIA LOGIN TRANSPORTONDERNEMINGEN;\n2449 = DPA PROFESSIONALS;\n245 = TUINZAADBEDRIJVEN;\n2451 = DAGRECREATIE;\n2455 = OSG CAO (VH ONDERWIJS SERVICE GROEP);\n2457 = NOZEMA SERVICES N.V.;\n2458 = BERKEL MILIEU N.V.;\n2462 = ROC FRIESE POORT STICHTING CENTRUM VAKOPLEIDING;\n2465 = DUTCH SPACE CONVENANT VAN WERK NAAR WERK;\n2467 = BOERTIEN TRAINING;\n2468 = SBOH CAO;\n247 = TRANSAVIA CABINEPERSONEEL;\n2474 = UNIROBE MEEUS GROEP CAO;\n2479 = ATAG ETNA PELGRIM HOME PRODUCTS B.V.;\n2488 = COMPAXO;\n2489 = AMBULANCEZORG VERENIGING WERKGEVERS;\n249 = DAGBLADJOURNALISTEN;\n2491 = ROKADE;\n2492 = PENO NEDLLOYD KANTOORPERSONEEL;\n2493 = GOLF BRANCHE;\n2496 = ETNA VENDING TECHNOLOGIES B.V.;\n2499 = SUIKER UNIE 1;\n2500 = SUIKER UNIE II;\n2502 = CLA T-SYSTEMS NETHERLANDS;\n2509 = ARKEMA ROTTERDAM B.V.;\n2511 = VTM QUALITY SERVICES BV.;\n2513 = KLM FLIGHT ACADEMY TE EELDE COLLECTIEVE ARBEIDSOVEREENKOMST;\n2515 = AJAX BRANDBEVEILIGING B.V.;\n2519 = EPZ CAO;\n2520 = HUISARTS IN DIENST BIJ EEN HUISARTS HIDHA;\n2527 = RAET;\n253 = HOUTVERWERKENDE INDUSTRIE;\n2534 = NV. WESTERSCHELDETUNNEL;\n2535 = MODE-, INTERIEUR-, TAPIJT- EN TEXTIELINDUSTRIE;\n2538 = CELANESE PRODUCTION NETHERLANDS BV;\n2539 = NOORDELIJKE ACCOUNTANTSUNIE;\n254 = AFBOUW;\n2540 = MEDIA EXPRESSE NEDERLAND B.V.;\n2541 = KENNAMETAL ENGINEERED PRODUCTS B.V.;\n2545 = ERICSSON TELECOMMUNICATIE B.V.;\n2549 = STENA LINE KANTOORPERSONEEL;\n2551 = SANQUIN CAO;\n2553 = RTL NEDERLAND;\n2554 = OVERSLAGBEDRIJF (EMO) B.V. OPERATIONEEL;\n2555 = TWENTE PERSONENVERVOER;\n2557 = HUISVESTING EN SHARED SERVICES ONDERWIJSBOND CNV CNV BEDRIJVENB...;\n2559 = TOURINGCAR- EN TAXIBEDRIJF VAN GERWEN B.V.;\n2560 = ZTTC BV PERSONENVERVOER;\n2561 = JOJO TOURS BV;\n2566 = VAN SILLEVOLDT RIJST B.V.;\n257 = WAGENBORG PASSAGIERSDIENSTEN;\n2571 = KAPPERSBEDRIJF AGESLOTEN TUSSEN PARTIJEN FUSION EN VPP CMHF;\n2577 = DENIM AIR B.V.;\n2580 = STICHTING TONEELGEZELSCHAP MONK;\n2584 = ABALCO SERVICE BV;\n2586 = NORFOLKLINE BEAMBTEN;\n2587 = RATIOPHARM BV;\n259 = TRIOWORLD APELDOORN B.V.;\n2594 = JOHN T. ESSBERGER B.V. (VH BROERE SHIPPING SERVICES BV);\n26 = VLEESSECTOR;\n2600 = OBD CAO 2004;\n2601 = DSM BIOLOGICS COMPANY B.V.;\n2610 = EQUENSWORLDLINE CAO;\n2611 = HUNTSMAN HOLLAND B.V.;\n2612 = STICHTING NATIONALE REISOPERA;\n2617 = STICHTING STEDELIJK MUSEUM AMSTERDAM SSMA;\n2618 = FREUDENBERG PERFORMANCE MATERIALS B.V.;\n2621 = HAL BEHEER B.V.;\n2624 = COLBOND B.V. CAO 2;\n263 = ROCKWOOL CAO;\n2630 = AMBULANTE DETAILHANDEL;\n2642 = FREMANTLE MEDIA NETHERLANDS BV;\n2645 = VESTEDA GROEP B.V.;\n2647 = CHRISTELIJK NATIONAAL VAKVERBOND;\n2648 = UW HOLDING B.V.;\n265 = TRANSAVIA AIRLINES VLIEGERS;\n2651 = KPN CONTACT EN SNT NIEUW CAO;\n266 = NIZO FOOD RESEARCH;\n2668 = STICHTING GREENPEACE COUNCIL;\n267 = DIERENPARKEN NEDERLAND;\n2672 = ALDIPRESS;\n2674 = DIERENARTSPRAKTIJKEN (DIERENARTSASSISTENTEN);\n2678 = NEDERLANDS INSTITUUT VOOR BEELD EN GELUID;\n2679 = VOESTALPINE POLYNORM B.V.;\n268 = GRAFISCHE BEDRIJFSFONDSEN, STICHTING;\n2683 = ABN AMRO HYPOTHEKEN GROEP B.V.;\n2687 = HOME BASE SUPPORT APELDOORN (VH KONINKLIJKE NEDERLANDSE MILITAIRE BOND PRO REGELING);\n2688 = FERRO (HOLLAND) BV (UDEN);\n269 = SYNPRODO PRODUKTIE B.V.;\n2693 = PAYROLL ONDERNEMINGEN - CAO VOOR MEDEWERKERS VAN;\n2694 = EUROLINES NEDERLAND B.V.;\n27 = MORTEL- EN MORTELTRANSPORTONDERNEMINGEN;\n2700 = ALPAS HENDRION B.V.;\n2702 = CHC HELICOPTERS NETHERLANDS - VNV (VH CHC AIRWAYS B.V.);\n271 = MARTINAIR HOLLAND GRONDPERSONEEL;\n2711 = CED HOLDING EN HAAR WERKMAATSCHAPPIJEN;\n2719 = NOVIO N.V. cao;\n272 = MAERSK SHIP MANAGEMENT BV REGLEMENT OFFICIEREN EN SCHEEPSGEZELLEN;\n2722 = RUBBER RESOURCES B.V.;\n2724 = GRONINGEN AIRPORT EELDE NV.;\n2731 = DS SMITH PACKAGING NETHERLANDS BV;\n2736 = MENZIES AVIATION THE NETHERLANDS B.V.;\n2737 = SERVISAIR AMSTERDAM B.V.;\n2742 = UITZENDKRACHTEN NVUB;\n2745 = F EN C NETHERLANDS B.V.;\n2746 = DAGATTRACTIEBEDRIJF CAO;\n275 = XEROX MANUFACTURING NEDERLAND B.V.;\n2750 = VAROVA B.V.;\n2754 = NV. AFVALZORG TOELICHTINGSPROTOCOL CAO AFVAL EN MILIEU;\n2756 = GELDNET SERVICES B.V. 2002-2004;\n2761 = SMURFIT KAPPA HERMES N.V.;\n2765 = GUNVOR ENERGY ROTTERDAM B.V.;\n2767 = SAXION HOGESCHOLEN;\n2768 = INTERTEK POLYCHEMLAB;\n2769 = ESKA BV;\n2772 = UNIVERSAL SODEXHO THE NETHERLANDS B.V.;\n2773 = DIRKZWAGER'S COASTAL AND DEEP SEA PILOTAGE B.V.;\n2775 = SMIT BEVOORRADINGSVAART;\n2776 = SMIT ZEESLEEPVAART;\n2777 = VEEM EN FACTORGROEP;\n2778 = STATE STREET BANK EUROPE LIMITED AMSTERDAM BRANCHE (VH SSBT);\n2780 = IPC GROENE RUIMTE B.V. 2007-2008;\n2787 = UNIPORT MULTIPURPOSE TERMINALS B.V.;\n279 = GEMAKSVOEDINGINDUSTRIE;\n2790 = STICHTING PTC PLUS;\n2791 = SAIT B.V. (VH SAIT ZENITEL NETHERLANDS B.V.);\n2793 = VERVOERSTEAM B.V. LOSSER;\n2797 = VATTENFALL BEDRIJFS-CAO;\n2799 = AERES GROEP;\n28 = AUDAX;\n2804 = STATER N.V.;\n2811 = HORTICOOP B.V.;\n2814 = SCHIPHOL AIRPORT RETAIL BV;\n2816 = PAPYRUS B.V.;\n2820 = SVITZER OCEAN TOWAGE CAO;\n2821 = ZEEHAVENBEDRIJF DORDRECHT B.V.;\n2822 = DHL EXPRESS NEDERLAND;\n2825 = BNR NIEUWSRADIO;\n2833 = PRENATAL;\n2841 = RET NV CAO;\n2842 = GBI HOLDING BV;\n2847 = INTERTASTE B.V.;\n2848 = CELAVITA B.V.;\n2851 = ARDENT MARITIME NETHERLANDS BV;\n2852 = ARDYN BV;\n2854 = GROUP 4 SECURICOR AVIATION SECURITY B.V.;\n2855 = ARGONAUT ADVIES;\n2856 = PROMELCA B.V.;\n2857 = DOORWERK;\n2859 = INVISTA POLYESTER B.V.;\n2861 = NXP CAO;\n2862 = NXP CAO-A;\n2863 = KEMIRA POLYMERS MANUFACTURING B.V. EN KEMIRA WATER SOLUTIONS B....;\n2864 = MAERSK LINE NETHERLANDS (VH MAERSK BENELUX B.V.);\n2865 = ASR NEDERLAND NV FUNCTIE-INDELING EN BELONINGSSTRUCTUUR BUITENDIENST;\n2866 = RAILINFRA OPLEIDINGEN;\n2867 = ESHA GROUP B.V.;\n2868 = ORGANON BIOSCIENCES NEDERLAND HOGER PERSONEEL;\n2870 = MAXEDA HOLDING;\n2872 = ONDERWIJSADVIESBUREAUS CAO;\n2875 = RIXONA B.V.;\n2878 = ENERGIE CAO;\n2880 = GB PLANGE THE NETHERLANDS B.V.;\n2881 = GVB;\n2884 = KERRY (NL) B.V.;\n2892 = KPN CONTACT;\n2894 = WEBHELP NEDERLAND CAO;\n2895 = NEP BROADCAST SERVICES B.V. EN NEP PROGRAPHICS B.V. (VH DUTCHVIEW BV CAO);\n2896 = QLIP N.V.;\n2898 = WERKGEVERSVERENIGING ADVIESORGANISATIE VOOR ONDERWIJS EN JEUGD;\n29 = DR. OETKER KOOG B.V. ( VOORHEEN HONIG MERKARTIKELEN);\n2900 = P EN O NORTH SEA FERRIES OPERATIONEEL PERSONEEL;\n2903 = DE DIENSTEN CAO;\n2907 = MARINE HARVEST STERK B.V.;\n2908 = 8TIENK SECTOR ONDERWIJS EN OVERHEID B.V.;\n2910 = BELLEVU;\n2911 = LASSIE B.V.;\n2914 = HOCHWALD NEDERLAND B.V.;\n2917 = DRAKA POLYMER FILMS (VH ALKOR DRAKA B.V.);\n2918 = COOPERATIEVE FRUITMASTERS GROEP U.A.;\n2919 = SMIT HARBOUR TOWAGE ROTTERDAM B.V.;\n2921 = BIO MCN B.V.;\n2928 = ALLNEX NETHERLANDS B.V.;\n2931 = ENECO BEDRIJFSPROTOCOL 2008;\n2932 = KETJEN NETHERLANDS;\n2933 = GERESERVEERD;\n2934 = STICHTING ONDERSTEUNING TWEEDE KAMERFRACTIE PARTIJ V.D. ARBEID;\n2935 = TYSON FOODS OOSTERWOLDE B.V.;\n2936 = GERESERVEERD;\n2937 = GERESERVEERD;\n2938 = AB MAURI;\n2939 = SCA LOGISTICS BV (VH INTERFOREST TERMINAL ROTTERDAM B.V.);\n2940 = HAAGSE HOGESCHOOL UITVOERINGSREGELING RESULTAAT EN ONTWIKKELING;\n2941 = GERESERVEERD;\n2942 = SMART PACKAGING SOLUTIONS;\n2943 = GERESERVEERD;\n2944 = GERESERVEERD;\n2945 = RGV Holding B.V.;\n2946 = GERESERVEERD;\n2947 = CROW;\n2948 = VERPLEEG- VERZORGINGSHUIZEN EN THUISZORG EN JEUGDGEZONDHEIDSZORG;\n2949 = GERESERVEERD;\n2950 = GERESERVEERD;\n2951 = GERESERVEERD;\n2952 = GERESERVEERD;\n2953 = GERESERVEERD;\n2954 = RANDSTAD GROEP NEDERLAND AKKOORD BEEINDIGING HERPLAATSINGSKADER 21 APRIL 2009;\n2955 = GERESERVEERD;\n2956 = GERESERVEERD;\n2957 = GERESERVEERD;\n2958 = LONGFONDS EN PATIËNTENORGANISATIE STICHTING CAO;\n2959 = GERESERVEERD;\n2960 = GERESERVEERD;\n2961 = GERESERVEERD;\n2962 = DUYVIS PRODUCTIE BV;\n2963 = GERESERVEERD;\n2964 = GERESERVEERD;\n2965 = GERESERVEERD;\n2966 = GERESERVEERD;\n2967 = GERESERVEERD;\n2968 = GERESERVEERD;\n2969 = GASTERRA;\n2970 = GERESERVEERD;\n2971 = GERESERVEERD;\n2972 = MOOG BV (VH MOOG FCS);\n2973 = GERESERVEERD;\n2974 = GERESERVEERD;\n2975 = GERESERVEERD;\n2976 = GERESERVEERD;\n2977 = GERESERVEERD;\n2978 = DUTCH COCOA B.V.;\n2979 = GERESERVEERD;\n2980 = GERESERVEERD;\n2981 = GERESERVEERD;\n2982 = CEVA LOGISTICS NEDERLAND;\n2983 = GERESERVEERD;\n2984 = GERESERVEERD;\n2985 = GERESERVEERD;\n2986 = GERESERVEERD;\n2987 = GERESERVEERD;\n2988 = AEGON NEDERLAND NV;\n2989 = GERESERVEERD;\n2990 = GERESERVEERD;\n2991 = GERESERVEERD;\n2992 = GERESERVEERD;\n2993 = GERESERVEERD;\n2994 = NEDERLANDSE POPPODIA EN -FESTIVALS;\n2995 = CNV DIENSTENBOND WERKNEMERS IN DIENST VAN;\n2996 = FORTIS CORPORATE INSURANCE;\n2997 = GERESERVEERD;\n2998 = KRAMER TERMINALS SERVICES BV (VH KRAMER GROUP B.V.);\n2999 = RICARDO NEDERLAND BV RICARDO CERTIFICATION BV;\n30 = START (EIGEN PERSONEEL);\n300 = CHEMGAS SHIPPING B.V.;\n3000 = GERESERVEERD;\n3001 = GERESERVEERD;\n3002 = GERESERVEERD;\n3003 = GERESERVEERD;\n3004 = RABO BOUWFONDS;\n3005 = V EN D B.V. CAO (VH VROOM EN DREESMANN B.V.);\n3006 = DS SMITH PACKAGING BARNEVELD BV;\n3007 = GERESERVEERD;\n3008 = GERESERVEERD;\n3009 = CAR B4;\n301 = WELZIJN MAATSCHAPPELIJKE DIENSTVERLENING SOCIAAL WERK;\n3010 = ONDERWIJSBUREAU TWENTE;\n3011 = GERESERVEERD;\n3012 = GERESERVEERD;\n3013 = GERESERVEERD;\n3014 = DISHMAN NETHERLANDS B.V.;\n3015 = ROTTERDAM PORT SERVICES B.V.;\n3016 = EAM WERK B.V.;\n3017 = GERESERVEERD;\n3018 = GERESERVEERD;\n3019 = GERESERVEERD;\n3020 = GERESERVEERD;\n3021 = GERESERVEERD;\n3022 = GERESERVEERD;\n3023 = GERESERVEERD;\n3024 = GERESERVEERD;\n3025 = GERESERVEERD;\n3026 = GERESERVEERD;\n3027 = GERESERVEERD;\n3028 = GERESERVEERD;\n3029 = GERESERVEERD;\n303 = ALBERT HEIJN WINKELMANAGEMENT;\n3030 = GERESERVEERD;\n3031 = GERESERVEERD;\n3032 = GERESERVEERD;\n3033 = GERESERVEERD;\n3034 = GERESERVEERD;\n3035 = GERESERVEERD;\n3036 = GERESERVEERD;\n3037 = GERESERVEERD;\n3038 = GERESERVEERD;\n3039 = GERESERVEERD;\n304 = AHOLD NEDERLAND EN KONINKIJKE AHOLD N.V., VOOR DE MEDEWERKERS VAN KANTOREN VAN;\n3040 = GERESERVEERD;\n3041 = GROOTWINKELBEDRIJVEN IN SCHOENEN VOOR PERSONEEL;\n3042 = ENEXIS BEDRIJFSCAO;\n3043 = GERESERVEERD;\n3044 = GERESERVEERD;\n3045 = GERESERVEERD;\n3046 = GERESERVEERD;\n3047 = GERESERVEERD;\n3048 = GERESERVEERD;\n3049 = GERESERVEERD;\n305 = RPC PACKAGING KERKRADE B.V.;\n3050 = GERESERVEERD;\n3051 = GERESERVEERD;\n3052 = GERESERVEERD;\n3053 = GERESERVEERD;\n3054 = GERESERVEERD;\n3055 = GERESERVEERD;\n3056 = GERESERVEERD;\n3057 = GERESERVEERD;\n3058 = GERESERVEERD;\n3059 = GERESERVEERD;\n306 = PARTICULIER KAASPAKHUIS;\n3060 = GERESERVEERD;\n3061 = GERESERVEERD;\n3062 = GERESERVEERD;\n3063 = GERESERVEERD;\n3064 = GERESERVEERD;\n3065 = LEGERMUSEUM;\n3066 = GERESERVEERD;\n3067 = COSUN BEET COMANY, SENSUS BV EN HOOFDKANTOORORGANISATIE COSUN;\n3068 = GERESERVEERD;\n3069 = GERESERVEERD;\n3070 = GERESERVEERD;\n3071 = GERESERVEERD;\n3072 = SITECH SERVICES B.V.;\n3073 = GERESERVEERD;\n3074 = GERESERVEERD;\n3075 = GERESERVEERD;\n3076 = GERESERVEERD;\n3077 = GERESERVEERD;\n3078 = GERESERVEERD;\n3079 = GERESERVEERD;\n3080 = GERESERVEERD;\n3081 = GERESERVEERD;\n3082 = GERESERVEERD;\n3083 = GERESERVEERD;\n3084 = GERESERVEERD;\n3085 = GERESERVEERD;\n3086 = GERESERVEERD;\n3087 = GERESERVEERD;\n3088 = PROVIMI PETFOOD NL B.V.;\n3089 = GERESERVEERD;\n3090 = GERESERVEERD;\n3091 = GERESERVEERD;\n3092 = GERESERVEERD;\n3093 = GERESERVEERD;\n3094 = GERESERVEERD;\n3095 = GERESERVEERD;\n3096 = ANTERYON CAO;\n3097 = GERESERVEERD;\n3098 = GERESERVEERD;\n3099 = GERESERVEERD;\n31 = BN-INTERNATIONAL;\n310 = MARGARINE- EN SPIJSVETINDUSTRIE;\n3100 = GERESERVEERD;\n3101 = AKZO NOBEL ELOTEX CAO;\n3102 = GERESERVEERD;\n3103 = GERESERVEERD;\n3104 = AKZO NOBEL ALABASTINE;\n3105 = GERESERVEERD;\n3106 = GERESERVEERD;\n3107 = INBEV NEDERLAND N.V. CONVENANT DISTRIBUTIE CENTRUM TE EERSEL;\n3108 = GERESERVEERD;\n3109 = POSTVERSPREIDERS (VH POSTVERSPREIDING);\n3110 = GERESERVEERD;\n3111 = HEXION SPECIALTY CHEMICALS B.V. (MAASTRICHT);\n3112 = GERESERVEERD;\n3113 = GERESERVEERD;\n3114 = GERESERVEERD;\n3115 = GERESERVEERD;\n3116 = GERESERVEERD;\n3117 = LAWTER MAASTRICHT BV;\n3118 = GERESERVEERD;\n3119 = GERESERVEERD;\n3120 = GERESERVEERD;\n3121 = GERESERVEERD;\n3122 = GERESERVEERD;\n3123 = GERESERVEERD;\n3124 = GERESERVEERD;\n3125 = GERESERVEERD;\n3126 = GERESERVEERD;\n3127 = GERESERVEERD;\n3128 = GERESERVEERD;\n3129 = GERESERVEERD;\n313 = PUBLIEKSTIJDSCHRIFTJOURNALISTEN;\n3130 = GERESERVEERD;\n3131 = ICL-IP TERNEUZEN BV;\n3132 = GERESERVEERD;\n3133 = GERESERVEERD;\n3134 = GERESERVEERD;\n3135 = GERESERVEERD;\n3136 = GERESERVEERD;\n3137 = GERESERVEERD;\n3138 = GERESERVEERD;\n3139 = DSV SOLUTIONS B.V.;\n314 = OPINIEWEEKBLADJOURNALISTEN;\n3140 = GERESERVEERD;\n3141 = GERESERVEERD;\n3142 = GERESERVEERD;\n3143 = GERESERVEERD;\n3144 = GERESERVEERD;\n3145 = GERESERVEERD;\n3146 = GERESERVEERD;\n3147 = GERESERVEERD;\n3148 = GERESERVEERD;\n3149 = CIBA HEERENVEEN B.V.;\n3150 = GERESERVEERD;\n3151 = GERESERVEERD;\n3152 = GERESERVEERD;\n3153 = GERESERVEERD;\n3154 = GERESERVEERD;\n3155 = WELTEN;\n3156 = GERESERVEERD;\n3157 = GERESERVEERD;\n3158 = GERESERVEERD;\n3159 = KONINKLIJKE VAN DER WEES WATERTRANSPORTEN BV;\n316 = LEVENSMIDDELENBEDRIJF;\n3160 = GERESERVEERD;\n3161 = GERESERVEERD;\n3162 = GERESERVEERD;\n3163 = GERESERVEERD;\n3164 = GERESERVEERD;\n3165 = DYADE ZUID WEST NEDERLAND BV;\n3166 = GERESERVEERD;\n3167 = GERESERVEERD;\n3168 = GERESERVEERD;\n3169 = GERESERVEERD;\n317 = GEHANDICAPTENZORG;\n3170 = GERESERVEERD;\n3171 = STICHTING STIMIN IDENTITEITSBEGELEIDING MIDDEN-NEDERLAND;\n3172 = GERESERVEERD;\n3173 = GERESERVEERD;\n3174 = GERESERVEERD;\n3175 = GERESERVEERD;\n3176 = GERESERVEERD;\n3177 = GERESERVEERD;\n3178 = SYNCOM;\n3179 = BIGA GROEP B.V.;\n318 = CDA, PERSONEEL IN DIENST VAN HET;\n3180 = DB SCHENKER RAIL NEDERLAND N.V. GOEDERENVERVOER OVER HET SPOOR;\n3181 = GERESERVEERD;\n3182 = GERESERVEERD;\n3183 = DSM LIMBURG B.V. EN MEP EUROPE GMBH TRANSFER CAO;\n3184 = GERESERVEERD;\n3185 = GERESERVEERD;\n3186 = GERESERVEERD;\n3187 = GERESERVEERD;\n3188 = GERESERVEERD;\n3189 = GERESERVEERD;\n3190 = GERESERVEERD;\n3191 = GERESERVEERD;\n3192 = GERESERVEERD;\n3193 = GERESERVEERD;\n3194 = GERESERVEERD;\n3195 = CARUX TECHNOLOGY EUROPE B.V.;\n3196 = GERESERVEERD;\n3197 = CEREXAGRI B.V.;\n3198 = GERESERVEERD;\n3199 = GERESERVEERD;\n320 = SECURCASH NEDERLAND EN SECURCASH GELDVERWERKING BV (VH BRINKS NEDERLAND EN GELDVERWERKING B.V.);\n3200 = GERESERVEERD;\n3201 = GERESERVEERD;\n3202 = GERESERVEERD;\n3203 = DAGBLADUITGEVERIJBEDRIJF;\n3204 = GERESERVEERD;\n3205 = GERESERVEERD;\n3206 = GERESERVEERD;\n3207 = GERESERVEERD;\n3208 = GERESERVEERD;\n3209 = GERESERVEERD;\n3210 = ALBRON CP NEDERLAND B.V.;\n3211 = GERESERVEERD;\n3212 = GERESERVEERD;\n3213 = GERESERVEERD;\n3214 = GERESERVEERD;\n3215 = CNV VAKMENSEN;\n3216 = GERESERVEERD;\n3217 = GERESERVEERD;\n3218 = ROSIER NEDERLAND B.V.;\n3219 = GERESERVEERD;\n3220 = NEC NEDERLAND B.V.;\n3221 = EVENEMENTEN- EN HORECABEVEILIGERS VEHB;\n3222 = GERESERVEERD;\n3223 = GERESERVEERD;\n3224 = GERESERVEERD;\n3225 = GERESERVEERD;\n3226 = GERESERVEERD;\n3227 = RABOVASTGOEDGROEP;\n3228 = GERESERVEERD;\n3229 = GERESERVEERD;\n323 = NEDALCO KONINKLIJKE BV (VOORHEEN NEDALCO BV);\n3230 = GERESERVEERD;\n3231 = STAMICARBON B.V.;\n3232 = GERESERVEERD;\n3233 = OFFSHORE CATERING;\n3234 = GERESERVEERD;\n3235 = GERESERVEERD;\n3236 = DE LAGE LANDEN INTERNATIONAL B.V.;\n3237 = GERESERVEERD;\n3238 = VLIEGERS TUI FLY NEDERLAND;\n3239 = VVV CAO;\n3240 = GERESERVEERD;\n3241 = GERESERVEERD;\n3242 = GERESERVEERD;\n3243 = GERESERVEERD;\n3244 = GERESERVEERD;\n3245 = VROON SHIP MANAGEMENT B.V.;\n3246 = GERESERVEERD;\n3247 = EDUX ONDERWIJSADVIES CAO;\n3248 = TNT CAO EXPRESS;\n3249 = GERESERVEERD;\n3250 = GERESERVEERD;\n3251 = GERESERVEERD;\n3252 = TECHNICOLOR DIGITAL CONTENT DELIVERY NL CAO VOOR-;\n3253 = GERESERVEERD;\n3254 = GERESERVEERD;\n3255 = GERESERVEERD;\n3256 = ZIUT BEDRIJFSCAO;\n3257 = GERESERVEERD;\n3258 = GERESERVEERD;\n3259 = RBS NEDERLAND CAO;\n3260 = GERESERVEERD;\n3261 = DCL CORPORATION (NL) B.V.;\n3262 = GERESERVEERD;\n3263 = GERESERVEERD;\n3264 = LUCAS ONDERWIJS CAO VO;\n3265 = COFELY SERVICES CAO HARMONISATIE;\n3266 = GERESERVEERD;\n3267 = GERESERVEERD;\n3268 = TEKNOR APEX B.V.;\n3269 = SERVICE POINT NEDERLAND CAO;\n3270 = GERESERVEERD;\n3271 = GERESERVEERD;\n3272 = OCI NITROGEN B.V.;\n3273 = GERESERVEERD;\n3274 = GERESERVEERD;\n3275 = ACTION;\n3276 = SMILDE FOODS INDIRECT PERSONEEL;\n3277 = EUROPEES MASSAGOED OVERSLAGBEDRIJF B.V. (BEAMBTEN);\n3278 = GERESERVEERD;\n3279 = GERESERVEERD;\n3280 = GERESERVEERD;\n3281 = ALTAJO B.V.;\n3282 = GERESERVEERD;\n3283 = BRITISH AMERICAN TOBACCO NEDERLAND B.V.;\n3284 = GERESERVEERD;\n3285 = GERESERVEERD;\n3286 = GERESERVEERD;\n3287 = GERESERVEERD;\n3288 = GERESERVEERD;\n3289 = GERESERVEERD;\n329 = QUAKER OATS B.V.;\n3290 = GERESERVEERD;\n3291 = GERESERVEERD;\n3292 = GERESERVEERD;\n3293 = GERESERVEERD;\n3294 = GERESERVEERD;\n3295 = GERESERVEERD;\n3296 = GERESERVEERD;\n3297 = GERESERVEERD;\n3298 = GERESERVEERD;\n3299 = ARKADE-CILON;\n33 = NEDERLANDSE LOTERIJ ORGANISATIE BV (VH STAATSLOTERIJ , STICHTING EXPLOITATIE NEDERLANDSE);\n330 = BAVARIA N.V;\n3300 = STICHTING ZORGGROEP NOORDERBREEDTE MEDISCH CENTRUM LEEUWARDEN;\n3301 = AT5 GROEP;\n3302 = GERESERVEERD;\n3303 = GERESERVEERD;\n3304 = GERESERVEERD;\n3305 = GERESERVEERD;\n3306 = GERESERVEERD;\n3307 = DELRIN NETHERLANDS B.V.;\n3308 = PQ SILICAS B.V.;\n3309 = GERESERVEERD;\n331 = LEVENSMIDDELEN, ZOETWAREN, TABAKSPRODUCTEN EN BAKKERIJPRODUKTEN GROOTHANDEL IN-;\n3310 = GERESERVEERD;\n3311 = DLF B.V.;\n3312 = GERESERVEERD;\n3313 = NETWERKBEDRIJVEN CAO;\n3314 = GERESERVEERD;\n3315 = GERESERVEERD;\n3316 = GERESERVEERD;\n3317 = DIRKZWAGER FINANCIAL SERVICES BV;\n3318 = GERESERVEERD;\n3319 = GERESERVEERD;\n3320 = STICHTING PERSONEELSDIENSTEN CDA;\n3321 = GERESERVEERD;\n3322 = GERESERVEERD;\n3323 = GERESERVEERD;\n3324 = BEROEPSRENNERS NEDERLANDSE WIELERPLOEGEN;\n3325 = TENNET TSO BEDRIJFSCAO;\n3326 = GERESERVEERD;\n3327 = GERESERVEERD;\n3328 = GERESERVEERD;\n3329 = ACTOR PARTNER IN BESTUREN;\n3330 = MENZIES WORLD CARGO (NEDERLAND) B.V.;\n3331 = LANXESS CHEMICAL;\n3332 = STUWADOORSBEDRIJF VAN ROOIJ B.V.;\n3333 = GERESERVEERD;\n3334 = GERESERVEERD;\n3335 = PRODUCTIE- EN LEVERINGSBEDRIJVEN CAO;\n3336 = PERSOONALITY PAYROLLING B.V.;\n3337 = GERESERVEERD;\n3338 = CONNEXIE;\n3339 = GERESERVEERD;\n3340 = BESTUURDERS VO;\n3341 = GERESERVEERD;\n3342 = VERHURENDE BEDRIJVEN BULKSECTOR ROTTERDAMS HAVENGEBIED;\n3343 = GERESERVEERD;\n3344 = GERESERVEERD;\n3345 = GERESERVEERD;\n3346 = GERESERVEERD;\n3347 = GERESERVEERD;\n3348 = DEUTSCHE BANK IN NEDERLAND;\n3349 = GERESERVEERD;\n3350 = VCK CAO VOOR HET KANTOORPERSONEEL VAN VERENIGD CARGADOORKANTOOR B.V.;\n3351 = GERESERVEERD;\n3352 = BILTHOVEN BIOLOGICALS;\n3353 = ST-ERICSSON NEDERLAND;\n3354 = GERESERVEERD;\n3355 = NN CAO;\n3356 = HELLENDE DAKEN;\n3357 = UW HOLDING B.V. CAO;\n3358 = GERESERVEERD;\n3359 = PAYNED PAYROLLING BV;\n3360 = PROKX PAYROLL PROFESSIONALS B.V.;\n3361 = GERESERVEERD;\n3362 = GERESERVEERD;\n3363 = AIR LIQUIDE B.V.;\n3364 = GERESERVEERD;\n3365 = GERESERVEERD;\n3366 = GERESERVEERD;\n3367 = GERESERVEERD;\n3368 = GERESERVEERD;\n3369 = GERESERVEERD;\n3370 = GERESERVEERD;\n3371 = GERESERVEERD;\n3372 = GERESERVEERD;\n3373 = GERESERVEERD;\n3374 = HEINEKEN GROUP B.V.;\n3375 = EVENEMENTEN- EN HORECABEVEILIGINGSBRANCHE;\n3376 = GERESERVEERD;\n3377 = DKSR;\n3378 = GERESERVEERD;\n3379 = GERESERVEERD;\n3380 = GERESERVEERD;\n3381 = GERESERVEERD;\n3382 = GERESERVEERD;\n3383 = INTERNATIONAL LASHING SERVICES;\n3384 = UNILASH B.V.;\n3385 = GERESERVEERD;\n3386 = GERESERVEERD;\n3387 = GERESERVEERD;\n3388 = GERESERVEERD;\n3389 = GERESERVEERD;\n3390 = GERESERVEERD;\n3391 = GERESERVEERD;\n3392 = GERESERVEERD;\n3393 = GERESERVEERD;\n3394 = GERESERVEERD;\n3395 = GERESERVEERD;\n3396 = GERESERVEERD;\n3397 = GERESERVEERD;\n3398 = MATRANS MARINE SERVICES B.V.;\n3399 = STICHTING FRACTIEBUREAU CDA;\n3400 = NORTH SEA TANKER MANAGEMENT B.V.;\n3401 = GERESERVEERD;\n3402 = DROST DRACHTEN OVERSLAG BV;\n3403 = GERESERVEERD;\n3404 = GERESERVEERD;\n3405 = GERESERVEERD;\n3406 = GERESERVEERD;\n3407 = GERESERVEERD;\n3408 = VGZ;\n3409 = GERESERVEERD;\n3410 = GERESERVEERD;\n3411 = GERESERVEERD;\n3412 = GERESERVEERD;\n3413 = GERESERVEERD;\n3414 = GERESERVEERD;\n3415 = GERESERVEERD;\n3416 = GERESERVEERD;\n3417 = SONAC VUREN;\n3418 = DAF TRUCKS NV VAKORGANISATIES OVEREENKOMST;\n3419 = KEMIRA ROTTERDAM;\n3420 = GERESERVEERD;\n3421 = GERESERVEERD;\n3422 = GERESERVEERD;\n3423 = GERESERVEERD;\n3424 = GERESERVEERD;\n3425 = GERESERVEERD;\n3426 = GERESERVEERD;\n3427 = GERESERVEERD;\n3428 = GERESERVEERD;\n3429 = GERESERVEERD;\n3430 = GERESERVEERD;\n3431 = GERESERVEERD;\n3432 = GERESERVEERD;\n3433 = GERESERVEERD;\n3434 = GERESERVEERD;\n3435 = GERESERVEERD;\n3436 = GERESERVEERD;\n3437 = BP RAFFINADERIJ ROTTERDAM B.V.;\n3438 = GERESERVEERD;\n3439 = GERESERVEERD;\n344 = NESTLE NEDERLAND CAO I;\n3440 = UWT UNITED WAALHAVEN TERMINALS;\n3441 = GERESERVEERD;\n3442 = GERESERVEERD;\n3443 = GERESERVEERD;\n3444 = GERESERVEERD;\n3445 = GERESERVEERD;\n3446 = GERESERVEERD;\n3447 = STICHTING CJG RIJNMOND TE ROTTERDAM;\n3448 = GERESERVEERD;\n3449 = GERESERVEERD;\n345 = KONINKLIJK INSTITUUT VOOR DE TROPEN;\n3450 = GERESERVEERD;\n3451 = GERESERVEERD;\n3452 = BOSRAND AKKOORD;\n3453 = RINGVAART AKKOORD;\n3454 = BRAVEHEART SHIPPING BV;\n3455 = GERESERVEERD;\n3456 = GERESERVEERD;\n3457 = GERESERVEERD;\n3458 = GERESERVEERD;\n3459 = GERESERVEERD;\n3460 = ACTIPAY PAYROLL VOOR DE HORECA;\n3461 = GERESERVEERD;\n3462 = GERESERVEERD;\n3463 = GERESERVEERD;\n3464 = GERESERVEERD;\n3465 = GERESERVEERD;\n3466 = GERESERVEERD;\n3467 = GERESERVEERD;\n3468 = GERESERVEERD;\n3469 = GERESERVEERD;\n3470 = C&D FOODS (NETHERLANDS) B.V.;\n3471 = DEKRA CERTIFICATION B.V.;\n3472 = GERESERVEERD;\n3473 = GERESERVEERD;\n3474 = GERESERVEERD;\n3475 = GERESERVEERD;\n3476 = GERESERVEERD;\n3477 = HEIDELBERGCEMENT NEDERLAND ZAND EN GRINDACTIVITEITEN;\n3478 = GERESERVEERD;\n3479 = GERESERVEERD;\n3480 = GERESERVEERD;\n3481 = GERESERVEERD;\n3482 = GERESERVEERD;\n3483 = GERESERVEERD;\n3484 = WIJGULA CAO;\n3485 = GERESERVEERD;\n3486 = GERESERVEERD;\n3487 = GERESERVEERD;\n3488 = HEXION BOTLEK B.V.;\n3489 = GERESERVEERD;\n349 = TEAM TERMINAL;\n3490 = GERESERVEERD;\n3491 = GERESERVEERD;\n3492 = GERESERVEERD;\n3493 = GERESERVEERD;\n3494 = TOETREDINGSPROTOCOL CAO AFVAL EN MILIEU, PROCES TUSSEN NV AFVALZORG HOLDING EN FNV;\n3495 = GERESERVEERD;\n3496 = BRUNEN CAO;\n3497 = GERESERVEERD;\n3498 = GERESERVEERD;\n3499 = GERESERVEERD;\n35 = TEXTIELVERZORGING;\n3500 = DSM SINCOHEM PHARMACEUTICALS NETHERLANDS BV;\n3501 = GERESERVEERD;\n3502 = SLO CAO;\n3503 = GERESERVEERD;\n3504 = GERESERVEERD;\n3505 = GERESERVEERD;\n3506 = GERESERVEERD;\n3507 = GERESERVEERD;\n3508 = GERESERVEERD;\n3509 = GERESERVEERD;\n351 = NEDERLANDSE AARDOLIE MAATSCHAPPIJ NAM;\n3510 = DUBOIS EN CO. REGISTERACCOUNTANTS EN VAN TUNEN EN PARTNERS CAO;\n3511 = GERESERVEERD;\n3512 = GERESERVEERD;\n3513 = GERESERVEERD;\n3514 = DB CARGO NEDERLAND B.V.;\n3515 = GERESERVEERD;\n3516 = ZEMBER PAYROLLING B.V.;\n3517 = ZEMBER HR DIENSTEN (VH RESOURZE HR DIENSTEN B.V.);\n3518 = GERESERVEERD;\n3519 = GERESERVEERD;\n352 = DIRKZWAGER SCHEEPSAGENTUUR, KONINKLIJKE;\n3520 = GERESERVEERD;\n3521 = GERESERVEERD;\n3522 = GERESERVEERD;\n3523 = GERESERVEERD;\n3524 = GERESERVEERD;\n3525 = GERESERVEERD;\n3526 = GERESERVEERD;\n3527 = GERESERVEERD;\n3528 = GERESERVEERD;\n3529 = GERESERVEERD;\n353 = MAGNETICS PRODUCTS OOSTERHOUT B.V. CAO A;\n3530 = QUIK BEDRIJFSCAO;\n3531 = GERESERVEERD;\n3532 = GERESERVEERD;\n3533 = BOER SPEELTOESTELLEN B.V.;\n3534 = DSM LIMBURG BV EN BOREALIS PLASTOMERS B.V. OVERGANGSCAO PLASTOMERS;\n3535 = STEINZEUG-KERAMO B.V.;\n3536 = GERESERVEERD;\n3537 = GERESERVEERD;\n3538 = GERESERVEERD;\n3539 = MENKEN GROEP CAO;\n3540 = GERESERVEERD;\n3541 = NSPOH CAO;\n3542 = OIM BRABANT B.V. CAO;\n3543 = GERESERVEERD;\n3544 = GERESERVEERD;\n3545 = GERESERVEERD;\n3546 = GERESERVEERD;\n3547 = CRV MONSTERNEMERS;\n3548 = CRV;\n3549 = GERESERVEERD;\n3550 = GERESERVEERD;\n3551 = GERESERVEERD;\n3552 = GERESERVEERD;\n3553 = BESTUURDERS PO;\n3554 = GERESERVEERD;\n3555 = GERESERVEERD;\n3556 = LOGISTIEK EN SUPPORT;\n3557 = CONTINUFLEX-CAO;\n3558 = FAIRSTAR HEAVY TRANSPORT NV;\n3559 = GERESERVEERD;\n3560 = GERESERVEERD;\n3561 = GERESERVEERD;\n3562 = MO-zaak;\n3563 = GERESERVEERD;\n3564 = GERESERVEERD;\n3565 = GERESERVEERD;\n3566 = GERESERVEERD;\n3567 = GERESERVEERD;\n3568 = GERESERVEERD;\n3569 = GVO EN HVO CAO;\n3570 = ADRI EN ZOON SCHAAL- EN SCHELPDIERENHANDEL BV TE YERSEKE;\n3571 = PGB CAO;\n3572 = GERESERVEERD;\n3573 = GERESERVEERD;\n3574 = GERESERVEERD;\n3575 = BOEHRINGER INGELHEIM ANIMAL HEALTH OPERATIONS B.V.;\n3576 = GERESERVEERD;\n3577 = GERESERVEERD;\n3578 = GERESERVEERD;\n3579 = GERESERVEERD;\n3580 = CITO;\n3581 = GERESERVEERD;\n3582 = GERESERVEERD;\n3583 = GERESERVEERD;\n3584 = GERESERVEERD;\n3585 = GERESERVEERD;\n3586 = GERESERVEERD;\n3587 = AMPCO FLASHLIGHT RENTAL B.V.;\n3588 = GERESERVEERD;\n3589 = GERESERVEERD;\n359 = ZOETWARENINDUSTRIE;\n3590 = GERESERVEERD;\n3591 = ADG CONTROL BEDRIJFSCAO;\n3592 = POSTNL CAO VOOR POSTNL PAKKETTEN;\n3593 = GERESERVEERD;\n3594 = GERESERVEERD;\n3595 = GERESERVEERD;\n3596 = GERESERVEERD;\n3597 = ISA HTV BV;\n3598 = GERESERVEERD;\n3599 = GERESERVEERD;\n360 = INTERNATIONAL FLAVORS & FRAGRANCES IFF;\n3600 = GERESERVEERD;\n3601 = GERESERVEERD;\n3602 = GERESERVEERD;\n3603 = GERESERVEERD;\n3604 = KIVO PLASTIC VERPAKKINGEN TE VOLENDAM;\n3605 = GERESERVEERD;\n3606 = GERESERVEERD;\n3607 = GERESERVEERD;\n3608 = GERESERVEERD;\n3609 = GERESERVEERD;\n361 = BEIERSDORF;\n3610 = GERESERVEERD;\n3611 = GERESERVEERD;\n3612 = GERESERVEERD;\n3613 = GERESERVEERD;\n3614 = GERESERVEERD;\n3615 = CONTRACTING NL BV;\n3616 = GERESERVEERD;\n3617 = GERESERVEERD;\n3618 = AMBACHTELIJKE PLUIMVEE EN WILDBEDRIJVEN;\n3619 = GERESERVEERD;\n3620 = GERESERVEERD;\n3621 = GERESERVEERD;\n3622 = GERESERVEERD;\n3623 = GERESERVEERD;\n3624 = GERESERVEERD;\n3625 = IBM VERIZON KPN OVEREENKOMST INZAKE TERUGKEERDERS VAN;\n3626 = GERESERVEERD;\n3627 = GERESERVEERD;\n3628 = GERESERVEERD;\n3629 = GERESERVEERD;\n363 = LANXESS MANUFACTURING NETHERLANDS B.V. (VH CHEMTURA NETHERLANDS B.V.);\n3630 = GERESERVEERD;\n3631 = GERESERVEERD;\n3632 = GERESERVEERD;\n3633 = GERESERVEERD;\n3634 = GERESERVEERD;\n3635 = GERESERVEERD;\n3636 = GERESERVEERD;\n3637 = GERESERVEERD;\n3638 = GERESERVEERD;\n3639 = GERESERVEERD;\n364 = PURAC BIOCHEM B.V.;\n3640 = SMILDE FERBINE;\n3641 = GERESERVEERD;\n3642 = GERESERVEERD;\n3643 = GERESERVEERD;\n3644 = GERESERVEERD;\n3645 = GERESERVEERD;\n3646 = GERESERVEERD;\n3647 = GERESERVEERD;\n3648 = GERESERVEERD;\n3649 = STICHTING P4SPORTS;\n365 = ANWB CAO;\n3650 = GERESERVEERD;\n3651 = GERESERVEERD;\n3652 = INTERTEK NEDERLAND BV;\n3653 = GERESERVEERD;\n3654 = GERESERVEERD;\n3655 = GERESERVEERD;\n3656 = GERESERVEERD;\n3657 = GERESERVEERD;\n3658 = BV 18 K;\n3659 = GERESERVEERD;\n366 = ASTELLAS PHARMA EUROPE B.V.;\n3660 = GERESERVEERD;\n3661 = GERESERVEERD;\n3662 = GERESERVEERD;\n3663 = GERESERVEERD;\n3664 = GERESERVEERD;\n3665 = UNITED DUTCH BREWERIES BV;\n3666 = GERESERVEERD;\n3667 = GERESERVEERD;\n3668 = GERESERVEERD;\n3669 = GERESERVEERD;\n3670 = GERESERVEERD;\n3671 = GERESERVEERD;\n3672 = GERESERVEERD;\n3673 = LIMBURGSE CONCESSIES OVEREENKOMST MBT HARMONISATIE;\n3674 = APM TERMINALS MAASVLAKTE II B.V.;\n3675 = GERESERVEERD;\n3676 = GERESERVEERD;\n3677 = GERESERVEERD;\n3678 = GERESERVEERD;\n3679 = GERESERVEERD;\n368 = MODOVANGELDER;\n3680 = GERESERVEERD;\n3681 = GERESERVEERD;\n3682 = GERESERVEERD;\n3683 = GERESERVEERD;\n3684 = GERESERVEERD;\n3685 = CNV VAKCENTRALE CAO;\n3686 = GERESERVEERD;\n3687 = GERESERVEERD;\n3688 = ZELFSTANDIGE KLINIEKEN NEDERLAND;\n3689 = ASPEN OSS;\n3690 = SBW STICHTING BIBLIOTHEEKWERK;\n3691 = ARLANXEO NETHERLANDS B.V.;\n3692 = GERESERVEERD;\n3693 = GERESERVEERD;\n3694 = GERESERVEERD;\n3695 = GERESERVEERD;\n3696 = GERESERVEERD;\n3697 = SPORTVERENIGINGEN;\n3698 = GERESERVEERD;\n3699 = GERESERVEERD;\n370 = PUBLEX B.V.;\n3700 = GERESERVEERD;\n3701 = GERESERVEERD;\n3702 = GERESERVEERD;\n3703 = GERESERVEERD;\n3704 = GERESERVEERD;\n3705 = GERESERVEERD;\n3706 = GERESERVEERD;\n3707 = DSM NL SERVICES BV;\n3708 = GERESERVEERD;\n3709 = DSM PHARMACEUTICAL PRODUCTS OVERGANGS cao;\n3710 = GERESERVEERD;\n3711 = GERESERVEERD;\n3712 = GERESERVEERD;\n3713 = GERESERVEERD;\n3714 = FUJICOLOR BENELUX BV;\n3715 = GERESERVEERD;\n3716 = GERESERVEERD;\n3717 = GERESERVEERD;\n3718 = GERESERVEERD;\n3719 = GERESERVEERD;\n3720 = GERESERVEERD;\n3721 = METROPOLE ORKEST;\n3722 = GERESERVEERD;\n3723 = GERESERVEERD;\n3724 = SIBELCO BENELUX BV;\n3725 = GERESERVEERD;\n3726 = GERESERVEERD;\n3727 = GERESERVEERD;\n3728 = GERESERVEERD;\n3729 = GERESERVEERD;\n373 = SLEEPDIENST EERLAND ( VH EERLAND GJ SLEEPDIENST);\n3730 = GERESERVEERD;\n3731 = GERESERVEERD;\n3732 = GERESERVEERD;\n3733 = GERESERVEERD;\n3734 = GERESERVEERD;\n3735 = GERESERVEERD;\n3736 = VERVOERSTEAM NEDERLAND B.V.;\n3737 = GERESERVEERD;\n3738 = GERESERVEERD;\n3739 = GERESERVEERD;\n3740 = GERESERVEERD;\n3741 = GERESERVEERD;\n3742 = BOREALIS PLASTOMERS BV;\n3743 = ESSITY OPERATIONS CUIJK;\n3744 = GERESERVEERD;\n3745 = ODFJELL TERMINALS (ROTTERDAM) BV;\n3746 = GERESERVEERD;\n3747 = GERESERVEERD;\n3748 = GERESERVEERD;\n3749 = GERESERVEERD;\n3750 = GERESERVEERD;\n3751 = GERESERVEERD;\n3752 = GERESERVEERD;\n3753 = GERESERVEERD;\n3754 = GERESERVEERD;\n3755 = GERESERVEERD;\n3756 = GERESERVEERD;\n3757 = GERESERVEERD;\n3758 = PLANTION HOLDING BV CAO VOOR MEDEWERKERS IN DIENST VAN EN HAAR DOCHTERS;\n3759 = STORA ENSO DE HOOP BV;\n376 = FAVINI APELDOORN B.V. V/H GELDERSE PAPIERGROEP N.V.;\n3760 = GERESERVEERD;\n3761 = GERESERVEERD;\n3762 = GERESERVEERD;\n3763 = GERESERVEERD;\n3764 = GERESERVEERD;\n3765 = GERESERVEERD;\n3766 = GERESERVEERD;\n3767 = GERESERVEERD;\n3768 = UITVAARTBRANCHE;\n3769 = GERESERVEERD;\n3770 = GERESERVEERD;\n3771 = VIZYR;\n3772 = GERESERVEERD;\n3773 = PARADISO;\n3774 = GERESERVEERD;\n3775 = GERESERVEERD;\n3776 = ROTTERDAM BULK TERMINAL (R.B.T.) BV;\n3777 = GERESERVEERD;\n3778 = GERESERVEERD;\n3779 = BV EXPEDITIE- EN STUWADOORSMAATSCHAPPIJ J.C. MEIJERS;\n3780 = GERESERVEERD;\n3781 = GERESERVEERD;\n3782 = GERESERVEERD;\n3783 = GERESERVEERD;\n3784 = C.RO PORTS NEDERLAND BV;\n3785 = GERESERVEERD;\n3786 = GERESERVEERD;\n3787 = GERESERVEERD;\n3788 = GERESERVEERD;\n3789 = DANIELI CORUS;\n3790 = SD GUTHRIE INTERNATIONAL ZWIJNDRECHT REFINERY B.V.;\n3791 = GERESERVEERD;\n3792 = GERESERVEERD;\n3793 = GERESERVEERD;\n3794 = SBS PRODUCTIONS B.V.;\n3795 = GERESERVEERD;\n3796 = JUMBO LOGISTIEK CAO;\n3797 = GERESERVEERD;\n3798 = UITGEVERIJBEDRIJF, CAO VOOR HET;\n3799 = CHEMOURS NETHERLANDS B.V.;\n3800 = ROTTERDAM WORLD GATEWAY B.V. (OPERATIONELE WERKNEMERS);\n3801 = GERESERVEERD;\n3802 = GERESERVEERD;\n3803 = GERESERVEERD;\n3804 = GERESERVEERD;\n3805 = GERESERVEERD;\n3806 = ZEEHAVEN IJMUIDEN N.V.;\n3807 = GERESERVEERD;\n3808 = GERESERVEERD;\n3809 = GERESERVEERD;\n3810 = GERESERVEERD;\n3811 = GERESERVEERD;\n3812 = GERESERVEERD;\n3813 = GERESERVEERD;\n3814 = ZEEUWSE REINIGINGSDIENST B.V.;\n3815 = GERESERVEERD;\n3816 = GERESERVEERD;\n3817 = DIERENARTSPRAKTIJKEN (DIERENARTSEN IN LOONDIENST);\n3818 = GERESERVEERD;\n3819 = GERESERVEERD;\n3820 = GERESERVEERD;\n3821 = APOTHEKERS IN DIENSTVERBAND;\n3822 = GERESERVEERD;\n3823 = GERESERVEERD;\n3824 = GERESERVEERD;\n3825 = PORT OF AMSTERDAM;\n3826 = RANDSTAD GROEP NEDERLAND;\n3827 = GERESERVEERD;\n3828 = GERESERVEERD;\n3829 = GERESERVEERD;\n3830 = GERESERVEERD;\n3831 = GERESERVEERD;\n3832 = GERESERVEERD;\n3833 = GERESERVEERD;\n3834 = GERESERVEERD;\n3835 = GERESERVEERD;\n3836 = ABENGOA BIOENERGY NETHERLANDS CAO;\n3837 = DUTCH GLYCERIN REFINERY B.V.;\n3838 = GERESERVEERD;\n3839 = GERESERVEERD;\n3840 = GERESERVEERD;\n3841 = GERESERVEERD;\n3842 = GERESERVEERD;\n3843 = KRITERION CAO;\n3844 = GERESERVEERD;\n3845 = GERESERVEERD;\n3846 = GERESERVEERD;\n3847 = ZEEVARENDEN IN DIENST AAN BOORD VAN SCHEPEN VAN POSF BV;\n3848 = GELDMAAT B.V.;\n3849 = VLIEGERS IN DIENST BIJ CHC HELICOPTERS NETHERLANDS B.V.;\n3850 = VIVAT CAO;\n3851 = GERESERVEERD;\n3852 = GERESERVEERD;\n3853 = GERESERVEERD;\n3854 = FOODSERVICE EN DE GROOTHANDEL IN LEVENSMIDDELEN (FSGIL);\n3855 = ZWEMBADEN;\n3856 = GERESERVEERD;\n3857 = GERESERVEERD;\n3858 = PROPERTIZE CAO;\n3859 = HAS KENNISTRANSFER EN BEDRIJFSOPLEIDINGEN;\n3860 = GERESERVEERD;\n3861 = GERESERVEERD;\n3862 = BESLOTEN BUSVERVOER SEIZOENSWERKERS;\n3863 = GERESERVEERD;\n3864 = GERESERVEERD;\n3865 = FAGRON SERVICES B.V.;\n3866 = NON-EU OFFSHORE FISHERS COLLECTIVE BARGAINING AGREEMENT;\n3867 = GERESERVEERD;\n3868 = GERESERVEERD;\n3869 = GERESERVEERD;\n387 = SHELL NEDERLAND RAFFINADERIJ EN SHELL NEDERLAND CH;\n3870 = GERESERVEERD;\n3871 = GERESERVEERD;\n3872 = GERESERVEERD;\n3873 = GERESERVEERD;\n3874 = NATUURSTEEN VAKWERKBEDRIJVEN IN DE BEDRIJFSTAK;\n3875 = GERESERVEERD;\n3876 = GERESERVEERD;\n3877 = GERESERVEERD;\n3878 = VYNOVA BEEK B.V.;\n3879 = GERESERVEERD;\n388 = ROI, STICHTING RIJKS OPLEIDINGS INSTITUUT;\n3880 = GERESERVEERD;\n3881 = GERESERVEERD;\n3882 = GERESERVEERD;\n3883 = EASYJET VLIEGERS WERKEND VANUIT NEDERLAND;\n3884 = GERESERVEERD;\n3885 = GERESERVEERD;\n3886 = GERESERVEERD;\n3887 = GERESERVEERD;\n3888 = GERESERVEERD;\n3889 = GERESERVEERD;\n389 = AAK NETHERLANDS B.V.;\n3890 = GERESERVEERD;\n3891 = GERESERVEERD;\n3892 = GERESERVEERD;\n3893 = GERESERVEERD;\n3894 = GERESERVEERD;\n3895 = GERESERVEERD;\n3896 = GERESERVEERD;\n3897 = TALENT EN PRO;\n3898 = BOLUDA TOWAGE ROTTERDAM B.V.;\n3899 = AMSTEL TELEVISIE VIJF BV;\n3900 = GERESERVEERD;\n3901 = GERESERVEERD;\n3902 = GERESERVEERD;\n3903 = GERESERVEERD;\n3904 = QSIL NEDERLAND B.V.;\n3905 = STICHTING STRANDEXPLOITATIE VEERE;\n3906 = GERESERVEERD;\n3907 = GERESERVEERD;\n3908 = NOX OVERGANGSCAO TNT CAO NAAR BGV CAO;\n3909 = HARMONISATIE PROTOCOL PRAAG;\n391 = CREMATORIA;\n3910 = GERESERVEERD;\n3911 = GERESERVEERD;\n3912 = GERESERVEERD;\n3913 = DE OPVOEDPOLI CAO;\n3914 = METALEKTRO B-CAO LUMILEDS;\n3915 = GERESERVEERD;\n3916 = TEXTIELVERZORGING MEDEWERKER STERIELE HULPMIDDELEN CAO;\n3917 = GERESERVEERD;\n3918 = GERESERVEERD;\n3919 = VDL NEDCAR MB;\n392 = ARCADIS CAO;\n3920 = GERESERVEERD;\n3921 = GERESERVEERD;\n3922 = UNIPER BENELUX NV;\n3923 = VAN STRAATEN POST;\n3924 = KRAAMZORG CAO;\n3925 = PHILIPS LIGHTING CAO;\n3926 = GERESERVEERD;\n3927 = GERESERVEERD;\n3928 = KWALITEITS CONTROLE BUREAU;\n3929 = GERESERVEERD;\n3930 = GERESERVEERD;\n3931 = GERESERVEERD;\n3932 = PATHEON BIOLOGICS B.V.;\n3933 = STICHTING TOPIJSHOCKEY TILBURG;\n3934 = GERESERVEERD;\n3935 = GERESERVEERD;\n3936 = GERESERVEERD;\n3937 = GERESERVEERD;\n3938 = GERESERVEERD;\n3939 = GERESERVEERD;\n394 = CARRE, EXPLOITATIEMAATSCHAPPIJ THEATER;\n3940 = GERESERVEERD;\n3941 = GERESERVEERD;\n3942 = GERESERVEERD;\n3943 = GERESERVEERD;\n3944 = GERESERVEERD;\n3945 = STICHTING PLURYN MAATSCHAPPELIJKE;\n3946 = AMPLEON CAO;\n3947 = DHL ECOMMERCE NEDERLAND;\n3948 = EVOS AMSTERDAM EAST;\n3949 = GERESERVEERD;\n395 = EUROPEES MASSAGOED-OVERSLAGBEDRIJF, EMO;\n3950 = GERESERVEERD;\n3951 = GERESERVEERD;\n3952 = DUIKER COMBUSTION ENGINEERS B.V.;\n3953 = VCK LOGISTICS AIRFREIGHT B.V.;\n3954 = MEBIN CAO;\n3955 = GERESERVEERD;\n3956 = GERESERVEERD;\n3957 = GERESERVEERD;\n3958 = GERESERVEERD;\n3959 = GERESERVEERD;\n396 = ROTOVIA DEVENTER B.V.;\n3960 = GERESERVEERD;\n3961 = SAGREX CAO;\n3962 = GERESERVEERD;\n3963 = GERESERVEERD;\n3964 = GERESERVEERD;\n3965 = GERESERVEERD;\n3966 = GERESERVEERD;\n3967 = BETONPOMPBEDRIJVEN CAO VOOR DE;\n3968 = GERESERVEERD;\n3969 = GERESERVEERD;\n397 = VAKTIJDSCHRIFTJOURNALISTEN;\n3970 = GERESERVEERD;\n3971 = CNV CONNECTIEF;\n3972 = DIERENTUIN;\n3973 = GERESERVEERD;\n3974 = GERESERVEERD;\n3975 = GERESERVEERD;\n3976 = GERESERVEERD;\n3977 = GERESERVEERD;\n3978 = VAN HEECKEREN GROEP;\n3979 = FIBRANT B.V.;\n3980 = GERESERVEERD;\n3981 = ASR NEDERLAND NV DE ANDERE CAO;\n3982 = HUIS VAN EEMNES;\n3983 = ANQORE BV;\n3984 = GERESERVEERD;\n3985 = GERESERVEERD;\n3986 = GERESERVEERD;\n3987 = GERESERVEERD;\n3988 = ALCO ENERGY ROTTERDAM B.V.;\n3989 = GERESERVEERD;\n399 = OMEGA PHARMA;\n3990 = GERESERVEERD;\n3991 = GERESERVEERD;\n3992 = BUNGE NETHERLANDS B.V.;\n3993 = TANDTECHNIEK, CAO VOOR LEDEN BRANCHEVERENIGING;\n3994 = REDERIJ J.H. BERGMANN B.V.;\n3995 = NRG;\n3996 = GERESERVEERD;\n3997 = AOC NEDERLAND B.V.;\n3998 = GERESERVEERD;\n3999 = GERESERVEERD;\n4 = ALLIED & WINE BENELUX BV (V/H HIRAM WALKER );\n40 = MEDIQ N.V.;\n400 = NOURYON CHEMICALS;\n4000 = PAWW SECTOR BOUW SECTOR 3 NO. 2;\n4001 = GERESERVEERD;\n4002 = UNITED AIRLINES COLLECTIVE LABOUR AGREEMENT;\n4003 = LYONDELL CHEMIE NEDERLAND BV;\n4004 = GERESERVEERD;\n4005 = GERESERVEERD;\n4006 = NOKIA SOLUTIONS AND NETWORKS IN NEDERLAND;\n4007 = GERESERVEERD;\n4008 = ZORG VAN DE ZAAK;\n4009 = GERESERVEERD;\n4010 = GERESERVEERD;\n4011 = GERESERVEERD;\n4012 = ICOPAL;\n4013 = GERESERVEERD;\n4014 = FACILITAIR EN FACILITEREND SODEXO;\n4015 = GERESERVEERD;\n4016 = GERESERVEERD;\n4017 = GERESERVEERD;\n4018 = DE DUIVELSBERG;\n4019 = GERESERVEERD;\n402 = CLIMAX MOLYBDENUM;\n4020 = GERESERVEERD;\n4021 = GERESERVEERD;\n4022 = GERESERVEERD;\n4023 = BEROEPSGOEDERENVERVOER OVER DE WEG EN DE VERHUUR VAN MOBIELE KRANEN SEIZOENARBEID;\n4024 = BPD EUROPE B.V.;\n4025 = GERESERVEERD;\n4026 = ZAANLANDSE OLIERAFFINADERIJ;\n4027 = GERESERVEERD;\n4028 = UPFIELD;\n4029 = STICHTING DE MAASVEREN LITH;\n403 = ETERNIT;\n4030 = GERESERVEERD;\n4031 = GERESERVEERD;\n4032 = GERESERVEERD;\n4033 = GERESERVEERD;\n4034 = GERESERVEERD;\n4035 = ENECO BEDRIJFS CAO;\n4036 = ERTSOVERSLAGBEDRIJF EUROPOORT C.V.;\n4037 = GERESERVEERD;\n4038 = GERESERVEERD;\n4039 = GERESERVEERD;\n4040 = GERESERVEERD;\n4041 = GERESERVEERD;\n4042 = GERESERVEERD;\n4043 = TSO;\n4044 = GERESERVEERD;\n4045 = RED BEE MEDIA;\n4046 = GERESERVEERD;\n4047 = GERESERVEERD;\n4048 = GERESERVEERD;\n4049 = GERESERVEERD;\n405 = KAPPERSBEDRIJF;\n4050 = PLIXXENT B.V.;\n4051 = EASY JET CABIN CREW THE NETHERLANDS CLA;\n4052 = PETERSON NEDERLAND B.V.;\n4053 = ROTTERDAM PORT SUPPORT (RPS);\n4054 = GERESERVEERD;\n4055 = DALLI DE KLOK B.V. HOENSBROEK;\n4056 = BREEDBAND EN TELECOMMUNICATIE;\n4057 = GERESERVEERD;\n4058 = BOLUDA CREW B.V., KHTR B.V., SHTR B.V.;\n4059 = SIGNIFY;\n406 = KAPPA RAPIDCORR;\n4060 = GERESERVEERD;\n4061 = VODAFONEZIGGO CAO;\n4062 = SLAGERSBEDRIJF DISS;\n4063 = GERESERVEERD;\n4064 = GERESERVEERD;\n4065 = GERESERVEERD;\n4066 = GERESERVEERD;\n4067 = GERESERVEERD;\n4068 = KNGF GELEIDEHONDEN;\n4069 = GERESERVEERD;\n4070 = PURIFIED METAL COMPANY B.V.;\n4071 = GERESERVEERD;\n4072 = FNV HORECABOND;\n4073 = GERESERVEERD;\n4074 = SYNRES B.V. CAO;\n4075 = GERESERVEERD;\n4076 = GERESERVEERD;\n4077 = GERESERVEERD;\n4078 = SABIC INNOVATIVE PLASTICS B.V./SHPP B.V.;\n4079 = GERESERVEERD;\n408 = INTERNATEN KINDEREN VAN BINNENSCHIPPERS EN/OF KERMISEXPLOITANTEN;\n4080 = CENTRIENT PHARMACEUTICALS NETHERLANDS B.V.;\n4081 = GERESERVEERD;\n4082 = GERESERVEERD;\n4083 = GERESERVEERD;\n4084 = GERESERVEERD;\n4085 = ROTTERDAM AIRPORT B.V.;\n4086 = SCHUTTER HAVENBEDRIJF;\n4087 = STEDIN BEDRIJFSCAO;\n4088 = NEDERLANDSE ORKESTEN;\n4089 = STAAT DER NEDERLANDEN AANVULLENDE CAO RIJK UITZENDINGEN;\n4090 = KADASTER CAO;\n4091 = BRANCHE CAO SAMENWERKENDE GEMEENTELIJKE ORGANISATIES;\n4092 = GERESERVEERD;\n4093 = AMSTERDAM;\n4094 = STAAT DER NEDERLANDEN CAO CIVIELE EXPERTS EN VERKIEZINGSWAARNEMERS;\n4095 = NEDERLANDSE UNIVERSITEITEN - KNAW;\n4096 = NEDERLANDSE UNIVERSITEITEN - FRYSKE AKADEMY;\n4097 = GERESERVEERD;\n4098 = METROPOOLREGIO ROTTERDAM DEN HAAG (MRDH);\n4099 = GERESERVEERD;\n41 = BOUWMATERIALEN, HANDEL IN-;\n410 = BRANDSTOFFENBEDRIJF;\n4100 = BRUIL BETON EN MIX;\n4101 = LUCHTVERKEERSLEIDING NEDERLAND;\n4102 = XENOS;\n4103 = GERESERVEERD;\n4104 = PROFCORE OUTSOURCING;\n4105 = GERESERVEERD;\n4106 = GERESERVEERD;\n4107 = GERESERVEERD;\n4108 = GERESERVEERD;\n4109 = GERESERVEERD;\n411 = KREHALON B.V.;\n4110 = VROUWELIJKE CONTRACTSPELERS PSV;\n4111 = WORLDWIDE FLIGHT SERVICES;\n4112 = NOURYON CAO HOGER PERSONEEL NEDERLAND;\n4113 = NOURYON CAO NEDERLAND;\n4114 = THEOLOGISCHE UNIVERSITEIT APELDOORN;\n4115 = AGIO SIGARENFABRIEKEN N.V.;\n4116 = THEOLOGISCHE UNIVERSITEIT UTRECHT;\n4117 = UNIVERSITY COLLEGE ROOSEVELT;\n4118 = GERESERVEERD;\n4119 = PO-RAAD;\n412 = FOTO-FINISHINGBEDRIJVEN;\n4120 = GERESERVEERD;\n4121 = GERESERVEERD;\n4122 = NEDERLANDSE UNIVERSITEITEN PLATO;\n4123 = GERESERVEERD;\n4124 = WESTERSCHELDE FERRY B.V.;\n4125 = PICNIC E-COMMERCE CAO;\n4126 = UNIVERSITEIT VAN HUMANISTIEK;\n4127 = GERESERVEERD;\n4128 = GERESERVEERD;\n4129 = GERESERVEERD;\n413 = GEND & LOOS, VAN REGULIER;\n4130 = GERESERVEERD;\n4131 = GERESERVEERD;\n4132 = GERESERVEERD;\n4133 = NU PROTESTANTS THEOLOGISCHE UNIVERSITEIT;\n4134 = DE DOMIJNEN;\n4135 = GERESERVEERD;\n4136 = GERESERVEERD;\n4137 = GERESERVEERD;\n4138 = GERESERVEERD;\n4139 = HEINEKEN NEDERLAND B.V. (COMMERCIE);\n4140 = GERESERVEERD;\n4141 = GERESERVEERD;\n4142 = GERESERVEERD;\n4143 = ALLIANDER N.V.;\n4144 = CAO INSTITUUT VOOR DE NEDERLANDSE TAAL;\n4145 = GERESERVEERD;\n4146 = SCANDINAVIAN TOBACCO GROUP;\n4147 = SCANDINAVIAN TOBACCO GROUP;\n4148 = GERESERVEERD;\n4149 = GERESERVEERD;\n4150 = GERESERVEERD;\n4151 = GERESERVEERD;\n4152 = GERESERVEERD;\n4153 = GERESERVEERD;\n4154 = GERESERVEERD;\n4155 = GERESERVEERD;\n4156 = INNOCENT DRINKS;\n4157 = GERESERVEERD;\n4158 = GERESERVEERD;\n4159 = GERESERVEERD;\n4160 = IHE DELFT;\n4161 = FEDEX CAO;\n4162 = VERENIGING VAN UNIVERSITEITEN;\n4163 = GERESERVEERD;\n4164 = GERESERVEERD;\n4165 = GERESERVEERD;\n4166 = GERESERVEERD;\n4167 = GERESERVEERD;\n4168 = GERESERVEERD;\n4169 = GERESERVEERD;\n417 = KONVERTIA WINSCHOTEN B.V.;\n4170 = GERESERVEERD;\n4171 = ONWERKBAAR WEER VOOR DE BITUMINEUZE EN KUNSTSTOF DAKBEDEKKINGSBEDRIJVE;\n4172 = GERESERVEERD;\n4173 = GERESERVEERD;\n4174 = GERESERVEERD;\n4175 = GERESERVEERD;\n4176 = GERESERVEERD;\n4177 = GERESERVEERD;\n4178 = CED;\n4179 = GERESERVEERD;\n418 = NATUURSTEENBEDRIJF REGULIER;\n4180 = GERESERVEERD;\n4181 = GERESERVEERD;\n4182 = GERESERVEERD;\n4183 = GERESERVEERD;\n4184 = GERESERVEERD;\n4185 = GERESERVEERD;\n4186 = GERESERVEERD;\n4187 = GERESERVEERD;\n4188 = GERESERVEERD;\n4189 = GERESERVEERD;\n4190 = GERESERVEERD;\n4191 = GERESERVEERD;\n4192 = GERESERVEERD;\n4193 = GERESERVEERD;\n4194 = ALLEGO CAO;\n4195 = GERESERVEERD;\n4196 = GERESERVEERD;\n4197 = GERESERVEERD;\n4198 = GERESERVEERD;\n4199 = VLISCO NETHERLANDS B.V.;\n420 = RUTGERS RESINS B.V. (VH NEVILLE CHEMICAL EUROPE B.V. KOPPERS NETHERLANDS B.V.);\n4200 = ATHORA NETHERLANDS NV;\n4201 = GERESERVEERD;\n4202 = HISWA - BEDRIJVEN IN WATERSPORTINDUSTRIE EN RECREATIE;\n4203 = ENGIE ENERGIE NEDERLAND NV;\n4204 = VETERINAIRE SECTOR CAO;\n4205 = AAN DE SLAG;\n4206 = GERESERVEERD;\n4207 = GERESERVEERD;\n4208 = GERESERVEERD;\n4209 = GERESERVEERD;\n4210 = GERESERVEERD;\n4211 = STICHTING PUBLIEKE OMROEP AMSTERDAM;\n4212 = MORTELBEDRIJVEN CAO;\n4213 = GERESERVEERD;\n4214 = GERESERVEERD;\n4215 = MKMB KINDEROPVANG;\n4216 = GERESERVEERD;\n4217 = GERESERVEERD;\n4218 = GERESERVEERD;\n4219 = GERESERVEERD;\n4220 = GERESERVEERD;\n4221 = GERESERVEERD;\n4222 = GERESERVEERD;\n4223 = PARTIJ VAN DE ARBEID EN NEVENINSTELLINGEN;\n4224 = GERESERVEERD;\n4225 = GERESERVEERD;\n4226 = GERESERVEERD;\n4227 = GERESERVEERD;\n4228 = GERESERVEERD;\n4229 = GERESERVEERD;\n423 = RUNDVEEVERBETERING IN NEDERLAND;\n4230 = GERESERVEERD;\n4231 = GERESERVEERD;\n4232 = GERESERVEERD;\n4233 = OILTANKING TERNEUZEN B.V. CAO;\n4234 = DSM RESINS AND FUNCTIONAL MATERIALS INCL. NIAGA, DAM AND COATINGSBUSINESS OF DAS;\n4235 = GERESERVEERD;\n4236 = E-COMMERCE NEDERLAND;\n4237 = GERESERVEERD;\n4238 = GERESERVEERD;\n4239 = GERESERVEERD;\n4240 = NOBIAN CAO 1;\n4241 = NOBIAN CAO 2;\n4242 = GERESERVEERD;\n4243 = EVOS AMSTERDAM WEST;\n4244 = GERESERVEERD;\n4245 = NAPK MUZIEKENSEMBLES;\n4246 = GERESERVEERD;\n4247 = GERESERVEERD;\n4248 = GERESERVEERD;\n4249 = MARIN CREW FERRY;\n4250 = SCALABOR CAO;\n4251 = NNIP ARBEIDSVOORWAARDENPROTOCOL;\n4252 = GERESERVEERD;\n4253 = GERESERVEERD;\n4254 = GERESERVEERD;\n4255 = KNDB CAO, VOOR PERSONEEL WERKZAAM BIJ ZELFSTANDIGE DROGISTERIJBEDRIJVEN;\n4256 = GERESERVEERD;\n4257 = GERESERVEERD;\n4258 = GERESERVEERD;\n4259 = GERESERVEERD;\n426 = CBR, STICHTING CENTRAAL BUREAU RIJVAARDIGHEIDSBEWIJZEN;\n4260 = GERESERVEERD;\n4261 = GERESERVEERD;\n4262 = ROLLDOCK SHIPPING B.V.;\n4263 = PASSAGIERS- EN BAGAGEAFHANDELING LUCHTVAART SECTORCAO;\n4264 = NEXPERIA B.V. & ITEC B.V.;\n4265 = DPM AVIENT TRANSFER CLA;\n4266 = GERESERVEERD;\n4267 = GERESERVEERD;\n4268 = GERESERVEERD;\n4269 = GERESERVEERD;\n427 = TANDTECHNIEK;\n4270 = PENSIOENFONDS RAIL & OPENBAAR VERVOER;\n4271 = COVESTRO;\n4272 = RENEWI SMINK B.V. TOEPASSING CAO BGV;\n4273 = BESTUURDERS FUNDEREND ONDERWIJS;\n4274 = NEDERLANDS HORECA GILDE - HORECA CAO;\n4275 = EUROFINS EAG MATERIAL SCIENCE NETHERLANDS;\n4276 = GERESERVEERD;\n4277 = GERESERVEERD;\n4278 = GERESERVEERD;\n4279 = GERESERVEERD;\n4280 = GERESERVEERD;\n4281 = GERESERVEERD;\n4282 = GERESERVEERD;\n4283 = HELVOET RUBBER & PLASTIC TECHNOLOGIES B.V.;\n4284 = GERESERVEERD;\n4285 = GERESERVEERD;\n4286 = GERESERVEERD;\n4287 = CREAMY CREATION BV CAO;\n4288 = GERESERVEERD;\n4289 = ORGANON NEDERLAND CAO;\n429 = KUNSTEDUCATIE;\n4290 = GERESERVEERD;\n4291 = GERESERVEERD;\n4292 = ETA (EUROTANK);\n4293 = GERESERVEERD;\n4294 = GERESERVEERD;\n4295 = LKCA;\n4296 = GERESERVEERD;\n4297 = OCEANWIDE CREWING SERVICES (OCS);\n4298 = WESTLAKE EPOXY;\n4299 = HEIDELBERG MATERIALS NEDERLAND;\n43 = ARCHITECTENBUREAUS;\n4300 = GERESERVEERD;\n4301 = GERESERVEERD;\n4302 = GERESERVEERD;\n4303 = RTL NIEUWS B.V.;\n4304 = GERESERVEERD;\n4305 = AEGON OVERGANGSPROTOCOL;\n4306 = GERESERVEERD;\n4307 = GERESERVEERD;\n4308 = TERMINAL RECRUITERS BV / VERLADING- STEIGEROPERATORS;\n4309 = GERESERVEERD;\n431 = LENSEN TOPPOINT BV;\n4310 = GERESERVEERD;\n4311 = MATECK PROJECT SUPPORT BV - MEDEWERKERS TECHNIEK;\n4312 = GERESERVEERD;\n4313 = SMURFIT KAPPA ROERMOND B.V.;\n4314 = EASYJET CABINEPERSONEEL WERKEND VANUIT NEDERLAND;\n4315 = CANON PRODUCTION PRINTING;\n4316 = INTRO VERKEER & VEILIGHEID B.V.;\n4317 = GALL & GALL;\n4318 = WO2NET;\n4319 = GERESERVEERD;\n4320 = GERESERVEERD;\n4321 = VRUMONA B.V.;\n4322 = GERESERVEERD;\n4323 = DSM PENSION SERVICES B.V. OVERGANGS-CAO;\n4324 = GERESERVEERD;\n4325 = BMI NEDERLAND;\n4326 = GERESERVEERD;\n4327 = GERESERVEERD;\n4328 = SWISSPORT CARGO SERVICES THE NETHERLANDS;\n4329 = ENVALIOR;\n433 = SCHOONMAAK- EN GLAZENWASSERSBEDRIJF;\n4330 = REMIA;\n4331 = CABINEPERSONEEL TUI FLY NEDERLAND;\n4332 = GERESERVEERD;\n4333 = GERESERVEERD;\n4334 = A2B-ONLINE;\n4335 = MAASVLAKTE OLIE TERMINAL;\n4336 = GERESERVEERD;\n4337 = GERESERVEERD;\n4338 = GERESERVEERD;\n4339 = GERESERVEERD;\n434 = TOTALENERGIES LUBRICANTS PLANT BEVERWIJK B.V.;\n4340 = GERESERVEERD;\n4341 = AVIENT PROTECTIVE MATERIALS SERVICES B.V.;\n4342 = HENGELO SALT SPECIALTIES;\n4343 = HENGELO SALT SPECIALTIES HOGER PERSONEEL;\n4344 = WILHELMSEN PORT SERVICES;\n4345 = HUISARTSEN IN LOONDIENST;\n4346 = GERESERVEERD;\n4347 = GERESERVEERD;\n4348 = GERESERVEERD;\n4349 = DELPHARM MEPPEL B.V.;\n4350 = GERESERVEERD;\n4351 = GERESERVEERD;\n4352 = GERESERVEERD;\n4353 = VOPAK IN NEDERLAND;\n4354 = WAGENBORG MPSV FLEET;\n4355 = SAINT-GOBAIN ABRASIVES BORN;\n4356 = CABINEPERSONEEL KLM CITYHOPPER B.V.;\n4357 = GERESERVEERD;\n4358 = GERESERVEERD;\n4359 = GERESERVEERD;\n436 = BORAX;\n4360 = GERESERVEERD;\n4361 = GERESERVEERD;\n4362 = GERESERVEERD;\n4363 = GERESERVEERD;\n4364 = GERESERVEERD;\n4365 = SPORTIEF CAPELLE;\n4366 = LUCHTVAART VRACHT AFHANDELING;\n4367 = SPORT-ID ONDERNEMINGSCAO;\n4368 = GERESERVEERD;\n4369 = GERESERVEERD;\n437 = HES BOTLEK TANK TERMINAL;\n4370 = ADM EUROPOORT B.V.;\n4371 = GERESERVEERD;\n4372 = VESTA TERMINAL FLUSHING;\n4373 = GERESERVEERD;\n4374 = CHANE TERMINAL DODEWAARD B.V.;\n4375 = GERESERVEERD;\n4376 = GERESERVEERD;\n4377 = GERESERVEERD;\n4378 = GERESERVEERD;\n4379 = GERESERVEERD;\n438 = ITS CALEB BRETT B.V. BUITENDIENST EN LABORATORIUMP;\n4380 = GERESERVEERD;\n4381 = SENZORA B.V.;\n4382 = DHL GLOBAL FORWARDING NEDERLAND DHL FREIGHT NEDERLAND;\n4383 = GERESERVEERD;\n4384 = GERESERVEERD;\n4385 = GERESERVEERD;\n4386 = GERESERVEERD;\n4387 = GERESERVEERD;\n4388 = GERESERVEERD;\n4389 = GERESERVEERD;\n4390 = GERESERVEERD;\n4391 = GERESERVEERD;\n4392 = GERESERVEERD;\n4393 = GERESERVEERD;\n4394 = GERESERVEERD;\n4395 = GERESERVEERD;\n4396 = GERESERVEERD;\n4397 = GERESERVEERD;\n4398 = GERESERVEERD;\n4399 = GERESERVEERD;\n44 = 'PGGM';\n4400 = GERESERVEERD;\n4401 = GERESERVEERD;\n4402 = GERESERVEERD;\n4403 = GERESERVEERD;\n4404 = GERESERVEERD;\n4405 = GERESERVEERD;\n4406 = GERESERVEERD;\n4407 = GERESERVEERD;\n4408 = GERESERVEERD;\n4409 = GERESERVEERD;\n441 = ALPLA NEDERLAND B.V.;\n4410 = GERESERVEERD;\n4411 = GERESERVEERD;\n4412 = GERESERVEERD;\n4413 = GERESERVEERD;\n4414 = GERESERVEERD;\n4415 = GERESERVEERD;\n4416 = GERESERVEERD;\n4417 = GERESERVEERD;\n4418 = GERESERVEERD;\n4419 = GERESERVEERD;\n4420 = GERESERVEERD;\n4421 = GERESERVEERD;\n4422 = GERESERVEERD;\n4423 = GERESERVEERD;\n4424 = GERESERVEERD;\n4425 = GERESERVEERD;\n4426 = GERESERVEERD;\n4427 = GERESERVEERD;\n4428 = GERESERVEERD;\n4429 = GERESERVEERD;\n4430 = GERESERVEERD;\n4431 = GERESERVEERD;\n4432 = GERESERVEERD;\n4433 = GERESERVEERD;\n4434 = GERESERVEERD;\n4435 = GERESERVEERD;\n4436 = GERESERVEERD;\n4437 = GERESERVEERD;\n4438 = GERESERVEERD;\n4439 = GERESERVEERD;\n4440 = GERESERVEERD;\n4441 = GERESERVEERD;\n4442 = GERESERVEERD;\n4443 = GERESERVEERD;\n4444 = GERESERVEERD;\n4445 = GERESERVEERD;\n4446 = GERESERVEERD;\n4447 = GERESERVEERD;\n4448 = GERESERVEERD;\n4449 = GERESERVEERD;\n445 = LUCITE INTERNATIONAL ALPHA B.V.;\n4450 = GERESERVEERD;\n4451 = GERESERVEERD;\n4452 = GERESERVEERD;\n4453 = GERESERVEERD;\n4454 = GERESERVEERD;\n4455 = GERESERVEERD;\n4456 = GERESERVEERD;\n4457 = GERESERVEERD;\n4458 = GERESERVEERD;\n4459 = GERESERVEERD;\n4460 = GERESERVEERD;\n4461 = GERESERVEERD;\n4462 = GERESERVEERD;\n4463 = GERESERVEERD;\n4464 = GERESERVEERD;\n4465 = GERESERVEERD;\n4466 = GERESERVEERD;\n4467 = GERESERVEERD;\n4468 = GERESERVEERD;\n4469 = GERESERVEERD;\n4470 = GERESERVEERD;\n4471 = GERESERVEERD;\n4472 = GERESERVEERD;\n4473 = GERESERVEERD;\n4474 = GERESERVEERD;\n4475 = GERESERVEERD;\n4476 = GERESERVEERD;\n4477 = GERESERVEERD;\n4478 = GERESERVEERD;\n4479 = GERESERVEERD;\n448 = ALBERT HEIJN BV CAO LOGISTIEK;\n4480 = GERESERVEERD;\n4481 = GERESERVEERD;\n4482 = GERESERVEERD;\n4483 = GERESERVEERD;\n4484 = GERESERVEERD;\n4485 = GERESERVEERD;\n4486 = GERESERVEERD;\n4487 = GERESERVEERD;\n4488 = GERESERVEERD;\n4489 = GERESERVEERD;\n449 = HUIS-AAN-HUISBLADJOURNALISTEN;\n4490 = GERESERVEERD;\n4491 = GERESERVEERD;\n4492 = GERESERVEERD;\n4493 = GERESERVEERD;\n4494 = GERESERVEERD;\n4495 = GERESERVEERD;\n4496 = GERESERVEERD;\n4497 = GERESERVEERD;\n4498 = GERESERVEERD;\n4499 = GERESERVEERD;\n450 = PIANOTECHNICI EN PIANOSTEMMERS;\n4500 = GERESERVEERD;\n4501 = GERESERVEERD;\n4502 = GERESERVEERD;\n4503 = GERESERVEERD;\n4504 = GERESERVEERD;\n4505 = GERESERVEERD;\n4506 = GERESERVEERD;\n4507 = GERESERVEERD;\n4508 = GERESERVEERD;\n4509 = GERESERVEERD;\n4510 = GERESERVEERD;\n4511 = GERESERVEERD;\n4512 = GERESERVEERD;\n4513 = GERESERVEERD;\n4514 = GERESERVEERD;\n4515 = GERESERVEERD;\n4516 = GERESERVEERD;\n4517 = GERESERVEERD;\n4518 = GERESERVEERD;\n4519 = GERESERVEERD;\n4520 = GERESERVEERD;\n4521 = GERESERVEERD;\n4522 = GERESERVEERD;\n4523 = GERESERVEERD;\n4524 = GERESERVEERD;\n4525 = GERESERVEERD;\n4526 = GERESERVEERD;\n4527 = GERESERVEERD;\n4528 = GERESERVEERD;\n4529 = GERESERVEERD;\n453 = AIR PRODUCTS NEDERLAND;\n4530 = GERESERVEERD;\n4531 = GERESERVEERD;\n4532 = GERESERVEERD;\n4533 = GERESERVEERD;\n4534 = GERESERVEERD;\n4535 = GERESERVEERD;\n4536 = GERESERVEERD;\n4537 = GERESERVEERD;\n4538 = GERESERVEERD;\n4539 = GERESERVEERD;\n454 = DANISCO ZAANDAM B.V.;\n4540 = GERESERVEERD;\n4541 = GERESERVEERD;\n4542 = GERESERVEERD;\n4543 = GERESERVEERD;\n4544 = GERESERVEERD;\n4545 = GERESERVEERD;\n4546 = GERESERVEERD;\n4547 = GERESERVEERD;\n4548 = GERESERVEERD;\n4549 = GERESERVEERD;\n455 = ARKEMA VLISSINGEN B.V.;\n4550 = GERESERVEERD;\n4551 = GERESERVEERD;\n4552 = GERESERVEERD;\n4553 = GERESERVEERD;\n4554 = GERESERVEERD;\n4555 = GERESERVEERD;\n4556 = GERESERVEERD;\n4557 = GERESERVEERD;\n4558 = GERESERVEERD;\n4559 = GERESERVEERD;\n4560 = GERESERVEERD;\n4561 = GERESERVEERD;\n4562 = GERESERVEERD;\n4563 = GERESERVEERD;\n4564 = GERESERVEERD;\n4565 = GERESERVEERD;\n4566 = GERESERVEERD;\n4567 = GERESERVEERD;\n4568 = GERESERVEERD;\n4569 = GERESERVEERD;\n457 = CONSTAR INTERNATIONAL HOLLAND (PLASTICS) BV;\n4570 = GERESERVEERD;\n4571 = GERESERVEERD;\n4572 = GERESERVEERD;\n4573 = GERESERVEERD;\n4574 = GERESERVEERD;\n4575 = GERESERVEERD;\n4576 = GERESERVEERD;\n4577 = GERESERVEERD;\n4578 = GERESERVEERD;\n4579 = GERESERVEERD;\n4580 = GERESERVEERD;\n4581 = GERESERVEERD;\n4582 = GERESERVEERD;\n463 = BINNENSCHEEPVAART;\n465 = BANDEN- EN WIELENBRANCHE;\n466 = Economisch Instituut voor het Midden- en Kleinbedr (vervallen);\n467 = DNATA;\n468 = ENERGIE- EN NUTSBEDRIJVEN;\n469 = TESO, TEXELS EIGEN STOOMBOOT ONDERNEMING;\n473 = FOLBB;\n475 = SPORT, WERKGEVERSORGANISATIE IN DE;\n476 = ESSITY OPERATIONS SUAMEER B.V.;\n477 = STICHTING STAYOKAY;\n479 = CROWN VAN GELDER PAPIERFABRIEKEN;\n48 = M&S;\n480 = HOMMEL REGULIER;\n482 = NIEUWSBLADJOURNALISTEN;\n483 = CTW-ANTEAGROUP;\n487 = METALEKTRO;\n488 = METALEKTRO HOGER PERSONEEL;\n49 = VERPLEEG- EN VERZORGINGSHUIZEN EN THUISZORG ONDERDEEL VERPLEEG- EN VERZORGINGSHUIZEN;\n491 = LAMBTON-WESTON/MEIJER VESTIGING EEMSHAVEN;\n496 = PARTICULIERE BEVEILIGING;\n5 = SYNTHOS BREDA BV EN SYNTHOS STYRENICS SERVICES BV;\n50 = APOTHEKEN;\n505 = STENA LINE ZEEVARENDEN;\n506 = KALKZANDSTEENINDUSTRIE -/ CELLENBETONINDUSTRIE;\n509 = GEMENGDE BRANCHE EN SPEELGOEDBRANCHE;\n51 = TIMMERINDUSTRIE CAO;\n510 = CARGILL;\n511 = AKZO NOBEL NEDERLAND;\n512 = AKZO FIBERS ENGINEERING;\n513 = AKZO NOBEL COATINGS BV;\n514 = ORGANON BIOSCIENCES NEDERLAND ( VH AKZO PHARMA);\n516 = AMMERAAL BELTECH NEDERLAND BEHEER B.V.;\n517 = BOUWBEDRIJF, UTA,;\n518 = DROGISTERIJBRANCHE VDF-CAO;\n52 = DE BIJENKORF CAO;\n521 = SHB ROTTERDAM CAO (V/H SAMENWERKENDE HAVENBEDRIJVEN, KANTOORPERS0NEEL, SH);\n526 = INTERIEURBOUW EN MEUBELINDUSTRIE;\n53 = ESHA HOLDING BV;\n531 = AKZO NOBEL NEDERLAND HOGER PERSONEEL;\n532 = EURONYL-DPI;\n533 = LEVENSMIDDELEN, GROOTWINKELBEDRIJVEN VGL;\n534 = SMIT TAK VARENDE MAANDLONERS VML;\n540 = ERICSSON BROADCAST SERVICES (VH NOB N.V. CROSS MEDIA FACILITIES);\n541 = CENTRAAL BOEKHUIS CULEMBORG;\n542 = NAAIMACHINEBRANCHE;\n544 = REDERIJ CEMENT - TANKVAART;\n545 = EUROFINS AGRO TESTING WAGENINGEN B.V.;\n549 = AARDAPPELEN GROENTEN EN FRUIT, DETAILHANDEL IN-;\n555 = SCHOTT PIETERMAN B.V. V/H PIETERMAN GLAS B.V.;\n556 = LEHNKERING LOGSTICS B.V. V/H LEHNKERING MONTAN NED;\n557 = SLIJTERIJEN;\n558 = PAPIERGROOTHANDEL;\n559 = IKEA NEDERLAND B.V. en INTER IKEA SYSTEMS B.V.;\n56 = HENKEL NEDERLAND OPERATIONS BV;\n561 = DAMCO (NETHERLANDS) BV, DAMCO INTERNATIONAL BV;\n563 = ZUIVELINDUSTRIE, HOGER PERSONEEL;\n565 = PLASTICON THE NETHERLANDS B.V.;\n569 = KUNSTSTOF-, RUBBER- EN LIJMINDUSTRIE;\n57 = VISKO TEEPAK B.V.;\n571 = POLYTEC PLASTICS NL BV;\n572 = UTI NEDERLAND B.V. (VOORHEEN UNION-TRANSPORT B.V.;\n573 = PLUIMVEEVERWERKENDE INDUSTRIE;\n576 = AVM HOLDING BV;\n58 = COOPERATIE KONINKLIJKE AVEBE U.A.;\n581 = ABVAKABO FNV;\n582 = NEDLLOYD;\n588 = COFFEE & TEA;\n589 = FERRO (HOLLAND) B.V.;\n592 = BLOEMEN EN PLANTEN GESPECIALISEERDE DETAILHANDEL IN;\n595 = ESD-SIC B.V.;\n6 = LANTOR B.V.;\n60 = PRIMO NETHERLANDS B.V.;\n603 = NEDERLANDSE SPOORWEGEN (NS);\n604 = UITZENDONDERNEMINGEN VASTE MEDEWERKERS;\n607 = BRINKMAN;\n609 = TUINCENTRA;\n61 = MENEBA MEEL WEERT BV (V/H PRESCO INTERNATIONAL BV);\n615 = ZORGVERZEKERAARS;\n618 = ZEELAND REFINERY NV;\n619 = BIC NETHERLANDS B.V.V/H BIC BENELUX B.V.;\n621 = ORGELBOUWBEDRIJF IN NEDERLAND;\n623 = OPTIEKBEDRIJVEN;\n624 = MELDON PLASTICS;\n625 = HOGER BEROEPSONDERWIJS;\n626 = CP KELCO B.V. V/H NOVIANT;\n627 = POSTNL, CAO VOOR ZATERDAGBESTELLERS;\n629 = ANP ADMINISTRATIEF PERSONEEL;\n63 = BIJENKORF CAO HP;\n630 = CONTRACTSPELERS BETAALD VOETBAL NEDERLAND;\n632 = BANKEN CAO;\n633 = ABU CAO VOOR UITZENDKRACHTEN;\n634 = BEDRIJFSVERZORGINGSDIENSTEN;\n636 = VERZEKERINGSBEDRIJF BUITENDIENST;\n637 = VERZEKERINGSBEDRIJF, CAO VOOR HET;\n639 = GIPSBOUW;\n64 = UCC COFFEE BENELUX;\n641 = SPLIETHOFF BEHEER;\n644 = UNILEVER NEDERLAND;\n645 = ZEEVISBEDRIJF, CAO VOOR HET;\n65 = REMPLACANTEN NEDERLANDSE ORKESTEN;\n650 = GROENTEN EN FRUIT, GROOTHANDEL IN-;\n659 = OVET PERSONEEL IN DE STUWADOORS EN TECHNISCHE DIENST;\n66 = HISWA (HOUTEN EN KUNSTSTOFFEN JACHTBOUW);\n660 = PROMENS ZEVENAAR B.V.;\n662 = HEINEKEN NETHERLANDS SUPPLY B.V.;\n663 = DSM NEORESINS ( VH AVECIA B.V. V/H ZENECA RESINS B.V. TE WAALWIJK);\n664 = NEDERLANDSCHE APPARATENFABRIEK NEDAP;\n668 = CERESTAR BENELUX;\n670 = SMURFIT KAPPA MERCURIUS B.V. EN SMURFIT KAPPA SHARED SERVICES ( VH SMURFIT LONA GOLFKARTON B.V.);\n675 = MN SERVICES N.V.;\n679 = ZORGVERVOER EN TAXI;\n682 = OLAM COCOA BV;\n683 = ELEKTROTECHNISCHE DETAILHANDEL;\n685 = AMATEURISTISCHE KUNSTBEOEFENING/KUNSTZINNIGE VORMING;\n686 = DSM LIMBURG;\n69 = BOLS DISTILLERIES B.V.;\n696 = AMBULANCEZORG (PERSONEEL);\n698 = SMURFIT WESTROCK CORRUGATED;\n699 = TROBAS GELATINE B.V.;\n7 = SMITS VUREN;\n70 = GROLSCHE BIERBROUWERIJ NEDERLAND;\n700 = AIRCRAFT FUEL SUPPLY B.V.;\n703 = PILLOPAK;\n705 = CSM SUIKER II HOGER PERSONEEL;\n706 = INBEV NEDERLAND N.V.;\n709 = VLEESWARENINDUSTRIE;\n710 = SPINX BV KONINKLIJKE;\n714 = PHILIP MORRIS INVESTMENTS B.V.;\n716 = FENZI AGT NETHERLANDS B.V.;\n719 = BOUWFONDS NEDERLANDSE GEMEENTEN;\n72 = KLM GRONDPERSONEEL;\n720 = CULTUURTECHNISCHE WERKEN;\n721 = HUISARTSENZORG;\n724 = DSM RESINS;\n725 = GROEN, GROND EN INFRASTRUCTUUR;\n727 = RETAIL NON-FOOD;\n73 = DE EENDRACHT BV V/H EENDRACHT, KARTON;\n730 = TECHNISCHE GROOTHANDEL;\n733 = NIACET BV;\n734 = SOLVAY CHEMIE B.V.;\n735 = COCA-COLA EUROPEAN PARTNERS NEDERLAND B.V.;\n738 = SILVO B.V. EN WILL-RAISA B.V.;\n739 = NESTLE NEDERLAND CAO II HOGER PERSONEEL;\n740 = INEOS SILICAS NETHERLANDS BV (VOORHEEN CROSFIELD;\n741 = SEKISUI-ALVEO B.V.;\n742 = OUWEHAND'S REDERIJ EN VISVERWERKING;\n744 = GOUDA VUURVAST;\n745 = RIETER AUTOMOTIVE NEDERLAND BV;\n748 = SLAGERSBEDRIJF;\n750 = CONTRACTCATERINGBRANCHE;\n753 = AGC FLAT GLASS NEDERLAND B.V. (VH GLAVERBEL NEDERLAND BV);\n756 = NEDMAG B.V.;\n757 = WIENTJES KUNSTSTOFFEN HOLDING B.V. (V/H WIENTJES B;\n758 = BV NEDERLANDSE OPTISCHE INDUSTRIE E.N.O.T. ( VH OPTISCHE INDUSTRIE AMSTERDAM B.V. );\n759 = SCHILDERS-, AFWERKINGS-, VASTGOEDONDERHOUDS- EN GLASZETBEDRIJF IN NEDERLAND;\n76 = MENEBA MEEL WORMERVEER (V.H. WESSANEN MEEL B.V.);\n762 = MICHELIN NEDERLAND NV EN MICHELIN DISTRIBUTION BV;\n771 = KOOPMANS KONINKLIJKE MEELFABRIEKEN BV;\n775 = VENDOR B.V.;\n776 = PAPIERINDUSTRIE;\n780 = YARA SLUISKIL BV YARA VLAARDINGEN BV;\n782 = FOM, REGULIER;\n785 = HUHTAMAKI NEDERLAND BV;\n787 = SBS VEERDIENST MAASSLUIS;\n788 = CNV ONDERWIJS;\n789 = SUPERCONFEX;\n791 = TEXTIELGOEDEREN EN AANVERWANTE ARTIKELEN GROOTH. IN -;\n797 = SYNGENTA MANUFACTURING B.V. V/H NOVARTIS AGRO BENE;\n8 = ECOLAB PRODUCTION NETHERLANDS B.V.;\n80 = WATERBOUW;\n800 = ENCI HOLDING NV EN ENCI BV;\n8004 = AIR LIQUIDE INDUSTRIE BV;\n8005 = AKZO NOBEL ENGINEERING & SUAC;\n8006 = ALPHA FLIGHT SERVICES;\n8007 = FORTIS ASR VERZEKERINGSGROEP V/H AMEV STAD ROTTERDAM VERZEKERINGSGROEP (ASR) N.V.;\n8008 = ASTENHOF (VH GOOSSENS);\n8009 = ASTMAFONDS, NEDERLANDS;\n8010 = AT5 GROEP;\n8012 = BAT COMMERCIE;\n8013 = BAT PRODUKTIE;\n8016 = BRUNA;\n8017 = BUDELPACK;\n8019 = CHEMGAS SHIPPING VAREND PERSONEEL;\n802 = HAVENBEDRIJF DELFZIJL;\n8020 = CHEMGAS TERMINAL VLISSINGEN BV;\n8021 = CONTRADO;\n8022 = CULTUUR NETWERK (V.H. LOKV);\n8023 = EDVENTURE;\n8025 = FWZ - FEDERATIE WERKNEMERS IN DE ZEEVAART;\n8026 = GATE GOURMET;\n8027 = GELDERS GENOOTSCHAP;\n8028 = GERLING NCM;\n8029 = HAL BEHEER;\n8030 = HITT HOLLAND INSTITUTE OF TRAFFIC TECHNO;\n8032 = JO TANKERS;\n8034 = KADASTER;\n8035 = KANTOREN FONDS NEDERLAND;\n8036 = KINTENT;\n8040 = KNAUF ISOL (VH LITONIT);\n8041 = KOEKKOEK KRAANVERHUUR;\n8044 = MAATSCHAP EUROPOORT TERMINAL (MET/MAFINA;\n8046 = BP RAFFINADERIJ ROTTERDAM B.V. ( VH NETHERLANDS REFINING COMPANY (NEREFCO) );\n8047 = NORFOLKLINE BEAMBTEN;\n8048 = NORTHERN MARINE MANAGEMENT;\n8049 = NOVIB;\n805 = CABOT B.V.;\n8053 = ODFJELL TERMINALS (ROTTERDAM);\n8056 = PEINEMAN HEFTRUCKS;\n8057 = PVDA + NEVENINSTELLINGEN;\n8058 = RANDSTAD UITZENDBUREAU VASTE MEDEWERKERS;\n806 = ENNA AEROSOLS B.V.;\n8060 = SCA PACKAGING DISPLAY BARNEVELD;\n8063 = SECEUROP NEDERLAND SECURITY CHECK BV;\n8068 = SHIN ETSU PVC;\n8069 = SJOR-SEKTOR;\n807 = EVONIK CARBON BLACK NEDERLAND B.V.;\n8070 = ST. HAVENBEDRIJF EEMSMOND;\n8071 = STATER;\n8073 = STORAENSO;\n8074 = STUKGOED AMSTERDAM;\n8075 = VEILING VLEUTEN;\n8076 = ZEEHAVEN IJMUIDEN;\n8077 = ZEEHAVENBEDRIJF DORDRECHT;\n8078 = ZENITEL NETHERLANDS BV;\n8079 = STAHL EUROPE;\n8080 = STICHTING ROI;\n8081 = QLIP CAO;\n8082 = LEDERINDUSTRIE;\n8083 = SMIT HARBOUR TOWAGE ROTTERDAM BV, VARENDE WERKNEMERS;\n8084 = ISOFT NEDERLAND BV (V/H TOREX HISCOM);\n8085 = AEGON BANK (V/H AEGON SPAARBELEG);\n8087 = ALBEMARLE CATALYSTS;\n8088 = CONNEXXION WATER;\n8089 = HEIDENHAIN NUMERIC BV;\n8090 = ENERGIEONDERZOEK CENTRUM NEDERLAND (ECN);\n8091 = KAMERS VAN KOOPHANDEL;\n8092 = NATTE GRINDBAGGERBEDRIJF;\n8093 = NUPLEX RESINS BV;\n8094 = SROL, STICHTING;\n8095 = UNIFINE SAUCES EN SPICES;\n8096 = VERSTEGEN SPICES & SAUCES;\n8097 = VOPAK TERMINAL VLISSINGEN;\n8098 = RECHTSBIJSTAND;\n8099 = BEIERSDORF;\n810 = CYTEC INDUSTRIES EN CYTEC MANUFACTURING B.V.;\n8100 = GERESERVEERD;\n8101 = GERESERVEERD;\n8102 = TNO;\n8103 = GERESERVEERD;\n8104 = GERESERVEERD;\n8105 = KNMT-ARBEIDSVOORWAARDENREGELING TANDHEELKUNDIGE PRAKTIJKEN;\n8106 = GERESERVEERD;\n8107 = GERESERVEERD;\n8108 = GERESERVEERD;\n8109 = GERESERVEERD;\n811 = BROCACEF HOLDING NV;\n8110 = GERESERVEERD;\n8111 = ALGEMEEN NEDERLANDS PERSBUREAU(ANP);\n8112 = NBBU VASTE MEDEWERKERS UITZENDBUREAUS;\n8113 = GERESERVEERD;\n8114 = GERESERVEERD;\n8115 = GERESERVEERD;\n8116 = GERESERVEERD;\n8117 = GERESERVEERD;\n8118 = GERESERVEERD;\n8119 = GERESERVEERD;\n8120 = GERESERVEERD;\n8121 = GERESERVEERD;\n8122 = GERESERVEERD;\n8123 = GERESERVEERD;\n8124 = GERESERVEERD;\n8125 = GERESERVEERD;\n8126 = GERESERVEERD;\n8127 = GERESERVEERD;\n8128 = GERESERVEERD;\n8129 = GERESERVEERD;\n8130 = GERESERVEERD;\n8131 = GERESERVEERD;\n8132 = GERESERVEERD;\n8133 = GERESERVEERD;\n8134 = GERESERVEERD;\n8135 = GERESERVEERD;\n8136 = GERESERVEERD;\n8137 = GERESERVEERD;\n8138 = GERESERVEERD;\n8139 = GERESERVEERD;\n8140 = GERESERVEERD;\n8141 = GERESERVEERD;\n8142 = GERESERVEERD;\n8143 = GERESERVEERD;\n8144 = GERESERVEERD;\n8145 = GERESERVEERD;\n8146 = GERESERVEERD;\n8147 = GERESERVEERD;\n8148 = GERESERVEERD;\n8149 = GERESERVEERD;\n8150 = GERESERVEERD;\n8151 = GERESERVEERD;\n8152 = GERESERVEERD;\n8153 = GERESERVEERD;\n8154 = GERESERVEERD;\n8155 = GERESERVEERD;\n8156 = GERESERVEERD;\n8157 = GERESERVEERD;\n8158 = GERESERVEERD;\n8159 = GERESERVEERD;\n8160 = GERESERVEERD;\n8161 = GERESERVEERD;\n8162 = GERESERVEERD;\n8163 = GERESERVEERD;\n8164 = GERESERVEERD;\n8165 = GERESERVEERD;\n8166 = GERESERVEERD;\n8167 = GERESERVEERD;\n8168 = GERESERVEERD;\n8169 = GERESERVEERD;\n8170 = GERESERVEERD;\n8171 = GERESERVEERD;\n8172 = GERESERVEERD;\n8173 = GERESERVEERD;\n8174 = GERESERVEERD;\n8175 = GERESERVEERD;\n8176 = GERESERVEERD;\n8177 = GERESERVEERD;\n8178 = GERESERVEERD;\n8179 = GERESERVEERD;\n8180 = GERESERVEERD;\n8181 = GERESERVEERD;\n8182 = GERESERVEERD;\n8183 = GERESERVEERD;\n8184 = GERESERVEERD;\n8185 = GERESERVEERD;\n8186 = GERESERVEERD;\n8187 = GERESERVEERD;\n8188 = GERESERVEERD;\n8189 = GERESERVEERD;\n819 = BEREIDE VERF- EN DRUKINKTINDUSTRIE;\n8190 = GERESERVEERD;\n8191 = GERESERVEERD;\n8192 = GERESERVEERD;\n8193 = GERESERVEERD;\n8194 = GERESERVEERD;\n8195 = GERESERVEERD;\n8196 = GERESERVEERD;\n8197 = GERESERVEERD;\n8198 = GERESERVEERD;\n8199 = GERESERVEERD;\n820 = ZEEP-, WAS-, EN REINIGINGSMIDDELENINDUST;\n8200 = GERESERVEERD;\n8201 = GERESERVEERD;\n8202 = GERESERVEERD;\n8203 = GERESERVEERD;\n8204 = GERESERVEERD;\n8205 = GERESERVEERD;\n8206 = GERESERVEERD;\n8207 = GERESERVEERD;\n8208 = GERESERVEERD;\n8209 = GERESERVEERD;\n821 = HERCULES;\n8210 = GERESERVEERD;\n8211 = GERESERVEERD;\n8212 = GERESERVEERD;\n8213 = GERESERVEERD;\n8214 = GERESERVEERD;\n8215 = GERESERVEERD;\n8216 = GERESERVEERD;\n8217 = GERESERVEERD;\n8218 = GERESERVEERD;\n8219 = GERESERVEERD;\n822 = M EN T CARROSSERIEBEDRIJF;\n8220 = GERESERVEERD;\n8221 = GERESERVEERD;\n8222 = GERESERVEERD;\n8223 = GERESERVEERD;\n8224 = GERESERVEERD;\n8225 = GERESERVEERD;\n8226 = GERESERVEERD;\n8227 = GERESERVEERD;\n8228 = GERESERVEERD;\n8229 = GERESERVEERD;\n823 = MOTORVOERTUIGENBEDRIJF EN TWEEWIELERBEDRIJF;\n8230 = GERESERVEERD;\n8231 = GERESERVEERD;\n8232 = GERESERVEERD;\n8233 = GERESERVEERD;\n8234 = GERESERVEERD;\n8235 = GERESERVEERD;\n8236 = GERESERVEERD;\n8237 = GERESERVEERD;\n8238 = GERESERVEERD;\n8239 = GERESERVEERD;\n824 = M EN T METAALBEWERKINGSBEDRIJF;\n8240 = GERESERVEERD;\n8241 = GERESERVEERD;\n8242 = GERESERVEERD;\n8243 = GERESERVEERD;\n8244 = GERESERVEERD;\n8245 = GERESERVEERD;\n8246 = GERESERVEERD;\n8247 = GERESERVEERD;\n8248 = GERESERVEERD;\n8249 = GERESERVEERD;\n825 = M en T Loodg., Fitters-, Centr. Verwarm. en Koeltechn. Installatiebedrijf (vervallen);\n8250 = GERESERVEERD;\n8251 = GERESERVEERD;\n8252 = GERESERVEERD;\n8253 = GERESERVEERD;\n8254 = GERESERVEERD;\n8255 = GERESERVEERD;\n8256 = GERESERVEERD;\n8257 = GERESERVEERD;\n8258 = GERESERVEERD;\n8259 = GERESERVEERD;\n826 = M EN T ISOLATIEBEDRIJF;\n8260 = GERESERVEERD;\n8261 = GERESERVEERD;\n8262 = GERESERVEERD;\n8263 = GERESERVEERD;\n8264 = GERESERVEERD;\n8265 = GERESERVEERD;\n8266 = GERESERVEERD;\n8267 = GERESERVEERD;\n8268 = GERESERVEERD;\n8269 = GERESERVEERD;\n827 = M EN T GOUD- EN ZILVERNIJVERHEID;\n8270 = GERESERVEERD;\n8271 = GERESERVEERD;\n8272 = GERESERVEERD;\n8273 = GERESERVEERD;\n8274 = GERESERVEERD;\n8275 = GERESERVEERD;\n8276 = GERESERVEERD;\n8277 = GERESERVEERD;\n8278 = GERESERVEERD;\n8279 = GERESERVEERD;\n8280 = GERESERVEERD;\n8281 = GERESERVEERD;\n8282 = GERESERVEERD;\n8283 = GERESERVEERD;\n8284 = GERESERVEERD;\n8285 = GERESERVEERD;\n8286 = GERESERVEERD;\n8287 = GERESERVEERD;\n8288 = GERESERVEERD;\n8289 = GERESERVEERD;\n8290 = GERESERVEERD;\n8291 = GERESERVEERD;\n8292 = GERESERVEERD;\n8293 = GERESERVEERD;\n8294 = GERESERVEERD;\n8295 = GERESERVEERD;\n8296 = GERESERVEERD;\n8297 = GERESERVEERD;\n8298 = GERESERVEERD;\n8299 = GERESERVEERD;\n83 = BETONPRODUKTENINDUSTRIE;\n830 = GROENVOEDERDROGERIJEN;\n8300 = GERESERVEERD;\n8301 = GERESERVEERD;\n8302 = GERESERVEERD;\n8303 = GERESERVEERD;\n8304 = GERESERVEERD;\n8305 = GERESERVEERD;\n8306 = GERESERVEERD;\n8307 = GERESERVEERD;\n8308 = GERESERVEERD;\n8309 = GERESERVEERD;\n8310 = GERESERVEERD;\n8311 = GERESERVEERD;\n8312 = GERESERVEERD;\n833 = WOONDIENSTEN;\n834 = PEPSICO NEDERLAND B.V.;\n835 = CHEMCOM INDUSTRIES BV;\n836 = LATENSTEIN B.V. ( VH AVEBE LATENSTEIN V/H LATENSTEIN ZETMEEL);\n838 = WONEN V/H WONINGINRICHTING;\n839 = DLV ADVIESGROEP N.V. V/H DLV;\n84 = HELVOET B.V.;\n840 = DSM SPECIALS PRODUCTS;\n841 = OWASE-BEDRIJVEN;\n843 = BRITISH AMERICAN TOBACCO NIEMEYER BV;\n845 = MONDI MAASTRICHT NV;\n848 = KARTONNAGE- EN FLEXIBELE VERPAKKINGENBEDRIJF;\n85 = REPROGRAFISCH BEDRIJF;\n851 = STICHTING MAASTRICHT SCHOOL OF MANAGEMENT;\n854 = BRITISCH AMERICAN TOBACCO NIEMEYER B.V. -HP (VH KONINKLIJKE THEODORUS NIEMEYER HP);\n855 = OWENS CORNING VEIL NEDERLAND;\n857 = MERCK SHARP & DOHME;\n858 = MERCK SHARP & DOHME CAO II;\n864 = CHEVRON ORONITE TECHNOLOGY BV;\n874 = HAPAG - LLOYD ROTTERDAM;\n876 = ASHLAND INDUSTRIES NEDERLAND B.V.;\n877 = MCCAIN FOODS HOLLAND;\n880 = ZEILMAKERIJEN, SCHEEPSBENODIGDHEDENHANDEL \"SZS\";\n884 = BOEKHANDEL EN DE KANTOORVAKHANDEL, CAO VOOR DE;\n887 = SATURN PETCARE BV;\n889 = SIBELCO NEDERLAND;\n892 = VARKENSVERBETERING IN NEDERLAND;\n893 = INVISTA (NEDERLAND) B.V. DORDRECHT;\n898 = NORIT NEDERLAND B.V.;\n9 = ROSIER NEDERLAND B.V.;\n90 = DIERENPARK EMMEN (VH NOORDER DIERENPARK REG);\n903 = ELECTRIC GLASS FIBER NL B.V. CAO I;\n904 = ELECTRIC GLASS FIBER NL B.V. CAO II;\n910 = CAO RPC BEBO BEUNINGEN (VH RPC PACKAGING EUROPE B.V.);\n911 = AGTERBERG;\n914 = KLM-CABINEPERSONEEL;\n917 = NIC GROEP (VH NIC PROCLARE B.V.);\n918 = SCHOONHOVEN KERAMIEK BV;\n921 = SABIC INNOVATIVE PLASTICS BV ( VH GENERAL ELECTRIC PLASTICS (BERGEN OP ZOO);\n923 = GLASRECYCLING NOORD OOST NEDERLAND;\n924 = REISBRANCHE;\n925 = KESSEL GEBR. VAN;\n929 = DHL ECOMMERCE SERVICES;\n93 = NORPLAST B.V. V/H KENDRION NORPLAST B.V.;\n930 = BASF NEDERLAND B.V. CATLYSTS DE MEERN;\n931 = UNIVAR SOLUTIONS NETERHLANDS B.V.;\n932 = BIOSCOOPBEDRIJF;\n938 = SLEEPDIENST ADRIAAN KOOREN;\n94 = ELF ATOCHEM AGRI ROTTERDAM / ELF ATOCHEM ROTTERDAM;\n941 = WATERBEDRIJVEN AANGESLOTEN BIJ DE WWB RAAM CAO;\n942 = SOLIDUS SOLUTIONS ZUTPHEN BV;\n943 = INTOS;\n945 = SCHOENENDETAILHANDEL;\n947 = A&O SERVICES;\n955 = EURO CERAMIC (HEPWORTH NGI EN TEEUWEN VAN THIEL KE;\n956 = EUROPESE WATERWEG- TRANSPORTEN, EWT, DUWBOTEN;\n96 = FRESENIUS HEMOCARE NETHERLANDS B.V.;\n97 = ARMSTRONG BUILDING PRODUCTS;\n972 = BOEKELO DECOR BV V/H BOEKELO FOLIEN;\n979 = MUSEUM CAO;\n983 = INTERSNACK NEDERLAND BV;\n985 = HOLLAND CASINO;\n987 = AAG BEHEER B.V. c.s.;\n988 = GASUNIE, NEDERLANDSE CAO II HOGER PERSONEEL;\n989 = MAASTRICHT HANDLING SERVICES;\n997 = CENTRAAL ORGAAN VOOR KWALITEITSAANGELEGENHEDEN IN;\n9999 = GEEN REGULIERE CAO VAN TOEPASSING;", "format": "" }, "ViOk": { "type": "string", "enum": [ "0", "1" ], "maxLength": 20, "description": "Alleenstaande ouderenkorting\n0 = Do not apply 'Alleenstaande ouderenkorting';\n1 = Apply 'Alleenstaande ouderenkorting';", "format": "" }, "ViHa": { "type": "string", "enum": [ "0", "1", "10", "2", "3", "4", "5", "6", "7", "8", "9" ], "maxLength": 20, "description": "Premium reduction\n0 = No 'premiekorting';\n1 = Arb.geh.korting in dienst genomen jonggeh. of pers. met REA-voorziening (geldig t/m 2007);\n10 = Younger employee;\n2 = Arb.geh.korting voor herplaatste jonggeh. of pers. met REA-voorziening (geldig t/m 2007);\n3 = Arb.geh.korting voor in dienst genomen arbeidsgehandicapte (geldig t/m 2007);\n4 = Arb.geh.korting voor herplaatste arbeidsgehandicapte (geldig t/m 2007);\n5 = Werknemer met een arbeidshandicap (geldig t/m 2016);\n6 = New labour relation with older employees;\n7 = Employee of 62, 63 or 64 years old to whom 6 code is not applicable (valid until 2012);\n8 = Employee to whom the 5 and 6 codes are both applicable (valid until 2012);\n9 = Employee to whom the 5 and 7 codes are both applicable (valid until 2012);", "format": "" }, "ViVb": { "type": "string", "enum": [ "0", "1", "2", "9" ], "maxLength": 20, "description": "'Vakantiebonnen'\n0 = No 'vakantiebonnen';\n1 = 19 days or less (up to 2019);\n2 = 20 Days or more (up to 2019);\n9 = 'Tijdsparen', No 'vakantiebonnen';", "format": "" }, "ViCx": { "type": "string", "enum": [ "0", "1", "2", "3", "4", "5", "6", "7" ], "maxLength": 20, "description": "No car addition reason\n0 = Not applicable;\n1 = Arrangement through employer with tax authority;\n2 = Employee has declared no private use car Tax authority;\n3 = Other proof persons and delivery van;\n4 = Delivery van without private use (valid to 2006);\n5 = Continuously alternate delivery van use;\n6 = 0% addition (valid up to 2018);\n7 = Employee has tax authority statement for exclusive business use of delivery van;", "format": "" }, "TxF4": { "type": "boolean", "description": "Student and pupil arrangement", "format": "" }, "TrI": { "type": "boolean", "description": "Transport for withholding entity", "format": "" }, "TxIs": { "type": "boolean", "description": "'Zelfstandige binnenschipper'", "format": "" }, "TxHc": { "type": "boolean", "description": "In-house staff and/or working children", "format": "" }, "TxGf": { "type": "boolean", "description": "No relationship of authority with owner's family", "format": "" }, "TxGo": { "type": "boolean", "description": "No relationship of authority with previous owner", "format": "" }, "TxCs": { "type": "boolean", "description": "'Directeur/grootaandeelhouder'", "format": "" }, "TxGy": { "type": "boolean", "description": "On-call/stand-in worker without obligation", "format": "" }, "TxGn": { "type": "boolean", "description": "On-call/stand-in worker with obligation", "format": "" }, "TxAo": { "type": "boolean", "description": "State pension benefit for single persons", "format": "" }, "TxF5": { "type": "boolean", "description": "'Wajong' benefit", "format": "" }, "Dblr": { "type": "boolean", "description": "'Doorbetaaldloon' regulation payer", "format": "" }, "Cons": { "type": "boolean", "description": "Conscientious objections", "format": "" }, "PMA": { "type": "boolean", "description": "'Premievrijstelling marginale arbeid'", "format": "" }, "NRsk": { "type": "boolean", "description": "No-risk policy", "format": "" }, "PiAw": { "type": "boolean", "description": "LKV for 'arbeidsgehandicapte' employee", "format": "" }, "PkBa": { "type": "boolean", "description": "LKV banenafspraak", "format": "" }, "PkHa": { "type": "boolean", "description": "LKV for reinstating 'arbeidsgehandicapte' employee", "format": "" }, "PkBc": { "type": "boolean", "description": "Withholding tax at foreign source", "format": "" }, "DaEk": { "type": "string", "description": "LKV end date", "format": "date" }, "Lkvo": { "type": "boolean", "description": "LKV for older employee", "format": "" }, "CoDi": { "type": "string", "maxLength": 3, "description": "Non-standard country of residence", "format": "" } }, "required": [ "DaBe", "AyId", "ViIn", "ViEm", "ViTs", "ViCd", "ViLk", "ViZv", "ViOk", "ViHa", "ViVb" ] } } } } } }, "AfasAgencyCadans": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "DaBe": { "type": "string", "description": "Start date", "format": "date" }, "AyId": { "type": "string", "maxLength": 15, "description": "Agency", "format": "" }, "DaEn": { "type": "string", "description": "End date", "format": "date" }, "ViCw": { "type": "string", "enum": [ "01", "00", "02", "03", "04", "05", "06", "07", "08", "09", "99" ], "maxLength": 20, "description": "'Cadans' basic insurance\n01 = Acceptance of work;\n00 = Contract of employment;\n02 = Sales representative;\n03 = Wsw'er;\n04 = Placement;\n05 = Conscript;\n06 = Home-worker;\n07 = Temp;\n08 = Musician/artist;\n09 = Someone who works (without employment contract);\n99 = Conscientious objections;", "format": "" }, "ViCs": { "type": "string", "enum": [ "R", "H" ], "maxLength": 20, "description": "Sector\nR = Retail trade;\nH = Health, mental and social interests;", "format": "" }, "ViCe": { "type": "string", "enum": [ "221", "222", "223", "224", "225", "226", "228", "229", "230", "231", "232", "233", "234", "235", "238", "239", "240", "241", "242", "243", "244", "245", "246", "247", "248", "249", "250", "253", "254", "255", "256", "257", "258", "259", "262", "263", "264", "265", "266", "267", "268", "271", "272", "273", "274", "275", "276", "277", "279", "280", "281", "282", "283", "284", "286", "287", "289", "290", "291", "292", "293", "297", "298", "299" ], "maxLength": 20, "description": "'Cadans' profession\n221 = Manager;\n222 = Manager, head of sector, group supervisor;\n223 = Head nurse;\n224 = Staff member;\n225 = Administrative managerial profession;\n226 = Other managerial professions;\n228 = General practitioner;\n229 = Dentist;\n230 = Specialist;\n231 = General practitioner’s assistant;\n232 = Social physician;\n233 = Veterinary surgeon;\n234 = Pharmacist;\n235 = Other medical profession employees;\n238 = Physiotherapist;\n239 = Kinesiotherapist;\n240 = Occupational therapist;\n241 = Psychotherapist;\n242 = Therapist;\n243 = Speech therapist;\n244 = Dietician;\n245 = Dental hygienist;\n246 = Radiological lab technician;\n247 = E.E.G. lab technician;\n248 = Obstetrician;\n249 = Apothekers-, tandarts-, dokters-, dierenartsassistent;\n250 = Other Paramedic employees;\n253 = Qualified nurse, qualified district nurse;\n254 = Nurse in training;\n255 = Qualified sickness care assistant;\n256 = Sickness care assistant in training;\n257 = Maternity nurse/care assistant;\n258 = Group leader;\n259 = Other nursing and care professions;\n262 = Family care assistant;\n263 = Family assistant;\n264 = Care assistant for the elderly;\n265 = Elderly persons' assistant;\n266 = Social worker;\n267 = Youth leader, community centre worker;\n268 = Other professions in the family care sector, care for the elderly sector and social services;\n271 = Domestic personnel;\n272 = Laundry personnel;\n273 = Chef, waiter and kitchen staff;\n274 = Caretaker, doorkeeper;\n275 = Switchboard operator, receptionist;\n276 = Maintenance worker, technical personnel;\n277 = Other service provision professions;\n279 = Secretary, typist;\n280 = Accountant, administrator;\n281 = Salary administrator;\n282 = Staff worker;\n283 = IT staff;\n284 = Other administrative professions;\n286 = Sports instructor, trainer;\n287 = Other sports students;\n289 = Teacher, instructor/lecturer/practical supervisor;\n290 = Sociologist, Psychologist;\n291 = Priest, pastoral staff;\n292 = Burial staff;\n293 = Driving instructor;\n297 = Trainee/student on work placement;\n298 = Holiday replacement, stand-by employee and relief worker;\n299 = Other professions and functions;", "format": "" }, "ViCt": { "type": "string", "enum": [ "101", "110", "111", "112", "113", "114", "115", "116", "117", "118", "119", "102", "120", "121", "122", "123", "124", "125", "126", "127", "128", "129", "103", "104", "105", "106", "107", "108", "109" ], "maxLength": 20, "description": "'Cadans' profession\n101 = Sales person furniture (department);\n110 = (Vervallen) Schoonmaakpersoneel;\n111 = Dental staff;\n112 = Window cleaner;\n113 = Delivery person;\n114 = Warehouse employee;\n115 = Butcher's (department) staff;\n116 = Bakery (department) staff;\n117 = Hairdresser work activities;\n118 = Shoe repair activities;\n119 = Canteen staff;\n102 = Salesperson mixed sector (department);\n120 = Technical staff (mechanic, electrician etc);\n121 = IT staff;\n122 = Domestic staff;\n123 = Temporary and/or casual staff;\n124 = Stage, trainee, or voluntary;\n125 = Holiday worker;\n126 = Seasonal worker;\n127 = Artist;\n128 = Home-worker;\n129 = Other;\n103 = Salesperson retail trade;\n104 = Salesperson general/other;\n105 = Manager as well as main shareholder;\n106 = Manager not main shareholder;\n107 = Administrative personnel;\n108 = Upholsterer;\n109 = Driver;", "format": "" }, "DsEm": { "type": "string", "maxLength": 12, "description": "Description profession", "format": "" }, "ViCa": { "type": "string", "enum": [ "0001", "0002", "0003", "0004", "0005", "0006", "0007", "0008", "0009", "0010", "0011", "0012", "0013", "0014", "0015", "0016", "0017", "0018", "0019", "0020", "0021", "0022", "0023", "0024", "0025", "0026", "0027", "0028", "0122", "1100", "1200", "1202", "1300", "1400", "1600", "1800", "1801", "2000", "2100", "2300", "2500", "2600", "2700", "2800", "2900", "3000", "3200", "3300", "3400", "2400", "3600", "3700", "3800", "4000", "4100", "4200", "4300", "4301", "4400", "4500", "4600", "5000", "5100" ], "maxLength": 20, "description": "Cadans CLA\n0001 = No CLA applicable;\n0002 = Own CLA, with 'VUT' arrangemennt;\n0003 = Own CLA without 'VUT' arrangement;\n0004 = CLA of another branch of industry is applicable (that does not appear in this list);\n0005 = Retail trade in potatoes, vegetables, fruit;\n0006 = Bulb-growing company;\n0007 = Fuel company;\n0008 = Regulation on labour conditions retail trade (VAD);\n0009 = Mixed branch (Mibra);\n0010 = Chain-store business in textiles (cf);\n0011 = Business machine branch;\n0012 = Hairdresser's;\n0013 = Chain-store business in foods;\n0014 = Food company;\n0015 = Size fitting and orthopaedic shoemaker's;\n0016 = Milk and dairy retail trade company;\n0017 = Retail trade in furniture, furnishing fabrics and home furnishing company;\n0018 = Furniture industry and furnishing companies;\n0019 = Piano sector;\n0020 = Roll-down shutter and awning companies;\n0021 = Shoe-repair company;\n0022 = Cleaning and window-cleaning company;\n0023 = Butchers;\n0024 = Wine shops;\n0025 = Dental technical company;\n0026 = Textile retail trade (mitex);\n0027 = Academic and self-importing booksellers;\n0028 = Sail makers, canvas makers, canvas rentals, ship rigging companies and ship's supplies trade;\n0122 = Cleaning and window cleaners company, if specific agreements have been made with 'Cadans';\n1100 = Hospitals;\n1200 = Nursing and Care homes (Nursing homes);\n1202 = Nursing and Care homes (Nursing homes);\n1300 = Pharmacists;\n1400 = Sport, Recreation and Relaxation centres;\n1600 = Catering industry;\n1800 = Care for the handicapped;\n1801 = Disabled care (previously hospitalization);\n2000 = Welfare work;\n2100 = Youth assistance;\n2300 = Child care;\n2500 = Conference Dutch religious;\n2600 = Focus;\n2700 = Boarding schools for children of barge masters and/or showmen;\n2800 = Artistic forming;\n2900 = Public servants (not under legal position act/decree);\n3000 = Public servants (under legal position act/decree);\n3200 = Sport;\n3300 = Dental technology;\n3400 = Contracted professional football players;\n2400 = Crematoriums;\n3600 = Youth hostels;\n3700 = Health centres;\n3800 = Legal aid;\n4000 = GP care;\n4100 = Dentists assistants and Dental hygienists;\n4200 = Vets’ assistants;\n4300 = Mental care (previously addiction care);\n4301 = Mental care (previously hospitalization);\n4400 = Rehabilitation;\n4500 = Home care;\n4600 = Free established Physiotherapy Practices;\n5000 = No CLA/wage agreement;\n5100 = In-house wage agreement;", "format": "" }, "ViRf": { "type": "string", "enum": [ "1", "2", "3" ], "maxLength": 20, "description": "'Risicofonds'\n1 = Normal arrangement;\n2 = Not applicable;\n3 = special arrangement;", "format": "" }, "YnDp": { "type": "boolean", "description": "Participant", "format": "" }, "EmSa": { "type": "number", "description": "Wage total", "format": "number" }, "YnCf": { "type": "boolean", "description": "Family of owner", "format": "" }, "YnCs": { "type": "boolean", "description": "'Directeur/grootaandeelhouder'", "format": "" }, "YnCo": { "type": "boolean", "description": "Previous owner", "format": "" }, "YnCc": { "type": "boolean", "description": "On-call/stand-in worker", "format": "" }, "YnZw": { "type": "boolean", "description": "PR", "format": "" }, "YnWw": { "type": "boolean", "description": "'WW'", "format": "" }, "YWAO": { "type": "boolean", "description": "'WAO/WIA'", "format": "" }, "YZFW": { "type": "boolean", "description": "'ZFW'", "format": "" }, "YnAb": { "type": "boolean", "description": "Insured with ABP", "format": "" }, "CoId": { "type": "string", "maxLength": 3, "description": "Country", "format": "" }, "Ad": { "type": "string", "maxLength": 60, "description": "Address", "format": "" }, "HmNr": { "type": "integer", "description": "House number", "format": "" }, "HmAd": { "type": "string", "maxLength": 30, "description": "Extension (a, b, etc.) to house number", "format": "" }, "ZpCd": { "type": "string", "maxLength": 15, "description": "Postal code", "format": "" }, "Rs": { "type": "string", "maxLength": 50, "description": "City", "format": "" }, "InYr": { "type": "boolean", "description": "Do not include in year-end work", "format": "" }, "ViEx": { "type": "string", "enum": [ "0", "2", "4", "5", "7", "9" ], "maxLength": 20, "description": "Code uitzondering\n0 = Not applicable;\n2 = Conscientious objections;\n4 = Marginal work;\n5 = Unable to work;\n7 = Combination of conscientious objections and disability;\n9 = Combination of marginal labour and disability;", "format": "" }, "PuSe": { "type": "boolean", "description": "Government employee", "format": "" }, "ViPu": { "type": "string", "enum": [ "00", "01", "02", "03", "10", "11", "21", "22", "24", "27", "30", "31", "66", "88" ], "maxLength": 20, "description": "Code speciale aanduiding UWV\n00 = Not applicable;\n01 = Subsequent payment;\n02 = Student on work placement/trainee;\n03 = Casual/temp. staff not called up;\n10 = Director NV/BV insured;\n11 = Family member/spouse director NV/BV insured;\n21 = Native artist;\n22 = Foreign artist;\n24 = Group artists without social fiscal number;\n27 = No social fiscal number (if certain conditions are complied with);\n30 = Early retiree, 'ZFW' insured;\n31 = Early retiree, not 'ZFW' insured;\n66 = Gross benefit through employer after end of employment;\n88 = Four-weekly payment periods;", "format": "" }, "Vi9": { "type": "string", "enum": [ "1", "2", "3", "4" ], "maxLength": 20, "description": "ZFW pension type\n1 = None;\n2 = 'VUT';\n3 = Early pension;\n4 = Pension;", "format": "" } }, "required": [ "DaBe", "AyId", "ViCw", "ViCt", "ViCa" ] } } } } } }, "AfasAgencyGuo": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "DaBe": { "type": "string", "description": "Start date", "format": "date" }, "AyId": { "type": "string", "maxLength": 15, "description": "Agency", "format": "" }, "DaEn": { "type": "string", "description": "End date", "format": "date" }, "ViAc": { "type": "string", "enum": [ "0000", "0001", "0002", "0003", "0004", "0005", "0007", "0009", "0010", "0012", "0013", "0015", "0019", "0020", "0021", "0022", "0023", "0024", "0026", "0027", "0028", "0029", "0030", "0031", "0032", "0033", "0035", "0036", "0053", "0054", "0055", "0056", "0072", "0073", "0074", "0076", "0078", "0079", "0080", "0081", "0097", "0099", "0125", "0162", "1059", "3548" ], "maxLength": 20, "description": "Colland (agricultural) CLA\n0000 = No CLA;\n0001 = CLA Agriculture (up to and incl. 2003);\n0002 = CLA Horticulture (up to and incl. 2003);\n0003 = Land development project;\n0004 = Enterprises utilizing farm machinery;\n0005 = CLA Tree cultivation (up to and incl. 2003);\n0007 = CLA Bulb cultivation (up to and incl. 2003);\n0009 = Private forestry;\n0010 = Gebr. Van Kessel BV;\n0012 = Farm relief services;\n0013 = Grading and sorting plants;\n0015 = De Enk BV;\n0019 = Drying facilities for green fodder;\n0020 = Agterberg;\n0021 = Hommel BV;\n0022 = Garden seed companies;\n0023 = Gardeners;\n0024 = Heidemij;\n0026 = NAK;\n0027 = Flax industry;\n0028 = Garden centres;\n0029 = Griendtsveen;\n0030 = Veldkamp Holding B.V.;\n0031 = Cattle improvement;\n0032 = Pig improvement in the Netherlands;\n0033 = Mushrooms;\n0035 = CLA Place for the upkeep of animals;\n0036 = CLA Cultivation under glass;\n0053 = CLA Open Field Agriculture;\n0054 = CLA Open Field Horticulture;\n0055 = CLA Open Field Bulb cultivation;\n0056 = CLA Open Field Tree cultivation;\n0072 = Grontmij;\n0073 = Noorderdierenpark;\n0074 = Oranjewoud;\n0076 = De Schepper;\n0078 = Zelder;\n0079 = Weefselkweek;\n0080 = Forestry;\n0081 = Peat and Turf;\n0097 = CLA Bulb cultivation wholesale trade;\n0099 = Another, not mentioned, CLA;\n0125 = Groente- en Fruitverwerkende Industrie;\n0162 = Cigar industry;\n1059 = Health Department for Animals;\n3548 = 'CRV' CLA;", "format": "" }, "ViSl": { "type": "string", "enum": [ "0000", "0099", "0111", "0121", "0122", "0123", "0125", "0126", "0127", "0129", "0131", "0132", "0135", "0136", "0171", "0172", "0173", "0174", "0180" ], "maxLength": 20, "description": "Interpolis (butchers) CLA\n0000 = No CLA;\n0099 = Another, not mentioned, CLA;\n0111 = Butcher industry;\n0121 = Meat products;\n0122 = Offerman;\n0123 = Stegeman;\n0125 = Scholtes Hazerswoude;\n0126 = Persoon BV;\n0127 = Meester BV;\n0129 = Prova BV;\n0131 = Meat sector;\n0132 = Convenience foods industry;\n0135 = Ekro;\n0136 = Nijgrosco;\n0171 = Poultry regulation;\n0172 = Goossens BV;\n0173 = Plukon BV;\n0174 = Pingo Poultry Ingredients BV;\n0180 = Compaxo;", "format": "" }, "ViTc": { "type": "string", "enum": [ "0000", "0081", "0082", "0083", "0085", "0086", "0088", "0090", "0092", "0099" ], "maxLength": 20, "description": "Interpolis (tobacco) CLA\n0000 = No CLA;\n0081 = Cigar industry;\n0082 = Sara Lee Coffee en Tea/Douwe Egberts BV;\n0083 = Del-HTL Tabaksmaatschappij BV;\n0085 = Theodorus Niemeyer BV;\n0086 = British American Tobacco The Netherlands BV;\n0088 = Philip Morris Holland BV;\n0090 = British American Tobacco Exports/Manufacturing BV;\n0092 = Van Nelle Douwe Egberts;\n0099 = British American Tobacco The Netherlands BV;", "format": "" }, "ViGA": { "type": "string", "enum": [ "00", "01", "02", "03", "04", "06", "07", "08", "09", "10", "11", "12", "14", "15", "16", "17", "99" ], "maxLength": 20, "description": "Colland (Agrarisch) Basisverzekering\n00 = Contract of employment;\n01 = Acceptance of work;\n02 = Sales representative;\n03 = Wsw'er;\n04 = Placement;\n06 = Home-worker;\n07 = Temp;\n08 = Musician/artist;\n09 = Individual labour against payment;\n10 = PMA student;\n11 = PMA housewife (cancelled since 1999);\n12 = PMA welfare recipient (cancelled since 1999);\n14 = GLW student;\n15 = GLW housewife;\n16 = GLW asylum seeker or alien;\n17 = GLW independent farmers;\n99 = Conscientious objections;", "format": "" }, "ViGS": { "type": "string", "enum": [ "00", "01", "02", "03", "04", "06", "07", "08", "09", "12", "99" ], "maxLength": 20, "description": "Colland (Agrarisch) Basisverzekering\n00 = Contract of employment;\n01 = Acceptance of work;\n02 = Sales representative;\n03 = Wsw'er;\n04 = Placement;\n06 = Home-worker;\n07 = Temp;\n08 = Musician/artist;\n09 = Individual labour against payment;\n12 = PMA welfare recipient;\n99 = Conscientious objections;", "format": "" }, "ViGT": { "type": "string", "enum": [ "00", "01", "02", "03", "04", "06", "07", "08", "09", "12", "50", "99" ], "maxLength": 20, "description": "Interpolis (Tabak) Basisverzekering\n00 = Contract of employment;\n01 = Acceptance of work;\n02 = Sales representative;\n03 = Wsw'er;\n04 = Placement;\n06 = Home-worker;\n07 = Temp;\n08 = Musician/artist;\n09 = Individual labour against payment;\n12 = PMA welfare recipient;\n50 = 'VUT';\n99 = Conscientious objections;", "format": "" }, "ViFi": { "type": "string", "enum": [ "P", "C" ], "maxLength": 20, "description": "Fixed/freelance\nP = Fixed;\nC = Freelance;", "format": "" }, "DsEm": { "type": "string", "maxLength": 12, "description": "Description profession", "format": "" }, "YnFu": { "type": "boolean", "description": "'Overbruggingsfonds'", "format": "" }, "YnVb": { "type": "boolean", "description": "'Vakantiebon'", "format": "" }, "YnPf": { "type": "boolean", "description": "VNPS pension fund", "format": "" }, "YnPb": { "type": "boolean", "description": "BPS pension fund", "format": "" }, "YnSk": { "type": "boolean", "description": "Steinkühlerfonds", "format": "" }, "YnWa": { "type": "boolean", "description": "'WAGW' (Indication)", "format": "" }, "YnCf": { "type": "boolean", "description": "Family of owner", "format": "" }, "YnCs": { "type": "boolean", "description": "'Directeur/grootaandeelhouder'", "format": "" }, "YnCo": { "type": "boolean", "description": "Previous owner", "format": "" }, "YnCc": { "type": "boolean", "description": "On-call/stand-in worker", "format": "" }, "YnZw": { "type": "boolean", "description": "PR", "format": "" }, "YnWw": { "type": "boolean", "description": "'WW'", "format": "" }, "YWAO": { "type": "boolean", "description": "'WAO/WIA'", "format": "" }, "YZFW": { "type": "boolean", "description": "'ZFW'", "format": "" }, "CoId": { "type": "string", "maxLength": 3, "description": "Country", "format": "" }, "Ad": { "type": "string", "maxLength": 60, "description": "Address", "format": "" }, "HmNr": { "type": "integer", "description": "House number", "format": "" }, "HmAd": { "type": "string", "maxLength": 30, "description": "Extension (a, b, etc.) to house number", "format": "" }, "ZpCd": { "type": "string", "maxLength": 15, "description": "Postal code", "format": "" }, "Rs": { "type": "string", "maxLength": 50, "description": "City", "format": "" }, "InPG": { "type": "boolean", "description": "Include in PLO Interpolis/Colland", "format": "" }, "Vi9": { "type": "string", "enum": [ "1", "2", "3", "4" ], "maxLength": 20, "description": "ZFW pension type\n1 = None;\n2 = 'VUT';\n3 = Early pension;\n4 = Pension;", "format": "" } }, "required": [ "DaBe", "AyId", "ViAc", "ViGA", "ViFi" ] } } } } } }, "AfasAgencySfb": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "DaBe": { "type": "string", "description": "Start date", "format": "date" }, "AyId": { "type": "string", "maxLength": 15, "description": "Agency", "format": "" }, "DaEn": { "type": "string", "description": "End date", "format": "date" }, "ViDi": { "type": "string", "enum": [ "1", "50", "51", "60", "61", "62", "70", "71", "80" ], "maxLength": 20, "description": "Dispensation for early retirement\n1 = Not applicable;\n50 = No VPM dispensation;\n51 = Dispensation for Basis and supplement;\n60 = No 'UTA' dispensation;\n61 = Dispensation for Statutory Pension and Bonus/Purchase arrangements;\n62 = Dispensation for Statutory Pension Scheme;\n70 = Dispensation VET;\n71 = Dispensation basis early retirement scheme;\n80 = Dispensation BP;", "format": "" }, "ViSe": { "type": "string", "enum": [ "001", "002", "003", "004", "005", "006", "007", "008", "009", "010", "021", "022", "023", "024", "025", "026", "027", "028", "029", "030", "031", "032", "035", "036", "037", "038", "039", "041", "042", "043", "044", "045", "046", "047", "051", "052", "053", "054", "061", "065", "066", "069", "070", "071", "072", "073", "074", "075", "076", "077", "078", "079", "080", "081", "082", "083", "084", "085", "086", "087", "088", "090", "091", "092", "093", "094", "095", "096", "097", "098", "100", "101", "102", "103", "104", "105", "106", "110", "111", "112", "113", "114", "120", "121", "122", "125", "126", "127", "128", "130", "131", "132", "133", "134", "135", "136", "137", "138", "140", "141", "142", "143", "150", "151", "152", "153", "154", "155", "156", "157", "158", "160", "161", "162", "163", "164", "165", "166", "167", "168", "169", "170", "171", "172", "179", "180", "181", "182", "183", "184", "185", "187", "188", "189", "190", "191", "192", "193", "194", "195", "196", "198", "200", "201", "202", "203", "204", "205", "206", "209", "210", "211", "212", "213", "214", "215", "216", "217", "218", "219", "220", "221", "222", "223", "224", "225", "226", "230", "231", "232", "233", "234", "235", "236", "237", "238", "239", "240", "245", "246", "247", "248", "249", "250", "251", "252", "253", "254", "255", "256", "257", "258", "259", "260", "261", "265", "266", "267", "270", "271", "272", "273", "274", "275", "276", "277", "278", "279", "280", "281", "282", "283", "284", "285", "286", "287", "288", "289", "290", "291", "295", "296", "297", "301", "302", "303", "304", "305", "306", "307", "308", "309", "310", "311", "312", "321", "322", "323", "324", "325", "326", "327", "328", "329", "330", "331", "332", "333", "334", "335", "337", "338", "339", "340", "341", "342", "343", "344", "345", "346", "347", "348", "350", "351", "352", "353", "354", "355", "356", "360", "361", "362", "363", "364", "365", "366", "367", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382", "383", "384", "385", "390", "391", "392", "393", "394", "395", "400", "410", "415", "420", "425", "430", "435", "440", "445", "450", "455", "460", "470", "475", "480", "485", "495", "500", "505", "510", "515", "520", "530", "535", "540", "550", "560", "693", "694", "701", "702", "703", "704", "705", "706", "707", "708", "709", "710", "711", "712", "713", "714", "715", "716", "717", "718", "719", "720", "721", "722", "723", "724", "725", "726", "730", "731", "732", "733", "734", "735", "736", "740", "741", "742", "743", "751", "752", "753", "754", "755", "756", "757", "758", "759", "760", "761", "762", "763", "764", "771", "772", "800", "801", "803", "804", "805", "806", "807", "808", "809", "810", "811", "812", "813", "814", "815", "816", "817", "818", "819", "820", "821", "822", "823", "824", "825", "826", "830", "831", "840", "841", "850", "851", "852", "853", "854", "855", "856", "857", "858", "859", "860", "861", "862", "863", "864", "865", "866", "867", "868", "870", "871", "872", "880", "881", "882", "883", "884", "890", "891", "892", "893", "894", "895", "896", "897", "898", "900", "901", "902", "910", "911", "920", "921", "930", "931", "935", "940", "950", "960", "961", "962", "997", "998", "999" ], "maxLength": 20, "description": "‘APG’ profession\n001 = Framemaker;\n002 = Carpenter II;\n003 = Carpenter I;\n004 = Workshop carpenter;\n005 = Maatvoerder;\n006 = Post aligner;\n007 = Carpenter;\n008 = Warehouseman;\n009 = Foreman;\n010 = Carpenter-Bricklayer;\n021 = Mechanical\\Woodworker Building site;\n022 = Final inspector;\n023 = Mechanical Woodworker Joinery works;\n024 = Retainer;\n025 = Author;\n026 = Grinder-Setter;\n027 = Warehouseman Joinery works;\n028 = Crosscutter Joinery works;\n029 = Company master Joinery works;\n030 = Concrete constructor;\n031 = System formwork Engineer;\n032 = Remmingwerker;\n035 = Mould fitter;\n036 = Modelmaker-Mould builder;\n037 = Carpenter-Modelmaker;\n038 = Setter II;\n039 = Setter I;\n041 = Bricklayer II;\n042 = Bricklayer I;\n043 = Metselaar (te gebruiken tot en met 2005);\n044 = Oven builder;\n045 = Bricklayer-Oven builder;\n046 = Bricklayer-Chimney builder;\n047 = Zuurbouwer;\n051 = Builder's labourer-Bricklayer;\n052 = Builder's labourer-Scaffolder;\n053 = Constructor Steel Scaffolding II;\n054 = Constructor Steel Scaffolding I;\n061 = Jointer;\n065 = Tiler;\n066 = Builder's labourer-Tiler;\n069 = Concrete sprayer;\n070 = Concrete repairer;\n071 = Engineer in prestressed/post-tension concrete;\n072 = Steel bender II;\n073 = Steel bender I;\n074 = Reinforcing steel bender;\n075 = Concrete driller/Sawer;\n076 = Concretor II;\n077 = Concretor I;\n078 = Mixer-driver (Concrete);\n079 = Die-cast builder;\n080 = Plasterer (Traditional);\n081 = Lathing setter;\n082 = Polisher Plasterer;\n083 = Outer wall insulation specialist;\n084 = Slab layer;\n085 = Concrete enameller;\n086 = Ceiling/wall sprayer;\n087 = Plasterer (Sprayer);\n088 = Gluer;\n090 = Block layer (Completion);\n091 = Durox layer;\n092 = Plaster board builder;\n093 = Block layer (Carcass);\n094 = Sand-lime stone block layer;\n095 = Builder's labourer Plasterer;\n096 = Assistant Sander;\n097 = Sander;\n098 = Whitewasher;\n100 = Floor tiler (Cem.Anhydr,E.D.);\n101 = Builder's labourer Floor tiler;\n102 = Polisher (Terrazzo);\n103 = Terrazzo Floor tiler;\n104 = Terrazzo worker;\n105 = Floor tiler (Epoxy);\n106 = Upholsterer;\n110 = Roofer;\n111 = Roofer (Bitum);\n112 = Roofer (Stoker);\n113 = Roofer I;\n114 = Roofer II;\n120 = Slater;\n121 = Roof tiler;\n122 = Thatcher;\n125 = Layer of roof sheeting;\n126 = Applier of façade cladding-welder;\n127 = Engineer, Outer walls/Roofs;\n128 = Outer wall cleaner;\n130 = Insulation engineer;\n131 = Insulation engineer, outer walls;\n132 = Insulation engineer, cavity walls;\n133 = Engineer, Sealing;\n134 = Applicator;\n135 = Kitter;\n136 = Applier of PUR;\n137 = Plastics worker;\n138 = Mechanic, plastic window frames;\n140 = Assembler;\n141 = Kitchen fitter;\n142 = Fitter, Completion;\n143 = Engineer, Walls/Ceilings;\n150 = Painter II (CLA Construction);\n151 = Painter I (CLA Construction);\n152 = Wallpaperer;\n153 = Maintenance painter;\n154 = Painter newly built houses (CLA Painters);\n155 = Decorator;\n156 = Ship's cleaner;\n157 = Furniture sprayer;\n158 = Furniture sprayer Dispensation;\n160 = Construction painter;\n161 = Car sprayer;\n162 = Spray-painter;\n163 = Ship painter;\n164 = Painter Sprayer;\n165 = Steel blaster;\n166 = Road marker III;\n167 = Road marker II;\n168 = Road marker I;\n169 = Road marker;\n170 = Glazier;\n171 = Greenhouse kitter;\n172 = Greenhouse builder;\n179 = Crane driver;\n180 = Crane driver II (Mobile);\n181 = Crane driver I (Mobile);\n182 = Crane driver With certificate;\n183 = Crane driver (Mobile);\n184 = Machinist Mobile Crane;\n185 = Machinist Mobile Crane With Certificate N Y;\n187 = Machinist Tower Crane With Certificate;\n188 = Machinist, Tower Crane;\n189 = Machinist With Certificate;\n190 = Machinist mechanical shovel;\n191 = Heavy Equipment Machinist;\n192 = Heavy Equipment Mach. With Certificate;\n193 = Light equipment engineer;\n194 = Trench Digger Machinist;\n195 = Machinist, Compaction;\n196 = Machinist, 'GWW';\n198 = Machinist, Boilerhouse;\n200 = Master mechanic;\n201 = Machine mechanic II;\n202 = Machine mechanic I;\n203 = Machine mechanic Specialist;\n204 = Mechanic (BMC);\n205 = Mechanic, Maintenance;\n206 = Mechanic, Car;\n209 = Sheet metal worker I;\n210 = Bench Fitter Welder Assistant;\n211 = Bench Fitter Welder;\n212 = Machine Metalworker II;\n213 = Machine Metalworker I;\n214 = Bench fitter/Turner;\n215 = Welder, Aluminium;\n216 = Welder (No Pipes or Cables);\n217 = Sheet metal worker II;\n218 = Smith;\n219 = Engineer, Central Heating;\n220 = Electronics fitter II;\n221 = Electronics fitter I;\n222 = Electrician;\n223 = Engineer, Electro;\n224 = Refrigeration engineer;\n225 = Engineer, CAI;\n226 = Engineer, Telecommunications;\n230 = Boorassistent;\n231 = Foreman driller II;\n232 = Foreman driller I;\n233 = Head foreman driller Deep drilling;\n234 = Engineer Well-point drainage III;\n235 = Engineer Well-point drainage II;\n236 = Engineer Well-point drainage I;\n237 = Sounding assistant II;\n238 = Sounding assistant I;\n239 = Sounding master II;\n240 = Sounding master I;\n245 = Asphalter Pipes;\n246 = Pipelayer II (No sewer);\n247 = Pipelayer II (No sewer);\n248 = Pipelayer I (No sewer);\n249 = Pipe installer (No sewers);\n250 = Cable joiner II;\n251 = Cable joiner I;\n252 = Cable worker;\n253 = Welder Pipelines;\n254 = Welder Pipelines (Allround);\n255 = Engineer, Cables;\n256 = Welder, Pipefitter;\n257 = Pipelayer (Sewer pipes);\n258 = Sewer worker;\n259 = Sewer repairer;\n260 = Excavation worker Road construction;\n261 = Excavation worker;\n265 = Roadworker II;\n266 = Roadworker I;\n267 = Builder's labourer-Roadworker;\n270 = Asphalt labourer;\n271 = Joist setter;\n272 = Foundations expert;\n273 = Foundations worker;\n274 = Expert 'GWW';\n275 = Road builder;\n276 = Apprentice SOMA;\n277 = Tracklayer-Points II;\n278 = Tracklayer-Points I;\n279 = Maintenance worker Roads;\n280 = Plotter;\n281 = Barge captain (CLA Construction);\n282 = Sailor Engine driver (CLA Construction);\n283 = Wattle fencer;\n284 = Stone worker;\n285 = Captain (CLA Construction);\n286 = Foreman Wet Poured Concrete (CLA Construction);\n287 = Sheet workers;\n288 = Dike worker;\n289 = Coast And Shore worker;\n290 = Zinkbaas;\n291 = Captain (Not CLA Dredging);\n295 = Clay digger;\n296 = Sand And Gravel digger;\n297 = Mixer-driver (Sand And Gravel);\n301 = Foreman driller Piles;\n302 = Foreman of a pile-driving gang;\n303 = Pile driver II;\n304 = Pile driver I;\n305 = Machinist Hei Install. (Leerling);\n306 = Machinist Mini-pile Installation;\n307 = Machinist Mobile Pile Installation;\n308 = Machinist Mobile Pile Install. Dipl.;\n309 = Pile driller II;\n310 = Pile driller I;\n311 = Pile driller/Foundation worker II;\n312 = Pile driller/Foundation worker I;\n321 = Mixing boss Centralist;\n322 = Centralist;\n323 = Analyst;\n324 = Mixer;\n325 = Mixing boss;\n326 = Operator Concrete mixing installation;\n327 = Machinist concrete pump;\n328 = Head machinist concrete pump;\n329 = Machinist cement pump;\n330 = Pipe layer;\n331 = Driver III;\n332 = Driver II;\n333 = Driver I;\n334 = Driver;\n335 = Driver-Mechanic;\n337 = Forklift truck driver;\n338 = Tractor driver;\n339 = Caravan builder;\n340 = Operator Portal crane;\n341 = Construction worker assistant;\n342 = Mechanical Pounder;\n343 = Builder’s hoist attendant;\n344 = Chore worker;\n345 = Wood piler;\n346 = Rubble remover;\n347 = Sandblaster;\n348 = Machine man;\n350 = Builder’s labourer (Not mentioned elsewhere);\n351 = Ship unloader;\n352 = Site worker;\n353 = Transporter;\n354 = Transport worker;\n355 = Basisoperator;\n356 = Machineoperator;\n360 = Demolition contractor II;\n361 = Demolition contractor I;\n362 = Diamond driller;\n363 = Recruiter;\n364 = Rubble breaker;\n365 = Explosives engineer Assistant;\n366 = Explosives engineer II;\n367 = Explosives engineer I;\n370 = Circular saw operator;\n371 = Wire saw operator;\n372 = Letterblaster-Engraver;\n373 = Mechanical Natural stone mason;\n374 = Natural stone mason;\n375 = Polisher (Natural stone);\n376 = Polisher Sander;\n377 = Frame saw operator;\n378 = Steenhouwer;\n379 = Steller (Natuursteen);\n380 = Plumber;\n381 = Engineer, Gawalo;\n382 = Fitter;\n383 = Plumber (Roof);\n384 = Production employee;\n385 = Asbestverwijderaar;\n390 = Engineer, Crashbarrier;\n391 = Tegelzetter I;\n392 = Tegelzetter II;\n393 = Betonboorder specialist I;\n394 = Betonboorder II;\n395 = Betonboorder III;\n400 = Achterman;\n410 = Waiter, Waitress/Assistant cooks;\n415 = Drag shovel Driver;\n420 = Boatswain;\n425 = Driver/Labourer Poured Concrete;\n430 = Deck labourer;\n435 = Deck labourer/Cook;\n440 = Electronics fitter (CLA Dredging);\n445 = Head machinist;\n450 = Head captain;\n455 = Head mechanic;\n460 = Captain (CLA Dredging);\n470 = Cook;\n475 = Crane driver (CLA Dredging);\n480 = Welder/Bench fitter (CLA Dredging);\n485 = Machinist (CLA Dredging);\n495 = Mixer-driver (CLA Dredging);\n500 = Drag shovel Mechanic;\n505 = Oil man;\n510 = Pipe man;\n515 = Ship’s electronics engineer;\n520 = Captain (CLA Dredging);\n530 = Foreman Wet Poured Concrete;\n535 = Labourer Wet Poured Concrete;\n540 = Navigating officer;\n550 = Navigating officer/Engine driver;\n560 = Suction dredge manager;\n693 = Zelfstandige natuursteen (geldig t/m 2025);\n694 = Zelfstandige afbouw (geldig t/m 2025);\n701 = Productiemedewerker A;\n702 = Productiemedewerker B;\n703 = Productiemedewerker C;\n704 = Medewerker kleivoorbereiding;\n705 = Analyst;\n706 = Heftruckchauffeur / medewerker tasveld;\n707 = Expeditiemedewerker binnendienst;\n708 = Administratief medewerker verkoop binnendienst;\n709 = Mechanisch monteur A;\n710 = Elektromonteur A;\n711 = Mechanisch monteur B;\n712 = Elektromonteur B;\n713 = Productieleider A;\n714 = Productieleider B;\n715 = Functionaris kwaliteit/proces;\n716 = Onderhoudstechnicus;\n717 = Chef technische dienst A;\n718 = Chef technische dienst B;\n719 = Logistiek medewerker;\n720 = Chef expeditie/tasveld;\n721 = Commercieel medewerker verkoop binnendienst;\n722 = Chef verkoop binnendienst;\n723 = Secretarieel/administratief medewerker;\n724 = Administratief medewerker financiële administratie;\n725 = Managementassistente;\n726 = Chef financiële administratie;\n730 = Roofing assistant (1A);\n731 = Prospective roofer (1B);\n732 = Dakdekker (2);\n733 = Eerste dakdekker (3);\n734 = Chauffeur (3);\n735 = Voorman-dakdekker (B4);\n736 = Voorman-dakdekker (A5);\n740 = Youth without a vocational diploma;\n741 = Youth with a vocational diploma;\n742 = Youth new intake;\n743 = Employee with occupational impairment;\n751 = Voor- en afmontage;\n752 = Kunststofverwerking;\n753 = Houtbewerking;\n754 = Algemene ondersteuning;\n755 = Spuiterij;\n756 = Houtskeletbouw;\n757 = Bouwmontage;\n758 = Magazijn/Expeditie/Transport;\n759 = Werkvoorbereiding/Calculatie;\n760 = Financiële Administratie;\n761 = Commerce;\n762 = Technische Dienst;\n763 = Productieleiding;\n764 = ICT/Automatisering;\n771 = Jeugd 16 tot en met 21 jaar tijdens vakopleiding BBL;\n772 = Jeugd 16 tot en met 22 jaar zonder vakopleiding;\n800 = Manager;\n801 = Commissioner;\n803 = Manager;\n804 = Deputy director;\n805 = Manager;\n806 = Project manager;\n807 = Area manager;\n808 = Construction engineer;\n809 = Engineer;\n810 = Position classifier;\n811 = Architect;\n812 = Technical Employee Planning Office;\n813 = Concrete technician;\n814 = Design engineer;\n815 = Architect of bending schedule;\n816 = Calculator (Pre-);\n817 = Quality controller;\n818 = Surveyor;\n819 = Welding expert;\n820 = Equipment department, Head;\n821 = Management consultant;\n822 = Supervisor;\n823 = Draughtsman;\n824 = Planner;\n825 = Property developer;\n826 = Medewerker PR en Marketing;\n830 = Manager Joinery works;\n831 = Hall manager;\n840 = Construction supervisor;\n841 = Head construction supervisor;\n850 = Accountant;\n851 = Canvasser;\n852 = Administrator;\n853 = Administrative employee;\n854 = Business economist;\n855 = Bookkeeper;\n856 = Calculator (Post-);\n857 = Commercial employee;\n858 = Checker;\n859 = Purchaser;\n860 = Lawyer;\n861 = Clerk;\n862 = Personnel manager;\n863 = Repro employee;\n864 = Secretariat employee;\n865 = Word processor;\n866 = Telephone operator;\n867 = Typist;\n868 = Sales representative;\n870 = UTA 1;\n871 = UTA 2;\n872 = UTA 3;\n880 = Operator;\n881 = Programmer Computer;\n882 = Head Computer Centre;\n883 = Systems analyst;\n884 = Systems manager;\n890 = Watchman/Doorkeeper;\n891 = Warehouse manager-Managerial;\n892 = Terrain manager (Managerial);\n893 = Warehouseman-Non managerial;\n894 = Transport, Manager;\n895 = Salesperson, Shop;\n896 = Engineer (UTA);\n897 = Sales manager;\n898 = Buyer counsellor;\n900 = Praktikant (geldig t/m 2015);\n901 = Stagiair (geldig t/m 2015);\n902 = Volontair (geldig t/m 2015);\n910 = Vakantiewerker, administratief (geldig t/m 2015);\n911 = Vakantiewerker, niet administratief (geldig t/m 2015);\n920 = Administrator;\n921 = Manager, Living quarters;\n930 = Canteen staff;\n931 = Coffee lady;\n935 = Cleaners;\n940 = Priv.Ins.Person (e.g. Artists);\n950 = Household staff (Private);\n960 = Vut/Pension;\n961 = Analyst Mortel CLA;\n962 = Cleaner Mortel CLA;\n997 = Niet gespecificeerd beroep, werkzaam binnen UTA;\n998 = Niet gespecificeerd beroep, niet werkzaam binnen UTA;\n999 = No profession;", "format": "" }, "ViSw": { "type": "string", "enum": [ "00", "01", "02", "03", "04", "05", "06", "07", "08", "09", "99" ], "maxLength": 20, "description": "'SFB' basic insurance\n00 = Contract of employment;\n01 = Acceptance of work;\n02 = Sales representative;\n03 = Wsw'er;\n04 = Placement;\n05 = Conscript;\n06 = Home-worker;\n07 = Temp;\n08 = Musician/artist;\n09 = Individual labour against payment;\n99 = Conscientious objections;", "format": "" }, "DsEm": { "type": "string", "maxLength": 12, "description": "Description profession", "format": "" }, "YnCf": { "type": "boolean", "description": "Family of owner", "format": "" }, "YnCs": { "type": "boolean", "description": "'Directeur/grootaandeelhouder'", "format": "" }, "YnCo": { "type": "boolean", "description": "Previous owner", "format": "" }, "YnCc": { "type": "boolean", "description": "On-call/stand-in worker", "format": "" }, "ViSc": { "type": "string", "enum": [ "001", "010", "011", "012", "013", "014", "015", "016", "017", "099", "091", "002", "092", "093", "094", "048", "080", "003", "004", "005", "006", "007", "008", "009" ], "maxLength": 20, "description": "CLA 'APG'\n001 = Build;\n010 = Koelkastenbouwers (geldig t/m 2005);\n011 = Schilders en afwerk Nederland (Vervallen);\n012 = Metaalnijverheid (Vervallen);\n013 = Railbouw 13 (Vervallen);\n014 = Railbouw 14 (Vervallen);\n015 = Uitzendwerk stucadoors (geldig t/m 2005);\n016 = Uitzendwerk natuursteen (geldig t/m 2005);\n017 = 'UTA Bouw' pension arrangement;\n099 = No CLA (valid up to 2018);\n091 = Vrijwillige deelname UTA;\n002 = Reduction;\n092 = Pensioen bouw;\n093 = Zelfstandige natuursteen (geldig t/m 2025);\n094 = Zelfstandige afbouw (geldig t/m 2025);\n048 = Baksteenindustrie;\n080 = Vrijwillige deelname UTA;\n003 = Natural stone;\n004 = Bituminous roofing material;\n005 = Mortar and mortar transport;\n006 = 'UTA';\n007 = VUT-UTA (geldig t/m 2005);\n008 = Baggers (Vervallen);\n009 = Woodwork factory Netherlands;", "format": "" }, "ViSr": { "type": "string", "enum": [ "N", "24", "72" ], "maxLength": 20, "description": "Personal risk period\nN = none;\n24 = 24 hours;\n72 = 72 hours;", "format": "" }, "SdLn": { "type": "integer", "description": "No. of days compulsory education", "format": "" }, "SdRf": { "type": "boolean", "description": "'Risicofonds' dispensation", "format": "" }, "ViSp": { "type": "string", "enum": [ "00", "15", "25", "35", "45", "55", "65", "80" ], "maxLength": 20, "description": "WAO (%)\n00 = Collectieve dispensatie BPF, geen a.o. perc;\n15 = 15-25%;\n25 = 25-35%;\n35 = 35-45%;\n45 = 45-55%;\n55 = 55-65%;\n65 = 65-80%;\n80 = 80-100%;", "format": "" }, "ViSz": { "type": "string", "enum": [ "A", "B" ], "maxLength": 20, "description": "Premium group ZW\nA = Premium group A;\nB = Premium group B;", "format": "" }, "YnZw": { "type": "boolean", "description": "PR", "format": "" }, "YnWw": { "type": "boolean", "description": "'WW'", "format": "" }, "YWAO": { "type": "boolean", "description": "'WAO/WIA'", "format": "" }, "YZFW": { "type": "boolean", "description": "'ZFW'", "format": "" }, "CoId": { "type": "string", "maxLength": 3, "description": "Country", "format": "" }, "Ad": { "type": "string", "maxLength": 60, "description": "Address", "format": "" }, "HmNr": { "type": "integer", "description": "House number", "format": "" }, "HmAd": { "type": "string", "maxLength": 30, "description": "Extension (a, b, etc.) to house number", "format": "" }, "ZpCd": { "type": "string", "maxLength": 15, "description": "Postal code", "format": "" }, "Rs": { "type": "string", "maxLength": 50, "description": "City", "format": "" }, "InYr": { "type": "boolean", "description": "Do not include in year-end work", "format": "" }, "Vi9": { "type": "string", "enum": [ "1", "2", "3", "4" ], "maxLength": 20, "description": "ZFW pension type\n1 = None;\n2 = 'VUT';\n3 = Early pension;\n4 = Pension;", "format": "" } }, "required": [ "DaBe", "AyId", "ViDi", "ViSe", "ViSc", "ViSr", "SdLn" ] } } } } } }, "AfasAgencyArbo": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "DaBe": { "type": "string", "description": "Start date", "format": "date" }, "AyId": { "type": "string", "maxLength": 15, "description": "Agency", "format": "" }, "DaEn": { "type": "string", "description": "End date", "format": "date" }, "ViDa": { "type": "string", "enum": [ "01", "10", "02", "21", "22", "23", "03", "04", "05", "07", "08", "09" ], "maxLength": 20, "description": "Employment\n01 = Normal labour agreement;\n10 = The one that performs personal activities for payment;\n02 = Acceptance of work;\n21 = Fisherman working in a partnership;\n22 = Director of a cooperative society with employees;\n23 = Casual/temp. staff;\n03 = Sales representative;\n04 = Wsw'er;\n05 = Placement;\n07 = Home-worker;\n08 = Temp;\n09 = Musician/artist and professional sportsman;", "format": "" }, "ViAs": { "type": "string", "enum": [ "1", "2", "3", "4", "5", "6", "7", "8" ], "maxLength": 20, "description": "Type of service\n1 = Day shift;\n2 = Night shift;\n3 = Evening shift;\n4 = Irregular;\n5 = Stand-by employee with duty to turn up;\n6 = Stand-by employee without duty to turn up;\n7 = Vacation job;\n8 = Placement;", "format": "" } }, "required": [ "DaBe", "AyId" ] } } } } } }, "AfasAgencyZF": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "DaBe": { "type": "string", "description": "Start date", "format": "date" }, "AyId": { "type": "string", "maxLength": 15, "description": "Agency", "format": "" }, "DaEn": { "type": "string", "description": "End date", "format": "date" }, "SfNr": { "type": "string", "maxLength": 20, "description": "Registration number", "format": "" }, "YnWr": { "type": "boolean", "description": "Work is done every week.", "format": "" } }, "required": [ "DaBe", "AyId" ] } } } } } }, "AfasAgencyAfbouw": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "DaBe": { "type": "string", "description": "Start date", "format": "date" }, "AyId": { "type": "string", "maxLength": 15, "description": "Agency", "format": "" }, "DaEn": { "type": "string", "description": "End date", "format": "date" }, "ViUc": { "type": "string", "enum": [ "0013", "0002", "0099" ], "maxLength": 20, "description": "&AO (dismantlement) CLA\n0013 = 'UTA' SAT/V;\n0002 = SAT/V (no uta);\n0099 = No CLA applicable;", "format": "" }, "ViSi": { "type": "string", "enum": [ "0000", "0011", "0012" ], "maxLength": 20, "description": "&AO (painters) CLA\n0000 = No CLA applicable;\n0011 = 'Schilders';\n0012 = 'UTA';", "format": "" }, "ViTe": { "type": "string", "enum": [ "405", "406", "407", "408", "409", "410", "426", "430", "431", "437", "438", "439", "441", "442", "443", "452", "453", "454", "461", "465", "466", "469", "470", "472", "475", "476", "477", "480", "481", "482", "483", "484", "486", "487", "488", "489", "490", "491", "492", "493", "494", "495", "496", "497", "500", "501", "502", "503", "504", "505", "521", "530", "531", "533", "534", "535", "537", "538", "540", "542", "543", "550", "551", "552", "553", "564", "579", "580", "581", "591", "593", "600", "605", "641", "642", "643", "660", "666", "667", "676", "680", "704", "722", "723", "729", "732", "733", "734", "737", "741", "744", "750", "752", "753", "760", "776", "779", "780", "784", "800", "801", "803", "804", "805", "806", "807", "808", "809", "810", "811", "812", "813", "814", "815", "816", "817", "818", "819", "820", "821", "822", "823", "824", "825", "826", "830", "831", "840", "841", "850", "851", "852", "853", "854", "855", "856", "857", "858", "859", "860", "861", "862", "863", "864", "865", "866", "867", "868", "880", "881", "882", "883", "884", "890", "891", "892", "893", "894", "895", "896", "897", "898", "900", "901", "902", "910", "911", "920", "921", "930", "931", "935", "951", "952", "953" ], "maxLength": 20, "description": "&A&O (Afbouw) profession\n405 = Maatvoerder;\n406 = Post aligner;\n407 = Carpenter;\n408 = Warehouseman (construction CLA);\n409 = Foreman;\n410 = Carpenter - Bricklayer;\n426 = Grinder - Setter;\n430 = Concrete constructor;\n431 = System formwork Engineer;\n437 = Carpenter - Modelmaker;\n438 = Setter II;\n439 = Scaffolding builder;\n441 = Bricklayer II;\n442 = Bricklayer I;\n443 = Bricklayer;\n452 = Bricklayer's labourer - Scaffolder;\n453 = Mechanic, steel scaffold II;\n454 = Mechanic, steel scaffold I;\n461 = Jointer;\n465 = Tiler;\n466 = Bricklayer's labourer-Tiler;\n469 = Concrete sprayer;\n470 = Concrete construction worker;\n472 = Steel bender II;\n475 = Concrete driller/ Sawyer;\n476 = Concretor II;\n477 = Concretor I;\n480 = Plasterer (Traditional);\n481 = Lathing setter;\n482 = Polisher Plasterer;\n483 = Outer wall insulation specialist;\n484 = Slab layer;\n486 = Ceiling, Wall sprayer;\n487 = Plasterer (Sprayer);\n488 = Gluer;\n489 = Compulsory education;\n490 = Block layer (Completion);\n491 = Durox layer;\n492 = Plaster board builder;\n493 = Block layer (structural work);\n494 = Sand-lime stone block layer;\n495 = Builder's labourer Plasterer;\n496 = Assistant Sander;\n497 = Sander;\n500 = Vloerenlegger (Cem., Anhydr, e.d.);\n501 = Builder's labourer Floor tiler;\n502 = Polisher (Terrazzo);\n503 = Terrazzo Floor tiler;\n504 = Terrazzo worker;\n505 = Floor tiler (Epoxy);\n521 = Roof tiler;\n530 = Insulation engineer;\n531 = Insulation engineer, outer walls;\n533 = Mechanic, sealing up;\n534 = Applicator;\n535 = Kitter;\n537 = Plastics worker;\n538 = Fitter, Synthetic Window Frames;\n540 = Assembler;\n542 = Fitter, Completion;\n543 = Engineer, Walls/Ceilings;\n550 = Painter II;\n551 = Painter I;\n552 = Wallpaperer;\n553 = Maintenance painter;\n564 = Painter sprayer;\n579 = Crane driver;\n580 = Crane driver II (Mobile);\n581 = Crane driver I (mobile);\n591 = Heavy Equipment Machinist;\n593 = Light Equipment Machinist;\n600 = Master mechanic;\n605 = Mechanic, Maintenance;\n641 = Framemaker;\n642 = Carpenter II;\n643 = Carpenter I;\n660 = Road construction excavation worker;\n666 = Roadworker I;\n667 = Bricklayer's labourer - Roadworker;\n676 = Student soma;\n680 = Plotter;\n704 = Pile driver I;\n722 = Centralist;\n723 = Analyst;\n729 = Concrete pump machinist;\n732 = Driver II;\n733 = Driver I;\n734 = Driver;\n737 = Forklift truck driver;\n741 = Construction worker assistant;\n744 = Chore worker;\n750 = Labourer;\n752 = Site worker;\n753 = Transporter;\n760 = Demolition contractor II;\n776 = Polisher Sander;\n779 = Setter (of natural stone);\n780 = Plumber;\n784 = Production employee;\n800 = Director (Bpf Insured);\n801 = Commissioner;\n803 = Manager;\n804 = Deputy director;\n805 = Manager;\n806 = Project manager;\n807 = Area manager;\n808 = Construction engineer;\n809 = Engineer;\n810 = Position classifier;\n811 = Architect;\n812 = Technical Employee Planning Office;\n813 = Concrete technician;\n814 = Design engineer;\n815 = Architect of bending schedule;\n816 = Calculator (Pre-);\n817 = Quality controller;\n818 = Surveyor;\n819 = Welding expert;\n820 = Equipment department, Head;\n821 = Management consultant;\n822 = Supervisor;\n823 = Draughtsman;\n824 = Planner;\n825 = Property developer;\n826 = Medewerker PR En Marketing;\n830 = Manager Joinery works;\n831 = Hall manager;\n840 = Construction supervisor;\n841 = Head construction supervisor;\n850 = Accountant;\n851 = Canvasser;\n852 = Administrator;\n853 = Administrative employee;\n854 = Business economist;\n855 = Bookkeeper;\n856 = Calculator (Post-);\n857 = Commercial employee;\n858 = Checker;\n859 = Purchaser;\n860 = Lawyer;\n861 = Clerk;\n862 = Personnel manager;\n863 = Repro employee;\n864 = Secretariat employee;\n865 = Word processor;\n866 = Telephone operator;\n867 = Typist;\n868 = Sales representative;\n880 = Operator;\n881 = Programmer Computer;\n882 = Head Computer Centre;\n883 = Systems analyst;\n884 = Systems manager;\n890 = Watchman/Doorkeeper;\n891 = Warehouse manager-Managerial;\n892 = Terrain manager (Managerial);\n893 = Warehouseman-Non managerial;\n894 = Transport, Manager;\n895 = Salesperson, Shop;\n896 = Fitter (Uta);\n897 = Sales manager;\n898 = Buyer counsellor;\n900 = Trainee;\n901 = Placement;\n902 = Volunteer;\n910 = Holiday worker, Administrative;\n911 = Vakantiewerker, Niet-Adminstratief;\n920 = Manager, Camp;\n921 = Manager, Living quarters;\n930 = Canteen staff;\n931 = Coffee lady;\n935 = Cleaners;\n951 = DGA voluntary LAP;\n952 = DGA voluntary VP;\n953 = DGA voluntary LAP/VP;", "format": "" }, "ViIe": { "type": "string", "enum": [ "101", "102", "103", "104", "105", "106", "107", "108", "109", "110", "111", "112", "113", "114", "115", "116", "117", "118", "119", "120", "121", "123", "124", "125", "126", "129", "130", "131", "132", "133", "134", "135", "136", "137", "138", "140", "141", "142", "150", "151", "160", "199", "200", "201", "202", "203", "205", "206", "210", "211", "220", "221", "222", "223", "240", "250", "251", "252", "253", "254", "255", "256", "257", "258", "259", "265", "266", "267", "268", "269", "270", "271", "299", "301", "305", "310", "311", "315", "316", "317", "318", "319", "320", "321", "322", "323", "324", "325", "326", "327", "328", "329", "330", "331", "332", "333", "340", "350", "351", "352", "353", "354", "355", "356", "357", "358", "359", "360", "361", "362", "363", "364", "365", "366", "367", "368", "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382", "383", "384", "385", "386", "387", "388", "389", "390", "391", "392", "401", "402", "403" ], "maxLength": 20, "description": "&A&O (Schilders) profession\n101 = Onderhoudsschilder (geldig t/m 2012);\n102 = Nieuwbouwschilder (geldig t/m 2012);\n103 = Constructieschilder (geldig t/m 2012);\n104 = Plafond/wandspuiter (geldig t/m 2012);\n105 = Voorman schilder (geldig t/m 2012);\n106 = Uitvoerder (geldig t/m 2012);\n107 = Decoratieschilder (geldig t/m 2012);\n108 = Letterschilder (geldig t/m 2012);\n109 = Reclameschilder (geldig t/m 2012);\n110 = Meubelspuiter (geldig t/m 2012);\n111 = Autospuiter (geldig t/m 2012).;\n112 = Scheepsschilder - 1 (geldig t/m 2012);\n113 = Scheepsschilder - 2 (geldig t/m 2012);\n114 = Betonspuiter (geldig t/m 2012);\n115 = Beton(be)werker (geldig t/m 2012);\n116 = Spuiter (geldig t/m 2012);\n117 = Afwerker (geldig t/m 2012);\n118 = Opperman (geldig t/m 2012);\n119 = Gevelreiniger (geldig t/m 2012);\n120 = Glaszetter - 1 (geldig t/m 2012);\n121 = Glaszetter - 2 (geldig t/m 2012);\n123 = Wegmarkeerder (geldig t/m 2012);\n124 = Behanger (geldig t/m 2012);\n125 = Isoleerder (geldig t/m 2012);\n126 = Decorateur (geldig t/m 2012);\n129 = Werkplaats timmerman (geldig t/m 2012);\n130 = Timmerman (geldig t/m 2012);\n131 = Metselaar (geldig t/m 2012);\n132 = Stukadoor (geldig t/m 2012);\n133 = Applicateur (geldig t/m 2012);\n134 = Classificeerder (geldig t/m 2012);\n135 = Halfwas (geldig t/m 2012);\n136 = Apprentice painter (valid up to and incl. 2012);\n137 = Leerling stukadoor (geldig t/m 2012);\n138 = Practicant schilder (geld.ig t/m 2012);\n140 = Holiday worker;\n141 = Spacspuiter (geldig t/m 2012);\n142 = Schoonmaker schilderwerken (geldig t/m 2012);\n150 = Durox/gibosteller (geldig t/m 2012);\n151 = Vloerenlegger (geldig t/m 2012);\n160 = Autoschadehersteller (geldig t/m 2012);\n199 = Timmerman (geen cao) (geldig t/m 2010);\n200 = MMS;\n201 = Manager;\n202 = Adjunct-directeur (geldig t/m 2012);\n203 = Manager (geldig t/m 2012);\n205 = Meewerkend directeur (geldig t/m 2012);\n206 = Procuratiehouder (geldig t/m 2012);\n210 = Bedrijfsleider (geldig t/m 2012);\n211 = Hoofduitvoerder (geldig t/m 2012);\n220 = Calculator - werkvoorbereider (geldig t/m 2012);\n221 = Technisch administratief persoon (geldig t/m 2012);\n222 = Administratief personeel (geldig t/m 2012);\n223 = Secretaresse /telefoniste (geldig t/m 2012);\n240 = 'UTA' holiday worker;\n250 = Accountant (geldig t/m 2012);\n251 = Administrateur (geldig t/m 2012);\n252 = Boekhouder (geldig t/m 2012);\n253 = Magazijnchef (geldig t/m 2012);\n254 = Meewerkend bedrijfsleider (geldig t/m 2012);\n255 = Meewerkend hoofduitvoerder (geldig t/m 2012);\n256 = Meewerkendtechn. en admin.pers. (geldig t/m jaar 2012);\n257 = Projectontwikkelaar (geldig t/m 2012);\n258 = Telefoniste / receptioniste (geldig t/m 2012);\n259 = Vertegenwoordiger (geldig t/m 2012);\n265 = Werkvoorbereider (geldig t/m 2012);\n266 = Chef werkplaats (geldig t/m 2012);\n267 = Beheerder (geldig t/m 2012);\n268 = Projectleider (geldig t/m 2012);\n269 = Assistant project manager;\n270 = Typist(e) (geldig t/m 2012);\n271 = Secretariaat medewerker (geldig t/m 2012);\n299 = Commissaris (geldig t/m 2012);\n301 = Practicant UTA (geldig t/m 2012);\n305 = Doorman/watchman;\n310 = Cleaner (valid through 2011);\n311 = Chauffeur (geldig t/m 2012);\n315 = Canteen staff;\n316 = Warehouseman;\n317 = Delivery person;\n318 = Shop staff;\n319 = Salesperson;\n320 = Domestic personnel;\n321 = Kassenbeglazer (geldig t/m 2012);\n322 = Kitter (geldig t/m 2012);\n323 = Kunststofverwerker (geldig t/m 2012);\n324 = Mastieker (geldig t/m 2012);\n325 = Furniture sprayer (no CLA);\n326 = Monteur (geldig t/m 2012);\n327 = Permanieter (geldig t/m 2012);\n328 = Steigerbouwer (geldig t/m 2012);\n329 = Stoffeerder (geldig t/m 2012);\n330 = Straler (geldig t/m 2012);\n331 = Werkster/interieurverzorgster (geldig t/m 2012);\n332 = Verkoopleider (geldig t/m 2012);\n333 = Trainee (no CLA);\n340 = Vakantiewerker (geen cao) (geldig t/m 2010);\n350 = Meubelspuiter (dispensatie cao) (Vervallen);\n351 = Administrative employee;\n352 = Secretaresse/Managementassistent;\n353 = Financieel administratief medewerker;\n354 = Office manager;\n355 = Hoofd administratie;\n356 = Controller;\n357 = Temp staff;\n358 = Assistent betonbewerker;\n359 = Assistent timmerkracht;\n360 = Betonbewerker;\n361 = Timmerkracht/houtreparateur;\n362 = Allround betonbewerker;\n363 = Allround timmerkracht;\n364 = Voorman/teamleider;\n365 = Assistent glaszetter;\n366 = Glazier;\n367 = Allround glaszetter;\n368 = Specialist glaszetter;\n369 = Voorman/teamleider;\n370 = Assistent metaalconservering;\n371 = Medewerker metaalconservering;\n372 = Construction painter;\n373 = Sandblaster;\n374 = Sprayer;\n375 = Voorman/teamleider;\n376 = Assistent schilder;\n377 = Schilder;\n378 = Allroundschilder;\n379 = Specialist schilder/restauratieschilder;\n380 = Voorman/teamleider;\n381 = Materiaalbeheerder;\n382 = Calculator;\n383 = Planner;\n384 = Calculator/werkvoorbereider;\n385 = Onderhoudsadviseur;\n386 = Hoofd bedrijfsbureau;\n387 = Construction supervisor;\n388 = Project manager;\n389 = Manager;\n390 = Other CLA values;\n391 = Other ‘UTA’ values;\n392 = New entrant 2016 (valid until 2016);\n401 = Nieuwkomer (geldig t/m 2012);\n402 = Temporarily employed tradesman;\n403 = Temporary 'UTA' personnel;", "format": "" }, "ViSw": { "type": "string", "enum": [ "00", "01", "02", "03", "04", "05", "06", "07", "08", "09", "99" ], "maxLength": 20, "description": "'SFB' basic insurance\n00 = Contract of employment;\n01 = Acceptance of work;\n02 = Sales representative;\n03 = Wsw'er;\n04 = Placement;\n05 = Conscript;\n06 = Home-worker;\n07 = Temp;\n08 = Musician/artist;\n09 = Individual labour against payment;\n99 = Conscientious objections;", "format": "" }, "DsEm": { "type": "string", "maxLength": 12, "description": "Description profession", "format": "" }, "YnCf": { "type": "boolean", "description": "Family of owner", "format": "" }, "YnCs": { "type": "boolean", "description": "'Directeur/grootaandeelhouder'", "format": "" }, "YnCo": { "type": "boolean", "description": "Previous owner", "format": "" }, "YnCc": { "type": "boolean", "description": "On-call/stand-in worker", "format": "" }, "YnZw": { "type": "boolean", "description": "PR", "format": "" }, "YnWw": { "type": "boolean", "description": "'WW'", "format": "" }, "YWAO": { "type": "boolean", "description": "'WAO/WIA'", "format": "" }, "YZFW": { "type": "boolean", "description": "'ZFW'", "format": "" }, "YnAb": { "type": "boolean", "description": "Insured with ABP", "format": "" }, "UTAy": { "type": "boolean", "description": "'UTA'", "format": "" }, "DcFr": { "type": "boolean", "description": "Declaring work susceptible to frost possible", "format": "" }, "ViSr": { "type": "string", "enum": [ "N", "24", "72" ], "maxLength": 20, "description": "Personal risk period\nN = none;\n24 = 24 hours;\n72 = 72 hours;", "format": "" }, "SdLn": { "type": "integer", "description": "No. of days compulsory education", "format": "" }, "SdRf": { "type": "boolean", "description": "'Risicofonds' dispensation", "format": "" }, "ViSp": { "type": "string", "enum": [ "00", "15", "25", "35", "45", "55", "65", "80" ], "maxLength": 20, "description": "WAO (%)\n00 = Collectieve dispensatie BPF, geen a.o. perc;\n15 = 15-25%;\n25 = 25-35%;\n35 = 35-45%;\n45 = 45-55%;\n55 = 55-65%;\n65 = 65-80%;\n80 = 80-100%;", "format": "" }, "ViSz": { "type": "string", "enum": [ "A", "B" ], "maxLength": 20, "description": "Premium group ZW\nA = Premium group A;\nB = Premium group B;", "format": "" }, "CoId": { "type": "string", "maxLength": 3, "description": "Country", "format": "" }, "Ad": { "type": "string", "maxLength": 60, "description": "Address", "format": "" }, "HmNr": { "type": "integer", "description": "House number", "format": "" }, "HmAd": { "type": "string", "maxLength": 30, "description": "Extension (a, b, etc.) to house number", "format": "" }, "ZpCd": { "type": "string", "maxLength": 15, "description": "Postal code", "format": "" }, "Rs": { "type": "string", "maxLength": 50, "description": "City", "format": "" }, "InYr": { "type": "boolean", "description": "Do not include in year-end work", "format": "" }, "ViSb": { "type": "string", "enum": [ "AB", "AW" ], "maxLength": 20, "description": "Address reference\nAB = Houseboat;\nAW = Caravan;", "format": "" } }, "required": [ "DaBe", "AyId" ] } } } } } }, "AfasAgencyO_O": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "DaBe": { "type": "string", "description": "Start date", "format": "date" }, "AyId": { "type": "string", "maxLength": 15, "description": "Agency", "format": "" }, "DaEn": { "type": "string", "description": "End date", "format": "date" }, "Vi1": { "type": "string", "enum": [ "01", "10", "11", "12", "02", "03", "04", "05", "06", "07", "08", "09" ], "maxLength": 20, "description": "&UWV OO basic insurance\n01 = Contract of employment;\n10 = Temp;\n11 = Individual labour against payment;\n12 = Payment at dismissal;\n02 = Appointment pertaining to public law;\n03 = WSW recipient;\n04 = Placement;\n05 = Shareholding fisherman;\n06 = Managed co-operative society;\n07 = Conscript;\n08 = Home-worker;\n09 = Musician/artist;", "format": "" }, "YnCf": { "type": "boolean", "description": "Family of owner", "format": "" }, "YnCs": { "type": "boolean", "description": "'Directeur/grootaandeelhouder'", "format": "" }, "YnCo": { "type": "boolean", "description": "Previous owner", "format": "" }, "YnCc": { "type": "boolean", "description": "On-call/stand-in worker", "format": "" }, "YnZW": { "type": "boolean", "description": "PR", "format": "" }, "DoPs": { "type": "boolean", "description": "'Ufo'", "format": "" }, "DoWo": { "type": "boolean", "description": "'WAO O&O'", "format": "" }, "YZFW": { "type": "boolean", "description": "'ZFW'", "format": "" }, "Hand": { "type": "boolean", "description": "'Arbeidsgehandicapte' reduction", "format": "" }, "Cons": { "type": "boolean", "description": "Conscientious objections", "format": "" }, "CoId": { "type": "string", "maxLength": 3, "description": "Country", "format": "" }, "Ad": { "type": "string", "maxLength": 60, "description": "Address", "format": "" }, "HmNr": { "type": "integer", "description": "House number", "format": "" }, "HmAd": { "type": "string", "maxLength": 30, "description": "Extension (a, b, etc.) to house number", "format": "" }, "ZpCd": { "type": "string", "maxLength": 15, "description": "Postal code", "format": "" }, "Rs": { "type": "string", "maxLength": 50, "description": "City", "format": "" }, "Vi9": { "type": "string", "enum": [ "1", "2", "3", "4" ], "maxLength": 20, "description": "ZFW pension type\n1 = None;\n2 = 'VUT';\n3 = Early pension;\n4 = Pension;", "format": "" } }, "required": [ "DaBe", "AyId", "Vi1", "YnCf", "YnCs", "YnCo", "YnCc", "YnZW", "DoPs", "DoWo", "YZFW", "Hand", "Cons" ] } } } } } }, "AfasAgencyABP": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "DaBe": { "type": "string", "description": "Start date", "format": "date" }, "AyId": { "type": "string", "maxLength": 15, "description": "Agency", "format": "" }, "DaEn": { "type": "string", "description": "End date", "format": "date" }, "ExVP": { "type": "boolean", "description": "Do not include in VFPF delivery", "format": "" }, "ExDu": { "type": "boolean", "description": "Not included in DUO deliveries", "format": "" }, "ExAv": { "type": "boolean", "description": "Do not include in 'AVR' indicators", "format": "" } }, "required": [ "DaBe", "AyId" ] } } } } } }, "AfasAgencyPGGM": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "DaBe": { "type": "string", "description": "Start date", "format": "date" }, "AyId": { "type": "string", "maxLength": 15, "description": "Agency", "format": "" }, "Pg1": { "type": "boolean", "description": "Include in 'GMA'", "format": "" } }, "required": [ "DaBe", "AyId" ] } } } } } }, "AfasAgencyTKP": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "DaBe": { "type": "string", "description": "Start date", "format": "date" }, "AyId": { "type": "string", "maxLength": 15, "description": "Agency", "format": "" }, "DaEn": { "type": "string", "description": "End date", "format": "date" } }, "required": [ "DaBe", "AyId" ] } } } } } }, "AfasAgencyPensioenaangifte": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "DaBe": { "type": "string", "description": "Start date", "format": "date" }, "AyId": { "type": "string", "maxLength": 15, "description": "Agency", "format": "" }, "DaEn": { "type": "string", "description": "End date", "format": "date" }, "CoNr": { "type": "string", "maxLength": 20, "description": "Registration", "format": "" } }, "required": [ "DaBe", "AyId" ] } } } } } }, "AfasAgencyGroupS": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "DaBe": { "type": "string", "description": "Start date", "format": "date" }, "AyId": { "type": "string", "maxLength": 15, "description": "Agency", "format": "" }, "DaEn": { "type": "string", "description": "End date", "format": "date" }, "AKL": { "type": "number", "description": "Dependent children", "format": "number" }, "APL": { "type": "number", "description": "Number of other dependants", "format": "number" }, "BST": { "type": "string", "enum": [ "1", "2", "3", "4", "5", "6", "7", "8" ], "maxLength": 20, "description": "Marital status\n1 = Unmarried;\n2 = Married;\n3 = Widow(er);\n4 = Divorced / Legally separated;\n5 = De facto divorced;\n6 = Cohabiting;\n7 = Widow with surviving depedent's pension;\n8 = Legally cohabiting;", "format": "" }, "CEL": { "type": "string", "enum": [ "0", "1", "2", "3", "4", "5", "8", "9" ], "maxLength": 20, "description": "Dependent spouse\n0 = Spouse not dependent;\n1 = Dependent spouse;\n2 = Dependent handicapped spouse;\n3 = Dependent spouse: employee with early retirement pension, not head of family;\n4 = Handicapped dependent spouse: employee with early retirement pension, not head of family.;\n5 = Spouse not dependent: employee with early retirement pension, head of family.;\n8 = Spouse with small pension;\n9 = Spouse with minimum income;", "format": "" }, "CWH": { "type": "boolean", "description": "Disabled employee", "format": "" }, "ExSs": { "type": "boolean", "description": "Exclude employers' social-accounting secretariat", "format": "" }, "G65L": { "type": "number", "description": "Dependent disabled 65+", "format": "number" }, "GAL": { "type": "number", "description": "Dependent other disabled", "format": "number" }, "GKL": { "type": "number", "description": "Dependent disabled children", "format": "number" }, "DTH": { "type": "string", "description": "Wedding date", "format": "date" }, "ENA": { "type": "string", "maxLength": 36, "description": "Surname and first name of partner", "format": "" }, "PBiD": { "type": "string", "description": "Partner's date of birth", "format": "date" }, "W04": { "type": "number", "description": "Number of dependants aged 65 or over", "format": "number" }, "Z32": { "type": "string", "enum": [ "1", "2", "3", "4", "5" ], "maxLength": 20, "description": "Salary periodicity\n1 = Monthly;\n2 = Per half month (fifteen days);\n3 = Per 2 weeks (fourteen days);\n4 = Per 4 weeks;\n5 = Weekly;", "format": "" }, "Z03": { "type": "number", "description": "Registration number fund for the disabled", "format": "number" }, "Z04": { "type": "string", "enum": [ "A", "B", "C" ], "maxLength": 20, "description": "Medical category\nA = A;\nB = B;\nC = C;", "format": "" }, "NI1": { "type": "string", "enum": [ "1", "2", "3", "4", "5", "6", "7" ], "maxLength": 20, "description": "Level 1 allocation\n1 = Employer;\n2 = Employee;\n3 = Organisational unit;\n4 = Cost centre;\n5 = Cost unit;\n6 = Job;\n7 = Project;", "format": "" }, "NI2": { "type": "string", "enum": [ "1", "2", "3", "4", "5", "6", "7" ], "maxLength": 20, "description": "Level 2 allocation\n1 = Employer;\n2 = Employee;\n3 = Organisational unit;\n4 = Cost centre;\n5 = Cost unit;\n6 = Job;\n7 = Project;", "format": "" }, "NI3": { "type": "string", "enum": [ "1", "2", "3", "4", "5", "6", "7" ], "maxLength": 20, "description": "Level 3 allocation\n1 = Employer;\n2 = Employee;\n3 = Organisational unit;\n4 = Cost centre;\n5 = Cost unit;\n6 = Job;\n7 = Project;", "format": "" }, "CGA": { "type": "string", "enum": [ "0", "1", "2", "3", "4" ], "maxLength": 20, "description": "Cross-border worker\n0 = Not cross-border worker;\n1 = Cross-border worker living in Germany;\n2 = Cross-border worker living in France;\n3 = Cross-border worker living in Luxemburg;\n4 = Cross-border worker living in the Netherlands;", "format": "" }, "CBV": { "type": "string", "enum": [ "0", "1", "2", "3", "4", "5", "6" ], "maxLength": 20, "description": "Subject to advance levy\n0 = Niet onderworpen;\n1 = Onderworpen;\n2 = No right of abode in Belgium;\n3 = Vrijstell.stort.BV nacht of ploeg;\n4 = Niet verblijfhouder sportbeoef./ -30 dagen;\n5 = Niet verblijfh./vrijst.nacht of ploeg;\n6 = Onderworpen (+werk.beroepskosten);", "format": "" }, "MaTl": { "type": "number", "description": "Informal care 65+ chargeable", "format": "number" } }, "required": [ "DaBe", "AyId" ] } } } } } }, "AfasAgencySDWorx": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "DaBe": { "type": "string", "description": "Start date", "format": "date" }, "AyId": { "type": "string", "maxLength": 15, "description": "Agency", "format": "" }, "DaEn": { "type": "string", "description": "End date", "format": "date" }, "AKL": { "type": "number", "description": "Dependent children", "format": "number" }, "APL": { "type": "number", "description": "Number of other dependants", "format": "number" }, "BST": { "type": "string", "enum": [ "1", "2", "3", "4", "5", "6", "7", "8" ], "maxLength": 20, "description": "Marital status\n1 = Unmarried;\n2 = Married;\n3 = Widow(er);\n4 = Divorced / Legally separated;\n5 = De facto divorced;\n6 = Cohabiting;\n7 = Widow with surviving depedent's pension;\n8 = Legally cohabiting;", "format": "" }, "CEL": { "type": "string", "enum": [ "0", "1", "2", "3", "4", "5", "8", "9" ], "maxLength": 20, "description": "Dependent spouse\n0 = Spouse not dependent;\n1 = Dependent spouse;\n2 = Dependent handicapped spouse;\n3 = Dependent spouse: employee with early retirement pension, not head of family;\n4 = Handicapped dependent spouse: employee with early retirement pension, not head of family.;\n5 = Spouse not dependent: employee with early retirement pension, head of family.;\n8 = Spouse with small pension;\n9 = Spouse with minimum income;", "format": "" }, "CWH": { "type": "boolean", "description": "Disabled employee", "format": "" }, "ExSs": { "type": "boolean", "description": "Exclude employers' social-accounting secretariat", "format": "" }, "G65L": { "type": "number", "description": "Dependent disabled 65+", "format": "number" }, "GAL": { "type": "number", "description": "Dependent other disabled", "format": "number" }, "GKL": { "type": "number", "description": "Dependent disabled children", "format": "number" }, "DTH": { "type": "string", "description": "Wedding date", "format": "date" }, "ENA": { "type": "string", "maxLength": 36, "description": "Surname and first name of partner", "format": "" }, "PBiD": { "type": "string", "description": "Partner's date of birth", "format": "date" }, "W04": { "type": "number", "description": "Number of dependants aged 65 or over", "format": "number" }, "Z32": { "type": "string", "enum": [ "1", "2", "3", "4", "5" ], "maxLength": 20, "description": "Salary periodicity\n1 = Monthly;\n2 = Per half month (fifteen days);\n3 = Per 2 weeks (fourteen days);\n4 = Per 4 weeks;\n5 = Weekly;", "format": "" }, "F281": { "type": "string", "enum": [ "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "30", "31", "51" ], "maxLength": 20, "description": "Fiche 281\n01 = Early retirement old system;\n02 = Foreign element;\n03 = German cross-border worker;\n04 = French cross-border worker;\n05 = Dutch cross-border worker;\n06 = Pensioner without performance;\n07 = Manager;\n08 = Foreign element manager;\n09 = No fiche 281/325;\n10 = Commissions, brokerages, trade reversals;\n11 = Business manager that is not a partner;\n12 = Buitenlands kaderlid werknemer;\n13 = Buitenlands kaderlid bedrijfsleider;\n14 = Buitenlands onderzoeker;\n15 = Buit.arb.land/tuinb.met woonstaatverkl.;\n16 = Buit.arb.land/tuinb.zonder woonstaatverk;\n17 = Binnenl. gelegenheidsarbeider land/tuin;\n18 = F281.18 andere vervangingsinkomsten;\n19 = Fiche 281.27 verenigingswerk socio-cult;\n20 = Fiche 281.27 verenigingswerk sport;\n30 = Fiche 281.30;\n31 = Foreign company record 281.30;\n51 = Legal entity record 281.50;", "format": "" }, "PaFu": { "type": "string", "enum": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C", "X" ], "maxLength": 20, "description": "Spouse's profession\n1 = Worker;\n2 = Internal post;\n3 = Office worker;\n4 = Self-employed;\n5 = Miner;\n6 = Sailor;\n7 = State/province/municipality;\n8 = Other;\n9 = Without;\nA = Income < € 195,00 / mnth;\nB = Pension < € 117,00 / mnth;\nC = Pension < € 390,00 / mnth;\nX = Unknown;", "format": "" }, "ReCo": { "type": "string", "enum": [ "0", "1", "2", "3", "4", "5", "6", "7" ], "maxLength": 20, "description": "Refunded costs\n0 = Without refunded costs;\n1 = 'Ja: bewijsstukken';\n2 = Common transportation;\n3 = 'Ja: bewijsstukken + gemeenschappelijk vervoer';\n4 = 'Ja: ernstige normen';\n5 = 'Ja: ernstige normen + bewijsstukken';\n6 = 'Ja: ernstige normen + gemeenschappelijk vervoer';\n7 = 'Ja: ernstige normen + bewijsstukken + gemeenschappelijk vervoer';", "format": "" }, "WsDo": { "type": "string", "enum": [ "2", "B", "K", "P", "S" ], "maxLength": 20, "description": "Pay slip\n2 = Pay slip in employee's language;\nB = Pay slip in employee's language + English translation;\nK = Pay slip in German;\nP = Pay slip in employee's language + German translation;\nS = Pay slip in employee's language + Dutch or French translation;", "format": "" }, "MaTl": { "type": "number", "description": "Informal care 65+ chargeable", "format": "number" } }, "required": [ "DaBe", "AyId" ] } } } } } }, "AfasAgencyAcerta": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "DaBe": { "type": "string", "description": "Start date", "format": "date" }, "AyId": { "type": "string", "maxLength": 15, "description": "Agency", "format": "" }, "DaEn": { "type": "string", "description": "End date", "format": "date" }, "AKL": { "type": "number", "description": "Dependent children", "format": "number" }, "APL": { "type": "number", "description": "Number of other dependants", "format": "number" }, "BST": { "type": "string", "enum": [ "1", "2", "3", "4", "5", "6", "7", "8" ], "maxLength": 20, "description": "Marital status\n1 = Unmarried;\n2 = Married;\n3 = Widow(er);\n4 = Divorced / Legally separated;\n5 = De facto divorced;\n6 = Cohabiting;\n7 = Widow with surviving depedent's pension;\n8 = Legally cohabiting;", "format": "" }, "CEL": { "type": "string", "enum": [ "0", "1", "2", "3", "4", "5", "8", "9" ], "maxLength": 20, "description": "Dependent spouse\n0 = Spouse not dependent;\n1 = Dependent spouse;\n2 = Dependent handicapped spouse;\n3 = Dependent spouse: employee with early retirement pension, not head of family;\n4 = Handicapped dependent spouse: employee with early retirement pension, not head of family.;\n5 = Spouse not dependent: employee with early retirement pension, head of family.;\n8 = Spouse with small pension;\n9 = Spouse with minimum income;", "format": "" }, "CWH": { "type": "boolean", "description": "Disabled employee", "format": "" }, "ExSs": { "type": "boolean", "description": "Exclude employers' social-accounting secretariat", "format": "" }, "G65L": { "type": "number", "description": "Dependent disabled 65+", "format": "number" }, "GAL": { "type": "number", "description": "Dependent other disabled", "format": "number" }, "GKL": { "type": "number", "description": "Dependent disabled children", "format": "number" }, "DTH": { "type": "string", "description": "Wedding date", "format": "date" }, "ENA": { "type": "string", "maxLength": 36, "description": "Surname and first name of partner", "format": "" }, "PBiD": { "type": "string", "description": "Partner's date of birth", "format": "date" }, "W04": { "type": "number", "description": "Number of dependants aged 65 or over", "format": "number" }, "Z32": { "type": "string", "enum": [ "1", "2", "3", "4", "5" ], "maxLength": 20, "description": "Salary periodicity\n1 = Monthly;\n2 = Per half month (fifteen days);\n3 = Per 2 weeks (fourteen days);\n4 = Per 4 weeks;\n5 = Weekly;", "format": "" }, "SiCh": { "type": "boolean", "description": "Non-married with children", "format": "" }, "ExFi": { "type": "string", "enum": [ "1", "2", "3", "4", "5", "6", "7" ], "maxLength": 20, "description": "Reason for fiscal regimen exemption\n1 = Pays taxes as independant;\n2 = Pays taxes in a foreign country;\n3 = Taxes paid by the fund of disabled persons;\n4 = Working student;\n5 = Tax exemption for young workers;\n6 = Flex employee;\n7 = Society worker;", "format": "" }, "Pain": { "type": "string", "enum": [ "0", "1", "2", "3", "8", "9" ], "maxLength": 20, "description": "Partner's income\n0 = Alleenstaande;\n1 = Echtg.met gewone beroepsink.max. = *** eur net/m;\n2 = Echtg. Met pens.,rente,ed. Max. = *** eur netto/m.;\n3 = Echtg. Eeg. En inkomen > *** eur/jaar;\n8 = Echtgeno(o)t(e) met beroepsinkomsten;\n9 = Echtg.zond.ber.ink./pens,rente,ed < *** eur net/m;", "format": "" }, "PaPo": { "type": "string", "enum": [ "1", "2", "3", "4", "5", "6", "7", "8", "9" ], "maxLength": 20, "description": "Partner's profession\n1 = Worker;\n2 = Domestic servant;\n3 = Hoofdarbeider (bediende);\n4 = Self-employed;\n5 = Miner;\n6 = Zeeman ter koopvaardij;\n7 = Vaste beambte of stagiair;\n8 = Andere;\n9 = None;", "format": "" }, "Payr": { "type": "string", "enum": [ "1", "10", "11", "12", "13", "14", "15", "2", "3", "4", "5", "6", "7", "8", "9" ], "maxLength": 20, "description": "PAYE\n1 = Gewoon, bedrijfsvoorheffing-onderworpen;\n10 = Gewone bv onderworpen met min. van 11,11 %;\n11 = Sport nevenact. Gewoon tarief;\n12 = Sport nevenactiv. Tarief buitenland;\n13 = Podiumkunstenaar/sportbeoef. Niet-inwoner;\n14 = Gelegenheidswerknemer horeca;\n15 = Foreign seasonal work Country/horticulture company 18.725%;\n2 = Not subject to advance levy;\n3 = Advance levy at foreign rate;\n4 = Bedrijfsvoorh. voor toevall. of periodieke vergoed;\n5 = Reservermilitairen (niet rijksinwoners) (30% bv);\n6 = Uitzendkrachten en seizoenarbeiders (11,11% bv);\n7 = Sociaal plan/uitstappers;\n8 = Gewoon, bedrijfsvoorh.-onderworpen(basis70%);\n9 = Ngo co-operant;", "format": "" }, "FaCh": { "type": "string", "enum": [ "0", "1", "2" ], "maxLength": 20, "description": "Early retiree with dependent family\n0 = Not applicable;\n1 = No. of dependents;\n2 = No dependents;", "format": "" }, "Fich": { "type": "string", "enum": [ "1", "2", "3", "4", "5" ], "maxLength": 20, "description": "Employee type for declaration\n1 = Fiche, geen aangifte;\n2 = Fiche en aangifte;\n3 = Geen fiche, geen aangifte;\n4 = Fiche, 325, geen aangifte;\n5 = Geen fiscale documenten;", "format": "" }, "FiId": { "type": "string", "maxLength": 35, "description": "Fiscal identification number", "format": "" }, "FiRe": { "type": "string", "enum": [ "1", "2", "3", "6" ], "maxLength": 20, "description": "Fiscal regimen\n1 = Pays company advance tax;\n2 = Does not pay company advance tax;\n3 = Non-resident advance tax;\n6 = Fictitious PAYE;", "format": "" }, "MaSt": { "type": "string", "enum": [ "1", "2", "3", "4", "5", "6", "7", "9" ], "maxLength": 20, "description": "Marital status\n1 = Unmarried;\n2 = Married;\n3 = Weduwe of weduwnaar;\n4 = De facto divorced;\n5 = Wettelijk gescheiden;\n6 = Gescheiden van tafel en bed;\n7 = Legally cohabiting;\n9 = Unknown;", "format": "" }, "MsDa": { "type": "string", "description": "Marital status start date", "format": "date" }, "BoCo": { "type": "string", "enum": [ "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "C" ], "maxLength": 20, "description": "Cross-border worker code\n0 = Arrived taxpayer (BBIB);\n1 = Grensarbeider Frankrijk;\n2 = Grensarbeiders Nederland;\n3 = Grensarbeider Duitsland;\n4 = Incoming researcher (BBIO);\n5 = Buitenlands Kaderlid;\n6 = Buitenl kad deel loon in land met dubbelbelverdr;\n7 = Wn deel loon in land zonder dubbelbelverdr;\n8 = Wn deel loon in land met dubbelbelverdr;\n9 = Wn deel loon in land zonder dubbelbelverdr;\nC = Foreign seasonal worker WITH certificate of tax residence;", "format": "" }, "DiPa": { "type": "boolean", "description": "Invalid partner", "format": "" }, "MaTl": { "type": "number", "description": "Informal care 65+ chargeable", "format": "number" } }, "required": [ "DaBe", "AyId" ] } } } } } }, "AfasAgencyPartena": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "DaBe": { "type": "string", "description": "Start date", "format": "date" }, "AyId": { "type": "string", "maxLength": 15, "description": "Agency", "format": "" }, "DaEn": { "type": "string", "description": "End date", "format": "date" }, "AKL": { "type": "number", "description": "Dependent children", "format": "number" }, "APL": { "type": "number", "description": "Number of other dependants", "format": "number" }, "BST": { "type": "string", "enum": [ "1", "2", "3", "4", "5", "6", "7", "8" ], "maxLength": 20, "description": "Marital status\n1 = Unmarried;\n2 = Married;\n3 = Widow(er);\n4 = Divorced / Legally separated;\n5 = De facto divorced;\n6 = Cohabiting;\n7 = Widow with surviving depedent's pension;\n8 = Legally cohabiting;", "format": "" }, "CEL": { "type": "string", "enum": [ "0", "1", "2", "3", "4", "5", "8", "9" ], "maxLength": 20, "description": "Dependent spouse\n0 = Spouse not dependent;\n1 = Dependent spouse;\n2 = Dependent handicapped spouse;\n3 = Dependent spouse: employee with early retirement pension, not head of family;\n4 = Handicapped dependent spouse: employee with early retirement pension, not head of family.;\n5 = Spouse not dependent: employee with early retirement pension, head of family.;\n8 = Spouse with small pension;\n9 = Spouse with minimum income;", "format": "" }, "CWH": { "type": "boolean", "description": "Disabled employee", "format": "" }, "ExSs": { "type": "boolean", "description": "Exclude employers' social-accounting secretariat", "format": "" }, "G65L": { "type": "number", "description": "Dependent disabled 65+", "format": "number" }, "GAL": { "type": "number", "description": "Dependent other disabled", "format": "number" }, "GKL": { "type": "number", "description": "Dependent disabled children", "format": "number" }, "DTH": { "type": "string", "description": "Wedding date", "format": "date" }, "ENA": { "type": "string", "maxLength": 36, "description": "Surname and first name of partner", "format": "" }, "PBiD": { "type": "string", "description": "Partner's date of birth", "format": "date" }, "W04": { "type": "number", "description": "Number of dependants aged 65 or over", "format": "number" }, "Z32": { "type": "string", "enum": [ "1", "2", "3", "4", "5" ], "maxLength": 20, "description": "Salary periodicity\n1 = Monthly;\n2 = Per half month (fifteen days);\n3 = Per 2 weeks (fourteen days);\n4 = Per 4 weeks;\n5 = Weekly;", "format": "" }, "SiCh": { "type": "boolean", "description": "Non-married with children", "format": "" }, "ExFi": { "type": "string", "enum": [ "1", "2", "3", "4", "5", "6", "7" ], "maxLength": 20, "description": "Reason for fiscal regimen exemption\n1 = Pays taxes as independant;\n2 = Pays taxes in a foreign country;\n3 = Taxes paid by the fund of disabled persons;\n4 = Working student;\n5 = Tax exemption for young workers;\n6 = Flex employee;\n7 = Society worker;", "format": "" }, "Pain": { "type": "string", "enum": [ "0", "1", "2", "3", "8", "9" ], "maxLength": 20, "description": "Partner's income\n0 = Alleenstaande;\n1 = Echtg.met gewone beroepsink.max. = *** eur net/m;\n2 = Echtg. Met pens.,rente,ed. Max. = *** eur netto/m.;\n3 = Echtg. Eeg. En inkomen > *** eur/jaar;\n8 = Echtgeno(o)t(e) met beroepsinkomsten;\n9 = Echtg.zond.ber.ink./pens,rente,ed < *** eur net/m;", "format": "" }, "PaPo": { "type": "string", "enum": [ "1", "2", "3", "4", "5", "6", "7", "8", "9" ], "maxLength": 20, "description": "Partner's profession\n1 = Worker;\n2 = Domestic servant;\n3 = Hoofdarbeider (bediende);\n4 = Self-employed;\n5 = Miner;\n6 = Zeeman ter koopvaardij;\n7 = Vaste beambte of stagiair;\n8 = Andere;\n9 = None;", "format": "" }, "Payr": { "type": "string", "enum": [ "1", "10", "11", "12", "13", "14", "15", "2", "3", "4", "5", "6", "7", "8", "9" ], "maxLength": 20, "description": "PAYE\n1 = Gewoon, bedrijfsvoorheffing-onderworpen;\n10 = Gewone bv onderworpen met min. van 11,11 %;\n11 = Sport nevenact. Gewoon tarief;\n12 = Sport nevenactiv. Tarief buitenland;\n13 = Podiumkunstenaar/sportbeoef. Niet-inwoner;\n14 = Gelegenheidswerknemer horeca;\n15 = Foreign seasonal work Country/horticulture company 18.725%;\n2 = Not subject to advance levy;\n3 = Advance levy at foreign rate;\n4 = Bedrijfsvoorh. voor toevall. of periodieke vergoed;\n5 = Reservermilitairen (niet rijksinwoners) (30% bv);\n6 = Uitzendkrachten en seizoenarbeiders (11,11% bv);\n7 = Sociaal plan/uitstappers;\n8 = Gewoon, bedrijfsvoorh.-onderworpen(basis70%);\n9 = Ngo co-operant;", "format": "" }, "FaCh": { "type": "string", "enum": [ "0", "1", "2" ], "maxLength": 20, "description": "Early retiree with dependent family\n0 = Not applicable;\n1 = No. of dependents;\n2 = No dependents;", "format": "" }, "Fich": { "type": "string", "enum": [ "1", "2", "3", "4", "5" ], "maxLength": 20, "description": "Employee type for declaration\n1 = Fiche, geen aangifte;\n2 = Fiche en aangifte;\n3 = Geen fiche, geen aangifte;\n4 = Fiche, 325, geen aangifte;\n5 = Geen fiscale documenten;", "format": "" }, "FiId": { "type": "string", "maxLength": 35, "description": "Fiscal identification number", "format": "" }, "FiRe": { "type": "string", "enum": [ "1", "2", "3", "6" ], "maxLength": 20, "description": "Fiscal regimen\n1 = Pays company advance tax;\n2 = Does not pay company advance tax;\n3 = Non-resident advance tax;\n6 = Fictitious PAYE;", "format": "" }, "MaSt": { "type": "string", "enum": [ "1", "2", "3", "4", "5", "6", "7", "9" ], "maxLength": 20, "description": "Marital status\n1 = Unmarried;\n2 = Married;\n3 = Weduwe of weduwnaar;\n4 = De facto divorced;\n5 = Wettelijk gescheiden;\n6 = Gescheiden van tafel en bed;\n7 = Legally cohabiting;\n9 = Unknown;", "format": "" }, "MsDa": { "type": "string", "description": "Marital status start date", "format": "date" }, "BoCo": { "type": "string", "enum": [ "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "C" ], "maxLength": 20, "description": "Cross-border worker code\n0 = Arrived taxpayer (BBIB);\n1 = Grensarbeider Frankrijk;\n2 = Grensarbeiders Nederland;\n3 = Grensarbeider Duitsland;\n4 = Incoming researcher (BBIO);\n5 = Buitenlands Kaderlid;\n6 = Buitenl kad deel loon in land met dubbelbelverdr;\n7 = Wn deel loon in land zonder dubbelbelverdr;\n8 = Wn deel loon in land met dubbelbelverdr;\n9 = Wn deel loon in land zonder dubbelbelverdr;\nC = Foreign seasonal worker WITH certificate of tax residence;", "format": "" }, "DiPa": { "type": "boolean", "description": "Invalid partner", "format": "" }, "PaAn": { "type": "string", "maxLength": 48, "description": "Partner name", "format": "" }, "PaBa": { "type": "string", "enum": [ "0", "1", "2", "3", "4" ], "maxLength": 20, "description": "Salary scale specificity\n0 = None;\n1 = Tax voluntary service amount;\n2 = Tax voluntary service percentage;\n3 = Minimum income tax deducted at source amount;\n4 = Fixed amount;", "format": "" }, "PaWk": { "type": "boolean", "description": "Actual costs", "format": "" }, "PaFv": { "type": "boolean", "description": "Fixed income tax deducted at source", "format": "" }, "PaId": { "type": "string", "maxLength": 25, "description": "Partena identity card", "format": "" }, "PaMv": { "type": "boolean", "description": "Monthly calc. of holiday pay from leaving employm.", "format": "" }, "PaRe": { "type": "string", "maxLength": 10, "description": "Registration number", "format": "" }, "PaBv": { "type": "number", "description": "Value of income tax deducted at source", "format": "number" }, "PaVn": { "type": "string", "maxLength": 24, "description": "Partner's first name", "format": "" }, "PaWp": { "type": "string", "maxLength": 25, "description": "Permit for work", "format": "" }, "PaGa": { "type": "string", "enum": [ "0", "1", "8", "A", "D", "E" ], "maxLength": 20, "description": "Cross-border worker\n0 = No object;\n1 = French cross-border worker;\n8 = Non resident artists;\nA = Non-cross-border worker - with work performance in Belgium> or = 75% (scale I or II);\nD = Non-cross-border worker - with work performance in Belgium<75% (scale III)|;\nE = Non-cross-border worker - without employment contract covering the full calendar year (Scale III);", "format": "" }, "PaIp": { "type": "string", "enum": [ "0", "1", "2", "3", "4", "5" ], "maxLength": 20, "description": "Partner's income\n0 = Partner with income/other;\n1 = Partner with no income;\n2 = Income < € 230 net/month;\n3 = Pension < 138€ net/month;\n4 = Pension < € 459 net/month;\n5 = Partner works in EU;", "format": "" }, "PaOw": { "type": "string", "enum": [ "01", "02", "03", "04", "05", "06", "07", "08" ], "maxLength": 20, "description": "BV submission\n01 = With income tax deducted at source;\n02 = Income tax deducted at source payable by the employer;\n03 = Without income tax deducted at source;\n04 = Without advance tax payment (excluded yearly works);\n05 = Wage record 281.30 (325.30);\n06 = Total neutralisation of taxable;\n07 = Neutralisation of taxable with net;\n08 = Fiscal file 281.20 for independent workers liable to the NSSO;", "format": "" }, "MaTl": { "type": "number", "description": "Informal care 65+ chargeable", "format": "number" } }, "required": [ "DaBe", "AyId" ] } } } } } }, "AfasAgencyStippaangifte": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "DaBe": { "type": "string", "description": "Start date", "format": "date" }, "AyId": { "type": "string", "maxLength": 15, "description": "Agency", "format": "" }, "DaEn": { "type": "string", "description": "End date", "format": "date" }, "NoSt": { "type": "boolean", "description": "Exclude StiPP pension delivery", "format": "" } }, "required": [ "DaBe", "AyId" ] } } } } } }, "AfasIdentityDocument": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "Nr": { "type": "string", "maxLength": 20, "description": "Number", "format": "" }, "DaBe": { "type": "string", "description": "Declaration date", "format": "date" }, "DaEn": { "type": "string", "description": "Expiry date", "format": "date" }, "CoId": { "type": "string", "maxLength": 3, "description": "Issuing country", "format": "" } } }, "Objects": { "type": "array", "items": { "type": "object", "properties": { "AfasIdentityDocumentAttachment": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "FileName": { "type": "string", "maxLength": 255, "description": "FileName", "format": "" }, "FileId": { "type": "string", "maxLength": 32, "description": "File Id", "format": "" }, "FileStream": { "type": "string", "description": "File as byte-array", "format": "byte" } } } } } } } } } } } } } } } }, "AfasResidenceDocument": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "Nr": { "type": "string", "maxLength": 20, "description": "Number", "format": "" }, "DaBe": { "type": "string", "description": "Declaration date", "format": "date" }, "DaEn": { "type": "string", "description": "Expiry date", "format": "date" }, "CoId": { "type": "string", "maxLength": 3, "description": "Issuing country", "format": "" } } }, "Objects": { "type": "array", "items": { "type": "object", "properties": { "AfasResidenceDocumentAttachment": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "FileName": { "type": "string", "maxLength": 255, "description": "FileName", "format": "" }, "FileId": { "type": "string", "maxLength": 32, "description": "File Id", "format": "" }, "FileStream": { "type": "string", "description": "File as byte-array", "format": "byte" } } } } } } } } } } } } } } } }, "AfasEmploymentDocument": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "Nr": { "type": "string", "maxLength": 20, "description": "Number", "format": "" }, "DaBe": { "type": "string", "description": "Declaration date", "format": "date" }, "DaEn": { "type": "string", "description": "Expiry date", "format": "date" }, "CoId": { "type": "string", "maxLength": 3, "description": "Issuing country", "format": "" } } }, "Objects": { "type": "array", "items": { "type": "object", "properties": { "AfasEmploymentDocumentAttachment": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "FileName": { "type": "string", "maxLength": 255, "description": "FileName", "format": "" }, "FileId": { "type": "string", "maxLength": 32, "description": "File Id", "format": "" }, "FileStream": { "type": "string", "description": "File as byte-array", "format": "byte" } } } } } } } } } } } } } } } } } } } } } } } } }, "KnDayContract_PUT": { "type": "object", "properties": { "KnDayContract": { "type": "object", "properties": { "Element": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "EmId": { "type": "string", "maxLength": 15, "description": "Employee", "format": "" }, "DaDe": { "type": "string", "description": "Date deceased", "format": "date" }, "DaMa": { "type": "string", "description": "Wedding date", "format": "date" }, "DaDi": { "type": "string", "description": "Date of divorce", "format": "date" }, "ViSe": { "type": "string", "enum": [ "I", "S", "U" ], "maxLength": 20, "description": "Status\nI = Employed;\nS = Applicant;\nU = Employment ended;", "format": "" }, "WrLv": { "type": "integer", "description": "Work level", "format": "" }, "Bl": { "type": "boolean", "description": "Blocked", "format": "" }, "LwOb": { "type": "boolean", "description": "Objection to recording", "format": "" }, "LwTg": { "type": "boolean", "description": "Belonging to target group", "format": "" }, "LwRs": { "type": "string", "maxLength": 50, "description": "Place of birth", "format": "" }, "LwNa": { "type": "string", "maxLength": 3, "description": "Country of birth", "format": "" }, "LwFa": { "type": "string", "maxLength": 3, "description": "Father's country of birth", "format": "" }, "LwMo": { "type": "string", "maxLength": 3, "description": "Country of birth mother", "format": "" }, "Re": { "type": "string", "description": "Remark", "format": "byte" }, "RlBh": { "type": "string", "maxLength": 15, "description": "Account manager", "format": "" }, "StFs": { "type": "string", "enum": [ "1", "12", "2", "3", "4", "A", "B", "C", "G" ], "maxLength": 20, "description": "Start phase\n1 = Phase 1;\n12 = Phase 1-2;\n2 = Phase 2;\n3 = Phase 3;\n4 = Phase 4;\nA = Phase A;\nB = Phase B;\nC = Phase C;\nG = No phase count;", "format": "" }, "BeSf": { "type": "string", "description": "Start phase start date", "format": "date" }, "BePe": { "type": "string", "description": "Previous employer start date", "format": "date" }, "DlWk": { "type": "string", "description": "Date when last worked", "format": "date" }, "WkWh": { "type": "integer", "description": "Weeks worked in employment history", "format": "" }, "CF3h": { "type": "integer", "description": "Phase 3 calendar weeks in employment history", "format": "" }, "CFBh": { "type": "integer", "description": "Phase B calendar weeks in employment history", "format": "" }, "AF3h": { "type": "integer", "description": "Number of phase 3 contracts in employment history", "format": "" }, "AFBh": { "type": "integer", "description": "Number of phase B contracts in employment history", "format": "" }, "ViPa": { "type": "string", "enum": [ "4W", "P" ], "maxLength": 20, "description": "Payment frequency\n4W = 4 week(s);\nP = Period;", "format": "" }, "BlPa": { "type": "boolean", "description": "Blocked for payment", "format": "" }, "PsPv": { "type": "string", "enum": [ "P", "B", "E", "N" ], "maxLength": 20, "description": "Pay slip supply\nP = Print;\nB = Print and message;\nE = Message;\nN = Do not print/No message;", "format": "" }, "YsPv": { "type": "string", "enum": [ "P", "B", "E", "N" ], "maxLength": 20, "description": "Annual statement supply\nP = Print;\nB = Print and message;\nE = Message;\nN = Do not print/No message;", "format": "" }, "EmAd": { "type": "string", "enum": [ "P", "S" ], "maxLength": 20, "description": "E-mail for digital documents\nP = Private E-mail address;\nS = Work E-mail address;", "format": "" }, "SeAt": { "type": "boolean", "description": "Secure e-mail attachments", "format": "" }, "PwEm": { "type": "string", "maxLength": 70, "description": "Password", "format": "" }, "BeVo": { "type": "boolean", "description": "Administration", "format": "" }, "LdBb": { "type": "string", "description": "Last bicycle purchase date", "format": "date" } }, "required": [ "EmId" ] }, "Objects": { "type": "array", "items": { "type": "object", "properties": { "KnPerson": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "PadAdr": { "type": "boolean", "description": "Postadres is adres", "format": "" }, "AutoNum": { "type": "boolean", "description": "Autonummering", "format": "" }, "MatchPer": { "type": "string", "enum": [ "0", "1", "2", "3", "4", "5", "6", "7" ], "maxLength": 1, "description": "Persoon vergelijken op\n0 = Zoek op BcCo (Persoons-ID);\n1 = Burgerservicenummer;\n2 = Naam + voorvoegsel + initialen + geslacht;\n3 = Naam + voorvoegsel + initialen + geslacht + e-mail werk;\n4 = Naam + voorvoegsel + initialen + geslacht + mobiel werk;\n5 = Naam + voorvoegsel + initialen + geslacht + telefoon werk;\n6 = Naam + voorvoegsel + initialen + geslacht + geboortedatum;\n7 = Altijd nieuw toevoegen;", "format": "" }, "BcId": { "type": "integer", "description": "Organisation/Person (internal)", "format": "" }, "BcCo": { "type": "string", "maxLength": 15, "description": "Number", "format": "" }, "SeNm": { "type": "string", "maxLength": 10, "description": "Search name", "format": "" }, "CaNm": { "type": "string", "maxLength": 80, "description": "Usual name", "format": "" }, "FiNm": { "type": "string", "maxLength": 50, "description": "First name", "format": "" }, "In": { "type": "string", "maxLength": 15, "description": "Initials", "format": "" }, "Is": { "type": "string", "maxLength": 15, "description": "Prefix", "format": "" }, "LaNm": { "type": "string", "maxLength": 80, "description": "Last name", "format": "" }, "SpNm": { "type": "boolean", "description": "Enter surname at birth seperately", "format": "" }, "IsBi": { "type": "string", "maxLength": 15, "description": "Birth name prefix", "format": "" }, "NmBi": { "type": "string", "maxLength": 80, "description": "Surname at birth", "format": "" }, "IsPa": { "type": "string", "maxLength": 15, "description": "Prefix partner", "format": "" }, "NmPa": { "type": "string", "maxLength": 80, "description": "Partner's usual name", "format": "" }, "ViUs": { "type": "string", "enum": [ "0", "1", "2", "3" ], "maxLength": 20, "description": "Name use\n0 = Birth name;\n1 = Partner's birth name + Birth name;\n2 = Partner birth name;\n3 = Birth name + Partner's birth name;", "format": "" }, "ViGe": { "type": "string", "enum": [ "M", "U", "F", "X" ], "maxLength": 20, "description": "Gender\nM = Male;\nU = Unknown;\nF = Female;\nX = Non-binary;", "format": "" }, "PsNa": { "type": "string", "enum": [ "000", "NL", "DZ", "IN", "RU", "RB", "BU", "RCA", "KM", "RCB", "DY", "ET", "EQ", "ETH", "DJI", "GA", "WAG", "GH", "GN", "CI", "CV", "TC", "EAK", "CD", "LS", "LB", "LAR", "RM", "MW", "RMM", "MA", "RIM", "MS", "MOC", "RN", "WAN", "EAU", "GW", "ZA", "SD", "'ZW'", "RWA", "ST", "SN", "WAL", "SUD", "SP", "EAT", "TG", "TS", "TN", "Z", "SS", "BS", "BH", "CDN", "CR", "C", "DOM", "EL", "GCA", "RH", "HON", "JA", "MEX", "NIC", "PA", "TT", "USA", "RA", "BDS", "BOL", "BR", "RCH", "CO", "EC", "GUY", "PY", "PE", "SME", "ROU", "YV", "WG", "KN", "SK", "CZ", "BA", "GE", "AFG", "BRN", "BT", "BM", "BRU", "K", "CL", "CN", "CY", "RP", "TMN", "RC", "IND", "RI", "IRQ", "IR", "IL", "J", "HKJ", "TAD", "KWT", "LAO", "RL", "MV", "MAL", "MON", "OMA", "NPL", "KO", "OEZ", "PK", "QA", "AS", "SGP", "SYR", "T", "AE", "TR", "UA", "ROK", "VN", "BD", "KG", "MD", "KZ", "BY", "AZ", "AM", "AUS", "PNG", "NZ", "WSM", "WS", "RUS", "SLO", "AG", "VU", "FJI", "GB4", "HR", "TO", "NR", "PLW", "USA2", "LV", "SB", "MIC", "SY", "KIR", "TV", "WL", "WD", "WV", "EE", "IOT", "ZRE", "TLS", "SCG", "SRB", "MNE", "LT", "MAR", "BUR", "NAM", "GRF", "499", "AL", "AND", "B", "BG", "DK", "D", "FIN", "F", "YMN", "GR", "GB", "H", "IRL", "IS", "I", "YU", "FL", "L", "M", "MC", "N", "A", "PL", "P", "RO", "RSM", "E", "VAT", "S", "CH", "GB2", "ERI", "GB3", "XK", "MK", "PSE" ], "maxLength": 20, "description": "Nationality\n000 = Unknown;\nNL = Dutch;\nDZ = Algerian;\nIN = Angolan;\nRU = Burundian;\nRB = Motswana;\nBU = Burkinabe;\nRCA = Central African;\nKM = Citizen of Comoros;\nRCB = Citizen of the Republic of the Congo;\nDY = Citizen of Benin;\nET = Egyptian;\nEQ = Equatorial-Guineas;\nETH = Ethiopian;\nDJI = Djiboutian;\nGA = Gabonese;\nWAG = Gambian;\nGH = Ghanaian;\nGN = Guineas;\nCI = Ivorian;\nCV = Cape Verdean;\nTC = Cameroonian;\nEAK = Kenyan;\nCD = Citizen of Zaire;\nLS = Citizen of Lesotho;\nLB = Liberian;\nLAR = Libyan;\nRM = Malagasy;\nMW = Malawian;\nRMM = Citizen of Mali;\nMA = Moroccan;\nRIM = Mauritanian;\nMS = Mauritian;\nMOC = Mozambican;\nRN = Nigerien;\nWAN = Nigerian;\nEAU = Ugandan;\nGW = Guinea-Bissau;\nZA = South African;\nSD = Eswatini Citizen;\n'ZW' = Zimbabwean;\nRWA = Rwandese;\nST = Citizen of São Tomé and Principe;\nSN = Senegalese;\nWAL = Sierra Leonean;\nSUD = Sudanese;\nSP = Somalian;\nEAT = Tanzanian;\nTG = Togolese;\nTS = Tsjadian;\nTN = Tunisian;\nZ = Zambian;\nSS = South Sudanese;\nBS = Bahamian;\nBH = Belizean;\nCDN = Canadian;\nCR = Costa Rican;\nC = Cuban;\nDOM = Dominican;\nEL = Salvadoran;\nGCA = Guatemalan;\nRH = Haitian;\nHON = Hondurese;\nJA = Jamaican;\nMEX = Mexican;\nNIC = Nicaraguan;\nPA = Panamese;\nTT = Citizen of Trinidad and Tobago;\nUSA = American citizen;\nRA = Argentinean;\nBDS = Barbadian;\nBOL = Bolivian;\nBR = Brazilian;\nRCH = Chilean;\nCO = Colombian;\nEC = Ecuadorian;\nGUY = Guyanese;\nPY = Paraguayan;\nPE = Peruvian;\nSME = Surinamese;\nROU = Uruguayan;\nYV = Venezuelan;\nWG = Grenadian;\nKN = Citizen of Saint Kitts-Nevis;\nSK = Slovak;\nCZ = Czech;\nBA = Citizen of Bosnia-Herzegovina;\nGE = Georgian;\nAFG = Afghan;\nBRN = Bahraini;\nBT = Bhutanese;\nBM = Citizen of Myanmar;\nBRU = Citizen of Brunei Darussalam;\nK = Cambodian;\nCL = Sri Lankan;\nCN = Chinese;\nCY = Cypriot;\nRP = Filipino;\nTMN = Turkmen;\nRC = Taiwanese;\nIND = Indian;\nRI = Indonesian;\nIRQ = Iraqi;\nIR = Iranian;\nIL = Israeli;\nJ = Japanese;\nHKJ = Jordan;\nTAD = Tajikistani;\nKWT = Kuwaiti;\nLAO = Laotian;\nRL = Lebanese;\nMV = Maldivian;\nMAL = Malaysian;\nMON = Mongolian;\nOMA = Omani;\nNPL = Nepalese;\nKO = North Korean;\nOEZ = Uzbekistani;\nPK = Pakistani;\nQA = Qatari;\nAS = Saudi Arabian;\nSGP = Singaporean;\nSYR = Syrian;\nT = Thai;\nAE = Citizen of the United Arab Emirates;\nTR = Turkish;\nUA = Ukrainian;\nROK = South Korean;\nVN = Vietnamese;\nBD = Bangladeshi;\nKG = Kyrgyz;\nMD = Moldovan;\nKZ = Kazakh;\nBY = Belarusian;\nAZ = Azerbaijani;\nAM = Armenian;\nAUS = Australian;\nPNG = Papua New Guinean;\nNZ = New Zealander;\nWSM = West Samoan;\nWS = Samoan;\nRUS = Russian;\nSLO = Slovenian;\nAG = Citizen of Antigua and Barbuda;\nVU = Vanuatu;\nFJI = Fijian;\nGB4 = Citizen of British dependent territories;\nHR = Croatian;\nTO = Tongan;\nNR = Nauruan;\nPLW = Palauan;\nUSA2 = American national;\nLV = Latvian;\nSB = Saloman Islander;\nMIC = Micronesian;\nSY = Citizen of the Seychelles;\nKIR = Kiribati;\nTV = Tuvaluan;\nWL = Saint Lucian;\nWD = Dominican;\nWV = Vincentian;\nEE = Estonian;\nIOT = British National (overseas);\nZRE = Citizen of the Democratic Republic of the Congo;\nTLS = Timorense;\nSCG = Citizen of Serbia and Montenegro;\nSRB = Serbian;\nMNE = Montenegrin;\nLT = Lithuanian;\nMAR = Marshallese;\nBUR = Myanmarese;\nNAM = Namibian;\nGRF = Refugee;\n499 = Stateless;\nAL = Albanian;\nAND = Andorran;\nB = Belgian;\nBG = Bulgarian;\nDK = Danish;\nD = German;\nFIN = Finnish;\nF = French;\nYMN = Citizen of Yemen;\nGR = Greek;\nGB = British citizen;\nH = Hungarian;\nIRL = Irish;\nIS = Icelandic;\nI = Italian;\nYU = Yugoslavian;\nFL = Liechtenstein;\nL = Luxembourg;\nM = Maltese;\nMC = Citizen of Monaco;\nN = Norwegian;\nA = Austrian;\nPL = Polish;\nP = Portuguese;\nRO = Romanian;\nRSM = San Marinese;\nE = Spanish;\nVAT = Vatican;\nS = Swedish;\nCH = Swiss;\nGB2 = British subject;\nERI = Eritrean;\nGB3 = Citizen of British oversea regions;\nXK = Kosovan;\nMK = Macedonian / Citizen of the Republic of North Macedonia;\nPSE = Palestinian;", "format": "" }, "DaBi": { "type": "string", "description": "Date of birth", "format": "date" }, "CoBi": { "type": "string", "maxLength": 3, "description": "Country of birth", "format": "" }, "RsBi": { "type": "string", "maxLength": 50, "description": "Place of birth", "format": "" }, "SoSe": { "type": "string", "maxLength": 25, "description": "'BSN'", "format": "" }, "ViCs": { "type": "string", "enum": [ "DZ", "GH", "GP", "GS", "OG", "TR", "WE" ], "maxLength": 20, "description": "Marital status\nDZ = Permanently divorced;\nGH = Married;\nGP = Registered partnership;\nGS = Divorced;\nOG = Unmarried;\nTR = Other;\nWE = Widow/widower;", "format": "" }, "DaMa": { "type": "string", "description": "Wedding date", "format": "date" }, "DaDi": { "type": "string", "description": "Date of divorce", "format": "date" }, "DaDe": { "type": "string", "description": "Date deceased", "format": "date" }, "TtId": { "type": "string", "maxLength": 3, "description": "Title/salutation", "format": "" }, "TtEx": { "type": "string", "maxLength": 3, "description": "Secondary title", "format": "" }, "LeHe": { "type": "string", "maxLength": 255, "description": "Salutation", "format": "" }, "TeNr": { "type": "string", "maxLength": 255, "description": "Work phone no.", "format": "password" }, "TeN2": { "type": "string", "maxLength": 255, "description": "Personal phone no.", "format": "password" }, "FaNr": { "type": "string", "maxLength": 255, "description": "Work fax", "format": "" }, "MbNr": { "type": "string", "maxLength": 255, "description": "Work mobile no.", "format": "password" }, "MbN2": { "type": "string", "maxLength": 255, "description": "Private mobile no.", "format": "password" }, "EmAd": { "type": "string", "maxLength": 255, "description": "Work e-mail", "format": "email" }, "EmA2": { "type": "string", "maxLength": 255, "description": "Personal e-mail", "format": "email" }, "HoPa": { "type": "string", "maxLength": 255, "description": "Website", "format": "uri" }, "Corr": { "type": "boolean", "description": "Correspondence", "format": "" }, "ViMd": { "type": "string", "enum": [ "EMA", "FAX", "PRS", "PST", "TEL" ], "maxLength": 20, "description": "Preferred medium\nEMA = E-mail;\nFAX = Fax;\nPRS = Personal;\nPST = Post;\nTEL = Phone no.;", "format": "" }, "Re": { "type": "string", "description": "Remark", "format": "byte" }, "CoLw": { "type": "string", "maxLength": 2, "description": "Legislative country", "format": "" }, "FileId": { "type": "string", "maxLength": 32, "description": "Naam bestand", "format": "" }, "FileName": { "type": "string", "maxLength": 255, "description": "Naam bestand", "format": "" }, "FileStream": { "type": "string", "description": "Afbeelding", "format": "byte" }, "AddToPortal": { "type": "boolean", "description": "Persoon toegang geven tot afgeschermde deel van de portal(s)", "format": "" }, "EmailPortal": { "type": "string", "maxLength": 255, "description": "E-mail toegang", "format": "" } }, "required": [ "BcId" ] }, "Objects": { "type": "array", "items": { "type": "object", "properties": { "KnBankAccount": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "CoId": { "type": "string", "maxLength": 3, "description": "Country of bank", "format": "" }, "IbCk": { "type": "boolean", "description": "IBAN check", "format": "" }, "Iban": { "type": "string", "maxLength": 40, "description": "IBAN number", "format": "" }, "BaAc": { "type": "string", "maxLength": 40, "description": "Bank account", "format": "" }, "BkTp": { "type": "integer", "description": "Bank type", "format": "" }, "BkIc": { "type": "string", "maxLength": 15, "description": "Bank", "format": "" }, "AcCk": { "type": "boolean", "description": "Cheque", "format": "" }, "DiNm": { "type": "string", "maxLength": 80, "description": "Deviating name", "format": "" }, "DiPl": { "type": "string", "maxLength": 35, "description": "Deviating city", "format": "" }, "Bic": { "type": "string", "maxLength": 11, "description": "BIC code", "format": "" }, "BaNm": { "type": "string", "maxLength": 35, "description": "Name of the bank", "format": "" }, "BaFi": { "type": "string", "maxLength": 35, "description": "Branch of the bank", "format": "" }, "BaAd": { "type": "string", "maxLength": 35, "description": "Bank address", "format": "" }, "BaPl": { "type": "string", "maxLength": 35, "description": "Bank business location", "format": "" }, "CalM": { "type": "string", "enum": [ "1", "2", "3" ], "maxLength": 20, "description": "On-charge code\n1 = All costs borne by beneficiary;\n2 = All costs borne by instructing party;\n3 = Shared costs;", "format": "" } } } } } } } }, "KnBasicAddressAdr": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "CoId": { "type": "string", "maxLength": 3, "description": "Country", "format": "" }, "PbAd": { "type": "boolean", "description": "P.O. Box address", "format": "" }, "StAd": { "type": "string", "maxLength": 255, "description": "Add. for street", "format": "" }, "Ad": { "type": "string", "maxLength": 60, "description": "Street", "format": "" }, "HmNr": { "type": "integer", "description": "House number", "format": "" }, "HmAd": { "type": "string", "maxLength": 30, "description": "Extension (a, b, etc.) to house number", "format": "" }, "ZpCd": { "type": "string", "maxLength": 15, "description": "Postal code", "format": "" }, "Rs": { "type": "string", "maxLength": 50, "description": "City", "format": "" }, "AdAd": { "type": "string", "maxLength": 255, "description": "Addition to address", "format": "" }, "BeginDate": { "type": "string", "description": "Ingangsdatum adreswijziging (wordt genegeerd bij eerste datum)", "format": "date" }, "ResZip": { "type": "boolean", "description": "Zoek woonplaats bij postcode", "format": "" } } } } } } } }, "KnBasicAddressPad": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "CoId": { "type": "string", "maxLength": 3, "description": "Country", "format": "" }, "PbAd": { "type": "boolean", "description": "P.O. Box address", "format": "" }, "StAd": { "type": "string", "maxLength": 255, "description": "Add. for street", "format": "" }, "Ad": { "type": "string", "maxLength": 60, "description": "Street", "format": "" }, "HmNr": { "type": "integer", "description": "House number", "format": "" }, "HmAd": { "type": "string", "maxLength": 30, "description": "Extension (a, b, etc.) to house number", "format": "" }, "ZpCd": { "type": "string", "maxLength": 15, "description": "Postal code", "format": "" }, "Rs": { "type": "string", "maxLength": 50, "description": "City", "format": "" }, "AdAd": { "type": "string", "maxLength": 255, "description": "Addition to address", "format": "" }, "BeginDate": { "type": "string", "description": "Ingangsdatum adreswijziging (wordt genegeerd bij eerste datum)", "format": "date" }, "ResZip": { "type": "boolean", "description": "Zoek woonplaats bij postcode", "format": "" } } } } } } } } } } } } } } } }, "AfasContract": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "DaBe": { "type": "string", "description": "Contract start date", "format": "date" }, "ClId": { "type": "string", "maxLength": 15, "description": "CLA", "format": "" }, "WcId": { "type": "string", "maxLength": 15, "description": "Term of employment", "format": "" }, "ApCo": { "type": "string", "enum": [ "U", "H", "Y", "S", "HY", "7M", "8M", "9M" ], "maxLength": 20, "description": "Contract type\nU = Indefinite time;\nH = Half-yearly contract;\nY = Annual contract;\nS = Specific time;\nHY = One and a half years;\n7M = 7-month contract;\n8M = 8-month contract;\n9M = 9-month contract;", "format": "" }, "DaEn": { "type": "string", "description": "End date contract", "format": "date" }, "PEmTy": { "type": "string", "maxLength": 1, "description": "Type dienstverband", "format": "" }, "DvSn": { "type": "integer", "description": "Sequence number employment", "format": "" }, "CmId": { "type": "string", "maxLength": 15, "description": "Employer", "format": "" }, "DaEe": { "type": "string", "description": "Employment end date", "format": "date" }, "EmMt": { "type": "string", "enum": [ "1", "T", "2", "3", "4", "5", "6", "7", "S", "8", "e" ], "maxLength": 20, "description": "Employee type\n1 = Member of staff;\nT = Transitional allowance;\n2 = Temp;\n3 = Borrowed from another company/branch;\n4 = Entrepeneur - with salary;\n5 = Entrepeneur - without salary;\n6 = Placement - with salary;\n7 = Placement - without salary;\nS = Back-payment after departure;\n8 = Interim employee;\ne = Expat;", "format": "" }, "DbYs": { "type": "string", "description": "Employed (re. seniority)", "format": "date" }, "ViEt": { "type": "string", "enum": [ "F", "P", "T", "S", "H", "V", "U" ], "maxLength": 20, "description": "Employment type\nF = Full-timer;\nP = Part-timer;\nT = Casual staff;\nS = Placement;\nH = Hulpkracht;\nV = Vakantiewerker;\nU = Uitzendkracht;", "format": "" }, "ViRe": { "type": "string", "enum": [ "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "O" ], "maxLength": 20, "description": "Reason\n0 = Position elsewhere;\n1 = Resignation;\n2 = Immediate dismissal;\n3 = Dissatisfied terms of employment;\n4 = Dissatisfied work environment;\n5 = Pension;\n6 = 'VUT';\n7 = Disablement;\n8 = Unpaid leave;\n9 = Death;\nO = Transfer, do not settle;", "format": "" }, "ViIe": { "type": "string", "enum": [ "M", "W", "O" ], "maxLength": 20, "description": "Initiative\nM = Employee;\nW = Employer;\nO = Mutual agreement;", "format": "" }, "ViTo": { "type": "string", "enum": [ "1M", "2M", "OM", "6M", "12M", "9M", "NM", "2W", "3M" ], "maxLength": 20, "description": "Probationary period\n1M = One month;\n2M = Two months;\nOM = Other;\n6M = Half year;\n12M = One year;\n9M = Nine months;\nNM = None;\n2W = Two weeks;\n3M = Three months;", "format": "" }, "DaEt": { "type": "string", "description": "End probationary period per", "format": "date" }, "PeNo": { "type": "integer", "description": "Period number periodic", "format": "" }, "PeRp": { "type": "integer", "description": "Repeat after (periods)", "format": "" }, "PeFt": { "type": "string", "maxLength": 15, "description": "Period next increase", "format": "" }, "ViBg": { "type": "string", "enum": [ "AAN", "IND", "OBV", "REV", "OVR" ], "maxLength": 20, "description": "Reason employed\nAAN = Institution registration;\nIND = Entering service;\nOBV = Resuming after unpaid leave;\nREV = Resume after 'WIA';\nOVR = Other reasons;", "format": "" }, "RtDa": { "type": "boolean", "description": "Apply qualifying days", "format": "" }, "ViTK": { "type": "string", "enum": [ "01", "26", "31", "33", "34", "36", "41", "42", "43", "51", "71", "02", "81", "86", "09", "32", "03", "04", "11", "53", "12", "13", "22", "24" ], "maxLength": 20, "description": "End of employment reason (TKP)\n01 = Acceptance work elsewhere and benefit.;\n26 = Reorganisation and no SBR;\n31 = 'VUT';\n33 = Pension;\n34 = Death;\n36 = Prepension;\n41 = Complete disability;\n42 = Partial disability;\n43 = Par. Empl. Disability. <15%;\n51 = Transfer PAO;\n71 = AO for a specific time;\n02 = Acceptance work elsewhere;\n81 = Dismissal + emp same date;\n86 = Emp. Disabled reappointment;\n09 = Summary dismissal;\n32 = VUT SUMP;\n03 = Pers. Reasons and benefits;\n04 = Other personal reason;\n11 = During probationary period;\n53 = Senior leave;\n12 = Insufficient functioning;\n13 = Condemnable behaviour / verst. A;\n22 = SBR 55+;\n24 = SBR, but no 55+;", "format": "" }, "TpWr": { "type": "string", "enum": [ "1", "2", "3", "4" ], "maxLength": 20, "description": "Labour relation type\n1 = Fixed;\n2 = Specific time;\n3 = Specific time for replacement.;\n4 = Employment without appointment;", "format": "" }, "FiBr": { "type": "string", "enum": [ "1", "2", "3", "4", "5" ], "maxLength": 20, "description": "Financing source\n1 = Regular;\n2 = Reimbursements by'Vervangingsfonds';\n3 = Wage cost subsidy;\n4 = Other means;\n5 = 'Risicofonds';", "format": "" }, "InTp": { "type": "string", "enum": [ "00", "01", "02", "03" ], "maxLength": 20, "description": "Insurance\n00 = None;\n01 = 'VF' Mandatory;\n02 = 'VF' Voluntary;\n03 = 'Risicofonds';", "format": "" }, "InMe": { "type": "string", "enum": [ "0", "1", "2", "3", "4", "5", "6" ], "maxLength": 20, "description": "Method for granting periodic increase\n0 = No periodic increment;\n1 = According to wage scales;\n2 = Deviating factor for min/max wage scale;\n3 = Increase by an amount;\n4 = Increase by a percentage;\n5 = Increase by a percentage relative to max (Min/max wage scale);\n6 = Percentage increase relative to medium (min/max wage scale);", "format": "" }, "Pfmm": { "type": "number", "multipleOf": 0.01, "description": "Deviating min./max. factor", "format": "float" }, "InVl": { "type": "number", "multipleOf": 0.01, "description": "Increase by an amount", "format": "float" }, "InPc": { "type": "number", "multipleOf": 0.01, "description": "Increase by a percentage", "format": "float" }, "ViFz": { "type": "string", "enum": [ "O", "1", "12", "13", "14", "AU", "B", "C", "2", "3", "AZU", "4", "AZ", "41", "42", "43", "44", "W", "K" ], "maxLength": 20, "description": "Flex and Security phase classification\nO = Unknown or N.A.;\n1 = Phase 1 with temporary employment clause (up to 2019);\n12 = Phase 1-2 with temporary employment clause;\n13 = Phase 1-2 without temporary employment clause;\n14 = Phase 1-2 without temp. employment clause with exclusion of the cont. payment of wages obligation;\nAU = Phase A with transmission request;\nB = Phase B;\nC = Phase C;\n2 = Phase 2 with temporary employment clause (up to 2019);\n3 = Phase 3;\nAZU = Phase A without temporary employment clause, with exclusion of obligation for continued payment;\n4 = Phase 4;\nAZ = Phase A without transmission condition;\n41 = Phase 1 without temporary employment clause (up to 2019);\n42 = Phase 2 without temporary employment clause (up to 2019);\n43 = Phase 1 without temp. employm. clause with exclus. of contd. payment of wages obligat. (up to 2019);\n44 = Phase 2 without temp. employm. clause with exclus. of contind. paymnt of wages obligat. (up to 2019);\nW = Legal regime;\nK = Chain system;", "format": "" }, "ViRf": { "type": "string", "enum": [ "0", "1", "2", "3", "4", "5", "6" ], "maxLength": 20, "description": "Reason of end labour relationship flex-worker\n0 = Not applicable;\n1 = End of job/end of contract, no work offered;\n2 = End of job/end of contract, work offered;\n3 = No end of work/end of contract; current employment contract;\n4 = Hirer has withdrawn order;\n5 = Temporary worker has been dismissed;\n6 = End of work/end of contract due to illness;", "format": "" }, "DaSc": { "type": "string", "description": "Contract chain start date", "format": "date" }, "ViKe": { "type": "string", "enum": [ "0", "1", "2", "3", "4", "5", "6", "To be determined" ], "maxLength": 20, "description": "Chain number\n0 = Not applicable;\n1 = Fixed-term 1;\n2 = Fixed-term 2;\n3 = Fixed-term 3;\n4 = Fixed-term 4;\n5 = Fixed-term 5;\n6 = Fixed-term 6;\nTo be determined = To be determined;", "format": "" }, "PdQ1": { "type": "integer", "description": "Scheduled hours (quarter 1)", "format": "" }, "PdQ2": { "type": "integer", "description": "Scheduled hours (quarter 2)", "format": "" }, "PdQ3": { "type": "integer", "description": "Scheduled hours (quarter 3)", "format": "" }, "PdQ4": { "type": "integer", "description": "Scheduled hours (quarter 4)", "format": "" }, "PdQ5": { "type": "integer", "description": "Scheduled hours (quarter 5)", "format": "" }, "JcIn": { "type": "string", "maxLength": 7, "description": "Commission paritaire indexatie", "format": "" }, "AcDe": { "type": "string", "enum": [ "1", "11", "12", "2", "21", "22", "23", "24", "25", "26", "27", "3", "31", "32", "4", "41", "42", "43" ], "maxLength": 20, "description": "Education degree\n1 = (Onbruikbaar Vanaf 01/04/2006)Lager Onderwijs;\n11 = Lager Onderwijs Of Geen Onderwijs;\n12 = Lager Sec. Ond./Buso 1,2,3/Dt Lager Sec.Beroepsond;\n2 = (Onbruikbaar Vanaf 01/04/2006)Secundair Onderwijs;\n21 = 2e Jr. 3e Gr. Bso + 3e Jr. 3e Gr. Bso Z. Gts. Hso;\n22 = 3 Gr.Tso,Kso+Bso Spec.Jr Gts Hso/Buso4 Dip/Gts Hso;\n23 = 3e Graad Aso;\n24 = Deeltijds Technisch Onderwijs;\n25 = Deeltijds Bso Hoger Middelbaar;\n26 = Buso 4 Zonder Getuigschrift Of Diploma Hso;\n27 = 7E JR BSO MET DIP SO/GTS HSO//>=1E J 4E GR BSO;\n3 = (Onbruikbaar Vanaf 01/04/06)Hoger Niet Univ Onderw;\n31 = Hoger Niet-Universitair Onderwijs Korte Type;\n32 = Hoger Niet-Universitair Onderwijs Lange Type;\n4 = (Onbruikbaar Vanaf 01/04/06) Hoger Univ Onderwijs;\n41 = Universitair Onderwijs;\n42 = Post-Universitair Onderwijs;\n43 = Doctoraat Met Proefschrift;", "format": "" }, "RDDF": { "type": "boolean", "description": "RDDF", "format": "" }, "BaAp": { "type": "string", "maxLength": 10, "description": "Appointment basis", "format": "" }, "Sco1": { "type": "string", "maxLength": 10, "description": "Educational field 1", "format": "" }, "Sco2": { "type": "string", "maxLength": 10, "description": "Educational field 2", "format": "" }, "Sco3": { "type": "string", "maxLength": 10, "description": "Educational field 3", "format": "" }, "Sco4": { "type": "string", "maxLength": 10, "description": "Educational field 4", "format": "" }, "PCK": { "type": "string", "enum": [ "1", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "2", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "3", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "4", "40", "41", "42", "43", "44", "45", "46", "48", "49", "5", "50", "51", "52", "53", "55", "56", "57", "58", "59", "6", "60", "7", "8", "9", "98", "99" ], "maxLength": 20, "description": "Contract specification\n1 = Ordinary employee;\n10 = Temporary employee;\n11 = Leerling stagiair (>60 dagen);\n12 = Trainee intern;\n13 = \"Canada dry\" plan;\n14 = No right of abode;\n15 = Early retirement old system;\n16 = Early retirement new system;\n17 = 'Buitenlandse bestuurder';\n18 = Disabled employee;\n19 = Early retirement half-time;\n2 = Pensioned employee;\n20 = Instapstage (TRI);\n21 = Vocational training - RVA;\n22 = Contractually subsidised;\n23 = Artiste or musician (specific category);\n24 = Industrial trainee;\n25 = Trainee entrepreneur;\n26 = K.B. 498;\n27 = K.B. 495 (-18 year);\n28 = Law Programme (# 1st recruited);\n29 = K.B. 483;\n3 = Work placement;\n30 = Working partner;\n31 = Statutory;\n32 = Unemployed guidance plan;\n33 = Young unemployed <26 year 6m;\n34 = Young unemployed <26 year 9m;\n35 = Young unemployed K.B. 495;\n36 = Induction post;\n37 = Young unemployed (paid in gratuities) <26 year 6m;\n38 = Young unemployed (paid in gratuities) <26 year 9m;\n39 = Unemployed > 1 years;\n4 = Student;\n40 = Unemployed > 2 years;\n41 = Unemployed gratuity > 1 year;\n42 = Unemployed gratuity > 2 year;\n43 = EWE; half-time;\n44 = EWE other than half-time;\n45 = EWE half-time with gratuities;\n46 = EWE other / with gratuities;\n48 = Paid athletes act 24/02/78;\n49 = Paid athletes outside of act 24/02/78;\n5 = 'Bestuurder';\n50 = Personnel with incomes 30;\n51 = Programme prime;\n52 = Trainee Socio-prof.Inpas.;\n53 = 'Werkloze in een VZW';\n55 = Leerling beroepsinlevingsovereenk.;\n56 = Beroepsvorming - AWIPH;\n57 = Sportomkadering;\n58 = Alternerende opleiding - Waals Gewest;\n59 = Alternerend leren - Franstalig België;\n6 = Home-worker;\n60 = Flexi-job;\n7 = Employee with gratuities;\n8 = Pensioned manager;\n9 = Sales representative;\n98 = Werkloze - overmacht;\n99 = Not remunerated;", "format": "" }, "Stat": { "type": "string", "enum": [ "1", "10", "11", "12", "13", "14", "16", "17", "18", "19", "2", "20", "21", "3", "4", "5", "6", "9" ], "maxLength": 20, "description": "Statute\n1 = Contractueel;\n10 = Pensioner;\n11 = 'Bruggepensioneerde';\n12 = Weduwen;\n13 = Orphan/other relative;\n14 = Reservemilitairen/gepensioneerde vep;\n16 = Vrijwilliger;\n17 = Werkloze;\n18 = Pfi/stage d'insertion;\n19 = Tijdskrediet can dry (decavaa);\n2 = Temporary;\n20 = Werkloze canada dry (decavaa);\n21 = Beroepsinlevingsovereenkomst;\n3 = Vastbenoemd;\n4 = Mandataris;\n5 = Manager;\n6 = 'Bestuurder';\n9 = Beheerder (vzw);", "format": "" }, "CtTy": { "type": "string", "enum": [ "1", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "2", "3", "4", "5", "6", "7", "8", "9", "99" ], "maxLength": 20, "description": "Contract type\n1 = Onbepaalde duur;\n10 = Welomschreven werk < 3 maanden;\n11 = Welomschreven werk >= 3 maanden;\n12 = Vervangingscontract < 3 maanden;\n13 = Vervangingscontract >= 3 maanden;\n14 = Seizoensarbeider zonder dagforfait;\n15 = Bepaalde duur < 3 maanden;\n16 = Flexi met periode dimona;\n17 = Flexi met dagdimona;\n18 = Flexi niet aanvaard;\n19 = Funeral home limited performance (LP);\n2 = Bepaalde duur;\n3 = Welomschreven werk;\n4 = Replacement contract;\n5 = Gelimiteerde prestaties (lp op de aangifte);\n6 = Arb./bed. Met tussenpozen (t op de aangifte);\n7 = Seizoensarb. Groen/piekextra dagforfait;\n8 = Bepaalde duur < 3 maanden;\n9 = Bepaalde duur > 3 maanden;\n99 = None;", "format": "" }, "TRsz": { "type": "string", "enum": [ "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "24", "50", "51", "52", "53", "54", "60", "61", "62", "63", "64", "65", "66", "67", "70", "71", "72", "73", "74", "75", "76", "77", "78", "79", "80", "81", "82", "84", "85", "86", "87", "99" ], "maxLength": 20, "description": "Type #1 employee\n11 = Gewone categorie;\n12 = Rva-stagair;\n13 = Gesubsidieerde contractueel;\n14 = Deeltijds leerplichtige;\n15 = Jobstudent;\n16 = Eerste werkervaring;\n17 = Interdepartementeel begrotingsfonds;\n18 = 'Derde arbeidscircuit';\n19 = Moeilijk te plaatsen mval werkloze besch. Werkpl.;\n20 = Geneesheer in opleid tot specialist;\n21 = Bursalen zndr bi/multilat.overeenk sz;\n22 = Prime;\n24 = Contractual substitute for work reallocation in public sector;\n50 = Tijdelijk arbeider tuinbouw;\n51 = Taxichauffeur (rsz);\n52 = Acad. En wet. Pers, univ(rsz);\n53 = Ambtenaar met kinderbijslag (rsz);\n54 = Houder staffunctie in overheid;\n60 = F1 worker;\n61 = F2 worker;\n62 = F1 bediende;\n63 = F2 employee;\n64 = F1 worker (without dimona);\n65 = F2 worker (without dimona);\n66 = F1 employee (without dimona);\n67 = F2 employee (without dimona);\n70 = Geneesheer (rszppo);\n71 = Vrijgestelde geneesheer;\n72 = Monitor;\n73 = Bedienaars van de eredienst(rszppo);\n74 = Schouwspelartiest;\n75 = Vrijwillige brandweerman (rszppo);\n76 = Vrijgestelde vrijwilliger(rszppo);\n77 = Onbeschermde mandataris;\n78 = 'Politiepersoneel';\n79 = Burgerpersoneel van de politie;\n80 = Gesubsidieerd personeel onderwijs;\n81 = Syndicaal gedetacheerde werknemer;\n82 = Deeltijds leerplichtige schouwspelartiest;\n84 = Verenigingswerker (sportactiviteiten);\n85 = Verenigingswerker (socio-cult. en overige act);\n86 = Multiple-year student in alternating training;\n87 = Underage student in alternating training;\n99 = Andere niet rsz-onderworpen;", "format": "" }, "TRs2": { "type": "string", "enum": [ "1", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "2", "20", "3", "4", "5", "6", "9" ], "maxLength": 20, "description": "Type #2 employee\n1 = Deelt.leerplichtige leerl. Of beroepsinl.overeenk.;\n10 = Kunstenaar;\n11 = Podiumkunstenaar;\n12 = Kunstenaar(student);\n13 = Podiumkunstenaar(student);\n14 = Kunstenaar(gepensioneerde met bijberoep);\n15 = Podiumkunstenaar(gepensioneerde met bijberoep);\n16 = Betaalde sportbeoefenaars;\n17 = Collectief akkoord;\n18 = Betaalde sportbeoefenaars (gepens met bijberoep);\n19 = Individueel akkoord;\n2 = Home worker;\n20 = Huisbediende/arbeider;\n3 = Deeltijdse leerplichtige of schoolstagiar;\n4 = Trade representative;\n5 = Gepensioneerde met bijberoep;\n6 = Student niet onderworpen aan solidariteitsbijdrage;\n9 = Sector CLA or doesn't apply;", "format": "" }, "SCAc": { "type": "string", "enum": [ "1", "2", "3", "4", "5", "6", "7", "8", "9" ], "maxLength": 20, "description": "Salary processing\n1 = Per month;\n2 = Per hour;\n3 = Fixed;\n4 = Per item;\n5 = Met bedieningsgeld;\n6 = Per prestatie;\n7 = Volledig met commissieloon;\n8 = Per maand + gedeeltelijk met commissieloon;\n9 = Per uur + gedeeltelijk met commissieloon;", "format": "" }, "RSRi": { "type": "boolean", "description": "Reduce and date of rule", "format": "" }, "RSDa": { "type": "string", "description": "Start National Office for Social Security reductio", "format": "date" }, "StAc": { "type": "string", "description": "Seniority start date", "format": "date" }, "FiAn": { "type": "string", "description": "Fictitious seniority date", "format": "date" }, "DaRt": { "type": "string", "description": "Start ‘aanwervingskader’", "format": "date" }, "ReTy": { "type": "string", "enum": [ "10", "100", "101", "102", "103", "104", "105", "106", "107", "108", "11", "110", "111", "120", "140", "141", "142", "143", "145", "146", "147", "148", "149", "150", "156", "157", "158", "160", "161", "162", "170", "171", "172", "173", "174", "175", "176", "177", "178", "179", "180", "181", "182", "183", "184", "185", "186", "187", "188", "189", "190", "191", "192", "193", "194", "195", "196", "20", "200", "201", "202", "203", "204", "205", "206", "207", "208", "209", "21", "210", "211", "212", "213", "214", "215", "216", "217", "218", "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232", "233", "234", "235", "236", "237", "238", "239", "240", "241", "242", "243", "244", "245", "246", "247", "248", "249", "250", "251", "252", "253", "254", "255", "256", "257", "258", "259", "260", "261", "262", "263", "264", "265", "266", "267", "268", "269", "270", "271", "272", "273", "274", "275", "276", "277", "278", "279", "280", "281", "282", "283", "284", "285", "286", "287", "288", "289", "290", "291", "292", "293", "294", "295", "296", "297", "298", "30", "300", "301", "302", "303", "304", "305", "306", "307", "310", "311", "312", "320", "324", "325", "350", "351", "352", "353", "354", "358", "359", "360", "361", "362", "363", "40", "400", "401", "402", "403", "404", "41", "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460", "50", "500", "501", "51", "510", "511", "512", "513", "514", "515", "516", "517", "518", "519", "52", "520", "521", "522", "523", "524", "525", "526", "527", "53", "54", "55", "550", "551", "552", "553", "554", "555", "556", "557", "558", "559", "56", "560", "561", "562", "563", "564", "565", "567", "568", "569", "57", "571", "572", "574", "575", "576", "577", "578", "579", "58", "580", "581", "582", "583", "584", "59", "590", "591", "592", "593", "594", "595", "596", "597", "598", "599", "60", "600", "601", "602", "603", "604", "605", "606", "607", "608", "609", "61", "610", "611", "612", "613", "614", "615", "616", "617", "618", "619", "62", "620", "621", "622", "623", "624", "625", "626", "627", "628", "629", "63", "630", "631", "632", "633", "634", "635", "636", "637", "638", "639", "640", "643", "644", "645", "646", "647", "648", "649", "650", "651", "652", "653", "654", "655", "70", "700", "701", "702", "703", "704", "705", "706", "707", "708", "709", "71", "710", "711", "712", "713", "714", "715", "716", "717", "718", "72", "720", "721", "722", "723", "724", "728", "729", "73", "74", "75", "76", "77", "78", "79", "795", "796", "797", "798", "799", "80", "800", "801", "803", "81", "82", "83", "84", "85", "90", "900", "902", "91", "999" ], "maxLength": 20, "description": "Recruitment context\n10 = Jongerenbanen Plan Vermind. Wg + Wn (J9);\n100 = Banenplan 12 Maanden Werkloos (B1);\n101 = Banenplan 24 Maanden Werkloos (B2);\n102 = Moeilijk Te Plaatsen Werknemer +50j (B3);\n103 = Herinschakeljobs (B4);\n104 = Invoeg Werknemers (B4);\n105 = Banenplan 12 Maanden Werkloos Ouder Dan 45 Jaar;\n106 = Banenplan 24 Maanden Werkloos Ouder Dan 45 Jaar;\n107 = Banenplan 24 Maanden Werkl. +45 J 60m Uvw/36m Ocmw;\n108 = Persons without sustainable work experience;\n11 = Jongerenbanen Plan Vermind. Wg (J6);\n110 = Kb495: Jongeren Tussen 18 En 25 Jaar (U);\n111 = Kb495: Deeltijds Leerplichtige (U);\n120 = Kb483: Eerste Wn In Hoedanigh. Huispersoneel;\n140 = Smet-Banen Gedurende Eerste 36 Maanden;\n141 = Smet-Banen Met Verhoogde Tussenkomst Eerste 36 Mnd;\n142 = Smet-Banen Na 36 Maanden En < 45 Jaar;\n143 = Smet-Banen Na 36 Maanden En > 45 Jaar;\n145 = Wep Plus Plan Min. 12m Mi -45 Jaar 50% 250 Eur;\n146 = Wep Plus Plan Min. 24m Uvw -45 Jaar 50% 247.89 Eur;\n147 = Wep+ 24 Maanden Werkloos-3/4tew-12000fr;\n148 = Wep Plus Plan Min. 24m Uvw -45 Jaar 50% 297.47 Eur;\n149 = Wep+ 24 Maanden Werkloos-3/4tew-Pwa-14000fr;\n150 = Banenplan 24mnd Werkloos Met Integratie-Uitkering;\n156 = Wep+ 12 Maanden Werkloos-3/4tew-12000fr;\n157 = Wep Plus Plan Min. 12m Mi -45 Jaar 50% 300 Eur;\n158 = Wep+ 12 Maanden Werkloos-3/4tew-Pwa-14000fr;\n160 = Vervanger Loopbaanonderbreking: Deeltijds (D1);\n161 = Vervanger Loopbaanonderbreking: Voltijds (D2);\n162 = Vervanger Loopbaanonderbreking: Deeltijds Kmo (D3);\n170 = Vervanger Bruggepensioneerde: Deeltijds (G1);\n171 = Vervanger Bruggepensioneerde: Voltijds (G2);\n172 = Vervanger Bruggepensioneerde: Deeltijds Kmo (G3);\n173 = Wep Plus Plan Min. 24m Uvw -45 Jaar 80% 322.26 Eur;\n174 = Wep Plus Plan Min. 24m Uvw -45 Jaar 80% 371.84 Eur;\n175 = Wep Plus Plan Min. 24m Uvw -45 Jaar 50% 433.81 Eur;\n176 = Wep Plus Plan Min. 24m Uvw -45 Jaar 80% 545.37 Eur;\n177 = Wep+ (> 50% Tewerkst - 10000 Fr);\n178 = Wep+ (> 80% Tewerkst - 16000 Fr);\n179 = Wep+ (100% Tewerkst - 20000 Fr);\n180 = Wetenschappelijk Personeel;\n181 = Wep-Pr-Plan 36/48 Mnd Werkl,50%Tew,5000 Fr;\n182 = Wep-Pr-Plan 36/48 Mnd Werkl,80%Tew,8000 Fr;\n183 = Wep-Pr-Plan 48/60 Mnd Werkl,50%Tew,10000 Fr;\n184 = Wep-Pr-Plan 48/60 Mnd Werkl,80%Tew,16000 Fr;\n185 = Wep-Pr-Plan > 60 Mnd Werkl,50%Tew, 9000 Fr;\n186 = Wep-Pr-Plan > 60 Mnd Werkl,80%Tew, 18000 Fr;\n187 = Wep Plus Plan Min. 12m Mi -45 Jaar 50% 435 Eur;\n188 = Wep Plus Plan Min. 12m Mi -45 Jaar 80% 325 Eur;\n189 = Wep Plus Plan Min. 12m Mi -45 Jaar 80% 375 Eur;\n190 = Wep Plus Plan Min. 12m Mi -45 Jaar 80% 545 Eur;\n191 = Wep Plus Plan Min. 24m Mi -45 Jaar 50% 250 Eur;\n192 = Wep Plus Plan Min. 24m Mi -45 Jaar 50% 300 Eur;\n193 = Wep Plus Plan Min. 24m Mi -45 Jaar 50% 435 Eur;\n194 = Wep Plus Plan Min. 24m Mi -45 Jaar 80% 325 Eur;\n195 = Wep Plus Plan Min. 24m Mi -45 Jaar 80% 375 Eur;\n196 = Wep Plus Plan Min. 24m Mi -45 Jaar 80% 545 Eur;\n20 = Kb 111 Eerst Aangeworvene;\n200 = Ptp 24 Maanden Werkloos-50%Tew-10000fr;\n201 = Ptp 24 Maanden Werkloos-50%Tew-17500fr;\n202 = Ptp 24 Maanden Werkloos-80%Tew-13000fr;\n203 = Ptp 24 Maanden Werkloos-80%Tew-22000fr;\n204 = Ptp 12 Maanden Werkloos-50%Tew-10000fr;\n205 = Ptp 12 Maanden Werkloos-50%Tew-17500fr;\n206 = Ptp 12 Maanden Werkloos-80%Tew-13000fr;\n207 = Ptp 12 Maanden Werkloos-80%Tew-22000fr;\n208 = Dsp Brussel Min. 24m Uvw -45 Jaar 50% 247.89 Eur;\n209 = Dsp Brussel Min. 24m Uvw -45 Jaar 50% 297.47 Eur;\n21 = Kb 111 Vervanger Eerst Aangeworvene;\n210 = Dsp Brussel Min. 24m Uvw -45 Jaar 50% 433.81 Eur;\n211 = Wep+ Bxl 24 Maanden Werkloos- >50% Tew -17500fr;\n212 = Dsp Brussel Min. 24m Uvw -45 Jaar 80% 322.26 Eur;\n213 = Dsp Brussel Min. 24m Uvw -45 Jaar 80% 371.84 Eur;\n214 = Dsp Brussel Min. 24m Uvw -45 Jaar 80% 545.37 Eur;\n215 = Wep+ Bxl 24 Maanden Werkloos- >80% Tew -22000fr;\n216 = Wep+ Bxl 24 Maanden Werkloos- >75% Tew -12000fr;\n217 = Dsp Brussel Min. 12m Mi -45 Jaar 50% 250 Eur;\n218 = Dsp Brussel Min. 12m Mi -45 Jaar 50% 300 Eur;\n219 = Dsp Brussel Min. 12m Mi -45 Jaar 50% 435 Eur;\n220 = Wep+ Bxl 12 Maanden Werkloos- >50% Tew -17500fr;\n221 = Dsp Brussel Min. 12m Mi -45 Jaar 80% 325 Eur;\n222 = Dsp Brussel Min. 12m Mi -45 Jaar 80% 375 Eur;\n223 = Dsp Brussel Min. 12m Mi -45 Jaar 80% 545 Eur;\n224 = Wep+ Bxl 12 Maanden Werkloos- >80% Tew -22000fr;\n225 = Wep+ Bxl 12 Maanden Werkloos- >75% Tew -12000fr;\n226 = Dsp Brussel Uvw Laagg -25 Jaar 50% 247.89 Eur;\n227 = Dsp Brussel Min. 9m Mi Laagg -25 Jaar 50% 250 Eur;\n228 = Wep+ Bxl Voll.Werkl<25j, 9m Wz, >50% Tew -10000fr;\n229 = Wep+ Bxl Voll.Werkl,12m Wz, >50% Tew -10000fr;\n230 = Dsp Brussel Min. 24m Mi -45 Jaar 50% 250 Eur;\n231 = Dsp Brussel Uvw Laagg -25 Jaar 50% 297.47 Eur;\n232 = Dsp Brussel Laagg Min. 9m Mi -25 Jaar 50% 300 Eur;\n233 = Wep+ Bxl Voll.Werkl<25j, 9m Wz, >50% Tew -12000fr;\n234 = Wep+ Bxl Voll.Werkl,12m Wz, >50% Tew -12000fr;\n235 = Dsp Brussel Min. 24m Mi -45 Jaar 50% 300 Eur;\n236 = Dsp Brussel Laaggeschoold -25 Jaar 50% 433.81 Eur;\n237 = Dsp Brussel Laagg Min.9m Mi -25 Jaar 50% 435 Eur;\n238 = Wep+ Bxl Voll.Werkl<25j, 9m Wz, >50% Tew -17500fr;\n239 = Wep+ Bxl Voll.Werkl,12m Wz, >50% Tew -17500fr;\n240 = Dsp Brussel Min. 24m Mi -45 Jaar 50% 435 Eur;\n241 = Dsp Brussel Laaggeschoold -25 Jaar 80% 322.26 Eur;\n242 = Dsp Brussel Laagg Min.9m Mi -25 Jaar 80% 325 Eur;\n243 = Wep+ Bxl Voll.Werkl<25j, 9m Wz, >80% Tew -13000fr;\n244 = Wep+ Bxl Voll.Werkl,12m Wz, >80% Tew -13000fr;\n245 = Dsp Brussel Min. 24m Mi -45 Jaar 80% 325 Eur;\n246 = Dsp Brussel Min. 9 M Uvw -25 Jaar 80% 371.84 Eur;\n247 = Dsp Brussel Laagg Min.9m Mi -25 Jaar 80% 375 Eur;\n248 = Wep+ Bxl Voll.Werkl<25j, 9m Wz, >80% Tew -15000fr;\n249 = Wep+ Bxl Voll.Werkl,12m Wz, >80% Tew -15000fr;\n250 = Dsp Brussel Min. 24m Mi -45 Jaar 80% 375 Eur;\n251 = Dsp Brussel Min. 9 M Uvw -25 Jaar 80% 545.37 Eur;\n252 = Dsp Brussel Laagg Min.9m Mi -25 Jaar 80% 545 Eur;\n253 = Wep+ Bxl Voll.Werkl<25j, 9m Wz, >80% Tew -22000fr;\n254 = Wep+ Bxl Voll.Werkl,12m Wz, >80% Tew -22000fr;\n255 = Dsp Brussel Min. 24m Mi -45 Jaar 80% 545 Eur;\n256 = Wep+ 24 Mnd Werkl. +45j (>50% Tewerkst - 10000 Fr);\n257 = Wep+ 24 Mnd Werkl. +45j (>50% Tewerkst - 12000 Fr);\n258 = Wep+ 24 Mnd Werkl. +45j (>50% Tewerkst - 17500 Fr);\n259 = Wep+ 24 Mnd Werkl. +45j (>80% Tewerkst - 13000 Fr);\n260 = Wep+ 24 Mnd Werkl. +45j (>80% Tewerkst - 15000 Fr);\n261 = Wep+ 24 Mnd Werkl. +45j (>80% Tewerkst - 22000 Fr);\n262 = 12m Wz In 18m Activa +25 En -45 Jaar;\n263 = Activa -45jaar 24m Werkloos In 36 M (+50%Tew)- 500;\n264 = 24m Wz In 36m Activa -45 Jaar;\n265 = Activa 6m Wz In 9m Ug +45j - 50% Tew;\n266 = 6 M Wz In 9m Activa +45 Jaar;\n267 = Activa 12m Wz In 18m Ug +45j - 50% Tew;\n268 = 12m Wz In 18m Activa +45 Jaar;\n269 = Activa +45jaar 24m Werkloos In 36 M(+50%Tew) - 500;\n270 = Activa +45jaar 24m Werkloos In 36 M (+50%Tew) - 0;\n271 = 24m Mi In 36m Activa - 45 Jaar;\n272 = 6m Mi In 9m Acitiva +45 Jaar;\n273 = 12m Mi In 18m Activa +45 Jaar;\n274 = 18m Mi In 27m Activa +45 Jaar 500 Eur M Id +29;\n275 = Wep Plus Plan Min. 24m Uvw +45 Jaar 50% 247.89 Eur;\n276 = Wep Plus Plan Min. 24m Uvw +45 Jaar 50% 297.47 Eur;\n277 = Wep Plus Plan Min. 24m Uvw +45 Jaar 50% 433.81 Eur;\n278 = Wep Plus Plan Min. 24m Uvw +45 Jaar 80% 322.26 Eur;\n279 = Wep Plus Plan Min. 24m Uvw +45 Jaar 80% 371.84 Eur;\n280 = Wep Plus Plan Min. 24m Uvw +45 Jaar 80% 545.37 Eur;\n281 = Wep Plus Plan Min. 24m Mi +45 Jaar 50% 250 Eur;\n282 = Wep Plus Plan Min. 24m Mi +45 Jaar 50% 300 Eur;\n283 = Wep Plus Plan Min. 24m Mi +45 Jaar 50% 435 Eur;\n284 = Wep Plus Plan Min. 24m Mi +45 Jaar 80% 325 Eur;\n285 = Wep Plus Plan Min. 24m Mi +45 Jaar 80% 375 Eur;\n286 = Wep Plus Plan Min. 24m Mi +45 Jaar 80% 545 Eur;\n287 = Wep Plus Plan Min. 12m Mi +45 Jaar 50% 250 Eur;\n288 = Wep Plus Plan Min. 12m Mi +45 Jaar 50% 300 Eur;\n289 = Wep Plus Plan Min. 12m Mi +45 Jaar 50% 435 Eur;\n290 = Wep Plus Plan Min. 12m Mi +45 Jaar 80% 325 Eur;\n291 = Wep Plus Plan Min. 12m Mi +45 Jaar 80% 375 Eur;\n292 = Wep Plus Plan Min. 12m Mi +45 Jaar 80% 545 Eur;\n293 = Dsp Brussel Uvw 12m -45 Jaar 50% 247.89 Eur;\n294 = Dsp Brussel Uvw 12m -45 Jaar 50% 297.47 Eur;\n295 = Dsp Brussel Uvw 12m -45 Jaar 50% 433.81 Eur;\n296 = Dsp Brussel Uvw 12m -45 Jaar 80% 322.26 Eur;\n297 = Dsp Brussel Uvw 12m -45 Jaar 80% 371.84 Eur;\n298 = Dsp Brussel Uvw 12m -45 Jaar 80% 545.37 Eur;\n30 = Kb 494 Tweede Werknemer;\n300 = Gesco Wet 30/12/88;\n301 = Gesco Wep+ Wet 30/12/88;\n302 = Gesco Sociale Werkplaats;\n303 = Sine Wn Sociale Werkplaats, 17500 Fr;\n304 = Sine Wn Sociale Werkplaats, 22000 Fr;\n305 = Gesco Wep+ Kb474 (Rszppo);\n306 = Sine Wn Sociale Werkplaats, 435 Euro;\n307 = Sine Wn Sociale Werkplaats, 545 Euro;\n310 = Gesco Kb474 (Rszppo - Tot 31/12/1992);\n311 = Gesco Kb474 Premie 230000;\n312 = Gesco Kb474 Premie 400000;\n320 = Laaggeschoolde Jongere Sbo (Rszppo);\n324 = Erg Laaggeschoolde Jongere Sbo (Rszppo);\n325 = Kunstenaar Ppo;\n350 = Gesco Kb474 Bxl Premie 230000;\n351 = Gesco Kb474 Bxl Premie 400000;\n352 = Gesco Bxl: Verbetering Onthaal Bij Loketdiensten;\n353 = Gesco Bxl: Toevoeging Maatsch. Assistent In Ocmw;\n354 = Gesco Bxl: Toevoeging Licentiaten In Ocmw;\n358 = Dg 6 -45 Jaar Verminderingskaart Herstructur;\n359 = Dg 6 +45 Jaar Verminderingskaart Herstructur;\n360 = Tewerkstelling Ontslagen Wn Herstructurering;\n361 = Activa -25 Jaar 12m Uvw In 18m 500 Eur;\n362 = Act Pvp 12m Wz In 18m, Uvw, <25j;\n363 = Act Pvp 12m Wz In 18m, <25j;\n40 = Kb 498 Jonge Werkz. Langd. Werkl(T),Verm.Admiekost;\n400 = Gesco Waals: Bestrijding Sociale Uitsluiting;\n401 = Gesco Waals Premie 205000;\n402 = Gesco Waals Premie 410000;\n403 = Gesco Waals Premie 615000;\n404 = Gesco Waals Premie 700000;\n41 = Kb 498 Jonge Werkz.Langd.Werkl(T),Z.Verm.Admiekost;\n450 = Gesco Vlaams - Besluit 27/02/1991 (Tot 31/12/1992);\n451 = Gesco Vlaams - Besluit 27/10/1993;\n452 = Gesco Vlaams - Premie 230000 - Besluit 27/10/1993;\n453 = Gesco Vlaams - Premie 440000 - Besluit 27/10/199;\n454 = Gesco Vlaams - Jeugdwerkgarantieplan;\n455 = Gesco Vlaams - Project Vl Gemeenschap;\n456 = Gesco Vlaams - Kinderdagverblijven;\n457 = Gesco Vlaams - Weerwerk (+ Op Proef);\n458 = Gesco Vlaams - Werkervaringsplan;\n459 = Gesco Vlaams - Jeugdwerkgarantieplan;\n460 = Politiepersoneel-Vlaams Gewest;\n50 = Prog. Wet 88: Eerste Werknemer (T1);\n500 = Ingroeibanen;\n501 = Collectieve Arbeidsduurverm. Bedrijf In Herstr.;\n51 = Prog. Wet 88: Vervanger Eerste Werknemer (T2);\n510 = Dsp Brussel Min. 12m Mi +45 Jaar 50% 250 Eur;\n511 = Dsp Brussel Min. 12m Mi +45 Jaar 50% 300 Eur;\n512 = Dsp Brussel Min. 12m Mi +45 Jaar 50% 435 Eur;\n513 = Dsp Brussel Min. 12m Mi +45 Jaar 80% 325 Eur;\n514 = Dsp Brussel Min. 12m Mi +45 Jaar 80% 375 Eur;\n515 = Dsp Brussel Min. 12m Mi +45 Jaar 80% 545 Eur;\n516 = Dsp Brussel Min. 24m Uvw +45 Jaar 50% 247.89 Eur;\n517 = Dsp Brussel Min. 24m Uvw +45 Jaar 50% 297.47 Eur;\n518 = Dsp Brussel Min. 24m Uvw +45 Jaar 50% 433.81 Eur;\n519 = Dsp Brussel Min. 24m Uvw +45 Jaar 80% 322.26 Eur;\n52 = Prog. Wet 88: Bijk. Wn Met Verm. Admiekost (T3);\n520 = Dsp Brussel Min. 24m Uvw +45 Jaar 80% 371.84 Eur;\n521 = Dsp Brussel Min. 24m Uvw +45 Jaar 80% 545.37 Eur;\n522 = Dsp Brussel Min. 24m Mi +45 Jaar 50% 250 Eur;\n523 = Dsp Brussel Min. 24m Mi +45 Jaar 50% 300 Eur;\n524 = Dsp Brussel Min. 24m Mi +45 Jaar 50% 435 Eur;\n525 = Dsp Brussel Min. 24m Mi +45 Jaar 80% 325 Eur;\n526 = Dsp Brussel Min. 24m Mi +45 Jaar 80% 375 Eur;\n527 = Dsp Brussel Min. 24m Mi +45 Jaar 80% 545 Eur;\n53 = Prog. Wet 88: Bijk. Wn Zonder Verm. Admiekost (T3);\n54 = Prog. Wet 88: Verv. Bijk. Wn, Verm. Admiekost (T4);\n55 = Prog. Wet 88: Verv.Bijk.Wn,Zonder Verm. Admie (T4);\n550 = Activa Mi - 25 Jaar 500 Eur;\n551 = 12m Uvw In 18m Activa Plus -25 Jaar 500 Eur;\n552 = 6m Uvw In 9m Activa Plus +45 Jaar 500 Eur;\n553 = 6m Mi In 9m Activa Plus +45 Jaar 500 Eur;\n554 = 12m Uvw In 18m Activa Plus +45 Jaar 500 Eur;\n555 = 12m Mi In 18m Activa Plus +45 Jaar 500 Eur;\n556 = Activa Sluiting 12m Wz In 9m +45j -50%Tew;\n557 = Activa Sluiting 6m Wz In 9m -45j - 50% Tew;\n558 = Activa Sluiting 6m Wz In 9m +45j - 50% Tew;\n559 = 24m Uvw In 36m Activa -45 Jaar 500 Eur;\n56 = Prog. Wet 88: Nieuwe Wn.Tvv Vrijw. Ontsl,Va (T5);\n560 = 36m Uvw In 54m Activa -45 Jaar 500 Eur;\n561 = 60m Uvw In 90m Activa -45 Jaar 500 Eur;\n562 = 18m Uvw In 27m Activa +45 Jaar 500 Eur;\n563 = 12m Uvw In 18m Sine -45 Jaar 500 Eur;\n564 = 6m Wz In 9m Activa Sluiting - 45 Jaar 500 Eur;\n565 = 6m Mi In 9m Sine - 45 Jaar 500 Eur;\n567 = 24m Uvw In 36m Sine - 45 Jaar 500 Eur;\n568 = 6m Uvw In 9m Activa Sluiting +45 Jaar 500 Eur;\n569 = Sine 12m Wz In 18m Mi -45j;\n57 = Prog. Wet 88: Nieuwe Wn.Tvv Vrijw. Ontsl,Zva (T5);\n571 = 6m Uvw In 9m Sine +45 Jaar 500 Eur;\n572 = 36m Wz In 54m Activa -45 Jaar;\n574 = 6m Mi In 9m Sine +45 Jaar 500 Eur;\n575 = 12m Mi In 18m Activa - 25 Jaar 500 Eur;\n576 = 24m Mi In 36m Activa - 25 Jaar 500 Eur;\n577 = 36m Mi In 54m Activa - 25 Jaar 500 Eur;\n578 = 60m Mi In 90m Activa - 25 Jaar 500 Eur;\n579 = 12m Mi In 18m Activa - 45 Jaar;\n58 = Prog. Wet 88: Vervanger Nieuwe Wn, Va (T6);\n580 = 36m Mi In 54m Activa - 45 Jaar 500 Eur;\n581 = 60m Mi In 90m Activa - 45 Jaar 500 Eur;\n582 = 18m Mi In 27m Activa +45 Jaar;\n583 = 60m Wz In 90m Activa -45 Jaar;\n584 = 18 M Wz In 27m Activa +45 Jaar;\n59 = Prog. Wet 88: Vervanger Nieuwe Wn, Zva (T6);\n590 = Generatiepact (Erg) Laaggeschoolden;\n591 = Activa Start;\n592 = Activa Start;\n593 = Rva C24;\n594 = Rva C29;\n595 = Rva C25;\n596 = Rva C26;\n597 = Rva C27;\n598 = Rva C28;\n599 = Rva C30;\n60 = Prog. Wet 88: Begeleiding Werkl., Va (T7);\n600 = Rva C31;\n601 = Rva C32;\n602 = Rva C33;\n603 = Rva C34;\n604 = Rva D13;\n605 = Rva D14 / D15;\n606 = Rva D16 En D17;\n607 = Rsz Verm Mentor;\n608 = Opleider Met Herstruct;\n609 = Werkervaring Volgens Regels Van Dsp Brussel;\n61 = Prog. Wet 88: Begeleiding Werkl., Zva (T7);\n610 = Rva C24 2011;\n611 = Rva C29 2011;\n612 = Rva C25 2011;\n613 = Rva C26 2011;\n614 = Rva C27 2011;\n615 = Rva C28 2011;\n616 = Rva C30 2011;\n617 = Rva C31 2011;\n618 = Rva C32 2011;\n619 = Rva C33 2011;\n62 = Prog. Wet 88: Verv. Begeleiding Werkl., Va (T8);\n620 = Rva C34 2011;\n621 = Rva D13 2011;\n622 = Rva D14 En D15 2011;\n623 = Rva D16 En D17 2011;\n624 = Werkervaring <45j 247,89;\n625 = Werkervaring <45j 297,47;\n626 = Werkervaring <45j 433,81;\n627 = Werkervaring <45j 371,84;\n628 = Werkervaring <45j 545,37;\n629 = Werkervaring >45j 247,89;\n63 = Prog. Wet 88: Verv. Begeleiding Werkl., Zva (T8);\n630 = Werkervaring >45j 297,47;\n631 = Werkervaring >45j 433,81;\n632 = Werkervaring >45j 322,26;\n633 = Werkervaring >45j 371,84;\n634 = Werkervaring >45j 545,37;\n635 = Rva C35;\n636 = Rva D18;\n637 = Rva D19;\n638 = Rva C36;\n639 = Rva D20;\n640 = Rva C37;\n643 = RVA D21 >=45 jr;\n644 = Rva C40< 27j;\n645 = 'RVA C'42 < 27 year;\n646 = copy 563 enkel RSZ verm: 12m UVW in 18m SINE -45 jaar 500 EUR;\n647 = copy 567 enkel RSZ verm: 24m UVW in 36m SINE -45 jaar 500 EUR;\n648 = copy 571 enkel RSZ verm: 6m UVW in 9m SINE +45 jaar 500 EUR;\n649 = copy 563 enkel herinsch: 12m UVW in 18m SINE -45 jaar 500 EUR;\n650 = copy 567 enkel herinsch: 24m UVW in 36m SINE -45 jaar 500 EUR;\n651 = copy 571 enkel herinsch: 6m UVW in 9m SINE +45 jaar 500 EUR;\n652 = copy 303 enkel RSZ verm: SINE wn 17500 fr;\n653 = copy 304 enkel RSZ verm: SINE wn 22000 fr;\n654 = copy 303 enkel herinschakeling: SINE wn 17500 fr;\n655 = copy 304 enkel herinschakeling: SINE wn 22000 fr;\n70 = Plus 1 Plan: Without reduction of admin. costs (P);\n700 = Herverdeling Arbeid Openb.Sector (Verv.4dagenweek);\n701 = Logistiek Assistent Kb05-02-1997 (Rszppo);\n702 = Kb Veiligheidscontract;\n703 = Gerechtigden Op Bestaansminimum;\n704 = <18j Voldoen Aan Kb 495, Instap In Jong.Ban.Plan;\n705 = <18j Altern Tewerst En Opleid - Kb495 + Brugprojn.;\n706 = Jongeren Socio-Professionele Inpassing;\n707 = Wn. In Dienst Na Startbaanovereenkomst (Enkel Ppo);\n708 = Contr. Ter Vervanging Van Opleiding Verpleegkundig;\n709 = Contr. Bezoldigd Afwezig Wegens Opleid Verpleegk.;\n71 = Plus 1 Plan: Met Vermindering Admin. Kosten (P);\n710 = Activa -45jr 12 Mnd Wz In 18 Mnd;\n711 = Activa +45jr 6 Mnd Wz In 9 Mnd;\n712 = Activa - Sluiting;\n713 = Activa -45jr 24 Mnd Wz In 36 Mnd;\n714 = Activa +45jr Wz > 1 Jaar;\n715 = Activa -45jr 36 Mnd Wz In 54 Mnd;\n716 = Activa -45jr 60 Mnd Wz In 90 Mnd;\n717 = Activa -45jr Preventie & Veiligheid;\n718 = Activa +45jr Preventie & Veiligheid;\n72 = Plus 2 Plan: Zonder Vermindering Admin. Kost. (P2);\n720 = Dsp -25jr;\n721 = Dsp -45jr Min 12mnd Uitkering;\n722 = Dsp -45jr Min 24mnd Uitkering;\n723 = Dsp +45jr Min 12mnd Uitkering;\n724 = Dsp -45jr Min 24mnd Uitkering;\n728 = Logistiek Ass. + Opl. Verpleegkundige + Bez Afw;\n729 = Geen Log. Ass. + Opl. Verpleegkundige + Bez Afw;\n73 = Plus 2 Plan: Met Vermindering Admin. Kosten (P2);\n74 = Plus 3 Plan: Zonder Vermindering Admin.Kosten (P3);\n75 = Plus 3 Plan: Met Vermindering Admin.Kosten (P3);\n76 = Vervanger Plus 2 Plan: Zonder Vermind. Adm.K (P2);\n77 = Vervanger Plus 2 Plan: Met Vermind. Admin Ko (P2);\n78 = Vervanger Plus 3 Plan: Zonder Vermind. Adm. K (P3);\n79 = Vervanger Plus 3 Plan: Met Vermind. Adm. Ko (P3);\n795 = Gesco Contingent;\n796 = Gesco Projecten;\n797 = Gesco Openbare Besturen;\n798 = Activa Plan (Geen Berekeningen In L4);\n799 = Wep+ Algemeen (Geen Berekeningen In L4);\n80 = Vervanger Plus 1 Plan: Zonder Vermind. Adm.Ko (P);\n800 = Benefit -25 years low-skilled Wallonia;\n801 = Middengesch. - 6m werkzoekend / Wallonië;\n803 = Impulsion -25, 55+, insertion;\n81 = Vervanger Plus 1 Plan: Met Vermindering Adm. K (P);\n82 = Plus 1 Plan: Gewezen Uitzendkracht;\n83 = Plus 2 Plan: Gewezen Uitzendkracht;\n84 = Plus 3 Plan: Gewezen Uitzendkracht;\n85 = Plus 2 Plan: Gewezen Uitzendkracht Zonder Verm Adm;\n90 = Ex Rva-Stagiair Kb 230 (R);\n900 = Activa Brussel langdurig werkzoekend;\n902 = Benefit long-term unemployed (age) Brussels;\n91 = Ex Rva-Stagiair (Eerste Jaar Geen Rsz-Verm);\n999 = No recruitment context;", "format": "" }, "SoMb": { "type": "number", "multipleOf": 0.01, "description": "Sociale Maribel", "format": "float" }, "PeEx": { "type": "string", "enum": [ "0", "1", "2", "3", "4", "5", "6", "7", "8" ], "maxLength": 20, "description": "Notie vrijstelling prestaties\n0 = No exception of services;\n1 = Exemption from performance;\n2 = Exemption of services during a full quarter;\n3 = Exemption of services prior to 28/09/2017;\n4 = Exemption of services during a full quarter of the CLA concluded prior to 28/09/2017;\n5 = Exemption of services during a full quarter and training w/costs >= 20% of the gross annual wage;\n6 = Exemption of services and employment of at least 1/3 time during a full quarter;\n7 = Exemption from benefits during a full quarter to less than 1/3 of full-time employment.;\n8 = Exempt fr benefits during quart up to >= 1/3 of ft empl and training cost = 20% spec rate ann salary;", "format": "" }, "DaEx": { "type": "string", "description": "Exemption start date", "format": "date" }, "DaEd": { "type": "string", "description": "Training status start date", "format": "date" }, "StEd": { "type": "string", "enum": [ "0", "1", "2" ], "maxLength": 20, "description": "Training status\n0 = No training followed by the employee;\n1 = Required training followed by the employee;\n2 = Obligation to follow outplacement assistance;", "format": "" }, "WrCt": { "type": "boolean", "description": "Written employment contract", "format": "" }, "StCd": { "type": "string", "maxLength": 20, "description": "Steering group key", "format": "" }, "FaGr": { "type": "integer", "description": "Invoicing group", "format": "" }, "KRS": { "type": "string", "maxLength": 20, "description": "'RSZ' indicator", "format": "" }, "RMfa": { "type": "string", "enum": [ "1", "2", "3", "4", "401", "402", "403", "404", "405", "406", "407", "408", "409", "410", "411", "412", "5", "6" ], "maxLength": 20, "description": "DMFA Risk class\n1 = Arbeider zonder verplaatsing;\n2 = Worker on the factory floor;\n3 = Huisbewaarders (arbeider);\n4 = Schoonmaak- en onderhoudspersoneel(arbeider);\n401 = Bediende zonder verplaatsing;\n402 = Bediende met occasionele opdrachten buiten ondern.;\n403 = Bediende met regelmatige opdrachten buiten ondern.;\n404 = Vertegenw., reizend person., loopjongen (bediende);\n405 = Office worker who performs manual labour;\n406 = Thuiswerkende bediende;\n407 = Verplegend personeel;\n408 = Verkoper (bediende);\n409 = Voetballer met statuut betaalde sportbeoefenaar;\n410 = Voetballer zonder stat bet. Sportbeoef.> 1239,47e;\n411 = Voetballer zonder stat bet. Sportbeoef.< 1239,47e;\n412 = Andere sportbeoefenaar dan voetballer;\n5 = Keukenpersoneel (niet voor horeca) (arbeider);\n6 = Chauffeur(arbeider);", "format": "" }, "Z36": { "type": "string", "enum": [ "a", "b" ], "maxLength": 20, "description": "Fixed-term contract\na = Less than 3 months;\nb = More than 3 months;", "format": "" }, "CDT": { "type": "string", "enum": [ "1", "2", "3", "4", "5", "6", "7", "8" ], "maxLength": 20, "description": "Full-time/part-time\n1 = Full-time work;\n2 = Voluntary part-time - full days;\n3 = Voluntary part-time - incomplete days;\n4 = Full-time + occasional incomplete days;\n5 = Voluntary part-time - undefined hour scheme;\n6 = Involuntary part-time - full days;\n7 = Involuntary part-time - complete days;\n8 = Involuntary part-time - undefined hour scheme;", "format": "" }, "COR": { "type": "boolean", "description": "Subject to 'RSZ'", "format": "" }, "CCW": { "type": "string", "enum": [ "0", "000", "010", "011", "012", "013", "014", "015", "016", "017", "020", "022", "023", "024", "025", "026", "027", "028", "029", "035", "039", "041", "045", "046", "047", "050", "10", "11", "12", "13", "14", "15", "16", "17", "20", "22", "23", "24", "25", "26", "27", "28", "29", "35", "39", "41", "43", "439", "45", "450", "46", "47", "480", "484", "485", "486", "487", "490", "491", "492", "493", "494", "495", "496", "497", "498", "50", "675", "74", "75", "82", "83", "84", "840", "85", "87", "879", "883", "885", "91", "92", "95" ], "maxLength": 20, "description": "RSZ-categorie\n0 = No meaning;\n000 = No meaning;\n010 = Temp. empl. hort-agric/SUPextra catering;\n011 = Work paid with fixed amount;\n012 = Handicapped worker in a protected workplace;\n013 = Worker special case;\n014 = Worker normal category;\n015 = Worker normal category;\n016 = Miner, surface;\n017 = Miner, underground;\n020 = Trainee worker SUPextra Hotel, Restauarant and Catering;\n022 = Trainee worker & intern with fixed amount wage;\n023 = Contractually subsidised;\n024 = Contractually subsidised;\n025 = Handicapped subsidised contract;\n026 = Normal trainee worker & intern;\n027 = Normal trainee worker & intern;\n028 = Handicapped subsidised contractual with fixed amount wage;\n029 = Subsidised contractual with fixed amount wage;\n035 = Accredited trainee worker;\n039 = Apprentice non-manual worker;\n041 = Industrial accident;\n045 = Domestic servant;\n046 = Artist;\n047 = Part-time artiste of school age;\n050 = Flexi-job;\n10 = Temp. empl. hort-agric/SUPextra catering;\n11 = Work paid with fixed amount;\n12 = Handicapped worker in a protected workplace;\n13 = Worker special case;\n14 = Worker normal category;\n15 = Worker normal category;\n16 = Miner, surface;\n17 = Miner, underground;\n20 = Trainee worker SUPextra Hotel, Restauarant and Catering;\n22 = Trainee worker & intern with fixed amount wage;\n23 = Contractually subsidised;\n24 = Contractually subsidised;\n25 = Handicapped subsidised contract;\n26 = Normal trainee worker & intern;\n27 = Normal trainee worker & intern;\n28 = Handicapped subsidised contractual with fixed amount wage;\n29 = Subsidised contractual with fixed amount wage;\n35 = Accredited trainee worker;\n39 = Apprentice non-manual worker;\n41 = Industrial accident;\n43 = In-house staff 1st recruited;\n439 = Trainee office worker;\n45 = Domestic servant;\n450 = Bediende Flexi-job;\n46 = Artist;\n47 = Part-time artiste of school age;\n480 = Trainee office worker SUPextra Catering;\n484 = Subsidised contractual office worker;\n485 = Handicapped subsidised contractual office worker;\n486 = School-aged occ. office work (fixed rate);\n487 = Norm. trainee office worker & intern.;\n490 = Office worker SUPextra Catering;\n491 = Office worker ANPCB;\n492 = Disabled office worker;\n493 = Bediende (speciaal geval);\n494 = Bediende (speciaal geval);\n495 = Ordinary office worker;\n496 = Occass. office worker (fixed amount);\n497 = Host family;\n498 = Doctoral thesis outside EA;\n50 = Flexi-job;\n675 = Statutory;\n74 = Enkel vrz.gz (a) (any education);\n75 = Enkel vrz.gz (b) (University education);\n82 = Trainee office worker & intern (ANPCB);\n83 = Bediende huispersoneel;\n84 = Subsidised contractual (b);\n840 = Student;\n85 = Subsidised contractual handicapped protected workplace;\n87 = Trainee office worker & intern;\n879 = 'Bruggepensioneerde';\n883 = 'Pseudo-bruggepensioneerde (canada dry)';\n885 = Pseudo early retiree (time credit);\n91 = Office worker (ANPCB);\n92 = Handicapped non-manual worker - protected workplace;\n95 = Ordinary office worker& paid athlete;", "format": "" }, "BOR": { "type": "number", "description": "Foreign origin", "format": "number" }, "DtIn": { "type": "string", "description": "Dismissal on", "format": "date" }, "SDGr": { "type": "string", "maxLength": 20, "description": "Group SD Worx", "format": "" }, "PaGr": { "type": "string", "maxLength": 20, "description": "Partena Group", "format": "" }, "PaCc": { "type": "string", "enum": [ "A", "B", "C", "D", "E", "F" ], "maxLength": 20, "description": "Contract categorie\nA = Worker;\nB = Office worker;\nC = Apprenticeship contract blue-collar worker;\nD = Apprenticeship contract white-collar worker;\nE = Niet onderworpen;\nF = Domestic staff;", "format": "" }, "PaCt": { "type": "string", "enum": [ "0", "9", "A", "B", "C", "D" ], "maxLength": 20, "description": "Contract type\n0 = No object;\n9 = Unknown;\nA = Onbepaalde duur;\nB = Bepaalde duur;\nC = Duidelijk omschreven werk;\nD = Substitution;", "format": "" }, "PaPc": { "type": "string", "enum": [ "0", "1", "2", "3", "4", "5", "6", "7", "8", "E", "F", "J", "P", "S", "T", "W", "X" ], "maxLength": 20, "description": "Contract specification\n0 = No special contract;\n1 = Initial placement;\n2 = Trainee R.D. 230;\n3 = Half-time PEP (1st job exp) with deduct. on net;\n4 = Half-time PEP (1st job exp) without deduct. on net;\n5 = PEP (1st job exp) other than half-time;\n6 = Student;\n7 = Training in relation to school training;\n8 = Extra HORECA;\nE = Super-Extra HORECA;\nF = Occasional worker HORECA;\nJ = Worker -15 years;\nP = Occasional worker funerals;\nS = Startersjob;\nT = Instapstage;\nW = Linked training in the Walloon region;\nX = Flexijobs;", "format": "" }, "PaTc": { "type": "string", "enum": [ "0", "I", "S", "T" ], "maxLength": 20, "description": "Temporary contract\n0 = Not applicable;\nI = Temporary worker;\nS = Seasonal worker;\nT = Intermittent worker;", "format": "" }, "PaNr": { "type": "string", "maxLength": 15, "description": "Student number", "format": "" }, "PaTl": { "type": "string", "enum": [ "0", "1", "2", "3", "4", "5", "6", "7", "8" ], "maxLength": 20, "description": "Type of student\n0 = No object;\n1 = Apprentice SME’s;\n2 = Industrial apprentice;\n3 = Training company manger (Fr.Comm);\n4 = Insertion contract CEFA;\n5 = training company manager (Fl.Comm);\n6 = Beroepsinlevingsovereenkomst;\n7 = Work-link contract;\n8 = Work-link contract Flanders;", "format": "" }, "PaRe": { "type": "string", "enum": [ "0", "1", "2", "3" ], "maxLength": 20, "description": "Region apprenticeship contract\n0 = No object;\n1 = Flemish Region;\n2 = French Region (Walloon Region and Brussels Capital Region);\n3 = German Region;", "format": "" }, "PaRu": { "type": "string", "enum": [ "00", "01", "02", "03", "04", "05", "06", "07", "08", "09", "11", "12", "13", "15", "16", "17", "22", "24", "25", "27" ], "maxLength": 20, "description": "Reason end employment\n00 = (Employed);\n01 = Dismissal (by employer);\n02 = Resignation (by worker);\n03 = Serious misconduct;\n04 = Definite term/well-defined work;\n05 = Pension;\n06 = Early retirement;\n07 = Death;\n08 = Change of status;\n09 = Andere;\n11 = Resumption of work after time credit;\n12 = Early retirement;\n13 = Early retirement due to illness;\n15 = End of official status;\n16 = Resignation in a body;\n17 = Termination medical reasons;\n22 = Verbreking door de werkgever;\n24 = In onderling akkoord;\n25 = Force majeure;\n27 = Welldefined work;", "format": "" }, "PaJf": { "type": "number", "multipleOf": 0.01, "description": "Fictitious seniority years", "format": "float" }, "PaPr": { "type": "number", "multipleOf": 0.01, "description": "Prof. years", "format": "float" }, "PaTi": { "type": "string", "enum": [ "1", "2", "3" ], "maxLength": 20, "description": "Title\n1 = Mrs.;\n2 = Ms;\n3 = Mr;", "format": "" }, "PaOp": { "type": "string", "enum": [ "0", "1", "2", "3", "4", "9" ], "maxLength": 20, "description": "Educational level\n0 = No code;\n1 = Primary education;\n2 = Sec/secondary education;\n3 = High degree (non university);\n4 = University education;\n9 = Unknown;", "format": "" }, "PaEd": { "type": "string", "description": "Last study end date", "format": "date" }, "PaDp": { "type": "string", "description": "Prof. seniority", "format": "date" }, "PaCa": { "type": "boolean", "description": "CAO42", "format": "" }, "DvbAbId": { "type": "integer", "description": "Verzuim", "format": "" }, "DvbLeId": { "type": "integer", "description": "Verlof", "format": "" }, "DvbSEns": { "type": "integer", "description": "DV Verlof", "format": "" }, "DvbSuDv": { "type": "boolean", "description": "Vervangingsdienstverband", "format": "" }, "DvbIsAt": { "type": "boolean", "description": "Uitbreiding", "format": "" }, "DvbDecl": { "type": "boolean", "description": "Declareren bij Vervangingsfonds", "format": "" }, "DvbPool": { "type": "boolean", "description": "Poolvervanger", "format": "" }, "DvbViCv": { "type": "string", "maxLength": 10, "description": "Contractvorm", "format": "" }, "DvbSubs": { "type": "string", "maxLength": 15, "description": "Vervangt", "format": "" }, "DvbInFt": { "type": "boolean", "description": "Vervanging binnen eigen FTE bij vrijwillige verz.", "format": "" }, "EnS2": { "type": "integer", "description": "Income relationship no.", "format": "" }, "EnSe": { "type": "integer", "description": "Employment", "format": "" }, "DvbEnSe": { "type": "integer", "description": "Dienstverband", "format": "" }, "DvbZ59": { "type": "string", "description": "Einde opzegvergoeding", "format": "date" }, "DvbDAP": { "type": "string", "description": "Begindatum (brug)pensioen", "format": "date" }, "DvbStat": { "type": "string", "maxLength": 10, "description": "Statuut", "format": "" }, "DvbPNR": { "type": "number", "description": "Medewerkernummer", "format": "number" }, "DvbCCK": { "type": "string", "maxLength": 10, "description": "Contractcategorie", "format": "" }, "DvbCPI": { "type": "string", "maxLength": 10, "description": "RIZIV pensioen", "format": "" }, "DvbPRR": { "type": "string", "maxLength": 10, "description": "Periodiciteit RIZIV", "format": "" }, "DvbAGK": { "type": "boolean", "description": "Onderworpen aan arbeidsgeneeskunde", "format": "" }, "DvbZ27": { "type": "number", "description": "Medische dienst", "format": "number" }, "DvbBSZ": { "type": "boolean", "description": "Onderworpen bijz. soc. Zekerheid", "format": "" }, "DvbSBZ": { "type": "string", "maxLength": 10, "description": "Bijz. soc. Zekerheid", "format": "" }, "DvbIBZ": { "type": "string", "maxLength": 8, "description": "Inschrijfnummer", "format": "" }, "DvbZIV": { "type": "string", "maxLength": 10, "description": "Afhouding Z.I.V.", "format": "" }, "DvbSdNr": { "type": "string", "maxLength": 2, "description": "Identificatie SD Worx", "format": "" }, "DvbRESd": { "type": "string", "maxLength": 10, "description": "Reden uit dienst", "format": "" }, "DvbFiTy": { "type": "string", "maxLength": 10, "description": "Ontslagwijze", "format": "" }, "DvbViSs": { "type": "string", "maxLength": 10, "description": "Wijze betekening", "format": "" }, "DvbSdDi": { "type": "string", "description": "Betekening opzegging", "format": "date" }, "DvbSdDa": { "type": "string", "description": "Datum verzending opzegging", "format": "date" }, "DvbDaDi": { "type": "string", "description": "Begindatum opzegging", "format": "date" }, "DvbTxEm": { "type": "string", "maxLength": 10, "description": "Fiscale vrijstelling ontslag", "format": "" }, "DvbStAn": { "type": "string", "description": "Startdatum anciënniteit", "format": "date" }, "DvbSeAc": { "type": "integer", "description": "Volgnummer Acerta", "format": "" }, "DvbREAc": { "type": "string", "maxLength": 10, "description": "Reden uit dienst", "format": "" }, "DvbCtTy": { "type": "string", "maxLength": 10, "description": "ContractType", "format": "" }, "DvbTRsz": { "type": "string", "maxLength": 10, "description": "Type #1 medewerker", "format": "" }, "DvbTRs2": { "type": "string", "maxLength": 10, "description": "Type #2 medewerker", "format": "" }, "DvbSwt": { "type": "string", "maxLength": 10, "description": "Code brugpensioen", "format": "" }, "DvbRizi": { "type": "string", "maxLength": 10, "description": "RIZIV code", "format": "" }, "DvbPRiz": { "type": "string", "maxLength": 10, "description": "Periodiciteit RIZIV", "format": "" }, "DvbRvpC": { "type": "string", "maxLength": 10, "description": "RVP categorie", "format": "" }, "DvbMaWe": { "type": "string", "maxLength": 10, "description": "Maatregel werkhervatting", "format": "" }, "DvbDaLa": { "type": "string", "description": "Datum laatste toekenning", "format": "date" }, "DvbRrRe": { "type": "string", "maxLength": 11, "description": "Rijksregisternr vervanger", "format": "" }, "DvbDeNo": { "type": "string", "maxLength": 10, "description": "Notie debiteur", "format": "" }, "DvbNoDm": { "type": "integer", "description": "Teller breuk DMFA", "format": "" }, "DvbSbo": { "type": "string", "maxLength": 10, "description": "Startbaanovereenkomst", "format": "" }, "DvbViAo": { "type": "string", "maxLength": 10, "description": "Reden einde arbeidsovereenkomst", "format": "" }, "DvbWWHe": { "type": "boolean", "description": "WW herzien", "format": "" }, "DvbCAHi": { "type": "string", "maxLength": 10, "description": "Cao-code inlener", "format": "" }, "DvbGmAk": { "type": "string", "description": "Einddatum vergoeding in gemeenschappelijk akkoord", "format": "date" }, "DvbViRe": { "type": "string", "maxLength": 10, "description": "Reden einde dienstverband België", "format": "" }, "DvbViMa": { "type": "string", "maxLength": 10, "description": "Wijze einde dienstverband België", "format": "" }, "ArvStPn": { "type": "string", "maxLength": 10, "description": "Start pensioenregeling", "format": "" }, "ArvStwp": { "type": "integer", "description": "Start weken pensioen", "format": "" }, "ArvDaLw": { "type": "string", "description": "Laatste werkdag", "format": "date" }, "PeDa": { "type": "string", "description": "Statutory pension date", "format": "date" }, "B2Pp": { "type": "boolean", "description": "2st pension pillar contribution", "format": "" }, "RSZE": { "type": "string", "enum": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C", "D", "E" ], "maxLength": 20, "description": "RSZ exemption\n1 = 'Tewerkgestelde werkloze in een VZW';\n2 = Vocational training / Apprenticeship;\n3 = Pays 'RSZ' abroad;\n4 = RSZ als zelfstandige;\n5 = 'Overzeese sociale zekerheid';\n6 = Short duration employment;\n7 = 'Binnenschipper';\n8 = Working student;\n9 = 'Begeleid leerlingenvervoer of middagtoezichter';\nA = Huispersoneel max. 8u/week;\nB = Instapstage;\nC = Beroepsinlevingsovereenkomst;\nD = Brugproject;\nE = VDAB stage (onbezoldigd);", "format": "" }, "LeAg": { "type": "string", "enum": [ "1", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "2", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "3", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "4", "40", "5", "6", "7", "8", "9" ], "maxLength": 20, "description": "Contract of employment\n1 = Worker;\n10 = Professional sportsman;\n11 = Student;\n12 = Unemployed placed in employment;\n13 = -;\n14 = 'Derde arbeidscircuit';\n15 = Employee with limited RSZ obligations (compulsory education);\n16 = Part-time apprenticeship (compulsory school attendance);\n17 = RVA vocational training;\n18 = Apprenticeship (RD 230) / Starter job contract;\n19 = Temporary work (interim);\n2 = Worker paid with gratuities;\n20 = 'Openbare dienst';\n21 = Leerling / stage geen dimona;\n22 = 'Bestuurder';\n23 = Pensioner;\n24 = 'Bruggepensioneerde';\n25 = Professional journalist;\n26 = 'Tewerkgestelde onder volmachtsbesluiten';\n27 = 'Arbeider met fooien bezoldigd onder volmachtsbesluiten';\n28 = 'Werknemer met tegemoetkoming werkgever';\n29 = 'Werknemer met tegemoetkoming werkgever (fooien)';\n3 = Alternerend leren-werken / ond.opl.;\n30 = 'Binnenschipper';\n31 = 'DOSZ';\n32 = 'Vliegend personeel';\n33 = 'Zaakvoerder';\n34 = Expatriates;\n35 = 'TCN';\n36 = Expatriates;\n37 = On assignments;\n38 = 'Detachering';\n39 = Additional allowance with unemployment benefit (canada dry);\n4 = Industrial learning contract / socio-professional contract;\n40 = 'Aanvullende vergoeding bij onderbrekingsuitkering bij tijdskrediet';\n5 = Articles of apprenticeship (disabled);\n6 = Home worker;\n7 = Domestic servant;\n8 = Office worker;\n9 = Trade representative;", "format": "" } }, "required": [ "DaBe" ] }, "Objects": { "type": "array", "items": { "type": "object", "properties": { "AfasContractAddition": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "DaCo": { "type": "string", "description": "Group date", "format": "date" }, "InCa": { "type": "string", "maxLength": 20, "description": "Statutory insurance category", "format": "" }, "ReAc": { "type": "string", "enum": [ "1" ], "maxLength": 20, "description": "Retiree with achievements\n1 = Yes;", "format": "" }, "HaRe": { "type": "string", "enum": [ "1" ], "maxLength": 20, "description": "Halftijds bruggepensioneerd\n1 = Yes;", "format": "" }, "CoRe": { "type": "string", "maxLength": 5, "description": "Early retirement cost ctr.", "format": "" }, "HoRe": { "type": "number", "multipleOf": 1E-05, "description": "u/wk DT brugpens dagprijs", "format": "float" }, "Ap": { "type": "string", "enum": [ "1", "2", "3", "4", "5", "6", "7" ], "maxLength": 20, "description": "Learning agreement\n1 = Alternating study/work older than 18 years;\n2 = Apprenticeship of tradespeople older than 18 years;\n3 = Industrial apprenticeship older than 18 years;\n4 = Industrial socio-professional apprenticeship older than 18 years;\n5 = First work experience older than 18 years;\n6 = Alternerende opleiding Vlaanderen na 18 jaar;\n7 = Alternerende opleiding Wallonië na 18 jaar;", "format": "" }, "EdLe": { "type": "string", "enum": [ "1", "2", "3", "4" ], "maxLength": 20, "description": "Niveau opleiding\n1 = Lager onderwijs;\n2 = Secondary education;\n3 = Bachelor;\n4 = Master;", "format": "" }, "Ed": { "type": "string", "maxLength": 20, "description": "Education", "format": "" }, "EdHc": { "type": "string", "maxLength": 20, "description": "Opleiding (zorg)", "format": "" }, "RiGr": { "type": "string", "enum": [ "001", "002", "003", "004", "005", "006", "401", "402", "403", "404", "405", "406", "407", "408", "409", "410", "411", "412" ], "maxLength": 20, "description": "Risicoklasse arbeidsong.\n001 = Arbeider zonder verplaatsingen;\n002 = Worker on the factory floor;\n003 = Huisbewaarders;\n004 = Schoonmaak- en onderhoudspersoneel;\n005 = Keukenpersoneel;\n006 = Driver;\n401 = Bediende zonder verplaatsingen;\n402 = Bediende occasioneel opdrachten buiten bedrijf;\n403 = Bediende regelmatig opdrachten buiten bedrijf;\n404 = Vertegenwoordiger, reizend personeel, loopjongen;\n405 = Bediende die manueel werk verricht;\n406 = Thuiswerkende bediende;\n407 = Care personnel;\n408 = Salesperson;\n409 = Voetballer met statuut betaald sportbeoefenaar;\n410 = Voetballer zonder statuut betaald sportbeoefenaar, jaarwedde groter dan € 1239,46;\n411 = Voetballer zonder statuut betaald sportbeoefenaar, jaarwedde kleiner dan € 1239,47;\n412 = Andere sportbeoefenaar dan voetballer;", "format": "" }, "CoTy": { "type": "string", "enum": [ "1", "2", "3", "4", "5" ], "maxLength": 20, "description": "Contract type\n1 = Onbepaalde duur;\n2 = Bepaalde duur;\n3 = Welldefined work;\n4 = Substitution of an indefinite duration;\n5 = Substitution of a definite duration;", "format": "" }, "AgTy": { "type": "string", "enum": [ "3" ], "maxLength": 20, "description": "Soort overeenkomst\n3 = Student contract;", "format": "" }, "DaRb": { "type": "string", "description": "Begindatum herstructurering", "format": "date" }, "CoPl": { "type": "string", "enum": [ "1", "2", "3", "4", "5", "6", "7" ], "maxLength": 20, "description": "Company plan\n1 = Reorganisation plan;\n2 = Company plan with redistribution in de private sector;\n3 = Employment agreement for 1995 - 1996;\n4 = Employment agreement for 1997 - 1998;\n5 = Collective agreement ADV-defensie plan Van Delanotte;\n6 = Collective agreement ADV-offensie plan Van Delanotte;\n7 = Company plan with redistribution in de public sector;", "format": "" }, "DaBB": { "type": "string", "description": "Begin recht BBT/BBK", "format": "date" }, "CoIz": { "type": "string", "maxLength": 20, "description": "Campuscode IZAG", "format": "" }, "PrWN": { "type": "string", "enum": [ "1", "2", "3", "4" ], "maxLength": 20, "description": "Vroegere soort WN\n1 = Bijzonder tijdelijk kader;\n2 = derde arbeiderscircuit;\n3 = tewerkgestelde werkloze;\n4 = andere;", "format": "" }, "IpIz": { "type": "string", "enum": [ "0", "1", "10", "100", "101", "102", "103", "104", "105", "106", "107", "108", "109", "11", "110", "111", "112", "113", "114", "115", "116", "117", "118", "119", "12", "120", "121", "122", "123", "13", "132", "133", "134", "135", "136", "137", "138", "139", "14", "140", "141", "142", "143", "144", "145", "15", "16", "17", "19", "2", "20", "21", "22", "23", "24", "25", "26", "27", "29", "3", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "4", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "5", "-5", "50", "500", "501", "502", "503", "504", "505", "506", "507", "508", "509", "51", "510", "511", "512", "513", "514", "515", "517", "518", "519", "52", "520", "521", "522", "523", "524", "525", "526", "527", "528", "529", "53", "530", "531", "532", "533", "534", "54", "55", "56", "57", "58", "59", "6", "60", "600", "601", "602", "603", "604", "605", "606", "607", "608", "609", "61", "610", "611", "612", "613", "614", "615", "616", "617", "618", "619", "62", "620", "621", "622", "623", "624", "625", "626", "627", "628", "629", "63", "630", "631", "632", "633", "635", "636", "637", "638", "64", "640", "641", "642", "643", "644", "645", "646", "647", "648", "649", "65", "650", "651", "652", "653", "654", "655", "66", "67", "68", "69", "70", "701", "702", "703", "704", "705", "706", "707", "708", "709", "71", "710", "711", "712", "713", "714", "715", "716", "72", "73", "74", "75", "76", "77", "78", "79", "8", "80", "800", "801", "802", "803", "804", "805", "806", "807", "808", "809", "81", "810", "811", "812", "813", "814", "815", "816", "817", "818", "819", "82", "820", "821", "822", "823", "824", "825", "826", "827", "828", "829", "83", "830", "831", "84", "85", "86", "87", "88", "89", "9", "90", "91", "92", "93", "94", "95", "96", "97", "98", "99" ], "maxLength": 20, "description": "IPAG/IZAG\n0 = UNKNOWN;\n1 = not specified;\n10 = kinderverzorging;\n100 = geneesheer-specialist arbeidsgeneeskunde;\n101 = houder BBT-nucl. in vitro geneesk.;\n102 = houder BBT-funct./prof. reval.gehand.;\n103 = bijz beroepstitel gen-spec geriatrie;\n104 = houder BBT-mond,kaak,aangezichtschir.;\n105 = houder BBT-specialist intensieve zorgen;\n106 = houder BBT-specialist urgentiegeneesk.;\n107 = houder BBT-specialist pediatr. neurologi;\n108 = bijz beroepstitel gen-spec nefrologie;\n109 = houder BBT-spec. endocr.-diabetologie;\n11 = personenzorg;\n110 = bijz beroepstitel gen-spec oncologie;\n111 = houder BBT -medische oncologie;\n112 = bijz beroepstitel gen-spec neonatologie;\n113 = aggregaat med.-soc. wetensch./zh.beleid;\n114 = licentiaat med.-soc. Wetensch./zhbeleid;\n115 = licentiaat pedagogie;\n116 = licentiaat psychologie;\n117 = licentiaat sociologie;\n118 = licentiaat economische wetenschappen;\n119 = licentiaat ziekenhuishygiëne;\n12 = gezins- en sanitaire hulp;\n120 = licentiaat kinesitherapie;\n121 = Apotheker-bioloog;\n122 = fysicus;\n123 = interculturele bemiddeling gezondh.zorg;\n13 = not specified;\n132 = Pharmacist;\n133 = gebrev.verpleegk.Geest. Gezondheidszorg;\n134 = gebrev.verpleegk. in de geriatrie;\n135 = gebrev.verpleegk.intensieve zorg en spoe;\n136 = bijz.bekwam. Gebrev.verpleegk. oncologie;\n137 = bijz.bekwam. in de medische beeldvormin;\n138 = bijz.bekwam. in de operatiekamer;\n139 = bijz.bekwam. in de palliatieve zorg;\n14 = ziekenhuisassistent;\n140 = bijz.bekwam. in de endoscopie;\n141 = bijz.bekwam. in de hemodialyse;\n142 = bijz.bekwam. in de radiotherapie;\n143 = bijz.bekwam. gezondheidsopvoeding;\n144 = bijz.bekwam. Adj.-hoofdverpleegk.;\n145 = bijz bekw van gebrev hoofdverpleegk;\n15 = psychiatrische verpleegkunde;\n16 = ziekenhuisverpleegkunde;\n17 = gebrev verpleegk;\n19 = not specified;\n2 = not specified;\n20 = gegradueerde ziekenhuisverpleegk;\n21 = gegradueerde pediatrische verpleegk;\n22 = gegrad. in de socialegezondheidszorg;\n23 = gegrad. verpleegk. geest.Gezondh.zorg;\n24 = gegradueerde geriatrische verpleegk;\n25 = gegrad.verpleegk.intens.en spoedgev.zorg;\n26 = bijz bekw van verpleegk oncologie;\n27 = bijz.bekwam. in medische beeldvorming;\n29 = bijz bekw van verpleegk operatiekamer;\n3 = hoger algemeen secundair;\n30 = bijz.bekwam. in de palliatieve zorg;\n31 = bijz bekw van verpleegk endoscopie;\n32 = bijz bekw van verpleegk hemodialyse;\n33 = bijz bekw van verpleegk radiotherapie;\n34 = bijz.bekwam. in de gezondheidsopvoeding;\n35 = bijz bekw van adjunct-hoofdverpleegk;\n36 = bijz bekw van hoofdverpleegk;\n37 = bijz bekw van verpleegk hoofd van dienst;\n38 = bijz.bekwam. hfd (geriatrische)verpleegk;\n39 = bijz.bekwam. hfd (pediatrische)verpleegk;\n4 = hoger technisch secundair;\n40 = bijz.bekwam. hfd (psychiatr.)verpleegk.;\n41 = bijz.bekwam. hfd (vroedvrouw)verpleegk.;\n42 = bijz.bekwam. verpleegk. perman. opleidin;\n43 = bijz bekw ziekenhuishygiënist;\n44 = bijz. bekwam. directeur verpleegk. depar;\n45 = bijz. bekwam. verpleegk. kwalit.bewaking;\n46 = vroedvrouw;\n47 = gegradueerde ergotherapie;\n48 = gegradueerde kinesitherapie;\n49 = gegradueerde arbeidstherapie;\n5 = hoger kunst secundair;\n-5 = Not applicable;\n50 = gegradueerde othopedie;\n500 = Niet gespecifieerd;\n501 = Bachelor bedrijfsverpleegkunde;\n502 = Bachelor biomed.Labo.technologie;\n503 = Bachelor biomedische wetenschappen;\n504 = Bachelor biowetenschappen;\n505 = Bachelor ergotherapie;\n506 = Bachelor farmaceutische wetenschappen;\n507 = Bachelor geestelijke gezondheidszorg;\n508 = Bachelor geneeskunde;\n509 = Bachelor geriatrische gezondheidszorg;\n51 = gegradueerde podologie;\n510 = Bachelor intensieve zorgen in de spoed;\n511 = Bachelor kinesitherapie;\n512 = Bachelor LO/bewegingswetenschappen;\n513 = Bachelor logopedie en de audiologie;\n514 = Bachelor logoped. en audiolog. Wetensch;\n515 = Bachelor medische beeldvorming;\n517 = Bachelor oncologische zorg;\n518 = Bachelor operatieverpleegkunde;\n519 = Bachelor orthopedie;\n52 = gegradueerde logopedie;\n520 = Bachelor osteopathie;\n521 = Bachelor palliatieve hulpverlening;\n522 = Bachelor pediatrische gezondheidszorg;\n523 = Bachelor podologie;\n524 = Bachelor psychologie;\n525 = Bachelor radiol. en de med.beeldvorming;\n526 = Bachelor reval.wetensch./kinesitherapie;\n527 = Bachelor sociale gezondheidszorg;\n528 = Bachelor tandheelkunde;\n529 = Bachelor thuisgezondheidszorg;\n53 = gegradueerde audiologie;\n530 = Bachelor verpleegkunde;\n531 = Bachelor voedings- en dieetkunde;\n532 = Bachelor vroedkunde;\n533 = Bachelor wondzorg en het weefselherstel;\n534 = Bachelor in het zorgmanagement;\n54 = gegradueerde klinische chemie;\n55 = gegradueerde dieetleer;\n56 = gegradueerde medische beeldvorming;\n57 = gegradueerde optiek en optometrie;\n58 = gegrad. in de med.laboratoriumtechn.;\n59 = diploma van ambulancier;\n6 = verpleegaspirant;\n60 = diploma van audicien;\n600 = Niet gespecifieerd;\n601 = Master en Contrôle des Maladies;\n602 = Master arbeidsgeneeskunde;\n603 = Master biomedische beeldvorming;\n604 = Master endodontologie;\n605 = Master farmaceutische zorg;\n606 = Master gehandicaptenzorg;\n607 = Master geneeskunde;\n608 = Master geneesmiddelenontwikkeling;\n609 = Master gespec.reval.wetensch./kinesith.;\n61 = diploma van bandagist;\n610 = Master gezondh.vrlichting/bevord.;\n611 = Master huisartsgeneeskunde;\n612 = Master industriële farmacie;\n613 = Master jeugdgezondheidszorg;\n614 = Master kindertandheelkunde;\n615 = Master kinesitherapie;\n616 = Master kinesitherapie bij bijz groepen;\n617 = Master klinische biologie;\n618 = Master klinische biologie voor apotheke;\n619 = Master logop. en audiolog.Wetensch.;\n62 = diploma van orthesist;\n620 = Master lymfedrainage/verlosk. revalidat;\n621 = Master manuele therapie;\n622 = Master moleculaire levenswetenschappen;\n623 = Master neurologische revalidatie;\n624 = Master orthodontie/Master of Orthodonti;\n625 = Master parodontologie;\n626 = Master psychologie;\n627 = Master restauratieve tandheelkunde;\n628 = Master revalidatiewet/kinesitherapie;\n629 = Master seksuologie;\n63 = diploma van prothesist;\n630 = Master sportgeneeskunde;\n631 = Master sportkinesitherapie;\n632 = Master tandheelkunde;\n633 = Master verpleegkunde en de vroedkunde;\n635 = Master verzeker.geneesk. med. expertise;\n636 = Master voedings- en gezondheidswetensch;\n637 = Master ziekenhuisfarmacie;\n638 = Master ziekenhuishygiëne;\n64 = diploma van assistent psychologie;\n640 = Master in het beheer van gezondheidsgeg.;\n641 = Master man. en beleidgezondheidszorg;\n642 = Master in mgt, zorg en beleid gerontolog;\n643 = Master in het sociaal werk;\n644 = Master Public Health;\n645 = Master of Applied Pharmaceutical Science;\n646 = Master of Bio-ethics;\n647 = Master of Biomedical Engineering;\n648 = Master of Exercise and Sport Psychology;\n649 = Master of Gerontological Sciences;\n65 = gegrad. in de maatschappelijke adviserin;\n650 = Master of Medical Imaging;\n651 = Master of Molecular Biotechnology;\n652 = Master of Oral Health Research;\n653 = Master Paed. Dentistry/Special DentalCar;\n654 = Master of Periodontology;\n655 = Master of Restorative Dentistry;\n66 = gegrad. algemeen maatsch.werk;\n67 = gegradueerde in het personeelswerk;\n68 = gegrad. in het sociaal-cultureel werk;\n69 = gegradueerde in het onderwijs;\n70 = gegradueerde othopedagogie;\n701 = na- of bijscholing: cardiologische verpl;\n702 = na- of bijscholing:chron. zieke kind;\n703 = na- of bijscholing: Hulpverlening hersen;\n704 = na- of bijscholing: locom. en neurol.rev;\n705 = na- of bijschol.: med. dring. hulp vr le;\n706 = na- of bijscholing: Neonatologie;\n707 = na- of bijscholing: Opvoedingsondersteun;\n708 = na- of bijscholing: palliatieve zorg;\n709 = na- of bijscholing: Pijnreferentieverple;\n71 = industrieel ingenieur;\n710 = na- of bijscholing: radioprotectie;\n711 = na- of bijscholing: radiotherapie;\n712 = na- of bijscholing: refer.verpl.in)conti;\n713 = na- of bijscholing: refer.verplgk.diabet;\n714 = na- of bijscholing: Ref.verpl. diabetes;\n715 = na- of bijscholing: refer.verplgk.wondz.;\n716 = Niet gespecifieerd;\n72 = niet-gespecificeerd;\n73 = huisarts;\n74 = specialist in de anesthesiereanimatie;\n75 = geneesheer-specialist klinische biologie;\n76 = geneesheer-specialist cardiologie;\n77 = geneesheer-specialist heelkunde;\n78 = geneesheer-specialist neurochirurgie;\n79 = spec. plast. ,reconstr. en esthet. heelk;\n8 = not specified;\n80 = specialist in de dermatovenereologie;\n800 = Niet gespecifieerd;\n801 = PG Basiscursus Oncologische Zorg;\n802 = PG Desinfectie en sterilisatietechnieken;\n803 = PG Gedragsprobl. personen handicap;\n804 = PG Intensieve zorg en spoedgevallenzorg;\n805 = PG Psychodiagnostiek;\n806 = PG Zorgmanagement;\n807 = postgr. in de radioprotectie;\n808 = postgr. palliatieve zorg;\n809 = postgr. radiotherapie;\n81 = geneesheer-specialist gastro-enterologie;\n810 = postgr.: anesthesiologie, basisbeginsele;\n811 = postgr.: anesthesiologie, verdergevorder;\n812 = postgr.: autisme spectrum-stoornissen;\n813 = postgr.: diabeteseducator;\n814 = postgr.: radio-isotopen vitro diagn. Tec;\n815 = postgr.: gedragstherapie;\n816 = postgr.: lactatiekunde;\n817 = postgr.: lymfedrainage;\n818 = postgr.: Médecine Tropicale;\n819 = postgr.: Médecine Tropicale;\n82 = specialist in de gynaecologieverloskunde;\n820 = postgr.:concepten leer- en ontw.problemen;\n821 = postgr.: musculoskeletale kinesitherapie;\n822 = postgr.: neurologische taal- en spraakst;\n823 = postgr.: oncologische zorg;\n824 = postgr.: pelvische revalidatie;\n825 = postgr.: psychoanalytische psychotherapie;\n826 = postgr.: Referentiepersoon ethiek;\n827 = postgr.: sociale en emotionele zorg;\n828 = postgr.: Tropical Medicin;\n829 = postgr.: Tropische Geneeskunde;\n83 = specialist in de inwendige geneeskunde;\n830 = postgr.: verloskundige revalidatie;\n831 = postgr.: verpleegkunde en andere culture;\n84 = geneesheer-specialist neurologie;\n85 = geneesheer-specialist psychiatrie;\n86 = geneesheer-specialist neuropsychiatrie;\n87 = geneesheer-specialist oftalmologie;\n88 = specialist in de orthopedische heelkunde;\n89 = specialist in de otorhinolaryngologie;\n9 = verzorging;\n90 = geneesheer-specialist pediatrie;\n91 = specialist in de fys. geneesk.en reval.;\n92 = geneesheer-specialist pneumologie;\n93 = geneesheer-specialist röntgendiagnose;\n94 = specialist in de radiotherapieoncologie;\n95 = geneesheer-specialist reumatologie;\n96 = geneesheer-specialist stomatologie;\n97 = geneesheer-specialist urologie;\n98 = specialist in de pathologische anatomie;\n99 = specialist in de nucleaire geneeskunde;", "format": "" }, "RiDe": { "type": "string", "enum": [ "1" ], "maxLength": 20, "description": "Afwijking rechten\n1 = Do not process contract in calculator;", "format": "" }, "CtSb": { "type": "string", "enum": [ "0", "1", "2", "3" ], "maxLength": 20, "description": "Hist contracttype soc bal\n0 = Indefinite time;\n1 = Specific time;\n2 = Duidelijk omschreven werk;\n3 = Vervangingsovereenkomst;", "format": "" }, "CDNu": { "type": "number", "description": "Contract quantity duration", "format": "number" }, "CDUn": { "type": "string", "enum": [ "1", "2", "3", "4" ], "maxLength": 20, "description": "Contract unit duration\n1 = Years;\n2 = Months;\n3 = Weeks;\n4 = Calendar days;", "format": "" }, "NDBn": { "type": "number", "description": "Number cancelled before 2014", "format": "number" }, "NDBu": { "type": "string", "enum": [ "2", "3", "4" ], "maxLength": 20, "description": "Unit cancelled before 2014\n2 = Months;\n3 = Weeks;\n4 = Calendar days;", "format": "" }, "NDFn": { "type": "number", "description": "Number cancelled from 2014", "format": "number" }, "NDFu": { "type": "string", "enum": [ "2", "3", "4" ], "maxLength": 20, "description": "Unit cancelled from 2014\n2 = Months;\n3 = Weeks;\n4 = Calendar days;", "format": "" }, "DcHr": { "type": "integer", "description": "Show no. of decimals hours", "format": "" }, "FiRe": { "type": "string", "enum": [ "1", "2", "3", "6" ], "maxLength": 20, "description": "Fiscal regimen\n1 = Pays company advance tax;\n2 = Does not pay company advance tax;\n3 = Non-resident advance tax;\n6 = Fictitious PAYE;", "format": "" }, "ExFi": { "type": "string", "enum": [ "1", "2", "3", "4", "5", "6", "7" ], "maxLength": 20, "description": "Rsn exemption fisc. regime\n1 = Pays taxes as independant;\n2 = Pays taxes in a foreign country;\n3 = Taxes paid by the fund of disabled persons;\n4 = Working student;\n5 = Tax exemption for young workers;\n6 = Flex employee;\n7 = Society worker;", "format": "" }, "LDRi": { "type": "string", "description": "RIZIV departure date", "format": "date" }, "PRiS": { "type": "string", "enum": [ "1", "2", "3", "4", "6", "unique amount", "yearly amount", "amount in capital" ], "maxLength": 20, "description": "'RIVIZ' periodicity\n1 = Monthly;\n2 = Two-monthly;\n3 = Three-monthly;\n4 = Every four months;\n6 = Half yearly;\nunique amount = Unique amount;\nyearly amount = Yearly amount;\namount in capital = Amount in capital;", "format": "" } } } } } } } } } } } } } } } }, "AfasOrgunitFunction": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "DaBe": { "type": "string", "description": "Start date function", "format": "date" }, "DpId": { "type": "string", "maxLength": 10, "description": "Organisational unit", "format": "" }, "FuId": { "type": "string", "maxLength": 10, "description": "Job", "format": "" }, "CcId": { "type": "string", "maxLength": 30, "description": "Cost unit", "format": "" }, "CrId": { "type": "string", "maxLength": 30, "description": "Cost centre", "format": "" }, "DvSn": { "type": "integer", "description": "Sequence number employment", "format": "" }, "FpId": { "type": "string", "maxLength": 15, "description": "Position", "format": "" }, "EIId": { "type": "string", "maxLength": 15, "description": "Educational institution", "format": "" }, "BFun": { "type": "boolean", "description": "Multi-school function", "format": "" }, "RePe": { "type": "number", "multipleOf": 0.01, "description": "Research percentage", "format": "float" }, "SoSe": { "type": "string", "enum": [ "1", "10", "12", "2", "3", "4", "5", "50", "51", "52", "53", "55", "56", "57", "6", "60", "7", "70", "71", "72", "73", "74", "75", "76", "77", "78", "8", "80", "81", "82", "90" ], "maxLength": 20, "description": "Social benefit\n1 = Steward;\n10 = Seizoenarbeider waarborgfonds netto 0;\n12 = Schepenen;\n2 = Piloot;\n3 = Journalist;\n4 = Podiumkunstenaar niet-inwoner;\n5 = Baten niet-inwoner;\n50 = Werknemer met ploeg- of nachtarbeid;\n51 = Working in immovable condition;\n52 = Piloot met ploeg- of nachtarbeid;\n53 = Journalist met ploeg- of nachtarbeid;\n55 = Baten sportbeoefenaar niet-inwoner max. 30 dagen;\n56 = Baten sportbeoefenaar niet-inwoner meer dan 30 d.;\n57 = Baten scheidsr.,trainer,begel.opl. Niet-inwoner;\n6 = Inkomsten sportbeoef. Niet-inwoner max. 30 dagen;\n60 = Seizoenarb. Waarborgfonds netto 0 ploeg/nacht;\n7 = Ander vliegend personeel;\n70 = Onderzoeker universiteiten en hogescholen (-50%);\n71 = Onderzoeker universiteiten en hogescholen (-75%);\n72 = Onderzoeker erkende wetenschappelijke instelling;\n73 = Onderzoeker privé partnerships;\n74 = Onderzoeker yin;\n75 = Onderzoeker burgerlijk ingenieurs + doctors;\n76 = Onderzoeker masters;\n77 = Bachelor niet KMO;\n78 = Bachelor KMO;\n8 = Inkomsten scheidsr,trainer,begel,opleider;\n80 = Employee with shift or night work (after 31/03/22);\n81 = Employee with shift work (after 31/03/22);\n82 = Employee with night work (after 31/03/22);\n90 = Night shift/shift work in non-stop system;", "format": "" }, "FuLe": { "type": "string", "enum": [ "1", "2", "3" ], "maxLength": 20, "description": "Job level\n1 = Uitvoerend personeel;\n2 = Kaderpersoneel;\n3 = Leidinggevend personeel;", "format": "" }, "DeGi": { "type": "string", "enum": [ "000", "001", "002", "006", "007", "008", "009", "010", "011", "012", "013", "014", "016", "017", "018", "019", "021", "023", "024", "025", "032", "042", "045", "046", "079", "080", "081", "084", "085", "086", "087", "088", "094", "096", "098", "159", "200", "201", "202", "203", "204", "205", "206", "207", "208", "209", "213", "214", "215", "216", "217", "218", "219", "220", "221", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232", "233", "234", "235", "236", "237", "238", "239", "240", "241", "242", "243", "244", "245", "246", "247", "300", "301", "303", "304", "305", "306", "307", "308", "309", "310", "311", "312", "313", "314", "315", "316", "317", "318", "319", "320", "321", "322", "323", "324", "325", "326", "327", "328", "329", "330", "331", "332", "333", "334", "335", "336", "337", "338", "339", "340", "341", "342", "343", "344", "345", "346", "347", "348", "349", "350", "351", "352", "353", "354", "355", "356", "357", "358", "359", "360", "361", "369", "370", "371", "400", "401", "402", "403", "404", "405", "406", "407", "408", "409", "410", "411", "412", "413", "414", "415", "416", "417", "418", "419", "420", "421", "422", "423", "424", "425", "426", "427", "428", "429", "430", "431", "432", "433", "434", "435", "436", "437", "438", "439", "440", "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460", "461", "462", "463", "464", "465", "466" ], "maxLength": 20, "description": "Cash group settlement\n000 = ING Insurance;\n001 = AGF De Schelde;\n002 = APRA: Antwerpse Professionele Assurantie;\n006 = AGF Belg Insurance Assubel NV;\n007 = Noordstar - Mercator;\n008 = Mercator - Noordstar;\n009 = Groep Eagle Star - Brusselse Maatschappij;\n010 = Fortis AG;\n011 = AXA Belgium;\n012 = KBC Verzekeringen (ABB);\n013 = De Bij - De Vrede;\n014 = De Luikse Verzekering;\n016 = De Belgische Lloyd;\n017 = Helvetia;\n018 = Patroonkas;\n019 = Zurich;\n021 = Urbaine U.A.P.;\n023 = SV De Sociale Voorzorg;\n024 = Fidea;\n025 = Winterthur;\n032 = Federale Verzekeringen;\n042 = Centrale Verzekeringsmaatschappij;\n045 = De Verenigde Meesters;\n046 = De Ster;\n079 = Utrecht;\n080 = Ethias;\n081 = Le Mans Verzekeringen;\n084 = Precam;\n085 = Algemene Verzekeringen van Frankrijk;\n086 = KBC Verzekeringen;\n087 = PV Verzekeringen;\n088 = Delta Lloyd Life;\n094 = Gan-Les Assur Nation;\n096 = Securex;\n098 = Generali Belgium;\n159 = ASBL Alfometal;\n200 = ASLK;\n201 = Volksverzekeringen;\n202 = De Nederlanden V 1871;\n203 = Vita;\n204 = De Familie;\n205 = Swiss Life Belgium;\n206 = Ennia;\n207 = L'Integrale;\n208 = DKV International;\n209 = RVS;\n213 = Nationale Kas voor Bediendenpensioenen;\n214 = Justitia;\n215 = Amf Ass Maatschappij Financia;\n216 = Hamburg Mannheimer;\n217 = Thibaut-Colson-De Nef;\n218 = Merbel;\n219 = CB Direkt;\n220 = Centrale Levensverzekeringsmaatschappij Gi Josi;\n221 = AXA Gemeenschappelijke Kas;\n223 = Verzekeringsmaatschappij J. Vanbreda & Co;\n224 = Naviga NV;\n225 = Norwich Union Life Insurance Soc;\n226 = Goudse Verzekeringen;\n227 = De Verenigde Meesters NV;\n228 = Antverpia Leven NV;\n229 = Zwitser Leven;\n230 = Delphi;\n231 = Commercial Union Belgium;\n232 = Royal Nederland Levensverz NV;\n233 = AXA Belgium;\n234 = Ethias;\n235 = DVV;\n236 = FB Verzekeringen;\n237 = Zurich Levensverzekeringsmaatschappij;\n238 = Dkv;\n239 = Cgu Insurance;\n240 = Logica Belgium Vzw;\n241 = Ethias;\n242 = Fina Life NV;\n243 = Enerbel;\n244 = Levob Verzekeringen;\n245 = Za Verzekeringen;\n246 = Vivium Lifte NV;\n247 = Centaal Beheer / Achmea;\n300 = Voorzorgsfonds Bunge Vzw;\n301 = Pensioenfonds Avanti Cementw;\n303 = Social Fonds Spaarkrediet;\n304 = Ici Pension Fund Asbl;\n305 = Ucben pensioenfonds;\n306 = Pensioenplan Monsanto;\n307 = Pensioenfonds Merbel Vzw;\n308 = Voorzorgsfonds A.D.B.;\n309 = Pensioenfonds BP Ov;\n310 = Abott Belg Pension Fund;\n311 = Pensioenfonds NV Btmc Vzw;\n312 = Voorzorgfonds Belgoprocess Vzw;\n313 = Voorzorgfonds Eurochemic Vzw;\n314 = Pensioenfonds Spiers Vzw;\n315 = Cgr-Tecnomatic Pensioenfonds;\n316 = Pensioenfonds Ford Vzw;\n317 = Vzw Wellcome Pensioenfonds;\n318 = Quaker Oats Eur. Empl. Benefit;\n319 = Pensioenfonds Interbrew Vzw;\n320 = Actua Pensioenfonds Groep Gti Vzw;\n321 = Az Vub Pensioenfonds Vzw;\n322 = Elgabel Vzw;\n323 = Pensiobel Oud Vzw;\n324 = Pensioenfonds Mobil Belgie Vzw;\n325 = Les Moustiques Prvoyants Asbl;\n326 = Abn Amro Bank NV;\n327 = Nike Belgium Pensioenfonds Vzw;\n328 = Pensioenfonds Philips Eindhoven;\n329 = Spillers Petfds Empl Ben Fund;\n330 = Belgian Shell Pensioenfonds Vzw;\n331 = Royale Life;\n332 = Infact NV;\n333 = Vzw Spaarplan Arb Cdv 50458;\n334 = Vzw Basf Sprpl Tarbed Cdv 50467;\n335 = Vzw Basf Sprpl Kader Cdv 50462;\n336 = Vzw Basf Sprpl Hogkad Of 50463;\n337 = Pensioenfonds Belgian Shell;\n338 = Ouderdomstoelage Werkloosheid Shell;\n339 = Westhinghouse Pension Fund Belgium;\n340 = Vzw Aanvullend Pensioen van de BBL;\n341 = Ver Vh Pensioenplan Solutia Vzw;\n342 = Vzw Pensioenfonds AXA Bank;\n343 = Ov Pensioenfonds Arbeiderspers Decloedt;\n344 = Pensioenfonds Furness Belgium;\n345 = Pension Fund Nutreco Belg Ov;\n346 = Pensiobel Oud Gazelec;\n347 = Pensiobel Sector;\n348 = Elgabel 1943;\n349 = Paritair Regime;\n350 = Powerbel Directie;\n351 = Powerbel Kader;\n352 = Pensioenfonds Ravago Plastics;\n353 = Pensioenfonds Basf Belg Vzw;\n354 = Pensioenfonds Pfizer Vzw;\n355 = Pensioenfonds Solvay;\n356 = Cerestar Pensioenfonds;\n357 = Pensioenfonds Deutsche Bank;\n358 = Pensioenfonds Texaco Vzw;\n359 = Ovv Pensioenfonds Oleon;\n360 = Pensioenfonds Furness Logistics;\n361 = Protect pensioenfonds OVV;\n369 = Pensioenfonds Ravago Plastics;\n370 = Vzw Pensioenfonds Handel Brandst;\n371 = Pensioenfonds huisvestingsmaatschappij Antwerpen VZW;\n400 = Thee Lee Int Life Insurance;\n401 = Ctrl Beheer Pensioenverzekering;\n402 = De Nationale Nederlanden;\n403 = Winterthur;\n404 = Ennia;\n405 = Tvd Pensioenfonds;\n406 = Stichting Pensioen Wilma;\n407 = Pensionsklasse 510;\n408 = Centrale Levensverzekeringsbank;\n409 = De Arend;\n410 = Swiss Life Belgium;\n411 = St PHV Puyenbroeck;\n412 = Bah Deitersfonds;\n413 = Dbv Levensverzekeringsmaatschappij Nv;\n414 = Agf Belg Insurance Sa;\n415 = Eridania Beghin Say Pensioenfonds;\n416 = Axa Industry Nv;\n417 = Pensioenfonds Nestle;\n418 = Aegon Verzekeringen;\n419 = Elvia;\n420 = Pensioenkas Bazel Vzw;\n421 = Contassur;\n422 = Amev Nv;\n423 = Pensioenfonds Cpc Group Belg Vzw;\n424 = De Integrale;\n425 = Dhl International Pensioenfonds;\n426 = U.N.A.T.;\n427 = Stichting Pensioenfonds Wessamen;\n428 = Zeneca Pension Fund Belgium Vzw;\n429 = Ici Pension Fund Vzw;\n430 = Belstar;\n431 = Omniver (Kbc Verzekeringen);\n432 = Alpha-Life;\n433 = Dhl Employee Benefit Fund;\n434 = Pensioenkas Tractebel;\n435 = Aon Belgium Nv;\n436 = Delta Lloyd Levensverzekeringen;\n437 = K.A.P.B.B.L. Vzw;\n438 = Caisse Communale L'Integrale;\n439 = Sa Vermont;\n440 = Pensioenfonds Betz Dearborn;\n450 = Fortis +Axa;\n451 = Cgl;\n452 = Zelia Nv;\n453 = Agrr;\n454 = Verspieren;\n455 = Cavcic;\n456 = Vnps;\n457 = Hercules Pensioenfonds Vzw;\n458 = Delta Lloyd;\n459 = Dexia Insurance;\n460 = La Luxembourgeoise Vie;\n461 = Lion Belge;\n462 = Belgisch notariaat;\n463 = ING Insurance;\n464 = Pensioensfonds SG Bank De Maertelaere;\n465 = Monroe Pensioenfonds;\n466 = Corona Direct Verzekeringen;", "format": "" }, "ReTy": { "type": "string", "enum": [ "1", "2", "3", "4", "5", "6", "7" ], "maxLength": 20, "description": "Investigation type\n1 = Universiteiten 65%;\n2 = Samenwerkingsovereenkomst met een universiteit 50%;\n3 = PH. D's (doctors) 25%;\n4 = Young innovative company 50%;\n5 = Andere wetenschappelijke instellingen 50%;\n6 = Specific master diplomas;\n7 = Specific bachelor;", "format": "" }, "GrFu": { "type": "string", "enum": [ "10800", "10801", "10810", "10830", "11416", "11426", "11476", "11486", "11496", "11906", "12326", "12336", "12337", "12376", "12377", "12396", "12397", "12399", "13502", "13504", "13516", "13517", "13518", "13526", "13536", "13546", "13547", "13548", "13556", "13566", "13596", "13599", "13626", "13627", "13628", "13636", "13637", "13646", "24102", "24103", "24104", "24105", "24115", "24116", "24117", "24126", "24127", "24136", "24137", "24140", "24141", "24142", "24143", "24144", "24145", "24150", "24151", "24152", "24153", "24154", "24156", "24163", "24164", "24165", "24166", "24176", "24186", "24196", "24197", "24199", "25200", "25226", "25230", "25256", "25299", "25300", "36414", "36415", "36416", "36424", "36425", "36426", "36434", "36444", "36445", "36446", "36454", "36455", "36456", "36464", "36465", "36466", "36467", "36468", "36469", "36470", "36471", "36472", "36473", "36474", "36475", "36476", "36477", "36478", "36479", "36480", "36481", "36486", "36496", "36499", "47000", "47001", "47003", "47016", "47026", "47036", "47046", "47056", "47099", "99999" ], "maxLength": 20, "description": "Scale/job\n10800 = Directie (2);\n10801 = Adjunct van de directie (2);\n10810 = Hoofdgeneesheer (2);\n10830 = Administratief Directeur (2);\n11416 = Biochemicus (5);\n11426 = Fysicus (5);\n11476 = Apotheker-Biochemicus (5);\n11486 = Apotheker (5);\n11496 = Burgerlijk ingenieur (in medisch-technische diensten) (5);\n11906 = Andere (5);\n12326 = Schoonmaak, keuken, was en linnen personeel en ploegbaas (1);\n12336 = Burgerlijk ingenieur (in de onderhoudsdiensten) (1);\n12337 = Onderhoudswerkman en ploegbaas (1);\n12376 = Industrieel of technisch ingenieur (1);\n12377 = Technicus (o.a. onderhoud van medisch materieel) (1);\n12396 = Brancardier (1);\n12397 = Bewakingsagent (Generatiepact) (1);\n12399 = Student (1);\n13502 = Directeur departement (hoofd van de personeeldienst, enz.) (2);\n13504 = Bestuurschef (2);\n13516 = Directiesecretaris (2);\n13517 = Bestuurssecretaris (2);\n13518 = Bestuursassistent (2);\n13526 = Medisch secretaris (2);\n13536 = Boekhouder (2);\n13546 = Analist (2);\n13547 = Programmeur (2);\n13548 = Operateur (2);\n13556 = Econoom (2);\n13566 = Onthaal-Telefonist (2);\n13596 = Klerk (2);\n13599 = Student (2);\n13626 = Maatschapp.assist. en assist. psycholoog (hoofd inbegrepen) (2);\n13627 = Ombudsman/vrouw patiëntenrechten (2);\n13628 = Intercultureel bemiddelaar (2);\n13636 = Onderwijzer (2);\n13637 = Opvoeder (2);\n13646 = Aalmoezenier, lekenraadgever, enz. (2);\n24102 = Hoofd van het verpleegkundig departement (3);\n24103 = Verpleegkundig-diensthoofd (Middenkader) (3);\n24104 = Hoofdverpleegkundige (3);\n24105 = Adjunct-hoofdverpleegkundige (3);\n24115 = 54 bis personeel (3);\n24116 = Gegradueerd verpleegkundige (3);\n24117 = Gebrevetteerd verpleegkundige (3);\n24126 = Gegradueerd psychiatrisch verpleegkundige (3);\n24127 = Gebrevetteerd psychiatrisch verpleegkundige (3);\n24136 = Gegradueerd kinderverpleegkundige (3);\n24137 = Gegradueerd sociaal verpleegkundige (3);\n24140 = Verpleegkundige BBT voor de intensieve zorg en spoedgevallen (3);\n24141 = Verpleegkundige BBT gespecialiseerd in geriatrie (3);\n24142 = Verpleegkundige BBT gespecialiseerd in de oncologie (3);\n24143 = BBT pediatrie en neonatologie (3);\n24144 = BBT gespecialiseerd in geest. gezondheidszorg en psychiatrie (3);\n24145 = BBT gespecialiseerd in de peri-operatieve zorg (3);\n24150 = Andere verpleegkundige die houder is van een BBT (3);\n24151 = Verpleegkundige BBB met bijz. deskundigheid in de geriatrie (3);\n24152 = BBB diabetologie (3);\n24153 = BBB bijz. desk. in geest. gezondheidszorg en psychiatrie (3);\n24154 = Verpleegkundige BBB met bijz. desk. in de palliatieve zorg (3);\n24156 = Andere verpleegkundige BBB met een bijzondere deskundigheid (3);\n24163 = Vroedvrouw -Diensthoofd (3);\n24164 = Hoofdvroedvrouw (3);\n24165 = Adjunct - hoofdvroedvrouw (3);\n24166 = Vroedvrouw (3);\n24176 = Opvoeder (3);\n24186 = Onderwijzer (3);\n24196 = Assistent in ziekenhuisverzorging (3);\n24197 = Psychiatrisch assistent in ziekenhuisverzorging (3);\n24199 = Student (3);\n25200 = Zorgkundige (3);\n25226 = Kinderverzorgster (3);\n25230 = Kinderverzorgster (Generatiepact) (3);\n25256 = Ziekenhuissecretaris (van een verpleegeenheid) (3);\n25299 = Student (3);\n25300 = Logistiek assistent (3);\n36414 = Hoofd medisch laboratorium technoloog (4);\n36415 = Adjunct - hoofd medisch laboratorium technoloog (4);\n36416 = Medisch laboratorium technoloog (4);\n36424 = Hoofd technoloog medische beeldvorming (4);\n36425 = Adjunct - hoofd technoloog medische beeldvorming (4);\n36426 = Technoloog medische beeldvorming (4);\n36434 = Technicus van het medisch materiaal (4);\n36444 = Hoofddiëtist (4);\n36445 = Adjunct - hoofddiëtist (4);\n36446 = Diëtist (4);\n36454 = Hoofdkinesitherapeut of hoofdergotherapeut (4);\n36455 = Adjunct - hoofdkinesitherapeut of adjunct - hoofdergotherap. (4);\n36456 = Kinesitherapeut of ergotherapeut (4);\n36464 = Hoofdlogopedist (4);\n36465 = Adjunct - hoofdlogopedist (4);\n36466 = Logopedist (4);\n36467 = Hoofdaudioloog - hoofdaudicien (4);\n36468 = Audioloog - audicien (4);\n36469 = Hoofdpsycholoog in verplegeneenheden (4);\n36470 = Psycholoog in verplegeneenheden (4);\n36471 = Hoofdbandagist, hoofdorthesist, hoofdprothesist (4);\n36472 = Bandagist, orthesist, prothesist (4);\n36473 = Orthopedagoog (4);\n36474 = Pedagoog (4);\n36475 = Hoofdorthoptist (4);\n36476 = Orthoptist (4);\n36477 = Hoofd farmaceutisch-technisch assistent (4);\n36478 = Farmaceutisch-technisch assistent (4);\n36479 = Hoofdpodoloog (4);\n36480 = Podoloog (4);\n36481 = Ambulancier (4);\n36486 = Maatschappelijk assistent en assistent-psycholoog (4);\n36496 = Ander paramedisch personeel (4);\n36499 = Student (4);\n47000 = Hoofdgeneesheer van een ziekenhuis campus (0);\n47001 = Adjunct - hoofdgeneesheer van een ziekenhuis campus (0);\n47003 = Geneesheer-directeur van het departement (0);\n47016 = Geneesheer (0);\n47026 = Verblijvend geneesheer (0);\n47036 = Raadgevend geneesheer (0);\n47046 = Kandidaat geneesheer specialist (0);\n47056 = Kandidaat geneesheer algemene geneeskunde (0);\n47099 = Student in de geneeskunde (0);\n99999 = Geen controle op aard en type (X);", "format": "" }, "MPCa": { "type": "string", "enum": [ "01", "02", "03", "04", "05", "06" ], "maxLength": 20, "description": "MZG personnel category\n01 = Verpleegk./vroedvrouw met univ.diploma;\n02 = Verpleegk./vroedvrouw met diploma HO;\n03 = Verpleegk. met diploma HSO/brevet;\n04 = Care personnel;\n05 = Logistieke ondersteuning;\n06 = Studenten;", "format": "" }, "MFun": { "type": "string", "enum": [ "F11001", "F11002", "F12001", "F12002", "F21001", "F21002", "F21003", "F21004", "F21005", "F21009", "F22001", "F40001", "F50001", "F60001", "F60002", "F70001", "F70002", "F80002", "F80011", "F80012", "F80019", "F99999" ], "maxLength": 20, "description": "MZG job\nF11001 = Head nurse;\nF11002 = Adjunct-hoofdverpleegkundige;\nF12001 = Hoofdvroedvrouw;\nF12002 = Adjunct-hoofdvroedvrouw;\nF21001 = Verpleegkundige;\nF21002 = Ref.verpl. voor wondzorg en stomatherapie;\nF21003 = Ref.verpl. voor pijnbestrijding;\nF21004 = Ref.verpl. voor opvang v diabetespatiënt;\nF21005 = Verpleegkundige klinisch onderzoek;\nF21009 = Andere referentieverpleegkundigen;\nF22001 = Vroedvrouw;\nF40001 = Verzorgend pers: zorgkundige, personeel;\nF50001 = Ondersteunend pers in afwachting van eve;\nF60001 = Paramed.pers: ergother., kinesither., lo;\nF60002 = Personeel voor (bloed)afname;\nF70001 = Pers opvoeding/onderwijs : opvoeder, spe;\nF70002 = Psychosoc.pers: soc.assistent, cult.bemi;\nF80002 = Personeel voor intern patiëntenvervoer;\nF80011 = Registratiepersoneel VG-MZG;\nF80012 = Registratiepersoneel ICD9;\nF80019 = Registratiepersoneel andere gegevens;\nF99999 = Andere;", "format": "" }, "MQua": { "type": "string", "enum": [ "Q10001", "Q10002", "Q20001", "Q20002", "Q21001", "Q21002", "Q21003", "Q21004", "Q21005", "Q21006", "Q21007", "Q21008", "Q21009", "Q21010", "Q21011", "Q22001", "Q23001", "Q23002", "Q23003", "Q23004", "Q23005", "Q23006", "Q30001", "Q30002", "Q33001", "Q33002", "Q33003", "Q33004", "Q33005", "Q33006", "Q40001", "Q40002", "Q40003", "Q40004", "Q50001", "Q60001", "Q60002", "Q60003", "Q60004", "Q60005", "Q70001", "Q70002", "Q70003", "Q70004", "Q70005", "Q70006", "Q99999" ], "maxLength": 20, "description": "MZG qualification\nQ10001 = Dipl Dr.soc.gezondheidswet. = 9J;\nSN202 = Sec.Onderwijs < 9 Jaar Anc.;\nSN203 = Sec.Onderwijs >= 9 Jaar Anc.;\nSN345 = Hoger Onderw. 1 cyclus >= 9J;\nSN542 = Academisch niveau;\nSNCAT1 = Ongeschoolden;\nSNCAT2 = Eenvoudig geoefenden;\nSNCAT3 = Volledig geoefenden;\nSNCAT4 = Geschoolden;\nSNCAT5 = Meergeschoolden en vaklieden;\nSNCAT6 = Ploegbazen;\nZB02 = Zh-blauw: schaal 02: 1.11/1.12;\nZB03 = Zh-blauw: schaal 03: 1.14;\nZB04 = Zh-blauw: schaal 04: 1.16;\nZB05 = Zh-blauw: schaal 05: 1.18;\nZB06 = Zh-blauw: schaal 06: 1.22;\nZB07 = Zh-blauw: schaal 07: 1.24;\nZB08 = Zh-blauw: schaal 08: 1.26;\nZB09 = Zh-blauw: schaal 09: 1.30;\nZB10 = Zh-blauw: schaal 10: 1.31;\nZB11 = Zh-blauw: schaal 11: 1.35;\nZB12 = Zh-blauw: schaal 12: 1.39;\nZB13 = Zh-blauw: schaal 13: 1.40;\nZB14 = Zh-blauw: schaal 14: 1.40/1.57;\nZB15 = Zh-blauw: schaal 15: 1.43/1.55;\nZB16 = Zh-blauw: schaal 16: 1.45;\nZB17 = Zh-blauw: schaal 17: 1.47;\nZB18 = Zh-blauw: schaal 18: 1.50;\nZB19 = Zh-blauw: schaal 19: 1.53;\nZB20 = Zh-blauw: schaal 20: 1.54;\nZB21 = Zh-blauw: schaal 21: 1.55/1.61/1.77;\nZB22 = Zh-blauw: schaal 22: 1.55/1.61/1.77(+2J);\nZB23 = Zh-blauw: schaal 23: 1.59;\nZB24 = Zh-blauw: schaal 24: 1.61/1.77;\nZB25 = Zh-blauw: schaal 25: 1.62;\nZB26 = Zh-blauw: schaal 26: 1.63;\nZB27 = Zh-blauw: schaal 27: 1.66;\nZB28 = Zh-blauw: schaal 28: 1.78SP;\nZB29 = Zh-blauw: schaal 29: 1.79;\nZB30 = Zh-blauw: schaal 30: 1.80;\nZB31 = Zh-blauw: schaal 31: 1.81;\nZD01 = Zh-Dep.Hoofd-Alg.Dir.: 200 / 300;\nZD02 = Zh-Dep.Hoofd-Alg.Dir.: 201 / 300;\nZD03 = Zh-Dep.Hoofd-Alg.Dir.: 100 / 300;\nZD04 = Zh-Dep.Hoofd-Alg.Dir.: 101 / 300;\nZG01 = Zh-groen: schaal 01: 1.16;\nZG02 = Zh-groen: schaal 02: 1.30;\nZG03 = Zh-groen: schaal 03: 1.43;\nZG04 = Zh-groen: schaal 04: 1.58;\nZG05 = Zh-groen: schaal 05: 1.59;\nZG06 = Zh-groen: schaal 06: 1.67;\nZG07 = Zh-groen: schaal 07: 1.75;\nZG08 = Zh-groen: schaal 08: 1.86;\nZW01 = Zh-wit: schaal 01: 1.00;\nZW02 = Zh-wit: schaal 02: 1.01;\nZW03 = Zh-wit: schaal 03: 1.79;\nZW04 = Zh-wit: schaal 04: 1.81;\nZW05 = Zh-wit: schaal 05: 1.87;\nZW06 = Zh-wit: schaal 06: 1.91;\nZW07 = Zh-wit: schaal 07: 1.92;\nZW08 = Zh-wit: schaal 08: 1.93;\nZW09 = Zh-wit: schaal 09: 1.94;\nZW10 = Zh-wit: schaal 10: 1.95;\nZW11 = Zh-wit: schaal 11: 1.99;\nZW12 = Zh-wit: schaal 12: 13.3;\nZY01 = Zh-geel schaal 1.11;\nZY02 = Zh-geel schaal 1.12;\nZY03 = Zh-geel schaal 1.14;\nZY04 = Zh-geel schaal 1.16;\nZY05 = Zh-geel schaal 1.18;\nZY06 = Zh-geel schaal 1.22;\nZY07 = Zh-geel schaal 1.22/1.30;\nZY08 = Zh-geel schaal 1.24;\nZY09 = Zh-geel schaal 1.26;\nZY10 = Zh-geel schaal 1.30;\nZY11 = Zh-geel schaal 1.31;\nZY12 = Zh-geel schaal 1.39;\nZY13 = Zh-geel schaal 1.40;\nZY14 = Zh-geel schaal 1.40/1.57;\nZY15 = Zh-geel schaal 1.43/1.55;\nZY16 = Zh-geel schaal 1.45;\nZY17 = Zh-geel schaal 1.47;\nZY18 = Zh-geel schaal 1.50;\nZY19 = Zh-geel schaal 1.53;\nZY20 = Zh-geel schaal 1.54;\nZY21 = Zh-geel schaal 1.55/1.61/1.77;\nZY22 = Zh-geel schaal 1.55/16/1.77(+2J);\nZY23 = Zh-geel schaal 1.59;\nZY24 = Zh-geel schaal 1.61/1.77;\nZY25 = Zh-geel schaal 1.62;\nZY26 = Zh-geel schaal 1.63;\nZY27 = Zh-geel schaal 1.66;\nZY28 = Zh-geel schaal 1.78;\nZY29 = Zh-geel schaal 1.80;\nZY30 = Zh-geel schaal 1.81;", "format": "" }, "HiBd": { "type": "string", "description": "Hist. salary scale date", "format": "date" }, "LoFu": { "type": "string", "enum": [ "1", "2", "3", "4", "5", "C", "F", "H", "S", "T", "X", "Y" ], "maxLength": 20, "description": "Job work location\n1 = haardvergoeding (niet uit barema) ;\n2 = standplaatsvergoeding (niet uit barema);\n3 = functietoeslag (niet uit barema);\n4 = functiecomplement (niet uit barema);\n5 = functietoeslag en -complement (niet uit barema);\nC = job complement;\nF = job allowance;\nH = haardvergoeding;\nS = standplaatsvergoeding;\nT = functietoeslag en -complement;\nX = RH - forfaitaire vergoed cat.8 (uit barema);\nY = RH - forfaitaire vergoed cat.9 (uit barema);", "format": "" }, "SaCa": { "type": "string", "maxLength": 20, "description": "Category", "format": "" }, "BaAn": { "type": "string", "maxLength": 10, "description": "Barema anciënniteit", "format": "" }, "TrAn": { "type": "string", "maxLength": 6, "description": "Actual seniority", "format": "" }, "AHSF": { "type": "number", "multipleOf": 0.01, "description": "Bedrag H/S/F", "format": "float" }, "AmFc": { "type": "number", "multipleOf": 0.01, "description": "Job complement amount", "format": "float" }, "PrHw": { "type": "string", "enum": [ "A", "B", "C" ], "maxLength": 20, "description": "Prorated theor. hourly wage\nA = Fixed average hourly wage for year;\nB = Fixed average hourly wage for month;\nC = Variable effective hourly wage for month;", "format": "" }, "PrLc": { "type": "string", "enum": [ "01", "02", "03", "04", "05" ], "maxLength": 20, "description": "Prorated work location\n01 = Z1/Z2*Z3;\n02 = Kinderdagverblijven;\n03 = Op basis van te werken uren;\n04 = KDV werkregime 40 uren;\n05 = Gewerkte + gelijkgestelde/te werken uren;", "format": "" }, "PrAd": { "type": "string", "enum": [ "01", "02", "03", "04", "05", "06" ], "maxLength": 20, "description": "Prorated allowances\n01 = Gewerkte dagen / te werken dagen;\n02 = Gewerkte uren / te werken uren;\n03 = Gewerkte+gelijkgest.uren/te werken uren;\n04 = Verrekening in functie van 25 dagen;\n05 = Vast bedrag of 0;\n06 = Z2/Z3 * Z4;", "format": "" }, "Rpl1": { "type": "string", "maxLength": 50, "description": "Substitute 1", "format": "" }, "RpN1": { "type": "string", "maxLength": 255, "description": "Substitute name 1", "format": "" }, "RIn1": { "type": "string", "maxLength": 12, "description": "INSZ number 1", "format": "" }, "RHw1": { "type": "number", "multipleOf": 0.01, "description": "Hours per week 1", "format": "float" }, "RRe1": { "type": "string", "enum": [ "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "13", "14", "15", "16", "17", "18", "98", "99" ], "maxLength": 20, "description": "Substitution reason 1\n01 = Ongeval (arbeidsongeval);\n02 = Ziekte (arbeidsongeval);\n03 = Bijstand zwaar zieke;\n04 = Borstvoedingsverlof;\n05 = Early retirement;\n06 = Extra legaal verlof;\n07 = Moederschapsrust;\n08 = Parental leave;\n09 = Palliatief verlof;\n10 = Profylactisch verlof;\n11 = Tijdskrediet;\n12 = Verlof zonder wedde;\n13 = Schorsing onderling akkoord;\n14 = Project 600;\n15 = Peter/meterschap;\n16 = Mentor;\n17 = Andere;\n18 = Einde loopbaan maatregelen;\n98 = Additional leave project;\n99 = CAO45+;", "format": "" }, "Rpl2": { "type": "string", "maxLength": 50, "description": "Substitute 2", "format": "" }, "RpN2": { "type": "string", "maxLength": 255, "description": "Substitute name 2", "format": "" }, "RIn2": { "type": "string", "maxLength": 12, "description": "INSZ number 2", "format": "" }, "RHw2": { "type": "number", "multipleOf": 0.01, "description": "Hours per week 2", "format": "float" }, "RRe2": { "type": "string", "enum": [ "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "13", "14", "15", "16", "17", "18", "98", "99" ], "maxLength": 20, "description": "Substitution reason 2\n01 = Ongeval (arbeidsongeval);\n02 = Ziekte (arbeidsongeval);\n03 = Bijstand zwaar zieke;\n04 = Borstvoedingsverlof;\n05 = Early retirement;\n06 = Extra legaal verlof;\n07 = Moederschapsrust;\n08 = Parental leave;\n09 = Palliatief verlof;\n10 = Profylactisch verlof;\n11 = Tijdskrediet;\n12 = Verlof zonder wedde;\n13 = Schorsing onderling akkoord;\n14 = Project 600;\n15 = Peter/meterschap;\n16 = Mentor;\n17 = Andere;\n18 = Einde loopbaan maatregelen;\n98 = Additional leave project;\n99 = CAO45+;", "format": "" }, "Rpl3": { "type": "string", "maxLength": 50, "description": "Substitute 3", "format": "" }, "RpN3": { "type": "string", "maxLength": 255, "description": "Substitute name 3", "format": "" }, "RIn3": { "type": "string", "maxLength": 12, "description": "INSZ number 3", "format": "" }, "RHw3": { "type": "number", "multipleOf": 0.01, "description": "Hours per week 3", "format": "float" }, "RRe3": { "type": "string", "enum": [ "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "13", "14", "15", "16", "17", "18", "98", "99" ], "maxLength": 20, "description": "Substitution reason 3\n01 = Ongeval (arbeidsongeval);\n02 = Ziekte (arbeidsongeval);\n03 = Bijstand zwaar zieke;\n04 = Borstvoedingsverlof;\n05 = Early retirement;\n06 = Extra legaal verlof;\n07 = Moederschapsrust;\n08 = Parental leave;\n09 = Palliatief verlof;\n10 = Profylactisch verlof;\n11 = Tijdskrediet;\n12 = Verlof zonder wedde;\n13 = Schorsing onderling akkoord;\n14 = Project 600;\n15 = Peter/meterschap;\n16 = Mentor;\n17 = Andere;\n18 = Einde loopbaan maatregelen;\n98 = Additional leave project;\n99 = CAO45+;", "format": "" }, "Rpl4": { "type": "string", "maxLength": 50, "description": "Substitute 4", "format": "" }, "RpN4": { "type": "string", "maxLength": 255, "description": "Substitute name 4", "format": "" }, "RIn4": { "type": "string", "maxLength": 12, "description": "INSZ number 4", "format": "" }, "RHw4": { "type": "number", "multipleOf": 0.01, "description": "Hours per week 4", "format": "float" }, "RRe4": { "type": "string", "enum": [ "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "13", "14", "15", "16", "17", "18", "98", "99" ], "maxLength": 20, "description": "Substitution reason 4\n01 = Ongeval (arbeidsongeval);\n02 = Ziekte (arbeidsongeval);\n03 = Bijstand zwaar zieke;\n04 = Borstvoedingsverlof;\n05 = Early retirement;\n06 = Extra legaal verlof;\n07 = Moederschapsrust;\n08 = Parental leave;\n09 = Palliatief verlof;\n10 = Profylactisch verlof;\n11 = Tijdskrediet;\n12 = Verlof zonder wedde;\n13 = Schorsing onderling akkoord;\n14 = Project 600;\n15 = Peter/meterschap;\n16 = Mentor;\n17 = Andere;\n18 = Einde loopbaan maatregelen;\n98 = Additional leave project;\n99 = CAO45+;", "format": "" }, "Rpl5": { "type": "string", "maxLength": 50, "description": "Substitute 5", "format": "" }, "RpN5": { "type": "string", "maxLength": 255, "description": "Substitute name 5", "format": "" }, "RIn5": { "type": "string", "maxLength": 12, "description": "INSZ number 5", "format": "" }, "RHw5": { "type": "number", "multipleOf": 0.01, "description": "Hours per week 5", "format": "float" }, "RRe5": { "type": "string", "enum": [ "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "13", "14", "15", "16", "17", "18", "98", "99" ], "maxLength": 20, "description": "Substitution reason 5\n01 = Ongeval (arbeidsongeval);\n02 = Ziekte (arbeidsongeval);\n03 = Bijstand zwaar zieke;\n04 = Borstvoedingsverlof;\n05 = Early retirement;\n06 = Extra legaal verlof;\n07 = Moederschapsrust;\n08 = Parental leave;\n09 = Palliatief verlof;\n10 = Profylactisch verlof;\n11 = Tijdskrediet;\n12 = Verlof zonder wedde;\n13 = Schorsing onderling akkoord;\n14 = Project 600;\n15 = Peter/meterschap;\n16 = Mentor;\n17 = Andere;\n18 = Einde loopbaan maatregelen;\n98 = Additional leave project;\n99 = CAO45+;", "format": "" }, "SoMa": { "type": "string", "enum": [ "001", "002", "003", "F" ], "maxLength": 20, "description": "Soc. Maribel type\n001 = Logistiek assistent;\n002 = Ander personeel sociale maribel;\n003 = bijkomende tewerkstl soc.akk.ZH 2011;\nF = Fiscale maribel;", "format": "" }, "SmPe": { "type": "number", "multipleOf": 0.01, "description": "Soc. Maribel percentage", "format": "float" }, "BtBk": { "type": "string", "enum": [ "1", "2", "J" ], "maxLength": 20, "description": "BBT/BBK\n1 = Bijzondere beroepstitel;\n2 = Bijzondere beroepsbekwaamheid;\nJ = Artsen;", "format": "" }, "AD45": { "type": "number", "multipleOf": 0.0001, "description": "% Premie ADV CAO 45+", "format": "float" }, "AC45": { "type": "string", "enum": [ "45G", "45T", "NT" ], "maxLength": 20, "description": "45 year choice\n45G = money;\n45T = time;\nNT = not applicable;", "format": "" }, "AC50": { "type": "string", "enum": [ "45G", "45T", "50G", "50T", "50TOV", "NT" ], "maxLength": 20, "description": "50 year choice\n45G = money;\n45T = time;\n50G = money;\n50T = time;\n50TOV = tijd (bonobo's);\nNT = not applicable;", "format": "" }, "AC52": { "type": "string", "enum": [ "45G", "45T", "50G", "50T", "50TOV", "52TOV", "NT" ], "maxLength": 20, "description": "52 year choice\n45G = money;\n45T = time;\n50G = money;\n50T = time;\n50TOV = tijd (bonobo's);\n52TOV = tijd (bonobo's);\nNT = not applicable;", "format": "" }, "AC55": { "type": "string", "enum": [ "45G", "45T", "50G", "50T", "50TOV", "52TOV", "55G", "55T", "55TOV", "NT" ], "maxLength": 20, "description": "55 year choice\n45G = money;\n45T = time;\n50G = money;\n50T = time;\n50TOV = tijd (bonobo's);\n52TOV = tijd (bonobo's);\n55G = money;\n55T = time;\n55TOV = tijd (bonobo's);\nNT = not applicable;", "format": "" }, "Eq": { "type": "boolean", "description": "Gelijkgestelde", "format": "" }, "Of": { "type": "boolean", "description": "Ambtshalve", "format": "" }, "NoFu": { "type": "boolean", "description": "Geen financiering", "format": "" }, "DcHw": { "type": "integer", "description": "Number added to hourly wage", "format": "" }, "DcPw": { "type": "integer", "description": "Quantity with period wages", "format": "" }, "DcDw": { "type": "integer", "description": "Number for daily wage", "format": "" } } } } } } } } } } } } } } } }, "AfasBankInfo": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "AcId": { "type": "string", "maxLength": 42, "description": "Account number", "format": "" }, "NoBk": { "type": "boolean", "description": "Cash payment", "format": "" }, "SeNo": { "type": "integer", "description": "Sequence number", "format": "" }, "SaAc": { "type": "boolean", "description": "Salary account", "format": "" }, "Ds": { "type": "string", "maxLength": 32, "description": "Payment reference", "format": "" }, "Nm": { "type": "string", "maxLength": 80, "description": "Deviating name", "format": "" }, "Rs": { "type": "string", "maxLength": 50, "description": "Deviating city", "format": "" }, "ScId": { "type": "integer", "description": "Wage component", "format": "" }, "CoId": { "type": "string", "maxLength": 3, "description": "Country", "format": "" }, "BkTp": { "type": "integer", "description": "Bank type", "format": "" }, "BkIc": { "type": "string", "maxLength": 15, "description": "Bank", "format": "" }, "ViBk": { "type": "string", "enum": [ "1591", "4093", "5597", "7595", "15082", "16094", "16599", "22596", "24099", "24594", "26097", "25593", "27096", "32599", "35596", "36090", "37099", "38593", "42097", "43591", "44079", "44590", "45094", "45599", "47597", "49090", "49595", "50092", "50597", "51091", "52090", "54551", "62093" ], "maxLength": 20, "description": "Bank (expired)\n1591 = ABN/AMRO;\n4093 = Aruba Bank;\n5597 = Banco de Venezuela;\n7595 = Banco di Caribe;\n15082 = Caribbean Mercantile Bank;\n16094 = Centrale HypotheekBank;\n16599 = SFT;\n22596 = VGKS;\n24099 = Coop Spaar-en Crediet Ver Consales/Zuikertuintie;\n24594 = Coop Spaar-en Crediet Vereniging C D M;\n26097 = Coop Spaar-en Crediet Vereniging Ambtenaren;\n25593 = Coop Spaar-en Crediet Vereniging Ogem;\n27096 = Coop Spaar-en Crediet Vereniging Setel;\n32599 = Fundashon Empresa Chiki Korsou;\n35596 = Interfinance Curacao;\n36090 = Internationale Nederlanden Bank;\n37099 = Island Finace Curacao;\n38593 = Kooperativa di Empleadonan Petrolero;\n42097 = Korporashon pa Desaroyo di Korsou;\n43591 = Maduro & Curiel's Bank;\n44079 = Maduro & Curiel's Bank (Bonaire);\n44590 = Maduro & Curiel's Credit Comany;\n45094 = Antilles Banking Corporation;\n45599 = Mees Pierson (Curacao);\n47597 = Nationale Investeringsbank;\n49090 = N.V. de Curacaosche Hypotheek Bank;\n49595 = N.V. de Spaar- en Beleenbank van Curacao;\n50092 = Ontwikkelingsbank van de Nederlandse Antillen;\n50597 = Orco Bank;\n51091 = Postspaarbank van de Nederlandse Antillen;\n52090 = Rabobank Curaçao;\n54551 = The Windward islands Bank;\n62093 = Giro Curaçao;", "format": "" }, "FoPa": { "type": "boolean", "description": "Account outside SEPA area", "format": "" }, "IbCk": { "type": "boolean", "description": "IBAN controle", "format": "" }, "Iban": { "type": "string", "maxLength": 40, "description": "IBAN nummer", "format": "" }, "Bic": { "type": "string", "maxLength": 40, "description": "BIC Code", "format": "" } }, "required": [ "AcId", "NoBk", "SeNo" ] } } } } } }, "AfasAgencyGAK": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "DaBe": { "type": "string", "description": "Start date", "format": "date" }, "AyId": { "type": "string", "maxLength": 15, "description": "Agency", "format": "" }, "DaEn": { "type": "string", "description": "End date", "format": "date" }, "ViGw": { "type": "string", "enum": [ "01", "10", "02", "03", "04", "05", "06", "07", "08", "09", "93", "95" ], "maxLength": 20, "description": "'GAK' basic insurance\n01 = Contract of employment;\n10 = Individual labour against payment;\n02 = Acceptance of work;\n03 = Sales representative;\n04 = Wsw'er;\n05 = Placement;\n06 = Volunteer/standby police/fire brigade;\n07 = Home-worker;\n08 = Temp;\n09 = Musician/artist;\n93 = Conscientious scrupled employee;\n95 = Over 65;", "format": "" }, "DsEm": { "type": "string", "maxLength": 12, "description": "Description profession", "format": "" }, "YnCf": { "type": "boolean", "description": "Family of owner", "format": "" }, "YnCs": { "type": "boolean", "description": "'Directeur/grootaandeelhouder'", "format": "" }, "YnCo": { "type": "boolean", "description": "Previous owner", "format": "" }, "YnCc": { "type": "boolean", "description": "On-call/stand-in worker", "format": "" }, "YnZw": { "type": "boolean", "description": "PR", "format": "" }, "YnWw": { "type": "boolean", "description": "'WW'", "format": "" }, "YWAO": { "type": "boolean", "description": "'WAO/WIA'", "format": "" }, "YZFW": { "type": "boolean", "description": "'ZFW'", "format": "" }, "CoId": { "type": "string", "maxLength": 3, "description": "Country", "format": "" }, "Ad": { "type": "string", "maxLength": 60, "description": "Address", "format": "" }, "HmNr": { "type": "integer", "description": "House number", "format": "" }, "HmAd": { "type": "string", "maxLength": 30, "description": "Extension (a, b, etc.) to house number", "format": "" }, "ZpCd": { "type": "string", "maxLength": 15, "description": "Postal code", "format": "" }, "Rs": { "type": "string", "maxLength": 50, "description": "City", "format": "" }, "InYr": { "type": "boolean", "description": "Do not include in year-end work", "format": "" }, "ChGb": { "type": "boolean", "description": "Do not include in PGB year-end work", "format": "" }, "ViUs": { "type": "string", "enum": [ "00", "01", "11", "02", "20", "25", "26", "30", "35", "36", "60", "70" ], "maxLength": 20, "description": "Code speciale aanduiding UWV\n00 = Not applicable;\n01 = 'Vakantiebonnen' up to 20 days;\n11 = Bakkers: Aandeelhouders/bestuurders, niet verzekerd voor WW, ZW, WAO en ZFW;\n02 = 'Vakantiebonnen' 20 days or more;\n20 = Catering industry: artist (main profession not an artist) or amateur artist;\n25 = WW- en/of WAO-uitkering, medewerker verzekeringsplichtig voor de WW,ZW,WAO en ZFW;\n26 = WW- en/of WAO-uitkering, medewerker verzekeringsplichtig voor de WW,ZW,WAO;\n30 = Vut early retirement or Act Calling-in Jobseekers.;\n35 = Public servant in the sense of the 'Ambtenarenwet' with a wage lower than the threshold.;\n36 = People receiving unemployment benefits insured under 'ZFW'.;\n60 = Supplement welfare benefit for people of 65 years and older.;\n70 = Tip money (no tips);", "format": "" }, "GbSe": { "type": "integer", "description": "PGB sequence number", "format": "" }, "Vi9": { "type": "string", "enum": [ "1", "2", "3", "4" ], "maxLength": 20, "description": "ZFW pension type\n1 = None;\n2 = 'VUT';\n3 = Early pension;\n4 = Pension;", "format": "" } }, "required": [ "DaBe", "AyId" ] } } } } } }, "AfasAgencyFiscus": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "DaBe": { "type": "string", "description": "Start date", "format": "date" }, "AyId": { "type": "string", "maxLength": 15, "description": "Agency", "format": "" }, "DaEn": { "type": "string", "description": "End date", "format": "date" }, "ViIn": { "type": "string", "enum": [ "11", "12", "13", "14", "15", "17", "18", "21", "22", "23", "24", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "42", "43", "44", "45", "46", "50", "51", "52", "53", "54", "55", "56", "57", "58", "59", "60", "61", "62", "63" ], "maxLength": 20, "description": "Income relationship type\n11 = Wage or salary of officers in the sense of the Dutch 'Ambtenarenwet';\n12 = Loon werknemers van gepremieerde, gesubsidieerde of gebudgetteerde instellingen (geldig t/m 2015);\n13 = Wage or salary of directors of an NV/BV, insured under the employee insurances;\n14 = Loon of salaris overige werknemers niet verzekerd voor de WIA of WAO (geldig t/m 2015);\n15 = Wage or salary cannot be brought under 11 up to and including 14 or 17;\n17 = Wages/salary of major shareholders/directors of an NV/BV, not insured under the employee insurances;\n18 = Waiting money of a government institution;\n21 = Other pensions, annuities etc. (not 23) (valid through 2016);\n22 = Benefit within the framework of the General Act on Age (AOW);\n23 = War and Resistance pensions;\n24 = Benefit within the framework of the General Act on Last Living Individuals (ANW);\n31 = Benefit under Sickn. Ben., Act (ZW), sickn. insur, based on Sickn. Ben. Act and Work-Care Act (WAZO);\n32 = Benefit based on 'WAO' and private health, disability and accident insurance;\n33 = Benefit within the framework of the 'Nieuwe Werkloosheidswet' ('nWW');\n34 = Benefits under the 'Wet inkomensvoorz. oud. en ged. arbeidsong. werkloze werknemers (IOAW)';\n35 = Vervolguitkering in het kader van de Nieuwe Werkloosheidswet (nWW) (geldig t/m 2021);\n36 = Benefit within the framework of the Act on Employment Disability Insurance independents (WAZ);\n37 = Wet arbeidsongeschiktheidsvoorziening jonggehandicapten (Wajong);\n38 = Combination (simultaneous or consecutive) of 'WAJONG' and 'WAZ WAO/IVA' or 'WGA';\n39 = Benefit related to 'IVA' arrangement;\n40 = Benefit related to 'WGA' arrangement;\n42 = Benefit within the framework of the Social Security Act Independents;\n43 = Benefit related to 'Participatiewet' (previously WWB);\n44 = Benefits under the terms of 'Wet Werk en Inkomen Kunstenaars' ('WWIK’) (valid until 2013).;\n45 = Benefits under the 'Wet inkomensvoorz. oud. en ged. arbeidsong. gew. zelfstandigen (IOAZ)';\n46 = Benefit on the basis of the Allowances Act.;\n50 = Benefits under the terms of other social security acts (not 22, 24, 31 until 45 or 52);\n51 = Benefit under the terms of the ‘Wet investeren in jongeren (WIJ)’ Act (valid up to and incl. 2013);\n52 = Benefit in the context of the Income Provisions for Elderly Unemployed Act (IOW);\n53 = Payment within the framework of early retirement;\n54 = Withdrawal of life-course credit by an employee who is 61 years or older on 1 January (up to 2021);\n55 = Benefit within the context of the Algemene Pensioenwet Politieke Ambtsdragers (APPA);\n56 = Retirement pension accrued via the employer;\n57 = Surviving relatives' pension accrued via the employer;\n58 = Disability pension accrued via the employer;\n59 = Annuities agreed upon in relation to individual or collective contract of employment;\n60 = Annuities not agreed upon in relation to individual or collective contract of employment;\n61 = Employer supplement to an employee insurance benefit; employment has been terminated;\n62 = Severance pay / transfer allowance;\n63 = Other pensions or combination of pensions/annuities or payment after employment end;", "format": "" }, "ViEm": { "type": "string", "enum": [ "1", "10", "11", "12", "13", "14", "17", "18", "19", "2", "21", "22", "23", "24", "3", "4", "5", "6", "7", "78", "79", "8", "80", "81", "82", "83", "9" ], "maxLength": 20, "description": "Labour relation type\n1 = Employment contract (excluding BBL);\n10 = Wet sociale werkvoorziening (WSW) (geldig t/m 2021);\n11 = Temp;\n12 = Persoonlijke arbeid tegen beloning (geldig t/m 2015);\n13 = Ambtenaar / ABP'er (geldig t/m 2015);\n14 = A-Topsporter (geldig t/m 2015);\n17 = Vutter (geldig t/m 2015);\n18 = Appointment pertaining to public law;\n19 = Severance pay (valid through 2014);\n2 = Aanneming van werk (geldig t/m 2015);\n21 = WSW beschut werk;\n22 = WSW Detachering at a regular employer, not being an SW company.;\n23 = WSW begeleid werk;\n24 = Participatiewet beschut werk;\n3 = Bestuurder coöperatieve vereniging met werknemerszelfbestuur (geldig t/m 2015);\n4 = Shareholding fisherman;\n5 = Conscript (valid until 2012);\n6 = Musician/artist;\n7 = Placement;\n78 = Werk als zelfstandige (geldig t/m 2015);\n79 = Opt-in arrangement;\n8 = Thuiswerker (geldig t/m 2015);\n80 = Sekswerker in fictieve dienstbetrekking (geldig t/m 2015);\n81 = Other fictitious employments;\n82 = Payrolling;\n83 = Practical training of the profession supporting learning path (BBL);\n9 = Vertegenwoordiger / provisiewerker (geldig t/m 2015);", "format": "" }, "ViTs": { "type": "string", "enum": [ "W", "G" ], "maxLength": 20, "description": "'Tabelkleur'\nW = White;\nG = Green;", "format": "" }, "ViCd": { "type": "string", "enum": [ "0", "3", "221", "940", "999", "224", "225", "250", "950", "5", "252", "6", "7", "228", "226", "227", "210", "220" ], "maxLength": 20, "description": "Table code\n0 = Table used without conversion line;\n3 = Only liable to pay premiums (A, G);\n221 = Foreign artists or professional sportsmen and sportswoman (lower rate);\n940 = 52% rate related to anonymous employees;\n999 = Other cases in which no table is used;\n224 = Foreign artist groups and sports teams;\n225 = Foreign professional sportsmen and sportswoman (lower rate by ministerial decree);\n250 = Welfare percentage rate;\n950 = 52% rate in connection with negative expenses for buying out income provisions;\n5 = Only liable to tax (B, H);\n252 = Curaçao pensions source levy (valid through 2016);\n6 = Liable to pay tax and premiums AOW and ANW (C, I);\n7 = Liable to pay tax and Wlz premiums (D, J);\n228 = Employee not liable for taxes, only liable for AOW/ANW (E) premiums;\n226 = Employee not liable for taxes, only liable for Wlz premiums (F, L);\n227 = Employee not liable for taxes, only liable for ANW (K) premiums;\n210 = Contractors of work, home workers, sex workers and equivalent;\n220 = Local artists;", "format": "" }, "ViLk": { "type": "string", "enum": [ "0", "1" ], "maxLength": 20, "description": "'Loonheffingskorting'\n0 = Do not apply;\n1 = Apply;", "format": "" }, "ViZv": { "type": "string", "enum": [ "A", "CEF", "K", "L", "M", "B", "C", "D", "E", "F", "G", "H", "I" ], "maxLength": 20, "description": "'ZVW'\nA = Not subject to compulsory insurance as person not insured under the Wlz either;\nCEF = Subject to compulsory insurance (rate determined in calculation) (valid through 2012);\nK = Subject to compulsory insurance, normal 'Werkgeversheffing' rate;\nL = Subject to compulsory insurance, 0% rate for 'Werkgeversheffing (zeelieden)';\nM = Subject to compulsory insurance, withheld amount;\nB = Niet verzekeringsplichtig, persoon militair ambt. in werkelijke dienst of met buitengewoon verlof;\nC = Wel verzekeringsplichtig, normaal tarief (geldig t/m 2006);\nD = Subject to compulsory insurance, deviating ‘Zeelieden’ rate (valid through 2012);\nE = Subject to compulsory insurance, reduced rate (valid through 2012);\nF = 'Wel verzekeringsplichtig, meer tarieven toegepast (geldig t/m 2006)';\nG = Insurance not compulsory, foreign artist/professional sportsman and/or code LB 221, 224, 225;\nH = Subject to compulsory insurance, no rate applied, domestic artist with LB code 220;\nI = Not subject to compulsory insurance as person not insured under Wlz, liable for pseudo contribution;", "format": "" }, "YnZW": { "type": "boolean", "description": "PR", "format": "" }, "YnWW": { "type": "boolean", "description": "'WW'", "format": "" }, "YWAO": { "type": "boolean", "description": "'WAO/WIA'", "format": "" }, "DoPs": { "type": "boolean", "description": "'Ufo'", "format": "" }, "ViRi": { "type": "string", "enum": [ "0000", "0101", "0102", "0201", "0301", "0302", "0401", "0501", "0601", "0701", "0801", "0901", "0902", "0903", "1001", "1101", "1201", "1301", "1401", "1501", "1601", "1701", "1801", "1901", "2001", "2101", "2201", "2301", "2401", "2501", "2601", "2701", "2801", "2901", "3001", "3101", "3201", "3301", "3302", "3401", "3501", "3801", "3901", "4001", "4101", "4201", "4301", "4401", "4501", "4502", "4601", "4701", "4801", "4901", "5001", "5101", "5200", "5201", "5202", "5203", "5204", "5205", "5206", "5207", "5208", "5209", "5210", "5211", "5301", "5401", "5402", "5501", "5601", "5602", "5701", "5801", "5901", "6001", "6101", "6201", "6301", "6401", "6402", "6501", "6601", "6602", "6701", "6702", "6801", "6901" ], "maxLength": 20, "description": "Deviating 'Sector risicogroep'\n0000 = Not applicable;\n0101 = Agricultural company - short;\n0102 = Agrarisch bedrijf - lang (geldig t/m 2021);\n0201 = Tobacco processing industry;\n0301 = Construction company - short;\n0302 = Bouwbedrijf - lang (geldig t/m 2021);\n0401 = Dredging company;\n0501 = Hout en emballage industrie, houtwaren- en borstelindustrie;\n0601 = Carpstart date;\n0701 = Furniture and organ manufacturer;\n0801 = Wholesale in wood, sawmill and timber industry;\n0901 = Grafische industrie, exclusief fotografen (geldig t/m 2017);\n0902 = Fotografen (geldig t/m 2017);\n0903 = Graphic industry;\n1001 = Metallurgy industry;\n1101 = Electro technique industry;\n1201 = Metal and technical industries;\n1301 = Bakeries;\n1401 = Sugar processing industry;\n1501 = Butcher industry;\n1601 = 'Slagers' (other);\n1701 = Retail trade and crafts;\n1801 = Cleaning;\n1901 = Chain-store business;\n2001 = Port operators;\n2101 = Port ship's cleaners;\n2201 = Inland navigation;\n2301 = Fishing industry;\n2401 = Merchant shipping;\n2501 = Vervoer KLM;\n2601 = NS transportation;\n2701 = Post office transportation;\n2801 = Taxivervoer;\n2901 = Public Transport;\n3001 = Private bus transport;\n3101 = Other transport of passengers on land and by plane;\n3201 = Other transport of goods on land and by plane;\n3301 = General catering industry - short;\n3302 = Horeca algemeen - lang (geldig t/m 2021);\n3401 = Catering industry;\n3501 = Health, mental and social interests;\n3801 = Banks;\n3901 = Verzekeringswezen;\n4001 = Publisher;\n4101 = Wholesaler's I;\n4201 = Wholesaler's II;\n4301 = Professional service industry I;\n4401 = Professional service industry II;\n4501 = Professional service industry III;\n4502 = Commercial services III - substitution premium reduced pay (through July 2007);\n4601 = Dairy industry;\n4701 = Textile industry;\n4801 = Stone, cement, glass and ceramics industries;\n4901 = Chemical industry;\n5001 = Food industry;\n5101 = General industry;\n5200 = Employment agencies;\n5201 = Uitzendbedrijven IIA kortingklasse (geldig t/m 2013);\n5202 = Uitzendbedrijven IIA middenklasse (geldig t/m 2013);\n5203 = Uitzendbedrijven IIA opslagklasse (geldig t/m 2013);\n5204 = Uitzendbedrijven IA kortingklasse (geldig t/m 2013);\n5205 = Uitzendbedrijven IA middenklasse (geldig t/m 2013);\n5206 = Uitzendbedrijven IA opslagklasse (geldig t/m 2013);\n5207 = Detachering (geldig t/m 2021);\n5208 = Intermediaire diensten (geldig t/m 2021);\n5209 = Uitzendbedrijven I B + II B (geldig t/m 2021);\n5210 = Uitzendbedrijven IA (geldig t/m 2021);\n5211 = Uitzendbedrijven IIA (geldig t/m 2021);\n5301 = Security firms;\n5401 = Cultural institutions - short;\n5402 = Cultural institutions - long;\n5501 = Other company and professional sectors;\n5601 = Painting company - short;\n5602 = Schildersbedrijf - lang (geldig t/m 2021);\n5701 = Plasterers and cement masons industry;\n5801 = Roofing company;\n5901 = Cement and masonry company;\n6001 = Stonecutter Company;\n6101 = Government, education and science;\n6201 = Government, state, police and judiciary power;\n6301 = Government, defence;\n6401 = Government, provinces, municipalities and district water boards;\n6402 = Municipalities - alternative sector premium;\n6501 = Government, public service corporations;\n6601 = Government, other institutions;\n6602 = Overheid, overige instellingen - vervangende sectorpremie (geldig t/m 2021);\n6701 = Werk en (re)integratie;\n6702 = Work and (re)integration - alternative sector premium (valid until 2012);\n6801 = Rail construction industry;\n6901 = Telecommunications;", "format": "" }, "ViFc": { "type": "string", "enum": [ "10", "100", "1009", "1010", "1011", "1013", "1018", "1021", "1022", "1024", "1027", "1029", "1030", "1031", "1041", "1042", "1044", "1045", "1047", "105", "1050", "1052", "1054", "1055", "1056", "1057", "1059", "106", "1060", "1065", "1067", "1069", "107", "1071", "1075", "1077", "1079", "1094", "1095", "11", "1106", "1109", "1110", "1111", "1112", "1115", "1121", "1123", "1125", "1128", "1132", "1133", "1137", "114", "1141", "1142", "1144", "115", "1154", "1158", "1160", "1165", "117", "1171", "1172", "1178", "118", "1180", "1183", "1188", "1190", "1191", "1192", "1193", "1194", "1196", "1197", "1198", "120", "1200", "1201", "1202", "1206", "1207", "1210", "1213", "1214", "1215", "1218", "1221", "1227", "1228", "1229", "1233", "1234", "1236", "1238", "1239", "124", "1246", "125", "1252", "1258", "1259", "1261", "1262", "1264", "1266", "1267", "1268", "127", "1277", "1278", "128", "1283", "1285", "1286", "1287", "1288", "1289", "1291", "1293", "1294", "1296", "1302", "1308", "1312", "1315", "1318", "1322", "1328", "1329", "1335", "1336", "1342", "1343", "1345", "1347", "1352", "1353", "1359", "136", "137", "1375", "1379", "1380", "1381", "1386", "1388", "1390", "1393", "1397", "14", "140", "1404", "1405", "1407", "1408", "1414", "1415", "1417", "1420", "1424", "1425", "1428", "1429", "1433", "1435", "1438", "144", "1442", "1446", "1449", "145", "1450", "1451", "1457", "1458", "1459", "1460", "1461", "1462", "1463", "1464", "1469", "1470", "1471", "1475", "1476", "1478", "1479", "148", "1480", "1481", "1486", "1489", "1490", "1494", "1495", "1496", "1497", "1499", "15", "1504", "1506", "1507", "151", "1512", "1513", "1516", "1517", "1518", "1519", "152", "1520", "1521", "1524", "1525", "1526", "1528", "1530", "1531", "1532", "1533", "1534", "1535", "1536", "1537", "1538", "1539", "1540", "1541", "1542", "1544", "1545", "1546", "1547", "1549", "1550", "1552", "1555", "1556", "1557", "1558", "1559", "156", "1563", "157", "1570", "1574", "1576", "1577", "1578", "1579", "158", "1581", "1584", "1585", "1586", "159", "1591", "1596", "1597", "1600", "1601", "1606", "1608", "161", "1610", "1612", "1613", "1616", "1618", "1619", "162", "1620", "1621", "1622", "1625", "1626", "1627", "1629", "163", "1630", "1631", "1632", "1633", "1634", "1635", "1636", "1637", "1639", "164", "1640", "1641", "1642", "1643", "1644", "1645", "1646", "1647", "1648", "1651", "1652", "1653", "1654", "1656", "1658", "1659", "166", "1664", "1668", "1669", "1671", "1672", "1674", "1676", "1678", "1681", "1683", "1685", "1688", "169", "1691", "1694", "1695", "1696", "1697", "1699", "170", "1700", "1703", "1704", "1707", "1708", "1709", "171", "1714", "1715", "1716", "1719", "1722", "1723", "1725", "1730", "1731", "1732", "1735", "1737", "1739", "174", "1745", "1747", "1752", "1755", "1756", "1759", "1762", "1763", "1764", "1765", "1766", "1769", "1771", "1772", "1774", "1777", "178", "1783", "1787", "1788", "1789", "179", "1792", "18", "1806", "1809", "1812", "1813", "1814", "1815", "182", "1821", "1827", "1828", "1829", "183", "1838", "184", "1840", "1841", "1848", "1849", "185", "1852", "1854", "1855", "1856", "1858", "1861", "1869", "187", "1873", "1878", "1879", "1881", "1885", "1886", "1887", "1888", "1889", "1893", "1894", "1895", "1896", "1897", "190", "1900", "1901", "1902", "1905", "1907", "1910", "1912", "1915", "1918", "1926", "1927", "1928", "1929", "193", "1931", "1932", "1936", "1941", "1944", "1945", "1951", "1953", "1954", "1955", "1956", "1957", "1959", "1964", "1967", "197", "1971", "1973", "1974", "1976", "1977", "1980", "1983", "1988", "1989", "199", "1990", "1991", "1993", "1994", "1995", "1998", "20", "2001", "2002", "2003", "2005", "2008", "2011", "2018", "2019", "2020", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2034", "2036", "2043", "2044", "2045", "2046", "2047", "2048", "2050", "2053", "2054", "2055", "2056", "2057", "2058", "2059", "206", "2060", "2061", "2062", "2063", "2065", "2066", "2067", "2068", "2069", "2070", "2071", "2072", "2075", "2076", "2077", "2078", "2079", "2081", "2085", "2086", "2087", "2089", "209", "2090", "2092", "2093", "2094", "2095", "2096", "2097", "2099", "21", "2105", "2106", "2108", "2113", "2114", "2123", "2124", "2126", "2131", "2133", "2136", "214", "2140", "2141", "2143", "2146", "2154", "2155", "2158", "216", "2161", "2164", "2165", "2167", "2169", "2173", "2174", "2175", "2176", "218", "2180", "2181", "2184", "219", "2192", "2194", "2195", "22", "2200", "221", "222", "224", "225", "2252", "2260", "2262", "2266", "2269", "227", "2272", "2273", "2274", "2275", "2276", "228", "2280", "2284", "2285", "229", "2291", "2295", "2296", "2297", "2299", "23", "2301", "2302", "2304", "2305", "2306", "2307", "2308", "2310", "2311", "2314", "2315", "2316", "2318", "2321", "2323", "2324", "2328", "2329", "233", "2330", "2332", "2334", "234", "2341", "2343", "2347", "2348", "2350", "2353", "2354", "2359", "2362", "2365", "2368", "2369", "237", "2370", "2378", "2379", "2380", "2384", "2385", "2389", "239", "24", "2403", "2404", "2407", "2408", "241", "2411", "2414", "2416", "2417", "242", "2424", "2425", "2426", "243", "2431", "2435", "2437", "2439", "2440", "2442", "2443", "2444", "2449", "245", "2451", "2455", "2457", "2458", "2462", "2465", "2467", "2468", "247", "2474", "2479", "2488", "2489", "249", "2491", "2492", "2493", "2496", "2499", "2500", "2502", "2509", "2511", "2513", "2515", "2519", "2520", "2527", "253", "2534", "2535", "2538", "2539", "254", "2540", "2541", "2545", "2549", "2551", "2553", "2554", "2555", "2557", "2559", "2560", "2561", "2566", "257", "2571", "2577", "2580", "2584", "2586", "2587", "259", "2594", "26", "2600", "2601", "2610", "2611", "2612", "2617", "2618", "2621", "2624", "263", "2630", "2642", "2645", "2647", "2648", "265", "2651", "266", "2668", "267", "2672", "2674", "2678", "2679", "268", "2683", "2687", "2688", "269", "2693", "2694", "27", "2700", "2702", "271", "2711", "2719", "272", "2722", "2724", "2731", "2736", "2737", "2742", "2745", "2746", "275", "2750", "2754", "2756", "2761", "2765", "2767", "2768", "2769", "2772", "2773", "2775", "2776", "2777", "2778", "2780", "2787", "279", "2790", "2791", "2793", "2797", "2799", "28", "2804", "2811", "2814", "2816", "2820", "2821", "2822", "2825", "2833", "2841", "2842", "2847", "2848", "2851", "2852", "2854", "2855", "2856", "2857", "2859", "2861", "2862", "2863", "2864", "2865", "2866", "2867", "2868", "2870", "2872", "2875", "2878", "2880", "2881", "2884", "2892", "2894", "2895", "2896", "2898", "29", "2900", "2903", "2907", "2908", "2910", "2911", "2914", "2917", "2918", "2919", "2921", "2928", "2931", "2932", "2933", "2934", "2935", "2936", "2937", "2938", "2939", "2940", "2941", "2942", "2943", "2944", "2945", "2946", "2947", "2948", "2949", "2950", "2951", "2952", "2953", "2954", "2955", "2956", "2957", "2958", "2959", "2960", "2961", "2962", "2963", "2964", "2965", "2966", "2967", "2968", "2969", "2970", "2971", "2972", "2973", "2974", "2975", "2976", "2977", "2978", "2979", "2980", "2981", "2982", "2983", "2984", "2985", "2986", "2987", "2988", "2989", "2990", "2991", "2992", "2993", "2994", "2995", "2996", "2997", "2998", "2999", "30", "300", "3000", "3001", "3002", "3003", "3004", "3005", "3006", "3007", "3008", "3009", "301", "3010", "3011", "3012", "3013", "3014", "3015", "3016", "3017", "3018", "3019", "3020", "3021", "3022", "3023", "3024", "3025", "3026", "3027", "3028", "3029", "303", "3030", "3031", "3032", "3033", "3034", "3035", "3036", "3037", "3038", "3039", "304", "3040", "3041", "3042", "3043", "3044", "3045", "3046", "3047", "3048", "3049", "305", "3050", "3051", "3052", "3053", "3054", "3055", "3056", "3057", "3058", "3059", "306", "3060", "3061", "3062", "3063", "3064", "3065", "3066", "3067", "3068", "3069", "3070", "3071", "3072", "3073", "3074", "3075", "3076", "3077", "3078", "3079", "3080", "3081", "3082", "3083", "3084", "3085", "3086", "3087", "3088", "3089", "3090", "3091", "3092", "3093", "3094", "3095", "3096", "3097", "3098", "3099", "31", "310", "3100", "3101", "3102", "3103", "3104", "3105", "3106", "3107", "3108", "3109", "3110", "3111", "3112", "3113", "3114", "3115", "3116", "3117", "3118", "3119", "3120", "3121", "3122", "3123", "3124", "3125", "3126", "3127", "3128", "3129", "313", "3130", "3131", "3132", "3133", "3134", "3135", "3136", "3137", "3138", "3139", "314", "3140", "3141", "3142", "3143", "3144", "3145", "3146", "3147", "3148", "3149", "3150", "3151", "3152", "3153", "3154", "3155", "3156", "3157", "3158", "3159", "316", "3160", "3161", "3162", "3163", "3164", "3165", "3166", "3167", "3168", "3169", "317", "3170", "3171", "3172", "3173", "3174", "3175", "3176", "3177", "3178", "3179", "318", "3180", "3181", "3182", "3183", "3184", "3185", "3186", "3187", "3188", "3189", "3190", "3191", "3192", "3193", "3194", "3195", "3196", "3197", "3198", "3199", "320", "3200", "3201", "3202", "3203", "3204", "3205", "3206", "3207", "3208", "3209", "3210", "3211", "3212", "3213", "3214", "3215", "3216", "3217", "3218", "3219", "3220", "3221", "3222", "3223", "3224", "3225", "3226", "3227", "3228", "3229", "323", "3230", "3231", "3232", "3233", "3234", "3235", "3236", "3237", "3238", "3239", "3240", "3241", "3242", "3243", "3244", "3245", "3246", "3247", "3248", "3249", "3250", "3251", "3252", "3253", "3254", "3255", "3256", "3257", "3258", "3259", "3260", "3261", "3262", "3263", "3264", "3265", "3266", "3267", "3268", "3269", "3270", "3271", "3272", "3273", "3274", "3275", "3276", "3277", "3278", "3279", "3280", "3281", "3282", "3283", "3284", "3285", "3286", "3287", "3288", "3289", "329", "3290", "3291", "3292", "3293", "3294", "3295", "3296", "3297", "3298", "3299", "33", "330", "3300", "3301", "3302", "3303", "3304", "3305", "3306", "3307", "3308", "3309", "331", "3310", "3311", "3312", "3313", "3314", "3315", "3316", "3317", "3318", "3319", "3320", "3321", "3322", "3323", "3324", "3325", "3326", "3327", "3328", "3329", "3330", "3331", "3332", "3333", "3334", "3335", "3336", "3337", "3338", "3339", "3340", "3341", "3342", "3343", "3344", "3345", "3346", "3347", "3348", "3349", "3350", "3351", "3352", "3353", "3354", "3355", "3356", "3357", "3358", "3359", "3360", "3361", "3362", "3363", "3364", "3365", "3366", "3367", "3368", "3369", "3370", "3371", "3372", "3373", "3374", "3375", "3376", "3377", "3378", "3379", "3380", "3381", "3382", "3383", "3384", "3385", "3386", "3387", "3388", "3389", "3390", "3391", "3392", "3393", "3394", "3395", "3396", "3397", "3398", "3399", "3400", "3401", "3402", "3403", "3404", "3405", "3406", "3407", "3408", "3409", "3410", "3411", "3412", "3413", "3414", "3415", "3416", "3417", "3418", "3419", "3420", "3421", "3422", "3423", "3424", "3425", "3426", "3427", "3428", "3429", "3430", "3431", "3432", "3433", "3434", "3435", "3436", "3437", "3438", "3439", "344", "3440", "3441", "3442", "3443", "3444", "3445", "3446", "3447", "3448", "3449", "345", "3450", "3451", "3452", "3453", "3454", "3455", "3456", "3457", "3458", "3459", "3460", "3461", "3462", "3463", "3464", "3465", "3466", "3467", "3468", "3469", "3470", "3471", "3472", "3473", "3474", "3475", "3476", "3477", "3478", "3479", "3480", "3481", "3482", "3483", "3484", "3485", "3486", "3487", "3488", "3489", "349", "3490", "3491", "3492", "3493", "3494", "3495", "3496", "3497", "3498", "3499", "35", "3500", "3501", "3502", "3503", "3504", "3505", "3506", "3507", "3508", "3509", "351", "3510", "3511", "3512", "3513", "3514", "3515", "3516", "3517", "3518", "3519", "352", "3520", "3521", "3522", "3523", "3524", "3525", "3526", "3527", "3528", "3529", "353", "3530", "3531", "3532", "3533", "3534", "3535", "3536", "3537", "3538", "3539", "3540", "3541", "3542", "3543", "3544", "3545", "3546", "3547", "3548", "3549", "3550", "3551", "3552", "3553", "3554", "3555", "3556", "3557", "3558", "3559", "3560", "3561", "3562", "3563", "3564", "3565", "3566", "3567", "3568", "3569", "3570", "3571", "3572", "3573", "3574", "3575", "3576", "3577", "3578", "3579", "3580", "3581", "3582", "3583", "3584", "3585", "3586", "3587", "3588", "3589", "359", "3590", "3591", "3592", "3593", "3594", "3595", "3596", "3597", "3598", "3599", "360", "3600", "3601", "3602", "3603", "3604", "3605", "3606", "3607", "3608", "3609", "361", "3610", "3611", "3612", "3613", "3614", "3615", "3616", "3617", "3618", "3619", "3620", "3621", "3622", "3623", "3624", "3625", "3626", "3627", "3628", "3629", "363", "3630", "3631", "3632", "3633", "3634", "3635", "3636", "3637", "3638", "3639", "364", "3640", "3641", "3642", "3643", "3644", "3645", "3646", "3647", "3648", "3649", "365", "3650", "3651", "3652", "3653", "3654", "3655", "3656", "3657", "3658", "3659", "366", "3660", "3661", "3662", "3663", "3664", "3665", "3666", "3667", "3668", "3669", "3670", "3671", "3672", "3673", "3674", "3675", "3676", "3677", "3678", "3679", "368", "3680", "3681", "3682", "3683", "3684", "3685", "3686", "3687", "3688", "3689", "3690", "3691", "3692", "3693", "3694", "3695", "3696", "3697", "3698", "3699", "370", "3700", "3701", "3702", "3703", "3704", "3705", "3706", "3707", "3708", "3709", "3710", "3711", "3712", "3713", "3714", "3715", "3716", "3717", "3718", "3719", "3720", "3721", "3722", "3723", "3724", "3725", "3726", "3727", "3728", "3729", "373", "3730", "3731", "3732", "3733", "3734", "3735", "3736", "3737", "3738", "3739", "3740", "3741", "3742", "3743", "3744", "3745", "3746", "3747", "3748", "3749", "3750", "3751", "3752", "3753", "3754", "3755", "3756", "3757", "3758", "3759", "376", "3760", "3761", "3762", "3763", "3764", "3765", "3766", "3767", "3768", "3769", "3770", "3771", "3772", "3773", "3774", "3775", "3776", "3777", "3778", "3779", "3780", "3781", "3782", "3783", "3784", "3785", "3786", "3787", "3788", "3789", "3790", "3791", "3792", "3793", "3794", "3795", "3796", "3797", "3798", "3799", "3800", "3801", "3802", "3803", "3804", "3805", "3806", "3807", "3808", "3809", "3810", "3811", "3812", "3813", "3814", "3815", "3816", "3817", "3818", "3819", "3820", "3821", "3822", "3823", "3824", "3825", "3826", "3827", "3828", "3829", "3830", "3831", "3832", "3833", "3834", "3835", "3836", "3837", "3838", "3839", "3840", "3841", "3842", "3843", "3844", "3845", "3846", "3847", "3848", "3849", "3850", "3851", "3852", "3853", "3854", "3855", "3856", "3857", "3858", "3859", "3860", "3861", "3862", "3863", "3864", "3865", "3866", "3867", "3868", "3869", "387", "3870", "3871", "3872", "3873", "3874", "3875", "3876", "3877", "3878", "3879", "388", "3880", "3881", "3882", "3883", "3884", "3885", "3886", "3887", "3888", "3889", "389", "3890", "3891", "3892", "3893", "3894", "3895", "3896", "3897", "3898", "3899", "3900", "3901", "3902", "3903", "3904", "3905", "3906", "3907", "3908", "3909", "391", "3910", "3911", "3912", "3913", "3914", "3915", "3916", "3917", "3918", "3919", "392", "3920", "3921", "3922", "3923", "3924", "3925", "3926", "3927", "3928", "3929", "3930", "3931", "3932", "3933", "3934", "3935", "3936", "3937", "3938", "3939", "394", "3940", "3941", "3942", "3943", "3944", "3945", "3946", "3947", "3948", "3949", "395", "3950", "3951", "3952", "3953", "3954", "3955", "3956", "3957", "3958", "3959", "396", "3960", "3961", "3962", "3963", "3964", "3965", "3966", "3967", "3968", "3969", "397", "3970", "3971", "3972", "3973", "3974", "3975", "3976", "3977", "3978", "3979", "3980", "3981", "3982", "3983", "3984", "3985", "3986", "3987", "3988", "3989", "399", "3990", "3991", "3992", "3993", "3994", "3995", "3996", "3997", "3998", "3999", "4", "40", "400", "4000", "4001", "4002", "4003", "4004", "4005", "4006", "4007", "4008", "4009", "4010", "4011", "4012", "4013", "4014", "4015", "4016", "4017", "4018", "4019", "402", "4020", "4021", "4022", "4023", "4024", "4025", "4026", "4027", "4028", "4029", "403", "4030", "4031", "4032", "4033", "4034", "4035", "4036", "4037", "4038", "4039", "4040", "4041", "4042", "4043", "4044", "4045", "4046", "4047", "4048", "4049", "405", "4050", "4051", "4052", "4053", "4054", "4055", "4056", "4057", "4058", "4059", "406", "4060", "4061", "4062", "4063", "4064", "4065", "4066", "4067", "4068", "4069", "4070", "4071", "4072", "4073", "4074", "4075", "4076", "4077", "4078", "4079", "408", "4080", "4081", "4082", "4083", "4084", "4085", "4086", "4087", "4088", "4089", "4090", "4091", "4092", "4093", "4094", "4095", "4096", "4097", "4098", "4099", "41", "410", "4100", "4101", "4102", "4103", "4104", "4105", "4106", "4107", "4108", "4109", "411", "4110", "4111", "4112", "4113", "4114", "4115", "4116", "4117", "4118", "4119", "412", "4120", "4121", "4122", "4123", "4124", "4125", "4126", "4127", "4128", "4129", "413", "4130", "4131", "4132", "4133", "4134", "4135", "4136", "4137", "4138", "4139", "4140", "4141", "4142", "4143", "4144", "4145", "4146", "4147", "4148", "4149", "4150", "4151", "4152", "4153", "4154", "4155", "4156", "4157", "4158", "4159", "4160", "4161", "4162", "4163", "4164", "4165", "4166", "4167", "4168", "4169", "417", "4170", "4171", "4172", "4173", "4174", "4175", "4176", "4177", "4178", "4179", "418", "4180", "4181", "4182", "4183", "4184", "4185", "4186", "4187", "4188", "4189", "4190", "4191", "4192", "4193", "4194", "4195", "4196", "4197", "4198", "4199", "420", "4200", "4201", "4202", "4203", "4204", "4205", "4206", "4207", "4208", "4209", "4210", "4211", "4212", "4213", "4214", "4215", "4216", "4217", "4218", "4219", "4220", "4221", "4222", "4223", "4224", "4225", "4226", "4227", "4228", "4229", "423", "4230", "4231", "4232", "4233", "4234", "4235", "4236", "4237", "4238", "4239", "4240", "4241", "4242", "4243", "4244", "4245", "4246", "4247", "4248", "4249", "4250", "4251", "4252", "4253", "4254", "4255", "4256", "4257", "4258", "4259", "426", "4260", "4261", "4262", "4263", "4264", "4265", "4266", "4267", "4268", "4269", "427", "4270", "4271", "4272", "4273", "4274", "4275", "4276", "4277", "4278", "4279", "4280", "4281", "4282", "4283", "4284", "4285", "4286", "4287", "4288", "4289", "429", "4290", "4291", "4292", "4293", "4294", "4295", "4296", "4297", "4298", "4299", "43", "4300", "4301", "4302", "4303", "4304", "4305", "4306", "4307", "4308", "4309", "431", "4310", "4311", "4312", "4313", "4314", "4315", "4316", "4317", "4318", "4319", "4320", "4321", "4322", "4323", "4324", "4325", "4326", "4327", "4328", "4329", "433", "4330", "4331", "4332", "4333", "4334", "4335", "4336", "4337", "4338", "4339", "434", "4340", "4341", "4342", "4343", "4344", "4345", "4346", "4347", "4348", "4349", "4350", "4351", "4352", "4353", "4354", "4355", "4356", "4357", "4358", "4359", "436", "4360", "4361", "4362", "4363", "4364", "4365", "4366", "4367", "4368", "4369", "437", "4370", "4371", "4372", "4373", "4374", "4375", "4376", "4377", "4378", "4379", "438", "4380", "4381", "4382", "4383", "4384", "4385", "4386", "4387", "4388", "4389", "4390", "4391", "4392", "4393", "4394", "4395", "4396", "4397", "4398", "4399", "44", "4400", "4401", "4402", "4403", "4404", "4405", "4406", "4407", "4408", "4409", "441", "4410", "4411", "4412", "4413", "4414", "4415", "4416", "4417", "4418", "4419", "4420", "4421", "4422", "4423", "4424", "4425", "4426", "4427", "4428", "4429", "4430", "4431", "4432", "4433", "4434", "4435", "4436", "4437", "4438", "4439", "4440", "4441", "4442", "4443", "4444", "4445", "4446", "4447", "4448", "4449", "445", "4450", "4451", "4452", "4453", "4454", "4455", "4456", "4457", "4458", "4459", "4460", "4461", "4462", "4463", "4464", "4465", "4466", "4467", "4468", "4469", "4470", "4471", "4472", "4473", "4474", "4475", "4476", "4477", "4478", "4479", "448", "4480", "4481", "4482", "4483", "4484", "4485", "4486", "4487", "4488", "4489", "449", "4490", "4491", "4492", "4493", "4494", "4495", "4496", "4497", "4498", "4499", "450", "4500", "4501", "4502", "4503", "4504", "4505", "4506", "4507", "4508", "4509", "4510", "4511", "4512", "4513", "4514", "4515", "4516", "4517", "4518", "4519", "4520", "4521", "4522", "4523", "4524", "4525", "4526", "4527", "4528", "4529", "453", "4530", "4531", "4532", "4533", "4534", "4535", "4536", "4537", "4538", "4539", "454", "4540", "4541", "4542", "4543", "4544", "4545", "4546", "4547", "4548", "4549", "455", "4550", "4551", "4552", "4553", "4554", "4555", "4556", "4557", "4558", "4559", "4560", "4561", "4562", "4563", "4564", "4565", "4566", "4567", "4568", "4569", "457", "4570", "4571", "4572", "4573", "4574", "4575", "4576", "4577", "4578", "4579", "4580", "4581", "4582", "463", "465", "466", "467", "468", "469", "473", "475", "476", "477", "479", "48", "480", "482", "483", "487", "488", "49", "491", "496", "5", "50", "505", "506", "509", "51", "510", "511", "512", "513", "514", "516", "517", "518", "52", "521", "526", "53", "531", "532", "533", "534", "540", "541", "542", "544", "545", "549", "555", "556", "557", "558", "559", "56", "561", "563", "565", "569", "57", "571", "572", "573", "576", "58", "581", "582", "588", "589", "592", "595", "6", "60", "603", "604", "607", "609", "61", "615", "618", "619", "621", "623", "624", "625", "626", "627", "629", "63", "630", "632", "633", "634", "636", "637", "639", "64", "641", "644", "645", "65", "650", "659", "66", "660", "662", "663", "664", "668", "670", "675", "679", "682", "683", "685", "686", "69", "696", "698", "699", "7", "70", "700", "703", "705", "706", "709", "710", "714", "716", "719", "72", "720", "721", "724", "725", "727", "73", "730", "733", "734", "735", "738", "739", "740", "741", "742", "744", "745", "748", "750", "753", "756", "757", "758", "759", "76", "762", "771", "775", "776", "780", "782", "785", "787", "788", "789", "791", "797", "8", "80", "800", "8004", "8005", "8006", "8007", "8008", "8009", "8010", "8012", "8013", "8016", "8017", "8019", "802", "8020", "8021", "8022", "8023", "8025", "8026", "8027", "8028", "8029", "8030", "8032", "8034", "8035", "8036", "8040", "8041", "8044", "8046", "8047", "8048", "8049", "805", "8053", "8056", "8057", "8058", "806", "8060", "8063", "8068", "8069", "807", "8070", "8071", "8073", "8074", "8075", "8076", "8077", "8078", "8079", "8080", "8081", "8082", "8083", "8084", "8085", "8087", "8088", "8089", "8090", "8091", "8092", "8093", "8094", "8095", "8096", "8097", "8098", "8099", "810", "8100", "8101", "8102", "8103", "8104", "8105", "8106", "8107", "8108", "8109", "811", "8110", "8111", "8112", "8113", "8114", "8115", "8116", "8117", "8118", "8119", "8120", "8121", "8122", "8123", "8124", "8125", "8126", "8127", "8128", "8129", "8130", "8131", "8132", "8133", "8134", "8135", "8136", "8137", "8138", "8139", "8140", "8141", "8142", "8143", "8144", "8145", "8146", "8147", "8148", "8149", "8150", "8151", "8152", "8153", "8154", "8155", "8156", "8157", "8158", "8159", "8160", "8161", "8162", "8163", "8164", "8165", "8166", "8167", "8168", "8169", "8170", "8171", "8172", "8173", "8174", "8175", "8176", "8177", "8178", "8179", "8180", "8181", "8182", "8183", "8184", "8185", "8186", "8187", "8188", "8189", "819", "8190", "8191", "8192", "8193", "8194", "8195", "8196", "8197", "8198", "8199", "820", "8200", "8201", "8202", "8203", "8204", "8205", "8206", "8207", "8208", "8209", "821", "8210", "8211", "8212", "8213", "8214", "8215", "8216", "8217", "8218", "8219", "822", "8220", "8221", "8222", "8223", "8224", "8225", "8226", "8227", "8228", "8229", "823", "8230", "8231", "8232", "8233", "8234", "8235", "8236", "8237", "8238", "8239", "824", "8240", "8241", "8242", "8243", "8244", "8245", "8246", "8247", "8248", "8249", "825", "8250", "8251", "8252", "8253", "8254", "8255", "8256", "8257", "8258", "8259", "826", "8260", "8261", "8262", "8263", "8264", "8265", "8266", "8267", "8268", "8269", "827", "8270", "8271", "8272", "8273", "8274", "8275", "8276", "8277", "8278", "8279", "8280", "8281", "8282", "8283", "8284", "8285", "8286", "8287", "8288", "8289", "8290", "8291", "8292", "8293", "8294", "8295", "8296", "8297", "8298", "8299", "83", "830", "8300", "8301", "8302", "8303", "8304", "8305", "8306", "8307", "8308", "8309", "8310", "8311", "8312", "833", "834", "835", "836", "838", "839", "84", "840", "841", "843", "845", "848", "85", "851", "854", "855", "857", "858", "864", "874", "876", "877", "880", "884", "887", "889", "892", "893", "898", "9", "90", "903", "904", "910", "911", "914", "917", "918", "921", "923", "924", "925", "929", "93", "930", "931", "932", "938", "94", "941", "942", "943", "945", "947", "955", "956", "96", "97", "972", "979", "983", "985", "987", "988", "989", "997", "9999" ], "maxLength": 20, "description": "Deviating CBS CLA\n10 = BOUW & INFRA;\n100 = TRANSAVIA AIRLINES GRONDPERSONEEL;\n1009 = REDERIJ T. MULLER B.V.;\n1010 = NOORDGASTRANSPORT B.V.;\n1011 = ATOGLAS NEDERLAND B.V. (V/H ATOHAAS NEDERLAND B.V.;\n1013 = VCK AIR;\n1018 = POLAROID EUROPA EN POLARIOD TRADING V/H POLAROID;\n1021 = BASF COLOR SOLUTIONS NETHERLANDS B.V. ( VH BASF NEDERLAND B.V.);\n1022 = BEROEPSONDERWIJS EN VOLWASSENENEDUCATIE, MBO;\n1024 = ELEMENTIS MINERALS B.V.;\n1027 = DE VOLKSBANK;\n1029 = HANDELSVAART;\n1030 = ALMATIS BV;\n1031 = ALUMINIUM CHEMIE ROTTERDAM;\n1041 = EVERZINC NEDERLAND B.V.;\n1042 = TATE AND LYLE NETHERLANDS B.V.;\n1044 = CNC GRONDSTOFFEN BV;\n1045 = THUISZORG;\n1047 = ATLANTIC CONTAINER LINE EUROPE, ACL;\n105 = NATIONAL STARCH & CHEMICAL;\n1050 = AAR AIRCRAFT COMPONENT SERVICES;\n1052 = SMALS BOUWGRONDSTOFFEN B.V.;\n1054 = KLM CARGO-VLIEGERS;\n1055 = MARTINAIR HOLLAND BOORDWERKTUIGKUNDIGEN;\n1056 = MARTINAIR HOLLAND CABINEPERSONEEL;\n1057 = ALCATEL-LUCENT NEDERLAND B.V. CAO;\n1059 = GEZONDHEIDSDIENSTEN VOOR DIEREN;\n106 = LUXAN BV;\n1060 = NBBU UITZENDKRACHTEN;\n1065 = NU3;\n1067 = PORCELEYNE FLES;\n1069 = ADM EUROPOORT B.V. AEBT;\n107 = KONINKLIJKE EUROMA BV;\n1071 = KLM-VLIEGERS OP VLEUGELVLIEGTUIGEN;\n1075 = FORBO FLOORING B.V.;\n1077 = SCHOEN- EN LEDERWARENINDUSTRIE REG;\n1079 = HES BULK TERMINAL MAASDELTA (HBTM) B.V.;\n1094 = NBBU VASTE MEDEWERKERS UITZENDBUREAUS;\n1095 = SOCIAAL ECONOMISCHE RAAD, SER;\n11 = TICHELAARS KONINKLIJKE MAKKUMER AARDEWERK- EN TEGELFABRIEK;\n1106 = TRAINER/COACHES BETAALD VOETBAL;\n1109 = MENZIES AVIATION GROUP (VH OGDEN);\n1110 = SMIT TAK WIJKPLAATSPERSONEEL MAASSLUIS;\n1111 = CARGILL CACAO;\n1112 = IHD SCHIPHOL SERVICE;\n1115 = FREUDENBERG HOUSEHOLD PRODUCTS;\n1121 = RAIL SERVICE CENTER ROTTERDAM B.V.;\n1123 = LAMB WESTON;\n1125 = VNU VERKOOPGROEP;\n1128 = BIK BOUWPRODUKTEN;\n1132 = HUMAN TOTAL CARE B.V. (VH ARBONED);\n1133 = JAMES HARDIE NETHERLANDS B.V.;\n1137 = REGELING ARBEIDSVOORZIENING ZEESCHEEPVAART RAZ;\n114 = RODENSTOCK BENELUX B.V.;\n1141 = SWECO;\n1142 = HET NOORDEN INGENIEURSBUREAU;\n1144 = MEDICA EUROPE B.V.;\n115 = MARS FOOD EUROPE C.V.;\n1154 = NOVARTIS NUTRITION BENELUX;\n1158 = CENTRALE EXPERTISE DIENST BERGWEG;\n1160 = GRONTMIJ GEOGROEP;\n1165 = RECREATIE;\n117 = RECLASSERING;\n1171 = HONEYWELL FLUORINE PROD. EUROPE BV CAO I V/H ALLIE;\n1172 = HONEYWELL FLUORINE PROD. EUROPE BV CAO II V/H ALLI;\n1178 = GWK TRAVELEX NV ( VH TRAVELEX BANK N.V.);\n118 = BITUMINEUZE EN KUNSTSTOF DAKBEDEKKINGSBEDRIJVEN;\n1180 = KOPPERT BV EN KOPPERT BEHEER BV;\n1183 = APG GROEP CAO;\n1188 = VOORTGEZET ONDERWIJS VO;\n1190 = LICOM;\n1191 = NOORDZEE VEERDIENSTEN (NORTH SEA FERRIES) KANTOORPERSONEEL;\n1192 = CAOP CENTRUM ARBEIDSVERHOUDINGEN;\n1193 = TENTOONSTELLINGSBEDRIJVEN;\n1194 = LUCENT CAO V/H LUCENT CAO A;\n1196 = GRADA B.V.;\n1197 = VRIJGEVESTIGDE FYSIOTHERAPIEPRAKTIJK;\n1198 = WAGENBORG SLEEPDIENST B.V.;\n120 = KLK KOLB SPECIALTIES B.V.;\n1200 = MOVARES NEDERLAND B.V.;\n1201 = BELDEN WIRE & CABLE CAO A;\n1202 = BELDEN WIRE & CABLE CAO B;\n1206 = JONGE GEZINNEN BV VH FELICITAS BV;\n1207 = WATERVOORZIENING HATENBOER NEPTUNUS BV;\n1210 = INCHCAPE TESTING SERVICES (BEAMBTEN);\n1213 = AQUINOS BEDDING NETHERLANDS B.V.;\n1214 = KENNISCENTRA BEROEPSONDERWIJS BEDRIJFSLEVEN ( VH LANDELIJKE ORGANEN BEROEPSONDERWIJS);\n1215 = MAAS INTERNATIONAL B.V.;\n1218 = PIPELIFE NEDERLAND B.V.;\n1221 = FAVINI MEERSSEN B.V. (VH MEERSSEN PAPIER);\n1227 = KLOCKNER PENTAPLAST B.V.;\n1228 = TRAWLVISSERIJ;\n1229 = MARFO B.V.;\n1233 = LOPAREX BV;\n1234 = RENOLIT NEDERLAND BV;\n1236 = DEBIS IT SERVICES BENELUX;\n1238 = INV NYLON CHEMICALS NETHERLANDS B.V.;\n1239 = GENENCOR INTERNATIONAL BV;\n124 = MELK- EN ZUIVELDETAILHANDELSBEDRIJF;\n1246 = TETTERODE NEDERLAND;\n125 = GROENTEN- EN FRUITVERWERKENDE INDUSTRIE;\n1252 = CENTRALE ORGANISATIE VOOR RADIOACTIEF AFVAL (COVRA);\n1258 = DEPRON BV;\n1259 = TRESPA INTERNATIONAL BV EN FACILITIES WETERING BV;\n1261 = KANTOORVAKHANDEL;\n1262 = KPN CORPORATE MARKET B.V. (VH GETRONICS NEDERLAND B.V.);\n1264 = VEILIGHEIDSDOMEIN;\n1266 = HOUSEHOLD AND BODY CARE (VH DOUWE EGBERTS HOUSEHOLD AND BODY);\n1267 = DECS OPERATING;\n1268 = DSM ENGINEERING PLASTICS (EMMEN) B.V. en DSM ADVANCED POLYESTER (EMMEN) B.V.;\n127 = FORBO-NOVILON B.V.;\n1277 = GRONTMIJ BRAVENBOER EN SCHEERS / COMAN;\n1278 = ECOVYST ZEOLITES B.V.;\n128 = ADAPA THE NETHERLANDS LEEK BV;\n1283 = ROTTERDAM-ANTWERPEN PIJPLEIDING (NEDERLAND) NV;\n1285 = TANKSTATIONS EN WASBEDRIJVEN;\n1286 = HTL-DHT B.V.;\n1287 = GRAFIMEDIA;\n1288 = SMURFIT KAPPA SOLID BOARD HOOGKERK B.V. (VH SMURFIT KAPPA DE HALM KARTON);\n1289 = SECTOR RECHTERLIJKE MACHT;\n1291 = NEDERLANDS HORECA GILDE (NHG CAO);\n1293 = DUCOR PETROCHEMICALS B.V.;\n1294 = WERKEN VOOR WATERSCHAPPEN;\n1296 = INFORMATIE-, COMMUNICATIE- EN KANTOORTECHNOLOGIEBRANCHE (ICK);\n1302 = Sigma Coatings B.V. Cao II (vervallen);\n1308 = LA PLACE B.V. (VH VROOM & DREESMANN FOOD);\n1312 = NESTLE PURINA PETCARE NEDERLAND B.V. VH FRISKIES NEDERLAND B.V.;\n1315 = MOSA PORSELEIN NV;\n1318 = NS REIZIGERS;\n1322 = PLUKON POULTRY HOLDING B.V.;\n1328 = P&O NEDLLOYD;\n1329 = POPPIES (BAKERY) NEDERLAND B.V.;\n1335 = SANARO BV V/H NATRENA B.V.;\n1336 = WELKOOP;\n1342 = AXEL CHRISTIERNSSON B.V.;\n1343 = INTERNATIONAL AUTOMOTIVE COMPENENTS IAC;\n1345 = SOCIALE WERKVOORZIENING;\n1347 = SVITZER WIJSMULLER ZEEVAREND PERSONEEL ( VH WIJSMULLER REGLEMENT ZEEVARENDEN);\n1352 = KCA DEUTAG (VH DEUTAG NEDERLAND);\n1353 = SOCIALE VERZEKERINGSBANK;\n1359 = VT PERSONNEL SERVICES VLOOTPERSONEEL;\n136 = HTM CAO;\n137 = TRONOX PIGMENTS (HOLLAND) B.V.;\n1375 = P&O NORTH SEA FERRIES KANTOORPERSONEEL;\n1379 = KEMIRA AGRO ROZENBURG B.V.;\n1380 = HAYS LOGISTIC SERVICES B.V. V/H VAN DER HEIJDEN VA;\n1381 = ETOS DISTRIBUTIE & LOGISTIEK BV / HOOFDKANT- ETOS BV;\n1386 = CINOP;\n1388 = SMIT NEDERLAND B.V. KANTOOR- EN WALPERSONEEL;\n1390 = THEATER (VH NEDERLANDS THEATER);\n1393 = RAILINFRASTRUCTUUR;\n1397 = SOS INTERNATIONAL AMSTERDAM;\n14 = PHILIPS CAO-A (VH PHILIPS BEDRIJVEN A);\n140 = PARKETVLOERENONDERNEMINGEN;\n1404 = SECTOR ONDERWIJS (PRIMAIR ONDERWIJS);\n1405 = MAASTRICHT AACHEN AIRPORT;\n1407 = CHEP BENELUX NEDERLAND BV;\n1408 = LINDE GAS BENELUX B.V.;\n1414 = WET INSCHAKELING WERKZOEKENDE (WIW);\n1415 = ATOS- ORIGIN IN NEDERLAND;\n1417 = ESSITY OPERATIONS HOOGEZAND BV;\n1420 = DIXONS B.V. DYNABYTE B.V. EN DEXCON RETAIL B.V.;\n1424 = ENERGIE- EN NUTSBEDRIJVEN KABEL EN TELECOM SECTOR CAO;\n1425 = FRANS MAAS LOGISTICS NEDERLAND;\n1428 = ECT;\n1429 = REGELING TEWERKSTELLING NIET EU-OFFICIEREN. OP ZEESCHEPEN ONDER NEDERLANDSE VLAG;\n1433 = MELKCONTROLESTATIONS;\n1435 = EDS INTERNATIONAL B.V.;\n1438 = RECHTSBIJSTAND;\n144 = ROYAL FLORAHOLLAND;\n1442 = TOMINGROEP BV;\n1446 = GOUDA VUURVAST OVENBOUW;\n1449 = TREGA INTERNATIONAL BV (V/H SPHINX TEGELS BV);\n145 = ZEEPFABRIEK DALLI DE KLOK;\n1450 = STICHTING VAKOPLEIDING TRANSPORT EN LOGISTIEK;\n1451 = UNIVERSITEIT NYENRODE B.V.;\n1457 = WELLMAN (VOORHEEN WELLMAN PET RESINS EUROPA);\n1458 = LEDERWAREN EN REISARTIKELEN DETAILHANDEL IN-;\n1459 = VERF EN BEHANG DETAILHANDEL IN-;\n1460 = FOTOGRAFISCHE ARTIKELEN DETAILHANDEL IN-;\n1461 = PARFUMERIEARTIKELEN DETAILHANDEL IN-;\n1462 = DIBEVO NPMB-VMN;\n1463 = TABAKSARTIKELEN DETAILHANDEL;\n1464 = JUWELIERSARTIKELEN DETAILHANDEL IN-;\n1469 = FLEXSYS BV;\n1470 = NS SOCIALE EENHEID;\n1471 = ENERGIE- EN NUTSBEDRIJVEN WENB SECTOR CAO GEO PROCES EN SERVICES;\n1475 = STICHTING WAGENINGEN RESEARCH;\n1476 = BIERBROUWERIJ DE LEEUW B.V.;\n1478 = CARGILL BIOINDUSTRIAL B.V.;\n1479 = ALIPHOS ROTTERDAM B.V.;\n148 = GRAANBE- EN VERWERKENDE BEDRIJVEN;\n1480 = BLOEMENVEILING AALSMEER;\n1481 = RENDAC SON B.V. SONAC BURGUM B.V. ECOSON B.V.DARLING INGREDIENTS NEDERLAND B.V.;\n1486 = JOHMA NEDERLAND B.V.;\n1489 = CARWASH & TRUCKWASHBRANCHE EN POETSBEDRIJVEN;\n1490 = CONSUMENTENBOND;\n1494 = PRIMAIR ONDERWIJS;\n1495 = MEDIA MOTION B.V. (V/H CINRAM NEDERLAND B.V.);\n1496 = BAKKERSBEDRIJF;\n1497 = UITVAARTVERZORGING;\n1499 = HORECAPRODUCTEN GROOTHANDEL IN-;\n15 = PHILIPS CAO;\n1504 = BOEKEN- EN TIJDSCHRIFTUITGEVERIJBEDRIJF;\n1506 = PADDESTOELEN;\n1507 = FIRET INTERLININGS;\n151 = TUINBOUWVEILINGEN;\n1512 = ACHMEA B.V.;\n1513 = SLIJPPOL AMSTERDAM B.V.;\n1516 = ANWB FACILITAIR BEDRIJF;\n1517 = ANWB CONCERNAFDELINGEN;\n1518 = ANWB HULPVERLENING;\n1519 = ANWB VERKOOP EN SERVICES;\n152 = BAKSTEENINDUSTRIE, NEDERLANDSE;\n1520 = ANWB UITGEVERIJ, INFORMATIE EN BEWEGWIJZERING;\n1521 = POSTNL CAO VOOR POSTNL;\n1524 = TJOAPACK;\n1525 = KALIBRA INTERNATIONAL B.V.;\n1526 = P. BAKKER HILLEGOM B.V.;\n1528 = KOSA NETHERLANDS B.V.;\n1530 = CF (NETHERLANDS) HOLDING LIMITED B.V. (VH GBC FILMS GROUP EUROPE);\n1531 = VASTGOEDBEDRIJVEN VESTEDA BV;\n1532 = GULPENER BIERBROUWERIJ BV;\n1533 = TRANSAVIA AIRLINES OPROEPKRACHTEN CABINEPERSONEEL;\n1534 = TRANSAVIA AIRLINES CONTRACTENGEBOUW CABINE;\n1535 = ONDERZOEKINSTELLINGEN CAO;\n1536 = NEDERLANDSE UNIVERSITEITEN;\n1537 = OMROEPPERSONEEL;\n1538 = BLUE SKY GROUP;\n1539 = NS STATIONS BV;\n1540 = KPN CAO;\n1541 = FARM FRITES INTERNATIONAL BV;\n1542 = AVIKO B.V.;\n1544 = TWEEWIELERCAO;\n1545 = POSTKANTOREN BV;\n1546 = NS OPLEIDINGEN;\n1547 = BLOEMEN EN PLANTEN GROOTHANDEL IN-;\n1549 = KONINKLIJK CONCERTGEBOUWORKEST VOOR ORKESTLEDEN;\n1550 = VISAFSLAG URK;\n1552 = GEREFORMEERD VOORTGEZET ONDERWIJS;\n1555 = RPC BEBO NED. BV (V/H THOMPACK/AEP RIGID;\n1556 = RIOOLREINIGINGSBEDRIJF VAN DER WEG B.V.;\n1557 = CARGLASS B.V.;\n1558 = IGMA;\n1559 = DIABETESVERENIGING NEDERLAND;\n156 = ZIEKENHUIZEN;\n1563 = TEVA PHARMACHEMIE B.V.;\n157 = ZUIVELINDUSTRIE I;\n1570 = PAPIERFABRIEK SCHUT BV;\n1574 = GEESTELIJKE GEZONDHEIDSZORG (GGZ);\n1576 = BRUNNER MOND B.V. (NETHERLANDS);\n1577 = TONEEL EN DANS;\n1578 = DE OMROEP;\n1579 = STORK NV SOCIAAL KADER;\n158 = CSM SUIKER I;\n1581 = AEDES VERENIGING VAN WONINGCORPORATIES;\n1584 = Ipv Industrial Parc Vlissingen (Vh Hoech) (vervallen);\n1585 = ARBO UNIE;\n1586 = DOSSCHE MILLS B.V.;\n159 = APOLLO TYRES (NL) B.V.;\n1591 = SYNTENS;\n1596 = HARTMAN PRODUKTIE & EVENEMENTENSERVICE BV;\n1597 = SECTOR DEFENSIE;\n1600 = CHROMAFLO TECHNOLOGIES BV (VH EVONIK COLORTREND B.V.);\n1601 = ZOUTWATER CAO;\n1606 = RABOBANK;\n1608 = EIEREN EN EIPRODUCTEN EN DE EIPRODUCTENINDUSTRIE GROOTHANDEL IN-;\n161 = NEDERLANDSE GASUNIE N.V. CAO;\n1610 = GOEDERENVERVOER OVER HET SPOOR;\n1612 = KINDEROPVANG VOOR KINDERCENTRA EN GASTOUDEROPVANG;\n1613 = SOLIDUS SOLUTIONS;\n1616 = EUROP ASSISTANCE NEDERLAND ( VH VHD FACILITAIR BV);\n1618 = UNIVERSITAIRE MEDISCHE CENTRA;\n1619 = NUFFIC;\n162 = SIGARENINDUSTRIE;\n1620 = DIOLEN 1 (V/H ACORDIS CAO 1);\n1621 = DIOLEN 2 (V/H ACORDIS CAO-2);\n1622 = HEYE GLAS NEDERLAND CV;\n1625 = DNV CAO;\n1626 = GIVAUDAN NEDERLAND BV;\n1627 = PINKROCCADE;\n1629 = DETAILHANDEL IN MUZIEKINSTRUMENTEN EN BLADMUZIEK, PIANOSTEMMERS EN PIANOTECHNICI;\n163 = OPENBAAR VERVOER;\n1630 = BRANCHE CAO GEMEENTEN;\n1631 = IMK INTERMEDIAIR B.V.;\n1632 = DICOM NEDERLAND BV;\n1633 = ABN-AMRO;\n1634 = FORTIS BANK NEDERLAND;\n1635 = ING BANK;\n1636 = SECTOR POLITIE;\n1637 = PROVINCIALE SECTOR;\n1639 = DOE-HET-ZELFBRANCHE;\n164 = PRIL BV;\n1640 = MONDI HEERLEN B.V.;\n1641 = STICHTING AMSTERDAMS UIT BURO;\n1642 = PHARMACEUTICAL RESEARCH ASSOCIATIES GROUP;\n1643 = DSM FINE CHEMICALS NETHERLANDS B.V.;\n1644 = TEXTIEL GROOTWINKELBEDRIJVEN;\n1645 = SBB;\n1646 = RIJK CAO;\n1647 = NEDERLANDSE OPERA;\n1648 = NATIONALE OPERA EN BALLET;\n1651 = HEMA;\n1652 = MENZIES WORLD CARGO / FREIGHT EIGHT;\n1653 = GEREFORMEERD PRIMAIR ONDERWIJS;\n1654 = IMPERIAL BRANDS JOURE;\n1656 = NETHERLANDS SCHOOL OF PUBLIC EN OCCUPATIONAL HEALTH (NSPOH);\n1658 = H.VAN WIJNEN B.V.;\n1659 = ING CAO;\n166 = VERBRUGGE TERNEUZEN TERMINALS B.V.;\n1664 = NEDTRAIN;\n1668 = PRAXIS GROEP;\n1669 = PRAXIS HOGER PERSONEEL;\n1671 = THERMPHOS (VH THERMPHOS INTERNATIONAL BV);\n1672 = NS VASTGOED;\n1674 = SPF BEHEER BV;\n1676 = TRANSPORTMAATSCHAPPIJ SCHEFFER B.V.;\n1678 = FRISIA ZOUT BV;\n1681 = FNV-ORGANISATIES, WERKGEVERSVERENIGING;\n1683 = COSCO SHIPPING LINES(NETHERLANDS) BV EN CROSS-OCEAN BV;\n1685 = TIBBETT & BRITTEN B.V.;\n1688 = TCG BV EN DE AAN HAAR GELIEERDE VENNOOTSCHAPPEN;\n169 = WOLTERS KLUWER NEDERLAND;\n1691 = AVIA PARTNER;\n1694 = AFA POLYTEK;\n1695 = MONSTERNEMERS BIJ DE MELKPRODUCTIEREGISTRATIE IN N;\n1696 = STICHTING METRIUM ONDERWIJSDIENSTVERLENING CAO (VH DCO NOORD- EN OOST NL);\n1697 = ALGEMENE ONDERWIJSBOND - FNV PERSONEEL;\n1699 = SNT NEDERLAND;\n170 = FOKUS EXPLOITATIE STICHTING;\n1700 = AMVEST MANAGEMENT B.V.;\n1703 = AV FACILITAIR BEDRIJF V/H CINEVIDEOGROEP EN CAMCO;\n1704 = SHB ROTTERDAM CAO ( VH SAMENWERKENDE HAVENBEDRIJVEN, OPERATIONELE WERKNE);\n1707 = PRISMANT;\n1708 = MAETIS ARBO;\n1709 = TATA STEEL;\n171 = ORSIMA;\n1714 = ARDAGH GLASS BENELUX;\n1715 = ENERGIE EN NUTSBEDRIJVEN SECTOR-CAO DISTRIBUTIE;\n1716 = CLEARWATER CREW BV;\n1719 = ITS CALEB BRETT B.V. KANTOORPERSONEEL;\n1722 = ENERGIE EN NUTSBEDRIJVEN SECTOR-CAO ADVIES;\n1723 = BAYER MATERIALSCIENCE B.V.;\n1725 = COMBISERVICES B.V.;\n1730 = DR. OETKER NEDERLAND BV;\n1731 = REMPLACANTEN NEDERLANDSE ORKESTEN;\n1732 = O-I NETHERLANDS BV EN O-I EUROPEAN GROUP BV;\n1735 = MULTIFUNCTIONELE SPORT EN FITNESSCENTRA;\n1737 = STICHTING OMROEP MUZIEK COLLECTIEVE ARBEIDSOVEREENKOMST;\n1739 = PAYROLL SERVICES B.V. CAO II;\n174 = SECURITAS;\n1745 = P EN O NORTH SEA FERRIES ZEEVAREND PERSONEEL;\n1747 = LANDELIJKE ONDERWIJSVERZORGINGSINSTELLINGEN;\n1752 = VERPLEEG- EN VERZORGINGSHUIZEN ARBEID EN GEZONDHEID;\n1755 = HEMA HOGER PERSONEEL;\n1756 = LYPACK B.V.;\n1759 = EECV (ERTSOVERSLAGBEDRIJF);\n1762 = VOPAK CHEMICAL TANKERS SERVICES B.V.;\n1763 = AVERY DENNISON MATERIALS NEDERLAND B.V.;\n1764 = TEIJIN TWARON B.V. ADDENDUM DELFZIJL;\n1765 = TEIJIN ARAMID;\n1766 = TEIJIN ARAMID CAO-II (VH TEIJIN TWARON CAO-II);\n1769 = ALLIANCE HEALTHCARE B.V. (V/H/ INTERPHARM B.V.);\n1771 = INTERNATIONAL SALES PROMOTION EN HOSPITALITY SERVICES;\n1772 = LWB EINDHOVEN B.V.;\n1774 = TANDARTSASSISTENTEN;\n1777 = LARCOM DIENSTEN B.V.;\n178 = JAARBEURS VERENIGING KONINKLIJKE NEDERLANDSE;\n1783 = STENA LINE STEVEDORING B.V.;\n1787 = VILLEROY & BOCH WELLNESS B.V.;\n1788 = ABAB GROEP B.V.;\n1789 = STICHTING DYADE DIENSTVERLENING;\n179 = TALENS, KONINKLIJKE I;\n1792 = JUMBO CREW SERVICES B.V.;\n18 = MOSA, KONINKLIJKE;\n1806 = VERONICA;\n1809 = (ASSISTENT-) SCHEIDSRECHTERS BETAALD VOETBAL;\n1812 = ORBIS B.V. STICHTING;\n1813 = VOPAK NEDERLAND (VH VOPAK TANKOPSLAG NEDERLAND);\n1814 = Holland Media Groep S.A. (vervallen);\n1815 = TARBIT TANKERS SERVICES B.V. (VH THEODORA TANKER SERVICES B.V.);\n182 = HORECA- EN AANVERWANTE BEDRIJF;\n1821 = SHIPPING & SIGNALLING SERVICES N.V.;\n1827 = BORE NL BRANCHE (BORE LTD) ( VH BORE SHIPOWNERS B.V.);\n1828 = VPK PACKAGING B.V.;\n1829 = SEABREX ROTTERDAM B.V.;\n183 = CURVER B.V. V/H CURVER RUBBERMAID;\n1838 = HUTCHISON PORTS DELTA II;\n184 = CURTEC NEDERLAND;\n1840 = KATWIJK CHEMIE B.V.;\n1841 = BLOEMBOLLEN, GROOTHANDEL IN-;\n1848 = CURIUM NETHERLANDS B.V.;\n1849 = UITVOERINGSINSTITUUT WERKNEMERSVERZEKERINGEN (UWV);\n185 = DSM GIST SERVICES B.V. V/H GISTBROCADES;\n1852 = SGS NEDERLAND B.V. BUSINESS LINE OGC VOOR HET BUITENDIENST- EN LABORATORIUMPERSONEEL;\n1854 = PFIZER GLOBAL MANUFACTURING (PGM) WEESP ( VH FORT DODGE ANIMAL HEALTH);\n1855 = KLIQ;\n1856 = KIJKSHOP BV;\n1858 = FLEXTRONICS INTERNATIONAL EUROPE B.V.;\n1861 = SCHOUWBURGCOMPLEX GOUDA, STICHTING;\n1869 = GLASTUINBOUW;\n187 = BOS- EN NATUUR RAAM-CAO;\n1873 = INSTITUUT SCHOEVERS B.V.;\n1878 = ONS MIDDELBAAR ONDERWIJS;\n1879 = IMPERIAL TOBACCO NEDERLAND;\n1881 = ENERGIE EN NUTSBEDRIJVEN SECTOR CAO-PRODUKTIE;\n1885 = UNIVERSAL MUSIC B.V.;\n1886 = ROTTERDAM SHORTSEA TERMINALS BV (RST);\n1887 = GEZAGVERVOERDERS RECHTSPOSITIEREGELING;\n1888 = DFDS SEAWAYS B.V.;\n1889 = APOTEX NEDERLAND B.V.;\n1893 = ARBODUO BV;\n1894 = ROLL-ON-ROLL-OFF BEDRIJVEN;\n1895 = SMURFIT WESTROCK PARENCO;\n1896 = ONDERTITELVERTALING (FREELANCE);\n1897 = VOLKER WESSELS TELECOM B.V. (VH VOLKER WESSELS NETWERK BOUW B.V.);\n190 = DRANKINDUSTRIE EN GROOTHANDEL IN DRANKEN;\n1900 = ASR NEDERLAND N.V. CAO WINSTDELING (VH FORTIS VERZEKERINGEN NEDERLAND N.V. WINSTDELINGSREGELING);\n1901 = FORTIS VERZEKERINGEN NEDERLAND N.V. KEUZESYSTEEM ARBEIDSDUUR EN ARBEIDSVOORWAARDEN;\n1902 = ASR NEDERLAND N.V. FUNCTIE-INDELING EN BELONINGSSTRUCTUUR BINNENDIENST;\n1905 = STRUIK HOLDING N.V. EN STRUIK FOODS B.V.;\n1907 = VHP SECURITY PAPER B.V.;\n1910 = VINAMUL POLYMERS;\n1912 = SYNTHOMER MIDDELBURG B.V.;\n1915 = DHL LOGISTICS NEDERLAND;\n1918 = ESSITY OPERATIONS GENNEP B.V.;\n1926 = PGI NONWOVENS CAO;\n1927 = RDW;\n1928 = PGI NONWOVENS CAO II;\n1929 = A. SCHULMAN 'S-GRAVENDEEL BV;\n193 = SENZORA;\n1931 = PLASTIROL BV;\n1932 = MAJA STUWADOORSGROEP B.V.;\n1936 = ALGEMENE VERPAKKINGS INDUSTRIE B.V.;\n1941 = MAXEDA IT SERVICES B.V. ( VH VENDEX KBB IT SERVICES B.V.);\n1944 = OPEN TEELTEN;\n1945 = PRODUCTIEGERICHTE DIERHOUDERIJ;\n1951 = GENPACT NL BV;\n1953 = TERSCHELLINGER STOOMBOOT MAATSCHAPPIJ;\n1954 = NOORDT, VAN DER, PERSONEELSDIENSTEN;\n1955 = NOORDT, VAN DER, PAYROLLING BASIC;\n1956 = NOORDT, VAN DER, PROJECT PAYROLLING;\n1957 = NOORDT, VAN DER, PAYROLLING PLUS;\n1959 = KONINKLIJK CONCERTGEBOUWORKEST VOOR STAFLEDEN;\n1964 = PLEASE BV;\n1967 = BASELL BENELUX;\n197 = SUIKERWERK- EN CHOCOLADEVERWERKENDE INDUSTRIE;\n1971 = SNV EU EXPAT ( VH SNV EU EXPAT 2003);\n1973 = SNV NL;\n1974 = UNIE VAN DE REDDING- EN SLEEPDIENST NEDERLAND BV;\n1976 = CHAMPIGNONKWEKERIJ CHAMPIBELLE BV;\n1977 = VROON OFFSHORE SERVICES B.V.;\n1980 = MENKEN DRINKS BV ONDERDEEL VAN REFRESCO BENELUX BV;\n1983 = HILTON MEATS ZAANDAM B.V.;\n1988 = CHC CAO VOOR GRONDPERSONEEL;\n1989 = DNB CAO;\n199 = VLAKGLAS, GLASBEWERKINGS- EN GLAZENIERSBEDRIJF, GROOTHANDEL IN-;\n1990 = CHC HELICOPTERS NETHERLANDS B.V. - OVN (VH CHC AIRWAYS B.V. CAO (OVN));\n1991 = SCHOENTECHNIEK;\n1993 = EWAGRO BV EN AGERLAND TE VEGHEL;\n1994 = HEUVELMAN SOUND EN VISION B.V.;\n1995 = CENTRUM VOOR WERK EN INKOMEN (CWI);\n1998 = FACTOR TRAININGSACTEURS BV;\n20 = GOEDERENVERVOER NEDERLAND;\n2001 = ABBOT HEALTHCARE PRODUCTS B.V.;\n2002 = KUYICHI INTERNATIONAL BV;\n2003 = BEDRIJFSPROTOCOL DISTRIBUTIE ESSENT N.V.;\n2005 = VOORTGEZET ONDERWIJS KATHOLIEK ONDERWIJS VOLENDAM, STICHTING;\n2008 = DYKA AANVULLENDE AFSPRAKEN ARBEIDSVOORWAARDEN;\n2011 = PEKO BEHEER B.V.;\n2018 = PUBLIEKRECHTELIJKE BEDRIJFSORGANISATIE;\n2019 = LEKKERLAND VENDING SERVICES B.V. (V/H/ MAAS SERVICES B.V.);\n2020 = CNV BEDRIJVENBOND ( VH CAO-CNV);\n2023 = VGSB-SCHOLEN;\n2024 = LOODSWEZEN B.V. NEDERLANDS;\n2025 = POST NL CAO VOOR POSTBEZORGERS;\n2026 = EXEL FREIGHT MANAGEMENT (NETHERLANDS) B.V.;\n2027 = KISUMA CHEMICALS B.V.;\n2028 = SABIC LIMBURG B.V.;\n2029 = OLLY S HOLDING BV, OLLY S BV, OILILY STORES BV;\n2034 = PERSONEEL VAN DE ST-JOZEFSCHOOL VOOR MAVO;\n2036 = BIOMERIEUX BOXTEL;\n2043 = BLUE AMIGO WATERBORNE PUBLIC TRANSPORT NETHERLANDS B.V.;\n2044 = HOMESHOPPING BEDRIJVEN (VH VERENIGING POSTORDERSPECIFIEKE BEDRIJVEN);\n2045 = DELTA LLOYD GROEP;\n2046 = CNV PUBLIEKE ZAAK;\n2047 = COMPAGNIE DE MANUTENTION ROTTERDAM B.V. (CDMR);\n2048 = MILITAIR-HISTORISCH MUSEUM, STICHTING REGLEMENT ARBEIDSVOORWAARDEN;\n2050 = MULTIMODAAL VERVOER;\n2053 = FA DE HOOP WEGTRANSPORT;\n2054 = ADO BV ALMERE DISTRIBUTIE EN OPSLAG;\n2055 = GRANDO LOGISTICS;\n2056 = DE JONG GAMEREN B.V.;\n2057 = B.A.M. VERMEER TRANSPORT B.V.;\n2058 = GETRU KOELTRANSPORT B.V.;\n2059 = VAN VLASTUIN AGRO B.V.;\n206 = ZIEGLER;\n2060 = BENELUX COURIERS B.V.;\n2061 = W. KUIJF TRANSPORT B.V.;\n2062 = VAN WIJNGEN TRANSPORT B.V.;\n2063 = TRANSPORT EN LOGISTICTS P. V. D. MAAT B.V.;\n2065 = PS PAKKET EN TRANSPORT BV;\n2066 = SKYLINE EXPRESS;\n2067 = STEIJNS TRANSPORT BV;\n2068 = NIGHTFREIGHT BENELUX B.V.;\n2069 = TRAMO N.V.;\n2070 = FACILITAIRE CONTACTCENTERS;\n2071 = SAINT-GOBAIN CONSTRUCTION PRODUCTS NEDERLAND B.V.;\n2072 = ENERGIE NUTSBEDRIJF N.V. HAARLEMMERMEER;\n2075 = VAN WANROOY SNELTRANSPORT B.V.;\n2076 = HTS TRANSPORT CV;\n2077 = ENERGIE EN NUTSBEDRIJVEN WESTLAND ENERGIE BEHEER B.V.;\n2078 = ENERGIE EN NUTSBEDRIJVEN INTERGAS B.V.;\n2079 = ENERGIE EN NUTSBEDRIJVEN ONS GROEP;\n2081 = ETOS DROGISTERIJEN;\n2085 = POSTMA INTERNATIONAAL TRANSPORT BV;\n2086 = KAATEE TRANSPORT B.V.;\n2087 = KALE BV;\n2089 = STICHTING CARMELCOLLEGE;\n209 = CODI INTERNATIONAL;\n2090 = DELE XL B.V;\n2092 = ZON;\n2093 = YOUNGS INTERNATIONAL TRANSPORTB.V. F.P.;\n2094 = SCANDIXPRESS B.V.;\n2095 = TILBURG HOLDING B.V., VAN;\n2096 = EURO COURIER, DE;\n2097 = TRANSCOMP V.O.F.;\n2099 = AIR LIQUIDE INDUSTRIE B.V. (VH AIR LIQUIDE - EINDHOVEN);\n21 = BEROEPSGOEDERENVERVOER OVER DE WEG;\n2105 = VAN UDEN STEVEDORING B.V.;\n2106 = CHANE TERMINALS;\n2108 = GREENCORE V/H HAZLEWOOD;\n2113 = WIAL;\n2114 = VERENIGDE BEDRIJVEN VANDERVALK+DE GROOT B.V.;\n2123 = VOEDINGSCENTRUM NEDERLAND STICHTING;\n2124 = ONSTREAM PROJECT SERVICES B.V.;\n2126 = DUIZENDPOOT STICHTING;\n2131 = PQ NEDERLAND;\n2133 = Pensioen- & Verzekeringskamer Stichting (vervallen);\n2136 = VEROCOG;\n214 = BIBLIOTHEKEN, OPENBARE;\n2140 = HEXION VAD B.V.;\n2141 = HAVENBEDRIJF ROTTERDAM;\n2143 = NEDERLANDSE PODIA;\n2146 = BRINFLEX B.V.;\n2154 = INTERPOLIS MENS & WERK BEDRIJFSZORG N.V.;\n2155 = DEKRA RAIL BV;\n2158 = NEDERLANDS KAMERKOOR;\n216 = PPG COATINGS NEDERLAND B.V.;\n2161 = PRORAIL;\n2164 = PURAC GLUCOCHEM B.V.;\n2165 = SIGNBEDRIJVEN;\n2167 = M&S CAO HP;\n2169 = TOEZICHTHOUDERS;\n2173 = BURGER NEDERLAND;\n2174 = LUCENT TECHNOLOGIES NEDERLAND B.V.;\n2175 = STICHTING CLINICLOWNS NEDERLAND;\n2176 = BORDEN CHEMICAL HOLLAND;\n218 = BESLOTEN BUSVERVOER;\n2180 = SFB GROEP;\n2181 = AZL N.V.;\n2184 = SIEMENS VDO TRADING B.V.;\n219 = GEZONDHEIDSCENTRA;\n2192 = BURO WITTENBURG BV;\n2194 = INCLUSIEF GROEP NV;\n2195 = HTC BV;\n22 = BASF NEDERLAND;\n2200 = PANTEIA;\n221 = ETEX BUILDING PERFORMANCE;\n222 = QUEST INTERNATIONAL NEDERLAND;\n224 = CANON CAO;\n225 = VOPAK BARGING EUROPE;\n2252 = VISVERWERKENDE INDUSTRIE EN HANDEL;\n2260 = ORION TAXI BV;\n2262 = DOCKWISE BV;\n2266 = VISDETAILHANDEL;\n2269 = BERGINGS- EN TRANSPORTMIJ (BTS);\n227 = WEEFSELKWEEKSECTOR;\n2272 = GELUIDS- EN BEELDDRAGERS SAMENWERKENDE WINKELS EN KETENS;\n2273 = KLAPWIJK/RAPIDE HAVEN- EN TRANSPORTBEDRIJF B.V.;\n2274 = MINI MOVE MAATSCHAPPIJ BV;\n2275 = LOGISTIEKE MEESTERS BV;\n2276 = TENTOO COLLECTIVE FREELANCE & FLEX B.V.;\n228 = JOURNALISTEN BIJ ASSOCIATED PRESS;\n2280 = PROFCORE DETACHEREN;\n2284 = OORDT PORTIONPACK B.V. VAN;\n2285 = VANDIJK CAO (VH THE LEARNING NETWORK);\n229 = Gelatin Delft (vervallen);\n2291 = POPPINK (CAO POPPINK);\n2295 = FORTIS VERZEKERINGEN NEDERLAND N.V. BELONINGSREGELING BUITENDIENST;\n2296 = VAN DER NOORDT PAYROLLING;\n2297 = M EN T TECHNISCH INSTALLATIEBEDRIJF;\n2299 = REFORMATORISCH PRIMAIR ONDERWIJS;\n23 = ICL FERTILIZER EUROPE BV;\n2301 = FORTIS VERZEKERINGEN NEDERLAND N.V BELONINGSREGELING MANAGEMENT BUITENDIENST;\n2302 = DSM PHARMA CHEMICALS VENLO B.V.;\n2304 = KROPFELD TRANSPORT EMMEN;\n2305 = SYSTEEM DISTRIBUTIE GROEP NEDERLAND BV;\n2306 = THE NUANCE GROUP NETHERLANDS BV;\n2307 = VERMO;\n2308 = INTERGOM PERSONEELSVOORZIENING;\n2310 = NEDERLANDSE RODE KRUIS;\n2311 = DIERENTEHUIS DEN HELDER;\n2314 = REIS & BUS BROKER BV;\n2315 = ELBO TOURS BV;\n2316 = DIVERSEY NEDERLAND;\n2318 = NEDERLANDSE ALGEMENE KEURINGSDIENST VOOR ZAAIGOED EN POOTGROND V LANDBOUWGEWASSEN (NAK);\n2321 = DIERENASIELEN;\n2323 = APM TERMINALS ROTTERDAM B.V. VOOR TERMINAL OPERATORS, GATE-INSPECTORS EN MECHANICS;\n2324 = ATRADIUS NEDERLAND;\n2328 = INTERNATIONAAL TRANSPORTBEDRIJF DE HAAN VROOMSHOOP BV;\n2329 = W. SLEEGERS INTERNATIONAAL VEETRANSPORT BV EN W. SLEEGERS VEETRANSPORT BV;\n233 = HOUTHANDEL;\n2330 = MOSTERT & VAN DE WEG BV;\n2332 = VERBRUGGE ZEELAND TERMINALS BV;\n2334 = ACTIEV;\n234 = JEUGDZORG;\n2341 = THE PHONE HOUSE;\n2343 = A. VOGEL B.V.;\n2347 = HFP OFFSHORE;\n2348 = HANDELSONDERNEMING MIN BV;\n2350 = RADIO HOLLAND NETHERLANDS;\n2353 = MARKO B.V.;\n2354 = NAUTISCHE CAO SWETS ODV MARITIEM;\n2359 = DOCMORRIS NV;\n2362 = ADIDAS LOGISTIC SERVICES MOERDIJK MAASVLAKTE;\n2365 = AVEBE HOGER PERSONEEL;\n2368 = BUNGE LODERS CROKLAAN B.V.;\n2369 = CAMPINA NEDERLAND HOLDING B.V. inzake overeenkomst inzet van arbeid binnen holding;\n237 = SAPPI NETHERLANDS B.V.;\n2370 = UNIQ;\n2378 = AC-S AGERLAND BV;\n2379 = RANN B.V.;\n2380 = SMARTHANDLING;\n2384 = COTRANS TRANSPORT BV;\n2385 = MAECON GROEP B.V.;\n2389 = SONNEBORN REFINED PRODUCTS B.V.;\n239 = AVANTOR PERFORMANCE MATERIALS BV;\n24 = STAHL HOLLAND;\n2403 = VLISSINGSE BOOTLIEDENWACHT B.V.;\n2404 = CIZ;\n2407 = ELECTRABEL NEDERLAND SALES B.V.;\n2408 = TECHNOTEX INDUSTRIAL SUPPLY B.V.;\n241 = GLASFABRIEK \"SAS VAN GENT\";\n2411 = NORTH REFINERY REFINING AND TRADING HOLLAND NV;\n2414 = FICO MOLDING SYSTEMS B.V. EN FICO TOOLING B.V.;\n2416 = THYSSENKRUPP VEERHAVEN B.V. BISON;\n2417 = HONIG MERKARTIKELEN B.V.;\n242 = SCHIPHOL NEDERLAND B.V.;\n2424 = NUFARM B.V.;\n2425 = BRANCHE KINDEROPVANG NEDERLAND;\n2426 = ROYAL LEERDAM;\n243 = HOVENIERSBEDRIJF IN NEDERLAND;\n2431 = KIWA NV ADVIES CAO;\n2435 = SAMCO AIRCRAFT MAINTENANCE B.V.;\n2437 = KRINGLOOP NEDERLAND;\n2439 = ARBEIDSBEMIDDELING BUITENLANDSE WERKNEMERS IN NEDERLAND;\n2440 = CAMPBELLS NETHERLANDS BV;\n2442 = SMINK COLLECTIEVE ARBEIDSOVEREENKOMST;\n2443 = ALTRO VIA LOGIN KOERIERBEDRIJVEN;\n2444 = ALTRO VIA LOGIN TRANSPORTONDERNEMINGEN;\n2449 = DPA PROFESSIONALS;\n245 = TUINZAADBEDRIJVEN;\n2451 = DAGRECREATIE;\n2455 = OSG CAO (VH ONDERWIJS SERVICE GROEP);\n2457 = NOZEMA SERVICES N.V.;\n2458 = BERKEL MILIEU N.V.;\n2462 = ROC FRIESE POORT STICHTING CENTRUM VAKOPLEIDING;\n2465 = DUTCH SPACE CONVENANT VAN WERK NAAR WERK;\n2467 = BOERTIEN TRAINING;\n2468 = SBOH CAO;\n247 = TRANSAVIA CABINEPERSONEEL;\n2474 = UNIROBE MEEUS GROEP CAO;\n2479 = ATAG ETNA PELGRIM HOME PRODUCTS B.V.;\n2488 = COMPAXO;\n2489 = AMBULANCEZORG VERENIGING WERKGEVERS;\n249 = DAGBLADJOURNALISTEN;\n2491 = ROKADE;\n2492 = PENO NEDLLOYD KANTOORPERSONEEL;\n2493 = GOLF BRANCHE;\n2496 = ETNA VENDING TECHNOLOGIES B.V.;\n2499 = SUIKER UNIE 1;\n2500 = SUIKER UNIE II;\n2502 = CLA T-SYSTEMS NETHERLANDS;\n2509 = ARKEMA ROTTERDAM B.V.;\n2511 = VTM QUALITY SERVICES BV.;\n2513 = KLM FLIGHT ACADEMY TE EELDE COLLECTIEVE ARBEIDSOVEREENKOMST;\n2515 = AJAX BRANDBEVEILIGING B.V.;\n2519 = EPZ CAO;\n2520 = HUISARTS IN DIENST BIJ EEN HUISARTS HIDHA;\n2527 = RAET;\n253 = HOUTVERWERKENDE INDUSTRIE;\n2534 = NV. WESTERSCHELDETUNNEL;\n2535 = MODE-, INTERIEUR-, TAPIJT- EN TEXTIELINDUSTRIE;\n2538 = CELANESE PRODUCTION NETHERLANDS BV;\n2539 = NOORDELIJKE ACCOUNTANTSUNIE;\n254 = AFBOUW;\n2540 = MEDIA EXPRESSE NEDERLAND B.V.;\n2541 = KENNAMETAL ENGINEERED PRODUCTS B.V.;\n2545 = ERICSSON TELECOMMUNICATIE B.V.;\n2549 = STENA LINE KANTOORPERSONEEL;\n2551 = SANQUIN CAO;\n2553 = RTL NEDERLAND;\n2554 = OVERSLAGBEDRIJF (EMO) B.V. OPERATIONEEL;\n2555 = TWENTE PERSONENVERVOER;\n2557 = HUISVESTING EN SHARED SERVICES ONDERWIJSBOND CNV CNV BEDRIJVENB...;\n2559 = TOURINGCAR- EN TAXIBEDRIJF VAN GERWEN B.V.;\n2560 = ZTTC BV PERSONENVERVOER;\n2561 = JOJO TOURS BV;\n2566 = VAN SILLEVOLDT RIJST B.V.;\n257 = WAGENBORG PASSAGIERSDIENSTEN;\n2571 = KAPPERSBEDRIJF AGESLOTEN TUSSEN PARTIJEN FUSION EN VPP CMHF;\n2577 = DENIM AIR B.V.;\n2580 = STICHTING TONEELGEZELSCHAP MONK;\n2584 = ABALCO SERVICE BV;\n2586 = NORFOLKLINE BEAMBTEN;\n2587 = RATIOPHARM BV;\n259 = TRIOWORLD APELDOORN B.V.;\n2594 = JOHN T. ESSBERGER B.V. (VH BROERE SHIPPING SERVICES BV);\n26 = VLEESSECTOR;\n2600 = OBD CAO 2004;\n2601 = DSM BIOLOGICS COMPANY B.V.;\n2610 = EQUENSWORLDLINE CAO;\n2611 = HUNTSMAN HOLLAND B.V.;\n2612 = STICHTING NATIONALE REISOPERA;\n2617 = STICHTING STEDELIJK MUSEUM AMSTERDAM SSMA;\n2618 = FREUDENBERG PERFORMANCE MATERIALS B.V.;\n2621 = HAL BEHEER B.V.;\n2624 = COLBOND B.V. CAO 2;\n263 = ROCKWOOL CAO;\n2630 = AMBULANTE DETAILHANDEL;\n2642 = FREMANTLE MEDIA NETHERLANDS BV;\n2645 = VESTEDA GROEP B.V.;\n2647 = CHRISTELIJK NATIONAAL VAKVERBOND;\n2648 = UW HOLDING B.V.;\n265 = TRANSAVIA AIRLINES VLIEGERS;\n2651 = KPN CONTACT EN SNT NIEUW CAO;\n266 = NIZO FOOD RESEARCH;\n2668 = STICHTING GREENPEACE COUNCIL;\n267 = DIERENPARKEN NEDERLAND;\n2672 = ALDIPRESS;\n2674 = DIERENARTSPRAKTIJKEN (DIERENARTSASSISTENTEN);\n2678 = NEDERLANDS INSTITUUT VOOR BEELD EN GELUID;\n2679 = VOESTALPINE POLYNORM B.V.;\n268 = GRAFISCHE BEDRIJFSFONDSEN, STICHTING;\n2683 = ABN AMRO HYPOTHEKEN GROEP B.V.;\n2687 = HOME BASE SUPPORT APELDOORN (VH KONINKLIJKE NEDERLANDSE MILITAIRE BOND PRO REGELING);\n2688 = FERRO (HOLLAND) BV (UDEN);\n269 = SYNPRODO PRODUKTIE B.V.;\n2693 = PAYROLL ONDERNEMINGEN - CAO VOOR MEDEWERKERS VAN;\n2694 = EUROLINES NEDERLAND B.V.;\n27 = MORTEL- EN MORTELTRANSPORTONDERNEMINGEN;\n2700 = ALPAS HENDRION B.V.;\n2702 = CHC HELICOPTERS NETHERLANDS - VNV (VH CHC AIRWAYS B.V.);\n271 = MARTINAIR HOLLAND GRONDPERSONEEL;\n2711 = CED HOLDING EN HAAR WERKMAATSCHAPPIJEN;\n2719 = NOVIO N.V. cao;\n272 = MAERSK SHIP MANAGEMENT BV REGLEMENT OFFICIEREN EN SCHEEPSGEZELLEN;\n2722 = RUBBER RESOURCES B.V.;\n2724 = GRONINGEN AIRPORT EELDE NV.;\n2731 = DS SMITH PACKAGING NETHERLANDS BV;\n2736 = MENZIES AVIATION THE NETHERLANDS B.V.;\n2737 = SERVISAIR AMSTERDAM B.V.;\n2742 = UITZENDKRACHTEN NVUB;\n2745 = F EN C NETHERLANDS B.V.;\n2746 = DAGATTRACTIEBEDRIJF CAO;\n275 = XEROX MANUFACTURING NEDERLAND B.V.;\n2750 = VAROVA B.V.;\n2754 = NV. AFVALZORG TOELICHTINGSPROTOCOL CAO AFVAL EN MILIEU;\n2756 = GELDNET SERVICES B.V. 2002-2004;\n2761 = SMURFIT KAPPA HERMES N.V.;\n2765 = GUNVOR ENERGY ROTTERDAM B.V.;\n2767 = SAXION HOGESCHOLEN;\n2768 = INTERTEK POLYCHEMLAB;\n2769 = ESKA BV;\n2772 = UNIVERSAL SODEXHO THE NETHERLANDS B.V.;\n2773 = DIRKZWAGER'S COASTAL AND DEEP SEA PILOTAGE B.V.;\n2775 = SMIT BEVOORRADINGSVAART;\n2776 = SMIT ZEESLEEPVAART;\n2777 = VEEM EN FACTORGROEP;\n2778 = STATE STREET BANK EUROPE LIMITED AMSTERDAM BRANCHE (VH SSBT);\n2780 = IPC GROENE RUIMTE B.V. 2007-2008;\n2787 = UNIPORT MULTIPURPOSE TERMINALS B.V.;\n279 = GEMAKSVOEDINGINDUSTRIE;\n2790 = STICHTING PTC PLUS;\n2791 = SAIT B.V. (VH SAIT ZENITEL NETHERLANDS B.V.);\n2793 = VERVOERSTEAM B.V. LOSSER;\n2797 = VATTENFALL BEDRIJFS-CAO;\n2799 = AERES GROEP;\n28 = AUDAX;\n2804 = STATER N.V.;\n2811 = HORTICOOP B.V.;\n2814 = SCHIPHOL AIRPORT RETAIL BV;\n2816 = PAPYRUS B.V.;\n2820 = SVITZER OCEAN TOWAGE CAO;\n2821 = ZEEHAVENBEDRIJF DORDRECHT B.V.;\n2822 = DHL EXPRESS NEDERLAND;\n2825 = BNR NIEUWSRADIO;\n2833 = PRENATAL;\n2841 = RET NV CAO;\n2842 = GBI HOLDING BV;\n2847 = INTERTASTE B.V.;\n2848 = CELAVITA B.V.;\n2851 = ARDENT MARITIME NETHERLANDS BV;\n2852 = ARDYN BV;\n2854 = GROUP 4 SECURICOR AVIATION SECURITY B.V.;\n2855 = ARGONAUT ADVIES;\n2856 = PROMELCA B.V.;\n2857 = DOORWERK;\n2859 = INVISTA POLYESTER B.V.;\n2861 = NXP CAO;\n2862 = NXP CAO-A;\n2863 = KEMIRA POLYMERS MANUFACTURING B.V. EN KEMIRA WATER SOLUTIONS B....;\n2864 = MAERSK LINE NETHERLANDS (VH MAERSK BENELUX B.V.);\n2865 = ASR NEDERLAND NV FUNCTIE-INDELING EN BELONINGSSTRUCTUUR BUITENDIENST;\n2866 = RAILINFRA OPLEIDINGEN;\n2867 = ESHA GROUP B.V.;\n2868 = ORGANON BIOSCIENCES NEDERLAND HOGER PERSONEEL;\n2870 = MAXEDA HOLDING;\n2872 = ONDERWIJSADVIESBUREAUS CAO;\n2875 = RIXONA B.V.;\n2878 = ENERGIE CAO;\n2880 = GB PLANGE THE NETHERLANDS B.V.;\n2881 = GVB;\n2884 = KERRY (NL) B.V.;\n2892 = KPN CONTACT;\n2894 = WEBHELP NEDERLAND CAO;\n2895 = NEP BROADCAST SERVICES B.V. EN NEP PROGRAPHICS B.V. (VH DUTCHVIEW BV CAO);\n2896 = QLIP N.V.;\n2898 = WERKGEVERSVERENIGING ADVIESORGANISATIE VOOR ONDERWIJS EN JEUGD;\n29 = DR. OETKER KOOG B.V. ( VOORHEEN HONIG MERKARTIKELEN);\n2900 = P EN O NORTH SEA FERRIES OPERATIONEEL PERSONEEL;\n2903 = DE DIENSTEN CAO;\n2907 = MARINE HARVEST STERK B.V.;\n2908 = 8TIENK SECTOR ONDERWIJS EN OVERHEID B.V.;\n2910 = BELLEVU;\n2911 = LASSIE B.V.;\n2914 = HOCHWALD NEDERLAND B.V.;\n2917 = DRAKA POLYMER FILMS (VH ALKOR DRAKA B.V.);\n2918 = COOPERATIEVE FRUITMASTERS GROEP U.A.;\n2919 = SMIT HARBOUR TOWAGE ROTTERDAM B.V.;\n2921 = BIO MCN B.V.;\n2928 = ALLNEX NETHERLANDS B.V.;\n2931 = ENECO BEDRIJFSPROTOCOL 2008;\n2932 = KETJEN NETHERLANDS;\n2933 = GERESERVEERD;\n2934 = STICHTING ONDERSTEUNING TWEEDE KAMERFRACTIE PARTIJ V.D. ARBEID;\n2935 = TYSON FOODS OOSTERWOLDE B.V.;\n2936 = GERESERVEERD;\n2937 = GERESERVEERD;\n2938 = AB MAURI;\n2939 = SCA LOGISTICS BV (VH INTERFOREST TERMINAL ROTTERDAM B.V.);\n2940 = HAAGSE HOGESCHOOL UITVOERINGSREGELING RESULTAAT EN ONTWIKKELING;\n2941 = GERESERVEERD;\n2942 = SMART PACKAGING SOLUTIONS;\n2943 = GERESERVEERD;\n2944 = GERESERVEERD;\n2945 = RGV Holding B.V.;\n2946 = GERESERVEERD;\n2947 = CROW;\n2948 = VERPLEEG- VERZORGINGSHUIZEN EN THUISZORG EN JEUGDGEZONDHEIDSZORG;\n2949 = GERESERVEERD;\n2950 = GERESERVEERD;\n2951 = GERESERVEERD;\n2952 = GERESERVEERD;\n2953 = GERESERVEERD;\n2954 = RANDSTAD GROEP NEDERLAND AKKOORD BEEINDIGING HERPLAATSINGSKADER 21 APRIL 2009;\n2955 = GERESERVEERD;\n2956 = GERESERVEERD;\n2957 = GERESERVEERD;\n2958 = LONGFONDS EN PATIËNTENORGANISATIE STICHTING CAO;\n2959 = GERESERVEERD;\n2960 = GERESERVEERD;\n2961 = GERESERVEERD;\n2962 = DUYVIS PRODUCTIE BV;\n2963 = GERESERVEERD;\n2964 = GERESERVEERD;\n2965 = GERESERVEERD;\n2966 = GERESERVEERD;\n2967 = GERESERVEERD;\n2968 = GERESERVEERD;\n2969 = GASTERRA;\n2970 = GERESERVEERD;\n2971 = GERESERVEERD;\n2972 = MOOG BV (VH MOOG FCS);\n2973 = GERESERVEERD;\n2974 = GERESERVEERD;\n2975 = GERESERVEERD;\n2976 = GERESERVEERD;\n2977 = GERESERVEERD;\n2978 = DUTCH COCOA B.V.;\n2979 = GERESERVEERD;\n2980 = GERESERVEERD;\n2981 = GERESERVEERD;\n2982 = CEVA LOGISTICS NEDERLAND;\n2983 = GERESERVEERD;\n2984 = GERESERVEERD;\n2985 = GERESERVEERD;\n2986 = GERESERVEERD;\n2987 = GERESERVEERD;\n2988 = AEGON NEDERLAND NV;\n2989 = GERESERVEERD;\n2990 = GERESERVEERD;\n2991 = GERESERVEERD;\n2992 = GERESERVEERD;\n2993 = GERESERVEERD;\n2994 = NEDERLANDSE POPPODIA EN -FESTIVALS;\n2995 = CNV DIENSTENBOND WERKNEMERS IN DIENST VAN;\n2996 = FORTIS CORPORATE INSURANCE;\n2997 = GERESERVEERD;\n2998 = KRAMER TERMINALS SERVICES BV (VH KRAMER GROUP B.V.);\n2999 = RICARDO NEDERLAND BV RICARDO CERTIFICATION BV;\n30 = START (EIGEN PERSONEEL);\n300 = CHEMGAS SHIPPING B.V.;\n3000 = GERESERVEERD;\n3001 = GERESERVEERD;\n3002 = GERESERVEERD;\n3003 = GERESERVEERD;\n3004 = RABO BOUWFONDS;\n3005 = V EN D B.V. CAO (VH VROOM EN DREESMANN B.V.);\n3006 = DS SMITH PACKAGING BARNEVELD BV;\n3007 = GERESERVEERD;\n3008 = GERESERVEERD;\n3009 = CAR B4;\n301 = WELZIJN MAATSCHAPPELIJKE DIENSTVERLENING SOCIAAL WERK;\n3010 = ONDERWIJSBUREAU TWENTE;\n3011 = GERESERVEERD;\n3012 = GERESERVEERD;\n3013 = GERESERVEERD;\n3014 = DISHMAN NETHERLANDS B.V.;\n3015 = ROTTERDAM PORT SERVICES B.V.;\n3016 = EAM WERK B.V.;\n3017 = GERESERVEERD;\n3018 = GERESERVEERD;\n3019 = GERESERVEERD;\n3020 = GERESERVEERD;\n3021 = GERESERVEERD;\n3022 = GERESERVEERD;\n3023 = GERESERVEERD;\n3024 = GERESERVEERD;\n3025 = GERESERVEERD;\n3026 = GERESERVEERD;\n3027 = GERESERVEERD;\n3028 = GERESERVEERD;\n3029 = GERESERVEERD;\n303 = ALBERT HEIJN WINKELMANAGEMENT;\n3030 = GERESERVEERD;\n3031 = GERESERVEERD;\n3032 = GERESERVEERD;\n3033 = GERESERVEERD;\n3034 = GERESERVEERD;\n3035 = GERESERVEERD;\n3036 = GERESERVEERD;\n3037 = GERESERVEERD;\n3038 = GERESERVEERD;\n3039 = GERESERVEERD;\n304 = AHOLD NEDERLAND EN KONINKIJKE AHOLD N.V., VOOR DE MEDEWERKERS VAN KANTOREN VAN;\n3040 = GERESERVEERD;\n3041 = GROOTWINKELBEDRIJVEN IN SCHOENEN VOOR PERSONEEL;\n3042 = ENEXIS BEDRIJFSCAO;\n3043 = GERESERVEERD;\n3044 = GERESERVEERD;\n3045 = GERESERVEERD;\n3046 = GERESERVEERD;\n3047 = GERESERVEERD;\n3048 = GERESERVEERD;\n3049 = GERESERVEERD;\n305 = RPC PACKAGING KERKRADE B.V.;\n3050 = GERESERVEERD;\n3051 = GERESERVEERD;\n3052 = GERESERVEERD;\n3053 = GERESERVEERD;\n3054 = GERESERVEERD;\n3055 = GERESERVEERD;\n3056 = GERESERVEERD;\n3057 = GERESERVEERD;\n3058 = GERESERVEERD;\n3059 = GERESERVEERD;\n306 = PARTICULIER KAASPAKHUIS;\n3060 = GERESERVEERD;\n3061 = GERESERVEERD;\n3062 = GERESERVEERD;\n3063 = GERESERVEERD;\n3064 = GERESERVEERD;\n3065 = LEGERMUSEUM;\n3066 = GERESERVEERD;\n3067 = COSUN BEET COMANY, SENSUS BV EN HOOFDKANTOORORGANISATIE COSUN;\n3068 = GERESERVEERD;\n3069 = GERESERVEERD;\n3070 = GERESERVEERD;\n3071 = GERESERVEERD;\n3072 = SITECH SERVICES B.V.;\n3073 = GERESERVEERD;\n3074 = GERESERVEERD;\n3075 = GERESERVEERD;\n3076 = GERESERVEERD;\n3077 = GERESERVEERD;\n3078 = GERESERVEERD;\n3079 = GERESERVEERD;\n3080 = GERESERVEERD;\n3081 = GERESERVEERD;\n3082 = GERESERVEERD;\n3083 = GERESERVEERD;\n3084 = GERESERVEERD;\n3085 = GERESERVEERD;\n3086 = GERESERVEERD;\n3087 = GERESERVEERD;\n3088 = PROVIMI PETFOOD NL B.V.;\n3089 = GERESERVEERD;\n3090 = GERESERVEERD;\n3091 = GERESERVEERD;\n3092 = GERESERVEERD;\n3093 = GERESERVEERD;\n3094 = GERESERVEERD;\n3095 = GERESERVEERD;\n3096 = ANTERYON CAO;\n3097 = GERESERVEERD;\n3098 = GERESERVEERD;\n3099 = GERESERVEERD;\n31 = BN-INTERNATIONAL;\n310 = MARGARINE- EN SPIJSVETINDUSTRIE;\n3100 = GERESERVEERD;\n3101 = AKZO NOBEL ELOTEX CAO;\n3102 = GERESERVEERD;\n3103 = GERESERVEERD;\n3104 = AKZO NOBEL ALABASTINE;\n3105 = GERESERVEERD;\n3106 = GERESERVEERD;\n3107 = INBEV NEDERLAND N.V. CONVENANT DISTRIBUTIE CENTRUM TE EERSEL;\n3108 = GERESERVEERD;\n3109 = POSTVERSPREIDERS (VH POSTVERSPREIDING);\n3110 = GERESERVEERD;\n3111 = HEXION SPECIALTY CHEMICALS B.V. (MAASTRICHT);\n3112 = GERESERVEERD;\n3113 = GERESERVEERD;\n3114 = GERESERVEERD;\n3115 = GERESERVEERD;\n3116 = GERESERVEERD;\n3117 = LAWTER MAASTRICHT BV;\n3118 = GERESERVEERD;\n3119 = GERESERVEERD;\n3120 = GERESERVEERD;\n3121 = GERESERVEERD;\n3122 = GERESERVEERD;\n3123 = GERESERVEERD;\n3124 = GERESERVEERD;\n3125 = GERESERVEERD;\n3126 = GERESERVEERD;\n3127 = GERESERVEERD;\n3128 = GERESERVEERD;\n3129 = GERESERVEERD;\n313 = PUBLIEKSTIJDSCHRIFTJOURNALISTEN;\n3130 = GERESERVEERD;\n3131 = ICL-IP TERNEUZEN BV;\n3132 = GERESERVEERD;\n3133 = GERESERVEERD;\n3134 = GERESERVEERD;\n3135 = GERESERVEERD;\n3136 = GERESERVEERD;\n3137 = GERESERVEERD;\n3138 = GERESERVEERD;\n3139 = DSV SOLUTIONS B.V.;\n314 = OPINIEWEEKBLADJOURNALISTEN;\n3140 = GERESERVEERD;\n3141 = GERESERVEERD;\n3142 = GERESERVEERD;\n3143 = GERESERVEERD;\n3144 = GERESERVEERD;\n3145 = GERESERVEERD;\n3146 = GERESERVEERD;\n3147 = GERESERVEERD;\n3148 = GERESERVEERD;\n3149 = CIBA HEERENVEEN B.V.;\n3150 = GERESERVEERD;\n3151 = GERESERVEERD;\n3152 = GERESERVEERD;\n3153 = GERESERVEERD;\n3154 = GERESERVEERD;\n3155 = WELTEN;\n3156 = GERESERVEERD;\n3157 = GERESERVEERD;\n3158 = GERESERVEERD;\n3159 = KONINKLIJKE VAN DER WEES WATERTRANSPORTEN BV;\n316 = LEVENSMIDDELENBEDRIJF;\n3160 = GERESERVEERD;\n3161 = GERESERVEERD;\n3162 = GERESERVEERD;\n3163 = GERESERVEERD;\n3164 = GERESERVEERD;\n3165 = DYADE ZUID WEST NEDERLAND BV;\n3166 = GERESERVEERD;\n3167 = GERESERVEERD;\n3168 = GERESERVEERD;\n3169 = GERESERVEERD;\n317 = GEHANDICAPTENZORG;\n3170 = GERESERVEERD;\n3171 = STICHTING STIMIN IDENTITEITSBEGELEIDING MIDDEN-NEDERLAND;\n3172 = GERESERVEERD;\n3173 = GERESERVEERD;\n3174 = GERESERVEERD;\n3175 = GERESERVEERD;\n3176 = GERESERVEERD;\n3177 = GERESERVEERD;\n3178 = SYNCOM;\n3179 = BIGA GROEP B.V.;\n318 = CDA, PERSONEEL IN DIENST VAN HET;\n3180 = DB SCHENKER RAIL NEDERLAND N.V. GOEDERENVERVOER OVER HET SPOOR;\n3181 = GERESERVEERD;\n3182 = GERESERVEERD;\n3183 = DSM LIMBURG B.V. EN MEP EUROPE GMBH TRANSFER CAO;\n3184 = GERESERVEERD;\n3185 = GERESERVEERD;\n3186 = GERESERVEERD;\n3187 = GERESERVEERD;\n3188 = GERESERVEERD;\n3189 = GERESERVEERD;\n3190 = GERESERVEERD;\n3191 = GERESERVEERD;\n3192 = GERESERVEERD;\n3193 = GERESERVEERD;\n3194 = GERESERVEERD;\n3195 = CARUX TECHNOLOGY EUROPE B.V.;\n3196 = GERESERVEERD;\n3197 = CEREXAGRI B.V.;\n3198 = GERESERVEERD;\n3199 = GERESERVEERD;\n320 = SECURCASH NEDERLAND EN SECURCASH GELDVERWERKING BV (VH BRINKS NEDERLAND EN GELDVERWERKING B.V.);\n3200 = GERESERVEERD;\n3201 = GERESERVEERD;\n3202 = GERESERVEERD;\n3203 = DAGBLADUITGEVERIJBEDRIJF;\n3204 = GERESERVEERD;\n3205 = GERESERVEERD;\n3206 = GERESERVEERD;\n3207 = GERESERVEERD;\n3208 = GERESERVEERD;\n3209 = GERESERVEERD;\n3210 = ALBRON CP NEDERLAND B.V.;\n3211 = GERESERVEERD;\n3212 = GERESERVEERD;\n3213 = GERESERVEERD;\n3214 = GERESERVEERD;\n3215 = CNV VAKMENSEN;\n3216 = GERESERVEERD;\n3217 = GERESERVEERD;\n3218 = ROSIER NEDERLAND B.V.;\n3219 = GERESERVEERD;\n3220 = NEC NEDERLAND B.V.;\n3221 = EVENEMENTEN- EN HORECABEVEILIGERS VEHB;\n3222 = GERESERVEERD;\n3223 = GERESERVEERD;\n3224 = GERESERVEERD;\n3225 = GERESERVEERD;\n3226 = GERESERVEERD;\n3227 = RABOVASTGOEDGROEP;\n3228 = GERESERVEERD;\n3229 = GERESERVEERD;\n323 = NEDALCO KONINKLIJKE BV (VOORHEEN NEDALCO BV);\n3230 = GERESERVEERD;\n3231 = STAMICARBON B.V.;\n3232 = GERESERVEERD;\n3233 = OFFSHORE CATERING;\n3234 = GERESERVEERD;\n3235 = GERESERVEERD;\n3236 = DE LAGE LANDEN INTERNATIONAL B.V.;\n3237 = GERESERVEERD;\n3238 = VLIEGERS TUI FLY NEDERLAND;\n3239 = VVV CAO;\n3240 = GERESERVEERD;\n3241 = GERESERVEERD;\n3242 = GERESERVEERD;\n3243 = GERESERVEERD;\n3244 = GERESERVEERD;\n3245 = VROON SHIP MANAGEMENT B.V.;\n3246 = GERESERVEERD;\n3247 = EDUX ONDERWIJSADVIES CAO;\n3248 = TNT CAO EXPRESS;\n3249 = GERESERVEERD;\n3250 = GERESERVEERD;\n3251 = GERESERVEERD;\n3252 = TECHNICOLOR DIGITAL CONTENT DELIVERY NL CAO VOOR-;\n3253 = GERESERVEERD;\n3254 = GERESERVEERD;\n3255 = GERESERVEERD;\n3256 = ZIUT BEDRIJFSCAO;\n3257 = GERESERVEERD;\n3258 = GERESERVEERD;\n3259 = RBS NEDERLAND CAO;\n3260 = GERESERVEERD;\n3261 = DCL CORPORATION (NL) B.V.;\n3262 = GERESERVEERD;\n3263 = GERESERVEERD;\n3264 = LUCAS ONDERWIJS CAO VO;\n3265 = COFELY SERVICES CAO HARMONISATIE;\n3266 = GERESERVEERD;\n3267 = GERESERVEERD;\n3268 = TEKNOR APEX B.V.;\n3269 = SERVICE POINT NEDERLAND CAO;\n3270 = GERESERVEERD;\n3271 = GERESERVEERD;\n3272 = OCI NITROGEN B.V.;\n3273 = GERESERVEERD;\n3274 = GERESERVEERD;\n3275 = ACTION;\n3276 = SMILDE FOODS INDIRECT PERSONEEL;\n3277 = EUROPEES MASSAGOED OVERSLAGBEDRIJF B.V. (BEAMBTEN);\n3278 = GERESERVEERD;\n3279 = GERESERVEERD;\n3280 = GERESERVEERD;\n3281 = ALTAJO B.V.;\n3282 = GERESERVEERD;\n3283 = BRITISH AMERICAN TOBACCO NEDERLAND B.V.;\n3284 = GERESERVEERD;\n3285 = GERESERVEERD;\n3286 = GERESERVEERD;\n3287 = GERESERVEERD;\n3288 = GERESERVEERD;\n3289 = GERESERVEERD;\n329 = QUAKER OATS B.V.;\n3290 = GERESERVEERD;\n3291 = GERESERVEERD;\n3292 = GERESERVEERD;\n3293 = GERESERVEERD;\n3294 = GERESERVEERD;\n3295 = GERESERVEERD;\n3296 = GERESERVEERD;\n3297 = GERESERVEERD;\n3298 = GERESERVEERD;\n3299 = ARKADE-CILON;\n33 = NEDERLANDSE LOTERIJ ORGANISATIE BV (VH STAATSLOTERIJ , STICHTING EXPLOITATIE NEDERLANDSE);\n330 = BAVARIA N.V;\n3300 = STICHTING ZORGGROEP NOORDERBREEDTE MEDISCH CENTRUM LEEUWARDEN;\n3301 = AT5 GROEP;\n3302 = GERESERVEERD;\n3303 = GERESERVEERD;\n3304 = GERESERVEERD;\n3305 = GERESERVEERD;\n3306 = GERESERVEERD;\n3307 = DELRIN NETHERLANDS B.V.;\n3308 = PQ SILICAS B.V.;\n3309 = GERESERVEERD;\n331 = LEVENSMIDDELEN, ZOETWAREN, TABAKSPRODUCTEN EN BAKKERIJPRODUKTEN GROOTHANDEL IN-;\n3310 = GERESERVEERD;\n3311 = DLF B.V.;\n3312 = GERESERVEERD;\n3313 = NETWERKBEDRIJVEN CAO;\n3314 = GERESERVEERD;\n3315 = GERESERVEERD;\n3316 = GERESERVEERD;\n3317 = DIRKZWAGER FINANCIAL SERVICES BV;\n3318 = GERESERVEERD;\n3319 = GERESERVEERD;\n3320 = STICHTING PERSONEELSDIENSTEN CDA;\n3321 = GERESERVEERD;\n3322 = GERESERVEERD;\n3323 = GERESERVEERD;\n3324 = BEROEPSRENNERS NEDERLANDSE WIELERPLOEGEN;\n3325 = TENNET TSO BEDRIJFSCAO;\n3326 = GERESERVEERD;\n3327 = GERESERVEERD;\n3328 = GERESERVEERD;\n3329 = ACTOR PARTNER IN BESTUREN;\n3330 = MENZIES WORLD CARGO (NEDERLAND) B.V.;\n3331 = LANXESS CHEMICAL;\n3332 = STUWADOORSBEDRIJF VAN ROOIJ B.V.;\n3333 = GERESERVEERD;\n3334 = GERESERVEERD;\n3335 = PRODUCTIE- EN LEVERINGSBEDRIJVEN CAO;\n3336 = PERSOONALITY PAYROLLING B.V.;\n3337 = GERESERVEERD;\n3338 = CONNEXIE;\n3339 = GERESERVEERD;\n3340 = BESTUURDERS VO;\n3341 = GERESERVEERD;\n3342 = VERHURENDE BEDRIJVEN BULKSECTOR ROTTERDAMS HAVENGEBIED;\n3343 = GERESERVEERD;\n3344 = GERESERVEERD;\n3345 = GERESERVEERD;\n3346 = GERESERVEERD;\n3347 = GERESERVEERD;\n3348 = DEUTSCHE BANK IN NEDERLAND;\n3349 = GERESERVEERD;\n3350 = VCK CAO VOOR HET KANTOORPERSONEEL VAN VERENIGD CARGADOORKANTOOR B.V.;\n3351 = GERESERVEERD;\n3352 = BILTHOVEN BIOLOGICALS;\n3353 = ST-ERICSSON NEDERLAND;\n3354 = GERESERVEERD;\n3355 = NN CAO;\n3356 = HELLENDE DAKEN;\n3357 = UW HOLDING B.V. CAO;\n3358 = GERESERVEERD;\n3359 = PAYNED PAYROLLING BV;\n3360 = PROKX PAYROLL PROFESSIONALS B.V.;\n3361 = GERESERVEERD;\n3362 = GERESERVEERD;\n3363 = AIR LIQUIDE B.V.;\n3364 = GERESERVEERD;\n3365 = GERESERVEERD;\n3366 = GERESERVEERD;\n3367 = GERESERVEERD;\n3368 = GERESERVEERD;\n3369 = GERESERVEERD;\n3370 = GERESERVEERD;\n3371 = GERESERVEERD;\n3372 = GERESERVEERD;\n3373 = GERESERVEERD;\n3374 = HEINEKEN GROUP B.V.;\n3375 = EVENEMENTEN- EN HORECABEVEILIGINGSBRANCHE;\n3376 = GERESERVEERD;\n3377 = DKSR;\n3378 = GERESERVEERD;\n3379 = GERESERVEERD;\n3380 = GERESERVEERD;\n3381 = GERESERVEERD;\n3382 = GERESERVEERD;\n3383 = INTERNATIONAL LASHING SERVICES;\n3384 = UNILASH B.V.;\n3385 = GERESERVEERD;\n3386 = GERESERVEERD;\n3387 = GERESERVEERD;\n3388 = GERESERVEERD;\n3389 = GERESERVEERD;\n3390 = GERESERVEERD;\n3391 = GERESERVEERD;\n3392 = GERESERVEERD;\n3393 = GERESERVEERD;\n3394 = GERESERVEERD;\n3395 = GERESERVEERD;\n3396 = GERESERVEERD;\n3397 = GERESERVEERD;\n3398 = MATRANS MARINE SERVICES B.V.;\n3399 = STICHTING FRACTIEBUREAU CDA;\n3400 = NORTH SEA TANKER MANAGEMENT B.V.;\n3401 = GERESERVEERD;\n3402 = DROST DRACHTEN OVERSLAG BV;\n3403 = GERESERVEERD;\n3404 = GERESERVEERD;\n3405 = GERESERVEERD;\n3406 = GERESERVEERD;\n3407 = GERESERVEERD;\n3408 = VGZ;\n3409 = GERESERVEERD;\n3410 = GERESERVEERD;\n3411 = GERESERVEERD;\n3412 = GERESERVEERD;\n3413 = GERESERVEERD;\n3414 = GERESERVEERD;\n3415 = GERESERVEERD;\n3416 = GERESERVEERD;\n3417 = SONAC VUREN;\n3418 = DAF TRUCKS NV VAKORGANISATIES OVEREENKOMST;\n3419 = KEMIRA ROTTERDAM;\n3420 = GERESERVEERD;\n3421 = GERESERVEERD;\n3422 = GERESERVEERD;\n3423 = GERESERVEERD;\n3424 = GERESERVEERD;\n3425 = GERESERVEERD;\n3426 = GERESERVEERD;\n3427 = GERESERVEERD;\n3428 = GERESERVEERD;\n3429 = GERESERVEERD;\n3430 = GERESERVEERD;\n3431 = GERESERVEERD;\n3432 = GERESERVEERD;\n3433 = GERESERVEERD;\n3434 = GERESERVEERD;\n3435 = GERESERVEERD;\n3436 = GERESERVEERD;\n3437 = BP RAFFINADERIJ ROTTERDAM B.V.;\n3438 = GERESERVEERD;\n3439 = GERESERVEERD;\n344 = NESTLE NEDERLAND CAO I;\n3440 = UWT UNITED WAALHAVEN TERMINALS;\n3441 = GERESERVEERD;\n3442 = GERESERVEERD;\n3443 = GERESERVEERD;\n3444 = GERESERVEERD;\n3445 = GERESERVEERD;\n3446 = GERESERVEERD;\n3447 = STICHTING CJG RIJNMOND TE ROTTERDAM;\n3448 = GERESERVEERD;\n3449 = GERESERVEERD;\n345 = KONINKLIJK INSTITUUT VOOR DE TROPEN;\n3450 = GERESERVEERD;\n3451 = GERESERVEERD;\n3452 = BOSRAND AKKOORD;\n3453 = RINGVAART AKKOORD;\n3454 = BRAVEHEART SHIPPING BV;\n3455 = GERESERVEERD;\n3456 = GERESERVEERD;\n3457 = GERESERVEERD;\n3458 = GERESERVEERD;\n3459 = GERESERVEERD;\n3460 = ACTIPAY PAYROLL VOOR DE HORECA;\n3461 = GERESERVEERD;\n3462 = GERESERVEERD;\n3463 = GERESERVEERD;\n3464 = GERESERVEERD;\n3465 = GERESERVEERD;\n3466 = GERESERVEERD;\n3467 = GERESERVEERD;\n3468 = GERESERVEERD;\n3469 = GERESERVEERD;\n3470 = C&D FOODS (NETHERLANDS) B.V.;\n3471 = DEKRA CERTIFICATION B.V.;\n3472 = GERESERVEERD;\n3473 = GERESERVEERD;\n3474 = GERESERVEERD;\n3475 = GERESERVEERD;\n3476 = GERESERVEERD;\n3477 = HEIDELBERGCEMENT NEDERLAND ZAND EN GRINDACTIVITEITEN;\n3478 = GERESERVEERD;\n3479 = GERESERVEERD;\n3480 = GERESERVEERD;\n3481 = GERESERVEERD;\n3482 = GERESERVEERD;\n3483 = GERESERVEERD;\n3484 = WIJGULA CAO;\n3485 = GERESERVEERD;\n3486 = GERESERVEERD;\n3487 = GERESERVEERD;\n3488 = HEXION BOTLEK B.V.;\n3489 = GERESERVEERD;\n349 = TEAM TERMINAL;\n3490 = GERESERVEERD;\n3491 = GERESERVEERD;\n3492 = GERESERVEERD;\n3493 = GERESERVEERD;\n3494 = TOETREDINGSPROTOCOL CAO AFVAL EN MILIEU, PROCES TUSSEN NV AFVALZORG HOLDING EN FNV;\n3495 = GERESERVEERD;\n3496 = BRUNEN CAO;\n3497 = GERESERVEERD;\n3498 = GERESERVEERD;\n3499 = GERESERVEERD;\n35 = TEXTIELVERZORGING;\n3500 = DSM SINCOHEM PHARMACEUTICALS NETHERLANDS BV;\n3501 = GERESERVEERD;\n3502 = SLO CAO;\n3503 = GERESERVEERD;\n3504 = GERESERVEERD;\n3505 = GERESERVEERD;\n3506 = GERESERVEERD;\n3507 = GERESERVEERD;\n3508 = GERESERVEERD;\n3509 = GERESERVEERD;\n351 = NEDERLANDSE AARDOLIE MAATSCHAPPIJ NAM;\n3510 = DUBOIS EN CO. REGISTERACCOUNTANTS EN VAN TUNEN EN PARTNERS CAO;\n3511 = GERESERVEERD;\n3512 = GERESERVEERD;\n3513 = GERESERVEERD;\n3514 = DB CARGO NEDERLAND B.V.;\n3515 = GERESERVEERD;\n3516 = ZEMBER PAYROLLING B.V.;\n3517 = ZEMBER HR DIENSTEN (VH RESOURZE HR DIENSTEN B.V.);\n3518 = GERESERVEERD;\n3519 = GERESERVEERD;\n352 = DIRKZWAGER SCHEEPSAGENTUUR, KONINKLIJKE;\n3520 = GERESERVEERD;\n3521 = GERESERVEERD;\n3522 = GERESERVEERD;\n3523 = GERESERVEERD;\n3524 = GERESERVEERD;\n3525 = GERESERVEERD;\n3526 = GERESERVEERD;\n3527 = GERESERVEERD;\n3528 = GERESERVEERD;\n3529 = GERESERVEERD;\n353 = MAGNETICS PRODUCTS OOSTERHOUT B.V. CAO A;\n3530 = QUIK BEDRIJFSCAO;\n3531 = GERESERVEERD;\n3532 = GERESERVEERD;\n3533 = BOER SPEELTOESTELLEN B.V.;\n3534 = DSM LIMBURG BV EN BOREALIS PLASTOMERS B.V. OVERGANGSCAO PLASTOMERS;\n3535 = STEINZEUG-KERAMO B.V.;\n3536 = GERESERVEERD;\n3537 = GERESERVEERD;\n3538 = GERESERVEERD;\n3539 = MENKEN GROEP CAO;\n3540 = GERESERVEERD;\n3541 = NSPOH CAO;\n3542 = OIM BRABANT B.V. CAO;\n3543 = GERESERVEERD;\n3544 = GERESERVEERD;\n3545 = GERESERVEERD;\n3546 = GERESERVEERD;\n3547 = CRV MONSTERNEMERS;\n3548 = CRV;\n3549 = GERESERVEERD;\n3550 = GERESERVEERD;\n3551 = GERESERVEERD;\n3552 = GERESERVEERD;\n3553 = BESTUURDERS PO;\n3554 = GERESERVEERD;\n3555 = GERESERVEERD;\n3556 = LOGISTIEK EN SUPPORT;\n3557 = CONTINUFLEX-CAO;\n3558 = FAIRSTAR HEAVY TRANSPORT NV;\n3559 = GERESERVEERD;\n3560 = GERESERVEERD;\n3561 = GERESERVEERD;\n3562 = MO-zaak;\n3563 = GERESERVEERD;\n3564 = GERESERVEERD;\n3565 = GERESERVEERD;\n3566 = GERESERVEERD;\n3567 = GERESERVEERD;\n3568 = GERESERVEERD;\n3569 = GVO EN HVO CAO;\n3570 = ADRI EN ZOON SCHAAL- EN SCHELPDIERENHANDEL BV TE YERSEKE;\n3571 = PGB CAO;\n3572 = GERESERVEERD;\n3573 = GERESERVEERD;\n3574 = GERESERVEERD;\n3575 = BOEHRINGER INGELHEIM ANIMAL HEALTH OPERATIONS B.V.;\n3576 = GERESERVEERD;\n3577 = GERESERVEERD;\n3578 = GERESERVEERD;\n3579 = GERESERVEERD;\n3580 = CITO;\n3581 = GERESERVEERD;\n3582 = GERESERVEERD;\n3583 = GERESERVEERD;\n3584 = GERESERVEERD;\n3585 = GERESERVEERD;\n3586 = GERESERVEERD;\n3587 = AMPCO FLASHLIGHT RENTAL B.V.;\n3588 = GERESERVEERD;\n3589 = GERESERVEERD;\n359 = ZOETWARENINDUSTRIE;\n3590 = GERESERVEERD;\n3591 = ADG CONTROL BEDRIJFSCAO;\n3592 = POSTNL CAO VOOR POSTNL PAKKETTEN;\n3593 = GERESERVEERD;\n3594 = GERESERVEERD;\n3595 = GERESERVEERD;\n3596 = GERESERVEERD;\n3597 = ISA HTV BV;\n3598 = GERESERVEERD;\n3599 = GERESERVEERD;\n360 = INTERNATIONAL FLAVORS & FRAGRANCES IFF;\n3600 = GERESERVEERD;\n3601 = GERESERVEERD;\n3602 = GERESERVEERD;\n3603 = GERESERVEERD;\n3604 = KIVO PLASTIC VERPAKKINGEN TE VOLENDAM;\n3605 = GERESERVEERD;\n3606 = GERESERVEERD;\n3607 = GERESERVEERD;\n3608 = GERESERVEERD;\n3609 = GERESERVEERD;\n361 = BEIERSDORF;\n3610 = GERESERVEERD;\n3611 = GERESERVEERD;\n3612 = GERESERVEERD;\n3613 = GERESERVEERD;\n3614 = GERESERVEERD;\n3615 = CONTRACTING NL BV;\n3616 = GERESERVEERD;\n3617 = GERESERVEERD;\n3618 = AMBACHTELIJKE PLUIMVEE EN WILDBEDRIJVEN;\n3619 = GERESERVEERD;\n3620 = GERESERVEERD;\n3621 = GERESERVEERD;\n3622 = GERESERVEERD;\n3623 = GERESERVEERD;\n3624 = GERESERVEERD;\n3625 = IBM VERIZON KPN OVEREENKOMST INZAKE TERUGKEERDERS VAN;\n3626 = GERESERVEERD;\n3627 = GERESERVEERD;\n3628 = GERESERVEERD;\n3629 = GERESERVEERD;\n363 = LANXESS MANUFACTURING NETHERLANDS B.V. (VH CHEMTURA NETHERLANDS B.V.);\n3630 = GERESERVEERD;\n3631 = GERESERVEERD;\n3632 = GERESERVEERD;\n3633 = GERESERVEERD;\n3634 = GERESERVEERD;\n3635 = GERESERVEERD;\n3636 = GERESERVEERD;\n3637 = GERESERVEERD;\n3638 = GERESERVEERD;\n3639 = GERESERVEERD;\n364 = PURAC BIOCHEM B.V.;\n3640 = SMILDE FERBINE;\n3641 = GERESERVEERD;\n3642 = GERESERVEERD;\n3643 = GERESERVEERD;\n3644 = GERESERVEERD;\n3645 = GERESERVEERD;\n3646 = GERESERVEERD;\n3647 = GERESERVEERD;\n3648 = GERESERVEERD;\n3649 = STICHTING P4SPORTS;\n365 = ANWB CAO;\n3650 = GERESERVEERD;\n3651 = GERESERVEERD;\n3652 = INTERTEK NEDERLAND BV;\n3653 = GERESERVEERD;\n3654 = GERESERVEERD;\n3655 = GERESERVEERD;\n3656 = GERESERVEERD;\n3657 = GERESERVEERD;\n3658 = BV 18 K;\n3659 = GERESERVEERD;\n366 = ASTELLAS PHARMA EUROPE B.V.;\n3660 = GERESERVEERD;\n3661 = GERESERVEERD;\n3662 = GERESERVEERD;\n3663 = GERESERVEERD;\n3664 = GERESERVEERD;\n3665 = UNITED DUTCH BREWERIES BV;\n3666 = GERESERVEERD;\n3667 = GERESERVEERD;\n3668 = GERESERVEERD;\n3669 = GERESERVEERD;\n3670 = GERESERVEERD;\n3671 = GERESERVEERD;\n3672 = GERESERVEERD;\n3673 = LIMBURGSE CONCESSIES OVEREENKOMST MBT HARMONISATIE;\n3674 = APM TERMINALS MAASVLAKTE II B.V.;\n3675 = GERESERVEERD;\n3676 = GERESERVEERD;\n3677 = GERESERVEERD;\n3678 = GERESERVEERD;\n3679 = GERESERVEERD;\n368 = MODOVANGELDER;\n3680 = GERESERVEERD;\n3681 = GERESERVEERD;\n3682 = GERESERVEERD;\n3683 = GERESERVEERD;\n3684 = GERESERVEERD;\n3685 = CNV VAKCENTRALE CAO;\n3686 = GERESERVEERD;\n3687 = GERESERVEERD;\n3688 = ZELFSTANDIGE KLINIEKEN NEDERLAND;\n3689 = ASPEN OSS;\n3690 = SBW STICHTING BIBLIOTHEEKWERK;\n3691 = ARLANXEO NETHERLANDS B.V.;\n3692 = GERESERVEERD;\n3693 = GERESERVEERD;\n3694 = GERESERVEERD;\n3695 = GERESERVEERD;\n3696 = GERESERVEERD;\n3697 = SPORTVERENIGINGEN;\n3698 = GERESERVEERD;\n3699 = GERESERVEERD;\n370 = PUBLEX B.V.;\n3700 = GERESERVEERD;\n3701 = GERESERVEERD;\n3702 = GERESERVEERD;\n3703 = GERESERVEERD;\n3704 = GERESERVEERD;\n3705 = GERESERVEERD;\n3706 = GERESERVEERD;\n3707 = DSM NL SERVICES BV;\n3708 = GERESERVEERD;\n3709 = DSM PHARMACEUTICAL PRODUCTS OVERGANGS cao;\n3710 = GERESERVEERD;\n3711 = GERESERVEERD;\n3712 = GERESERVEERD;\n3713 = GERESERVEERD;\n3714 = FUJICOLOR BENELUX BV;\n3715 = GERESERVEERD;\n3716 = GERESERVEERD;\n3717 = GERESERVEERD;\n3718 = GERESERVEERD;\n3719 = GERESERVEERD;\n3720 = GERESERVEERD;\n3721 = METROPOLE ORKEST;\n3722 = GERESERVEERD;\n3723 = GERESERVEERD;\n3724 = SIBELCO BENELUX BV;\n3725 = GERESERVEERD;\n3726 = GERESERVEERD;\n3727 = GERESERVEERD;\n3728 = GERESERVEERD;\n3729 = GERESERVEERD;\n373 = SLEEPDIENST EERLAND ( VH EERLAND GJ SLEEPDIENST);\n3730 = GERESERVEERD;\n3731 = GERESERVEERD;\n3732 = GERESERVEERD;\n3733 = GERESERVEERD;\n3734 = GERESERVEERD;\n3735 = GERESERVEERD;\n3736 = VERVOERSTEAM NEDERLAND B.V.;\n3737 = GERESERVEERD;\n3738 = GERESERVEERD;\n3739 = GERESERVEERD;\n3740 = GERESERVEERD;\n3741 = GERESERVEERD;\n3742 = BOREALIS PLASTOMERS BV;\n3743 = ESSITY OPERATIONS CUIJK;\n3744 = GERESERVEERD;\n3745 = ODFJELL TERMINALS (ROTTERDAM) BV;\n3746 = GERESERVEERD;\n3747 = GERESERVEERD;\n3748 = GERESERVEERD;\n3749 = GERESERVEERD;\n3750 = GERESERVEERD;\n3751 = GERESERVEERD;\n3752 = GERESERVEERD;\n3753 = GERESERVEERD;\n3754 = GERESERVEERD;\n3755 = GERESERVEERD;\n3756 = GERESERVEERD;\n3757 = GERESERVEERD;\n3758 = PLANTION HOLDING BV CAO VOOR MEDEWERKERS IN DIENST VAN EN HAAR DOCHTERS;\n3759 = STORA ENSO DE HOOP BV;\n376 = FAVINI APELDOORN B.V. V/H GELDERSE PAPIERGROEP N.V.;\n3760 = GERESERVEERD;\n3761 = GERESERVEERD;\n3762 = GERESERVEERD;\n3763 = GERESERVEERD;\n3764 = GERESERVEERD;\n3765 = GERESERVEERD;\n3766 = GERESERVEERD;\n3767 = GERESERVEERD;\n3768 = UITVAARTBRANCHE;\n3769 = GERESERVEERD;\n3770 = GERESERVEERD;\n3771 = VIZYR;\n3772 = GERESERVEERD;\n3773 = PARADISO;\n3774 = GERESERVEERD;\n3775 = GERESERVEERD;\n3776 = ROTTERDAM BULK TERMINAL (R.B.T.) BV;\n3777 = GERESERVEERD;\n3778 = GERESERVEERD;\n3779 = BV EXPEDITIE- EN STUWADOORSMAATSCHAPPIJ J.C. MEIJERS;\n3780 = GERESERVEERD;\n3781 = GERESERVEERD;\n3782 = GERESERVEERD;\n3783 = GERESERVEERD;\n3784 = C.RO PORTS NEDERLAND BV;\n3785 = GERESERVEERD;\n3786 = GERESERVEERD;\n3787 = GERESERVEERD;\n3788 = GERESERVEERD;\n3789 = DANIELI CORUS;\n3790 = SD GUTHRIE INTERNATIONAL ZWIJNDRECHT REFINERY B.V.;\n3791 = GERESERVEERD;\n3792 = GERESERVEERD;\n3793 = GERESERVEERD;\n3794 = SBS PRODUCTIONS B.V.;\n3795 = GERESERVEERD;\n3796 = JUMBO LOGISTIEK CAO;\n3797 = GERESERVEERD;\n3798 = UITGEVERIJBEDRIJF, CAO VOOR HET;\n3799 = CHEMOURS NETHERLANDS B.V.;\n3800 = ROTTERDAM WORLD GATEWAY B.V. (OPERATIONELE WERKNEMERS);\n3801 = GERESERVEERD;\n3802 = GERESERVEERD;\n3803 = GERESERVEERD;\n3804 = GERESERVEERD;\n3805 = GERESERVEERD;\n3806 = ZEEHAVEN IJMUIDEN N.V.;\n3807 = GERESERVEERD;\n3808 = GERESERVEERD;\n3809 = GERESERVEERD;\n3810 = GERESERVEERD;\n3811 = GERESERVEERD;\n3812 = GERESERVEERD;\n3813 = GERESERVEERD;\n3814 = ZEEUWSE REINIGINGSDIENST B.V.;\n3815 = GERESERVEERD;\n3816 = GERESERVEERD;\n3817 = DIERENARTSPRAKTIJKEN (DIERENARTSEN IN LOONDIENST);\n3818 = GERESERVEERD;\n3819 = GERESERVEERD;\n3820 = GERESERVEERD;\n3821 = APOTHEKERS IN DIENSTVERBAND;\n3822 = GERESERVEERD;\n3823 = GERESERVEERD;\n3824 = GERESERVEERD;\n3825 = PORT OF AMSTERDAM;\n3826 = RANDSTAD GROEP NEDERLAND;\n3827 = GERESERVEERD;\n3828 = GERESERVEERD;\n3829 = GERESERVEERD;\n3830 = GERESERVEERD;\n3831 = GERESERVEERD;\n3832 = GERESERVEERD;\n3833 = GERESERVEERD;\n3834 = GERESERVEERD;\n3835 = GERESERVEERD;\n3836 = ABENGOA BIOENERGY NETHERLANDS CAO;\n3837 = DUTCH GLYCERIN REFINERY B.V.;\n3838 = GERESERVEERD;\n3839 = GERESERVEERD;\n3840 = GERESERVEERD;\n3841 = GERESERVEERD;\n3842 = GERESERVEERD;\n3843 = KRITERION CAO;\n3844 = GERESERVEERD;\n3845 = GERESERVEERD;\n3846 = GERESERVEERD;\n3847 = ZEEVARENDEN IN DIENST AAN BOORD VAN SCHEPEN VAN POSF BV;\n3848 = GELDMAAT B.V.;\n3849 = VLIEGERS IN DIENST BIJ CHC HELICOPTERS NETHERLANDS B.V.;\n3850 = VIVAT CAO;\n3851 = GERESERVEERD;\n3852 = GERESERVEERD;\n3853 = GERESERVEERD;\n3854 = FOODSERVICE EN DE GROOTHANDEL IN LEVENSMIDDELEN (FSGIL);\n3855 = ZWEMBADEN;\n3856 = GERESERVEERD;\n3857 = GERESERVEERD;\n3858 = PROPERTIZE CAO;\n3859 = HAS KENNISTRANSFER EN BEDRIJFSOPLEIDINGEN;\n3860 = GERESERVEERD;\n3861 = GERESERVEERD;\n3862 = BESLOTEN BUSVERVOER SEIZOENSWERKERS;\n3863 = GERESERVEERD;\n3864 = GERESERVEERD;\n3865 = FAGRON SERVICES B.V.;\n3866 = NON-EU OFFSHORE FISHERS COLLECTIVE BARGAINING AGREEMENT;\n3867 = GERESERVEERD;\n3868 = GERESERVEERD;\n3869 = GERESERVEERD;\n387 = SHELL NEDERLAND RAFFINADERIJ EN SHELL NEDERLAND CH;\n3870 = GERESERVEERD;\n3871 = GERESERVEERD;\n3872 = GERESERVEERD;\n3873 = GERESERVEERD;\n3874 = NATUURSTEEN VAKWERKBEDRIJVEN IN DE BEDRIJFSTAK;\n3875 = GERESERVEERD;\n3876 = GERESERVEERD;\n3877 = GERESERVEERD;\n3878 = VYNOVA BEEK B.V.;\n3879 = GERESERVEERD;\n388 = ROI, STICHTING RIJKS OPLEIDINGS INSTITUUT;\n3880 = GERESERVEERD;\n3881 = GERESERVEERD;\n3882 = GERESERVEERD;\n3883 = EASYJET VLIEGERS WERKEND VANUIT NEDERLAND;\n3884 = GERESERVEERD;\n3885 = GERESERVEERD;\n3886 = GERESERVEERD;\n3887 = GERESERVEERD;\n3888 = GERESERVEERD;\n3889 = GERESERVEERD;\n389 = AAK NETHERLANDS B.V.;\n3890 = GERESERVEERD;\n3891 = GERESERVEERD;\n3892 = GERESERVEERD;\n3893 = GERESERVEERD;\n3894 = GERESERVEERD;\n3895 = GERESERVEERD;\n3896 = GERESERVEERD;\n3897 = TALENT EN PRO;\n3898 = BOLUDA TOWAGE ROTTERDAM B.V.;\n3899 = AMSTEL TELEVISIE VIJF BV;\n3900 = GERESERVEERD;\n3901 = GERESERVEERD;\n3902 = GERESERVEERD;\n3903 = GERESERVEERD;\n3904 = QSIL NEDERLAND B.V.;\n3905 = STICHTING STRANDEXPLOITATIE VEERE;\n3906 = GERESERVEERD;\n3907 = GERESERVEERD;\n3908 = NOX OVERGANGSCAO TNT CAO NAAR BGV CAO;\n3909 = HARMONISATIE PROTOCOL PRAAG;\n391 = CREMATORIA;\n3910 = GERESERVEERD;\n3911 = GERESERVEERD;\n3912 = GERESERVEERD;\n3913 = DE OPVOEDPOLI CAO;\n3914 = METALEKTRO B-CAO LUMILEDS;\n3915 = GERESERVEERD;\n3916 = TEXTIELVERZORGING MEDEWERKER STERIELE HULPMIDDELEN CAO;\n3917 = GERESERVEERD;\n3918 = GERESERVEERD;\n3919 = VDL NEDCAR MB;\n392 = ARCADIS CAO;\n3920 = GERESERVEERD;\n3921 = GERESERVEERD;\n3922 = UNIPER BENELUX NV;\n3923 = VAN STRAATEN POST;\n3924 = KRAAMZORG CAO;\n3925 = PHILIPS LIGHTING CAO;\n3926 = GERESERVEERD;\n3927 = GERESERVEERD;\n3928 = KWALITEITS CONTROLE BUREAU;\n3929 = GERESERVEERD;\n3930 = GERESERVEERD;\n3931 = GERESERVEERD;\n3932 = PATHEON BIOLOGICS B.V.;\n3933 = STICHTING TOPIJSHOCKEY TILBURG;\n3934 = GERESERVEERD;\n3935 = GERESERVEERD;\n3936 = GERESERVEERD;\n3937 = GERESERVEERD;\n3938 = GERESERVEERD;\n3939 = GERESERVEERD;\n394 = CARRE, EXPLOITATIEMAATSCHAPPIJ THEATER;\n3940 = GERESERVEERD;\n3941 = GERESERVEERD;\n3942 = GERESERVEERD;\n3943 = GERESERVEERD;\n3944 = GERESERVEERD;\n3945 = STICHTING PLURYN MAATSCHAPPELIJKE;\n3946 = AMPLEON CAO;\n3947 = DHL ECOMMERCE NEDERLAND;\n3948 = EVOS AMSTERDAM EAST;\n3949 = GERESERVEERD;\n395 = EUROPEES MASSAGOED-OVERSLAGBEDRIJF, EMO;\n3950 = GERESERVEERD;\n3951 = GERESERVEERD;\n3952 = DUIKER COMBUSTION ENGINEERS B.V.;\n3953 = VCK LOGISTICS AIRFREIGHT B.V.;\n3954 = MEBIN CAO;\n3955 = GERESERVEERD;\n3956 = GERESERVEERD;\n3957 = GERESERVEERD;\n3958 = GERESERVEERD;\n3959 = GERESERVEERD;\n396 = ROTOVIA DEVENTER B.V.;\n3960 = GERESERVEERD;\n3961 = SAGREX CAO;\n3962 = GERESERVEERD;\n3963 = GERESERVEERD;\n3964 = GERESERVEERD;\n3965 = GERESERVEERD;\n3966 = GERESERVEERD;\n3967 = BETONPOMPBEDRIJVEN CAO VOOR DE;\n3968 = GERESERVEERD;\n3969 = GERESERVEERD;\n397 = VAKTIJDSCHRIFTJOURNALISTEN;\n3970 = GERESERVEERD;\n3971 = CNV CONNECTIEF;\n3972 = DIERENTUIN;\n3973 = GERESERVEERD;\n3974 = GERESERVEERD;\n3975 = GERESERVEERD;\n3976 = GERESERVEERD;\n3977 = GERESERVEERD;\n3978 = VAN HEECKEREN GROEP;\n3979 = FIBRANT B.V.;\n3980 = GERESERVEERD;\n3981 = ASR NEDERLAND NV DE ANDERE CAO;\n3982 = HUIS VAN EEMNES;\n3983 = ANQORE BV;\n3984 = GERESERVEERD;\n3985 = GERESERVEERD;\n3986 = GERESERVEERD;\n3987 = GERESERVEERD;\n3988 = ALCO ENERGY ROTTERDAM B.V.;\n3989 = GERESERVEERD;\n399 = OMEGA PHARMA;\n3990 = GERESERVEERD;\n3991 = GERESERVEERD;\n3992 = BUNGE NETHERLANDS B.V.;\n3993 = TANDTECHNIEK, CAO VOOR LEDEN BRANCHEVERENIGING;\n3994 = REDERIJ J.H. BERGMANN B.V.;\n3995 = NRG;\n3996 = GERESERVEERD;\n3997 = AOC NEDERLAND B.V.;\n3998 = GERESERVEERD;\n3999 = GERESERVEERD;\n4 = ALLIED & WINE BENELUX BV (V/H HIRAM WALKER );\n40 = MEDIQ N.V.;\n400 = NOURYON CHEMICALS;\n4000 = PAWW SECTOR BOUW SECTOR 3 NO. 2;\n4001 = GERESERVEERD;\n4002 = UNITED AIRLINES COLLECTIVE LABOUR AGREEMENT;\n4003 = LYONDELL CHEMIE NEDERLAND BV;\n4004 = GERESERVEERD;\n4005 = GERESERVEERD;\n4006 = NOKIA SOLUTIONS AND NETWORKS IN NEDERLAND;\n4007 = GERESERVEERD;\n4008 = ZORG VAN DE ZAAK;\n4009 = GERESERVEERD;\n4010 = GERESERVEERD;\n4011 = GERESERVEERD;\n4012 = ICOPAL;\n4013 = GERESERVEERD;\n4014 = FACILITAIR EN FACILITEREND SODEXO;\n4015 = GERESERVEERD;\n4016 = GERESERVEERD;\n4017 = GERESERVEERD;\n4018 = DE DUIVELSBERG;\n4019 = GERESERVEERD;\n402 = CLIMAX MOLYBDENUM;\n4020 = GERESERVEERD;\n4021 = GERESERVEERD;\n4022 = GERESERVEERD;\n4023 = BEROEPSGOEDERENVERVOER OVER DE WEG EN DE VERHUUR VAN MOBIELE KRANEN SEIZOENARBEID;\n4024 = BPD EUROPE B.V.;\n4025 = GERESERVEERD;\n4026 = ZAANLANDSE OLIERAFFINADERIJ;\n4027 = GERESERVEERD;\n4028 = UPFIELD;\n4029 = STICHTING DE MAASVEREN LITH;\n403 = ETERNIT;\n4030 = GERESERVEERD;\n4031 = GERESERVEERD;\n4032 = GERESERVEERD;\n4033 = GERESERVEERD;\n4034 = GERESERVEERD;\n4035 = ENECO BEDRIJFS CAO;\n4036 = ERTSOVERSLAGBEDRIJF EUROPOORT C.V.;\n4037 = GERESERVEERD;\n4038 = GERESERVEERD;\n4039 = GERESERVEERD;\n4040 = GERESERVEERD;\n4041 = GERESERVEERD;\n4042 = GERESERVEERD;\n4043 = TSO;\n4044 = GERESERVEERD;\n4045 = RED BEE MEDIA;\n4046 = GERESERVEERD;\n4047 = GERESERVEERD;\n4048 = GERESERVEERD;\n4049 = GERESERVEERD;\n405 = KAPPERSBEDRIJF;\n4050 = PLIXXENT B.V.;\n4051 = EASY JET CABIN CREW THE NETHERLANDS CLA;\n4052 = PETERSON NEDERLAND B.V.;\n4053 = ROTTERDAM PORT SUPPORT (RPS);\n4054 = GERESERVEERD;\n4055 = DALLI DE KLOK B.V. HOENSBROEK;\n4056 = BREEDBAND EN TELECOMMUNICATIE;\n4057 = GERESERVEERD;\n4058 = BOLUDA CREW B.V., KHTR B.V., SHTR B.V.;\n4059 = SIGNIFY;\n406 = KAPPA RAPIDCORR;\n4060 = GERESERVEERD;\n4061 = VODAFONEZIGGO CAO;\n4062 = SLAGERSBEDRIJF DISS;\n4063 = GERESERVEERD;\n4064 = GERESERVEERD;\n4065 = GERESERVEERD;\n4066 = GERESERVEERD;\n4067 = GERESERVEERD;\n4068 = KNGF GELEIDEHONDEN;\n4069 = GERESERVEERD;\n4070 = PURIFIED METAL COMPANY B.V.;\n4071 = GERESERVEERD;\n4072 = FNV HORECABOND;\n4073 = GERESERVEERD;\n4074 = SYNRES B.V. CAO;\n4075 = GERESERVEERD;\n4076 = GERESERVEERD;\n4077 = GERESERVEERD;\n4078 = SABIC INNOVATIVE PLASTICS B.V./SHPP B.V.;\n4079 = GERESERVEERD;\n408 = INTERNATEN KINDEREN VAN BINNENSCHIPPERS EN/OF KERMISEXPLOITANTEN;\n4080 = CENTRIENT PHARMACEUTICALS NETHERLANDS B.V.;\n4081 = GERESERVEERD;\n4082 = GERESERVEERD;\n4083 = GERESERVEERD;\n4084 = GERESERVEERD;\n4085 = ROTTERDAM AIRPORT B.V.;\n4086 = SCHUTTER HAVENBEDRIJF;\n4087 = STEDIN BEDRIJFSCAO;\n4088 = NEDERLANDSE ORKESTEN;\n4089 = STAAT DER NEDERLANDEN AANVULLENDE CAO RIJK UITZENDINGEN;\n4090 = KADASTER CAO;\n4091 = BRANCHE CAO SAMENWERKENDE GEMEENTELIJKE ORGANISATIES;\n4092 = GERESERVEERD;\n4093 = AMSTERDAM;\n4094 = STAAT DER NEDERLANDEN CAO CIVIELE EXPERTS EN VERKIEZINGSWAARNEMERS;\n4095 = NEDERLANDSE UNIVERSITEITEN - KNAW;\n4096 = NEDERLANDSE UNIVERSITEITEN - FRYSKE AKADEMY;\n4097 = GERESERVEERD;\n4098 = METROPOOLREGIO ROTTERDAM DEN HAAG (MRDH);\n4099 = GERESERVEERD;\n41 = BOUWMATERIALEN, HANDEL IN-;\n410 = BRANDSTOFFENBEDRIJF;\n4100 = BRUIL BETON EN MIX;\n4101 = LUCHTVERKEERSLEIDING NEDERLAND;\n4102 = XENOS;\n4103 = GERESERVEERD;\n4104 = PROFCORE OUTSOURCING;\n4105 = GERESERVEERD;\n4106 = GERESERVEERD;\n4107 = GERESERVEERD;\n4108 = GERESERVEERD;\n4109 = GERESERVEERD;\n411 = KREHALON B.V.;\n4110 = VROUWELIJKE CONTRACTSPELERS PSV;\n4111 = WORLDWIDE FLIGHT SERVICES;\n4112 = NOURYON CAO HOGER PERSONEEL NEDERLAND;\n4113 = NOURYON CAO NEDERLAND;\n4114 = THEOLOGISCHE UNIVERSITEIT APELDOORN;\n4115 = AGIO SIGARENFABRIEKEN N.V.;\n4116 = THEOLOGISCHE UNIVERSITEIT UTRECHT;\n4117 = UNIVERSITY COLLEGE ROOSEVELT;\n4118 = GERESERVEERD;\n4119 = PO-RAAD;\n412 = FOTO-FINISHINGBEDRIJVEN;\n4120 = GERESERVEERD;\n4121 = GERESERVEERD;\n4122 = NEDERLANDSE UNIVERSITEITEN PLATO;\n4123 = GERESERVEERD;\n4124 = WESTERSCHELDE FERRY B.V.;\n4125 = PICNIC E-COMMERCE CAO;\n4126 = UNIVERSITEIT VAN HUMANISTIEK;\n4127 = GERESERVEERD;\n4128 = GERESERVEERD;\n4129 = GERESERVEERD;\n413 = GEND & LOOS, VAN REGULIER;\n4130 = GERESERVEERD;\n4131 = GERESERVEERD;\n4132 = GERESERVEERD;\n4133 = NU PROTESTANTS THEOLOGISCHE UNIVERSITEIT;\n4134 = DE DOMIJNEN;\n4135 = GERESERVEERD;\n4136 = GERESERVEERD;\n4137 = GERESERVEERD;\n4138 = GERESERVEERD;\n4139 = HEINEKEN NEDERLAND B.V. (COMMERCIE);\n4140 = GERESERVEERD;\n4141 = GERESERVEERD;\n4142 = GERESERVEERD;\n4143 = ALLIANDER N.V.;\n4144 = CAO INSTITUUT VOOR DE NEDERLANDSE TAAL;\n4145 = GERESERVEERD;\n4146 = SCANDINAVIAN TOBACCO GROUP;\n4147 = SCANDINAVIAN TOBACCO GROUP;\n4148 = GERESERVEERD;\n4149 = GERESERVEERD;\n4150 = GERESERVEERD;\n4151 = GERESERVEERD;\n4152 = GERESERVEERD;\n4153 = GERESERVEERD;\n4154 = GERESERVEERD;\n4155 = GERESERVEERD;\n4156 = INNOCENT DRINKS;\n4157 = GERESERVEERD;\n4158 = GERESERVEERD;\n4159 = GERESERVEERD;\n4160 = IHE DELFT;\n4161 = FEDEX CAO;\n4162 = VERENIGING VAN UNIVERSITEITEN;\n4163 = GERESERVEERD;\n4164 = GERESERVEERD;\n4165 = GERESERVEERD;\n4166 = GERESERVEERD;\n4167 = GERESERVEERD;\n4168 = GERESERVEERD;\n4169 = GERESERVEERD;\n417 = KONVERTIA WINSCHOTEN B.V.;\n4170 = GERESERVEERD;\n4171 = ONWERKBAAR WEER VOOR DE BITUMINEUZE EN KUNSTSTOF DAKBEDEKKINGSBEDRIJVE;\n4172 = GERESERVEERD;\n4173 = GERESERVEERD;\n4174 = GERESERVEERD;\n4175 = GERESERVEERD;\n4176 = GERESERVEERD;\n4177 = GERESERVEERD;\n4178 = CED;\n4179 = GERESERVEERD;\n418 = NATUURSTEENBEDRIJF REGULIER;\n4180 = GERESERVEERD;\n4181 = GERESERVEERD;\n4182 = GERESERVEERD;\n4183 = GERESERVEERD;\n4184 = GERESERVEERD;\n4185 = GERESERVEERD;\n4186 = GERESERVEERD;\n4187 = GERESERVEERD;\n4188 = GERESERVEERD;\n4189 = GERESERVEERD;\n4190 = GERESERVEERD;\n4191 = GERESERVEERD;\n4192 = GERESERVEERD;\n4193 = GERESERVEERD;\n4194 = ALLEGO CAO;\n4195 = GERESERVEERD;\n4196 = GERESERVEERD;\n4197 = GERESERVEERD;\n4198 = GERESERVEERD;\n4199 = VLISCO NETHERLANDS B.V.;\n420 = RUTGERS RESINS B.V. (VH NEVILLE CHEMICAL EUROPE B.V. KOPPERS NETHERLANDS B.V.);\n4200 = ATHORA NETHERLANDS NV;\n4201 = GERESERVEERD;\n4202 = HISWA - BEDRIJVEN IN WATERSPORTINDUSTRIE EN RECREATIE;\n4203 = ENGIE ENERGIE NEDERLAND NV;\n4204 = VETERINAIRE SECTOR CAO;\n4205 = AAN DE SLAG;\n4206 = GERESERVEERD;\n4207 = GERESERVEERD;\n4208 = GERESERVEERD;\n4209 = GERESERVEERD;\n4210 = GERESERVEERD;\n4211 = STICHTING PUBLIEKE OMROEP AMSTERDAM;\n4212 = MORTELBEDRIJVEN CAO;\n4213 = GERESERVEERD;\n4214 = GERESERVEERD;\n4215 = MKMB KINDEROPVANG;\n4216 = GERESERVEERD;\n4217 = GERESERVEERD;\n4218 = GERESERVEERD;\n4219 = GERESERVEERD;\n4220 = GERESERVEERD;\n4221 = GERESERVEERD;\n4222 = GERESERVEERD;\n4223 = PARTIJ VAN DE ARBEID EN NEVENINSTELLINGEN;\n4224 = GERESERVEERD;\n4225 = GERESERVEERD;\n4226 = GERESERVEERD;\n4227 = GERESERVEERD;\n4228 = GERESERVEERD;\n4229 = GERESERVEERD;\n423 = RUNDVEEVERBETERING IN NEDERLAND;\n4230 = GERESERVEERD;\n4231 = GERESERVEERD;\n4232 = GERESERVEERD;\n4233 = OILTANKING TERNEUZEN B.V. CAO;\n4234 = DSM RESINS AND FUNCTIONAL MATERIALS INCL. NIAGA, DAM AND COATINGSBUSINESS OF DAS;\n4235 = GERESERVEERD;\n4236 = E-COMMERCE NEDERLAND;\n4237 = GERESERVEERD;\n4238 = GERESERVEERD;\n4239 = GERESERVEERD;\n4240 = NOBIAN CAO 1;\n4241 = NOBIAN CAO 2;\n4242 = GERESERVEERD;\n4243 = EVOS AMSTERDAM WEST;\n4244 = GERESERVEERD;\n4245 = NAPK MUZIEKENSEMBLES;\n4246 = GERESERVEERD;\n4247 = GERESERVEERD;\n4248 = GERESERVEERD;\n4249 = MARIN CREW FERRY;\n4250 = SCALABOR CAO;\n4251 = NNIP ARBEIDSVOORWAARDENPROTOCOL;\n4252 = GERESERVEERD;\n4253 = GERESERVEERD;\n4254 = GERESERVEERD;\n4255 = KNDB CAO, VOOR PERSONEEL WERKZAAM BIJ ZELFSTANDIGE DROGISTERIJBEDRIJVEN;\n4256 = GERESERVEERD;\n4257 = GERESERVEERD;\n4258 = GERESERVEERD;\n4259 = GERESERVEERD;\n426 = CBR, STICHTING CENTRAAL BUREAU RIJVAARDIGHEIDSBEWIJZEN;\n4260 = GERESERVEERD;\n4261 = GERESERVEERD;\n4262 = ROLLDOCK SHIPPING B.V.;\n4263 = PASSAGIERS- EN BAGAGEAFHANDELING LUCHTVAART SECTORCAO;\n4264 = NEXPERIA B.V. & ITEC B.V.;\n4265 = DPM AVIENT TRANSFER CLA;\n4266 = GERESERVEERD;\n4267 = GERESERVEERD;\n4268 = GERESERVEERD;\n4269 = GERESERVEERD;\n427 = TANDTECHNIEK;\n4270 = PENSIOENFONDS RAIL & OPENBAAR VERVOER;\n4271 = COVESTRO;\n4272 = RENEWI SMINK B.V. TOEPASSING CAO BGV;\n4273 = BESTUURDERS FUNDEREND ONDERWIJS;\n4274 = NEDERLANDS HORECA GILDE - HORECA CAO;\n4275 = EUROFINS EAG MATERIAL SCIENCE NETHERLANDS;\n4276 = GERESERVEERD;\n4277 = GERESERVEERD;\n4278 = GERESERVEERD;\n4279 = GERESERVEERD;\n4280 = GERESERVEERD;\n4281 = GERESERVEERD;\n4282 = GERESERVEERD;\n4283 = HELVOET RUBBER & PLASTIC TECHNOLOGIES B.V.;\n4284 = GERESERVEERD;\n4285 = GERESERVEERD;\n4286 = GERESERVEERD;\n4287 = CREAMY CREATION BV CAO;\n4288 = GERESERVEERD;\n4289 = ORGANON NEDERLAND CAO;\n429 = KUNSTEDUCATIE;\n4290 = GERESERVEERD;\n4291 = GERESERVEERD;\n4292 = ETA (EUROTANK);\n4293 = GERESERVEERD;\n4294 = GERESERVEERD;\n4295 = LKCA;\n4296 = GERESERVEERD;\n4297 = OCEANWIDE CREWING SERVICES (OCS);\n4298 = WESTLAKE EPOXY;\n4299 = HEIDELBERG MATERIALS NEDERLAND;\n43 = ARCHITECTENBUREAUS;\n4300 = GERESERVEERD;\n4301 = GERESERVEERD;\n4302 = GERESERVEERD;\n4303 = RTL NIEUWS B.V.;\n4304 = GERESERVEERD;\n4305 = AEGON OVERGANGSPROTOCOL;\n4306 = GERESERVEERD;\n4307 = GERESERVEERD;\n4308 = TERMINAL RECRUITERS BV / VERLADING- STEIGEROPERATORS;\n4309 = GERESERVEERD;\n431 = LENSEN TOPPOINT BV;\n4310 = GERESERVEERD;\n4311 = MATECK PROJECT SUPPORT BV - MEDEWERKERS TECHNIEK;\n4312 = GERESERVEERD;\n4313 = SMURFIT KAPPA ROERMOND B.V.;\n4314 = EASYJET CABINEPERSONEEL WERKEND VANUIT NEDERLAND;\n4315 = CANON PRODUCTION PRINTING;\n4316 = INTRO VERKEER & VEILIGHEID B.V.;\n4317 = GALL & GALL;\n4318 = WO2NET;\n4319 = GERESERVEERD;\n4320 = GERESERVEERD;\n4321 = VRUMONA B.V.;\n4322 = GERESERVEERD;\n4323 = DSM PENSION SERVICES B.V. OVERGANGS-CAO;\n4324 = GERESERVEERD;\n4325 = BMI NEDERLAND;\n4326 = GERESERVEERD;\n4327 = GERESERVEERD;\n4328 = SWISSPORT CARGO SERVICES THE NETHERLANDS;\n4329 = ENVALIOR;\n433 = SCHOONMAAK- EN GLAZENWASSERSBEDRIJF;\n4330 = REMIA;\n4331 = CABINEPERSONEEL TUI FLY NEDERLAND;\n4332 = GERESERVEERD;\n4333 = GERESERVEERD;\n4334 = A2B-ONLINE;\n4335 = MAASVLAKTE OLIE TERMINAL;\n4336 = GERESERVEERD;\n4337 = GERESERVEERD;\n4338 = GERESERVEERD;\n4339 = GERESERVEERD;\n434 = TOTALENERGIES LUBRICANTS PLANT BEVERWIJK B.V.;\n4340 = GERESERVEERD;\n4341 = AVIENT PROTECTIVE MATERIALS SERVICES B.V.;\n4342 = HENGELO SALT SPECIALTIES;\n4343 = HENGELO SALT SPECIALTIES HOGER PERSONEEL;\n4344 = WILHELMSEN PORT SERVICES;\n4345 = HUISARTSEN IN LOONDIENST;\n4346 = GERESERVEERD;\n4347 = GERESERVEERD;\n4348 = GERESERVEERD;\n4349 = DELPHARM MEPPEL B.V.;\n4350 = GERESERVEERD;\n4351 = GERESERVEERD;\n4352 = GERESERVEERD;\n4353 = VOPAK IN NEDERLAND;\n4354 = WAGENBORG MPSV FLEET;\n4355 = SAINT-GOBAIN ABRASIVES BORN;\n4356 = CABINEPERSONEEL KLM CITYHOPPER B.V.;\n4357 = GERESERVEERD;\n4358 = GERESERVEERD;\n4359 = GERESERVEERD;\n436 = BORAX;\n4360 = GERESERVEERD;\n4361 = GERESERVEERD;\n4362 = GERESERVEERD;\n4363 = GERESERVEERD;\n4364 = GERESERVEERD;\n4365 = SPORTIEF CAPELLE;\n4366 = LUCHTVAART VRACHT AFHANDELING;\n4367 = SPORT-ID ONDERNEMINGSCAO;\n4368 = GERESERVEERD;\n4369 = GERESERVEERD;\n437 = HES BOTLEK TANK TERMINAL;\n4370 = ADM EUROPOORT B.V.;\n4371 = GERESERVEERD;\n4372 = VESTA TERMINAL FLUSHING;\n4373 = GERESERVEERD;\n4374 = CHANE TERMINAL DODEWAARD B.V.;\n4375 = GERESERVEERD;\n4376 = GERESERVEERD;\n4377 = GERESERVEERD;\n4378 = GERESERVEERD;\n4379 = GERESERVEERD;\n438 = ITS CALEB BRETT B.V. BUITENDIENST EN LABORATORIUMP;\n4380 = GERESERVEERD;\n4381 = SENZORA B.V.;\n4382 = DHL GLOBAL FORWARDING NEDERLAND DHL FREIGHT NEDERLAND;\n4383 = GERESERVEERD;\n4384 = GERESERVEERD;\n4385 = GERESERVEERD;\n4386 = GERESERVEERD;\n4387 = GERESERVEERD;\n4388 = GERESERVEERD;\n4389 = GERESERVEERD;\n4390 = GERESERVEERD;\n4391 = GERESERVEERD;\n4392 = GERESERVEERD;\n4393 = GERESERVEERD;\n4394 = GERESERVEERD;\n4395 = GERESERVEERD;\n4396 = GERESERVEERD;\n4397 = GERESERVEERD;\n4398 = GERESERVEERD;\n4399 = GERESERVEERD;\n44 = 'PGGM';\n4400 = GERESERVEERD;\n4401 = GERESERVEERD;\n4402 = GERESERVEERD;\n4403 = GERESERVEERD;\n4404 = GERESERVEERD;\n4405 = GERESERVEERD;\n4406 = GERESERVEERD;\n4407 = GERESERVEERD;\n4408 = GERESERVEERD;\n4409 = GERESERVEERD;\n441 = ALPLA NEDERLAND B.V.;\n4410 = GERESERVEERD;\n4411 = GERESERVEERD;\n4412 = GERESERVEERD;\n4413 = GERESERVEERD;\n4414 = GERESERVEERD;\n4415 = GERESERVEERD;\n4416 = GERESERVEERD;\n4417 = GERESERVEERD;\n4418 = GERESERVEERD;\n4419 = GERESERVEERD;\n4420 = GERESERVEERD;\n4421 = GERESERVEERD;\n4422 = GERESERVEERD;\n4423 = GERESERVEERD;\n4424 = GERESERVEERD;\n4425 = GERESERVEERD;\n4426 = GERESERVEERD;\n4427 = GERESERVEERD;\n4428 = GERESERVEERD;\n4429 = GERESERVEERD;\n4430 = GERESERVEERD;\n4431 = GERESERVEERD;\n4432 = GERESERVEERD;\n4433 = GERESERVEERD;\n4434 = GERESERVEERD;\n4435 = GERESERVEERD;\n4436 = GERESERVEERD;\n4437 = GERESERVEERD;\n4438 = GERESERVEERD;\n4439 = GERESERVEERD;\n4440 = GERESERVEERD;\n4441 = GERESERVEERD;\n4442 = GERESERVEERD;\n4443 = GERESERVEERD;\n4444 = GERESERVEERD;\n4445 = GERESERVEERD;\n4446 = GERESERVEERD;\n4447 = GERESERVEERD;\n4448 = GERESERVEERD;\n4449 = GERESERVEERD;\n445 = LUCITE INTERNATIONAL ALPHA B.V.;\n4450 = GERESERVEERD;\n4451 = GERESERVEERD;\n4452 = GERESERVEERD;\n4453 = GERESERVEERD;\n4454 = GERESERVEERD;\n4455 = GERESERVEERD;\n4456 = GERESERVEERD;\n4457 = GERESERVEERD;\n4458 = GERESERVEERD;\n4459 = GERESERVEERD;\n4460 = GERESERVEERD;\n4461 = GERESERVEERD;\n4462 = GERESERVEERD;\n4463 = GERESERVEERD;\n4464 = GERESERVEERD;\n4465 = GERESERVEERD;\n4466 = GERESERVEERD;\n4467 = GERESERVEERD;\n4468 = GERESERVEERD;\n4469 = GERESERVEERD;\n4470 = GERESERVEERD;\n4471 = GERESERVEERD;\n4472 = GERESERVEERD;\n4473 = GERESERVEERD;\n4474 = GERESERVEERD;\n4475 = GERESERVEERD;\n4476 = GERESERVEERD;\n4477 = GERESERVEERD;\n4478 = GERESERVEERD;\n4479 = GERESERVEERD;\n448 = ALBERT HEIJN BV CAO LOGISTIEK;\n4480 = GERESERVEERD;\n4481 = GERESERVEERD;\n4482 = GERESERVEERD;\n4483 = GERESERVEERD;\n4484 = GERESERVEERD;\n4485 = GERESERVEERD;\n4486 = GERESERVEERD;\n4487 = GERESERVEERD;\n4488 = GERESERVEERD;\n4489 = GERESERVEERD;\n449 = HUIS-AAN-HUISBLADJOURNALISTEN;\n4490 = GERESERVEERD;\n4491 = GERESERVEERD;\n4492 = GERESERVEERD;\n4493 = GERESERVEERD;\n4494 = GERESERVEERD;\n4495 = GERESERVEERD;\n4496 = GERESERVEERD;\n4497 = GERESERVEERD;\n4498 = GERESERVEERD;\n4499 = GERESERVEERD;\n450 = PIANOTECHNICI EN PIANOSTEMMERS;\n4500 = GERESERVEERD;\n4501 = GERESERVEERD;\n4502 = GERESERVEERD;\n4503 = GERESERVEERD;\n4504 = GERESERVEERD;\n4505 = GERESERVEERD;\n4506 = GERESERVEERD;\n4507 = GERESERVEERD;\n4508 = GERESERVEERD;\n4509 = GERESERVEERD;\n4510 = GERESERVEERD;\n4511 = GERESERVEERD;\n4512 = GERESERVEERD;\n4513 = GERESERVEERD;\n4514 = GERESERVEERD;\n4515 = GERESERVEERD;\n4516 = GERESERVEERD;\n4517 = GERESERVEERD;\n4518 = GERESERVEERD;\n4519 = GERESERVEERD;\n4520 = GERESERVEERD;\n4521 = GERESERVEERD;\n4522 = GERESERVEERD;\n4523 = GERESERVEERD;\n4524 = GERESERVEERD;\n4525 = GERESERVEERD;\n4526 = GERESERVEERD;\n4527 = GERESERVEERD;\n4528 = GERESERVEERD;\n4529 = GERESERVEERD;\n453 = AIR PRODUCTS NEDERLAND;\n4530 = GERESERVEERD;\n4531 = GERESERVEERD;\n4532 = GERESERVEERD;\n4533 = GERESERVEERD;\n4534 = GERESERVEERD;\n4535 = GERESERVEERD;\n4536 = GERESERVEERD;\n4537 = GERESERVEERD;\n4538 = GERESERVEERD;\n4539 = GERESERVEERD;\n454 = DANISCO ZAANDAM B.V.;\n4540 = GERESERVEERD;\n4541 = GERESERVEERD;\n4542 = GERESERVEERD;\n4543 = GERESERVEERD;\n4544 = GERESERVEERD;\n4545 = GERESERVEERD;\n4546 = GERESERVEERD;\n4547 = GERESERVEERD;\n4548 = GERESERVEERD;\n4549 = GERESERVEERD;\n455 = ARKEMA VLISSINGEN B.V.;\n4550 = GERESERVEERD;\n4551 = GERESERVEERD;\n4552 = GERESERVEERD;\n4553 = GERESERVEERD;\n4554 = GERESERVEERD;\n4555 = GERESERVEERD;\n4556 = GERESERVEERD;\n4557 = GERESERVEERD;\n4558 = GERESERVEERD;\n4559 = GERESERVEERD;\n4560 = GERESERVEERD;\n4561 = GERESERVEERD;\n4562 = GERESERVEERD;\n4563 = GERESERVEERD;\n4564 = GERESERVEERD;\n4565 = GERESERVEERD;\n4566 = GERESERVEERD;\n4567 = GERESERVEERD;\n4568 = GERESERVEERD;\n4569 = GERESERVEERD;\n457 = CONSTAR INTERNATIONAL HOLLAND (PLASTICS) BV;\n4570 = GERESERVEERD;\n4571 = GERESERVEERD;\n4572 = GERESERVEERD;\n4573 = GERESERVEERD;\n4574 = GERESERVEERD;\n4575 = GERESERVEERD;\n4576 = GERESERVEERD;\n4577 = GERESERVEERD;\n4578 = GERESERVEERD;\n4579 = GERESERVEERD;\n4580 = GERESERVEERD;\n4581 = GERESERVEERD;\n4582 = GERESERVEERD;\n463 = BINNENSCHEEPVAART;\n465 = BANDEN- EN WIELENBRANCHE;\n466 = Economisch Instituut voor het Midden- en Kleinbedr (vervallen);\n467 = DNATA;\n468 = ENERGIE- EN NUTSBEDRIJVEN;\n469 = TESO, TEXELS EIGEN STOOMBOOT ONDERNEMING;\n473 = FOLBB;\n475 = SPORT, WERKGEVERSORGANISATIE IN DE;\n476 = ESSITY OPERATIONS SUAMEER B.V.;\n477 = STICHTING STAYOKAY;\n479 = CROWN VAN GELDER PAPIERFABRIEKEN;\n48 = M&S;\n480 = HOMMEL REGULIER;\n482 = NIEUWSBLADJOURNALISTEN;\n483 = CTW-ANTEAGROUP;\n487 = METALEKTRO;\n488 = METALEKTRO HOGER PERSONEEL;\n49 = VERPLEEG- EN VERZORGINGSHUIZEN EN THUISZORG ONDERDEEL VERPLEEG- EN VERZORGINGSHUIZEN;\n491 = LAMBTON-WESTON/MEIJER VESTIGING EEMSHAVEN;\n496 = PARTICULIERE BEVEILIGING;\n5 = SYNTHOS BREDA BV EN SYNTHOS STYRENICS SERVICES BV;\n50 = APOTHEKEN;\n505 = STENA LINE ZEEVARENDEN;\n506 = KALKZANDSTEENINDUSTRIE -/ CELLENBETONINDUSTRIE;\n509 = GEMENGDE BRANCHE EN SPEELGOEDBRANCHE;\n51 = TIMMERINDUSTRIE CAO;\n510 = CARGILL;\n511 = AKZO NOBEL NEDERLAND;\n512 = AKZO FIBERS ENGINEERING;\n513 = AKZO NOBEL COATINGS BV;\n514 = ORGANON BIOSCIENCES NEDERLAND ( VH AKZO PHARMA);\n516 = AMMERAAL BELTECH NEDERLAND BEHEER B.V.;\n517 = BOUWBEDRIJF, UTA,;\n518 = DROGISTERIJBRANCHE VDF-CAO;\n52 = DE BIJENKORF CAO;\n521 = SHB ROTTERDAM CAO (V/H SAMENWERKENDE HAVENBEDRIJVEN, KANTOORPERS0NEEL, SH);\n526 = INTERIEURBOUW EN MEUBELINDUSTRIE;\n53 = ESHA HOLDING BV;\n531 = AKZO NOBEL NEDERLAND HOGER PERSONEEL;\n532 = EURONYL-DPI;\n533 = LEVENSMIDDELEN, GROOTWINKELBEDRIJVEN VGL;\n534 = SMIT TAK VARENDE MAANDLONERS VML;\n540 = ERICSSON BROADCAST SERVICES (VH NOB N.V. CROSS MEDIA FACILITIES);\n541 = CENTRAAL BOEKHUIS CULEMBORG;\n542 = NAAIMACHINEBRANCHE;\n544 = REDERIJ CEMENT - TANKVAART;\n545 = EUROFINS AGRO TESTING WAGENINGEN B.V.;\n549 = AARDAPPELEN GROENTEN EN FRUIT, DETAILHANDEL IN-;\n555 = SCHOTT PIETERMAN B.V. V/H PIETERMAN GLAS B.V.;\n556 = LEHNKERING LOGSTICS B.V. V/H LEHNKERING MONTAN NED;\n557 = SLIJTERIJEN;\n558 = PAPIERGROOTHANDEL;\n559 = IKEA NEDERLAND B.V. en INTER IKEA SYSTEMS B.V.;\n56 = HENKEL NEDERLAND OPERATIONS BV;\n561 = DAMCO (NETHERLANDS) BV, DAMCO INTERNATIONAL BV;\n563 = ZUIVELINDUSTRIE, HOGER PERSONEEL;\n565 = PLASTICON THE NETHERLANDS B.V.;\n569 = KUNSTSTOF-, RUBBER- EN LIJMINDUSTRIE;\n57 = VISKO TEEPAK B.V.;\n571 = POLYTEC PLASTICS NL BV;\n572 = UTI NEDERLAND B.V. (VOORHEEN UNION-TRANSPORT B.V.;\n573 = PLUIMVEEVERWERKENDE INDUSTRIE;\n576 = AVM HOLDING BV;\n58 = COOPERATIE KONINKLIJKE AVEBE U.A.;\n581 = ABVAKABO FNV;\n582 = NEDLLOYD;\n588 = COFFEE & TEA;\n589 = FERRO (HOLLAND) B.V.;\n592 = BLOEMEN EN PLANTEN GESPECIALISEERDE DETAILHANDEL IN;\n595 = ESD-SIC B.V.;\n6 = LANTOR B.V.;\n60 = PRIMO NETHERLANDS B.V.;\n603 = NEDERLANDSE SPOORWEGEN (NS);\n604 = UITZENDONDERNEMINGEN VASTE MEDEWERKERS;\n607 = BRINKMAN;\n609 = TUINCENTRA;\n61 = MENEBA MEEL WEERT BV (V/H PRESCO INTERNATIONAL BV);\n615 = ZORGVERZEKERAARS;\n618 = ZEELAND REFINERY NV;\n619 = BIC NETHERLANDS B.V.V/H BIC BENELUX B.V.;\n621 = ORGELBOUWBEDRIJF IN NEDERLAND;\n623 = OPTIEKBEDRIJVEN;\n624 = MELDON PLASTICS;\n625 = HOGER BEROEPSONDERWIJS;\n626 = CP KELCO B.V. V/H NOVIANT;\n627 = POSTNL, CAO VOOR ZATERDAGBESTELLERS;\n629 = ANP ADMINISTRATIEF PERSONEEL;\n63 = BIJENKORF CAO HP;\n630 = CONTRACTSPELERS BETAALD VOETBAL NEDERLAND;\n632 = BANKEN CAO;\n633 = ABU CAO VOOR UITZENDKRACHTEN;\n634 = BEDRIJFSVERZORGINGSDIENSTEN;\n636 = VERZEKERINGSBEDRIJF BUITENDIENST;\n637 = VERZEKERINGSBEDRIJF, CAO VOOR HET;\n639 = GIPSBOUW;\n64 = UCC COFFEE BENELUX;\n641 = SPLIETHOFF BEHEER;\n644 = UNILEVER NEDERLAND;\n645 = ZEEVISBEDRIJF, CAO VOOR HET;\n65 = REMPLACANTEN NEDERLANDSE ORKESTEN;\n650 = GROENTEN EN FRUIT, GROOTHANDEL IN-;\n659 = OVET PERSONEEL IN DE STUWADOORS EN TECHNISCHE DIENST;\n66 = HISWA (HOUTEN EN KUNSTSTOFFEN JACHTBOUW);\n660 = PROMENS ZEVENAAR B.V.;\n662 = HEINEKEN NETHERLANDS SUPPLY B.V.;\n663 = DSM NEORESINS ( VH AVECIA B.V. V/H ZENECA RESINS B.V. TE WAALWIJK);\n664 = NEDERLANDSCHE APPARATENFABRIEK NEDAP;\n668 = CERESTAR BENELUX;\n670 = SMURFIT KAPPA MERCURIUS B.V. EN SMURFIT KAPPA SHARED SERVICES ( VH SMURFIT LONA GOLFKARTON B.V.);\n675 = MN SERVICES N.V.;\n679 = ZORGVERVOER EN TAXI;\n682 = OLAM COCOA BV;\n683 = ELEKTROTECHNISCHE DETAILHANDEL;\n685 = AMATEURISTISCHE KUNSTBEOEFENING/KUNSTZINNIGE VORMING;\n686 = DSM LIMBURG;\n69 = BOLS DISTILLERIES B.V.;\n696 = AMBULANCEZORG (PERSONEEL);\n698 = SMURFIT WESTROCK CORRUGATED;\n699 = TROBAS GELATINE B.V.;\n7 = SMITS VUREN;\n70 = GROLSCHE BIERBROUWERIJ NEDERLAND;\n700 = AIRCRAFT FUEL SUPPLY B.V.;\n703 = PILLOPAK;\n705 = CSM SUIKER II HOGER PERSONEEL;\n706 = INBEV NEDERLAND N.V.;\n709 = VLEESWARENINDUSTRIE;\n710 = SPINX BV KONINKLIJKE;\n714 = PHILIP MORRIS INVESTMENTS B.V.;\n716 = FENZI AGT NETHERLANDS B.V.;\n719 = BOUWFONDS NEDERLANDSE GEMEENTEN;\n72 = KLM GRONDPERSONEEL;\n720 = CULTUURTECHNISCHE WERKEN;\n721 = HUISARTSENZORG;\n724 = DSM RESINS;\n725 = GROEN, GROND EN INFRASTRUCTUUR;\n727 = RETAIL NON-FOOD;\n73 = DE EENDRACHT BV V/H EENDRACHT, KARTON;\n730 = TECHNISCHE GROOTHANDEL;\n733 = NIACET BV;\n734 = SOLVAY CHEMIE B.V.;\n735 = COCA-COLA EUROPEAN PARTNERS NEDERLAND B.V.;\n738 = SILVO B.V. EN WILL-RAISA B.V.;\n739 = NESTLE NEDERLAND CAO II HOGER PERSONEEL;\n740 = INEOS SILICAS NETHERLANDS BV (VOORHEEN CROSFIELD;\n741 = SEKISUI-ALVEO B.V.;\n742 = OUWEHAND'S REDERIJ EN VISVERWERKING;\n744 = GOUDA VUURVAST;\n745 = RIETER AUTOMOTIVE NEDERLAND BV;\n748 = SLAGERSBEDRIJF;\n750 = CONTRACTCATERINGBRANCHE;\n753 = AGC FLAT GLASS NEDERLAND B.V. (VH GLAVERBEL NEDERLAND BV);\n756 = NEDMAG B.V.;\n757 = WIENTJES KUNSTSTOFFEN HOLDING B.V. (V/H WIENTJES B;\n758 = BV NEDERLANDSE OPTISCHE INDUSTRIE E.N.O.T. ( VH OPTISCHE INDUSTRIE AMSTERDAM B.V. );\n759 = SCHILDERS-, AFWERKINGS-, VASTGOEDONDERHOUDS- EN GLASZETBEDRIJF IN NEDERLAND;\n76 = MENEBA MEEL WORMERVEER (V.H. WESSANEN MEEL B.V.);\n762 = MICHELIN NEDERLAND NV EN MICHELIN DISTRIBUTION BV;\n771 = KOOPMANS KONINKLIJKE MEELFABRIEKEN BV;\n775 = VENDOR B.V.;\n776 = PAPIERINDUSTRIE;\n780 = YARA SLUISKIL BV YARA VLAARDINGEN BV;\n782 = FOM, REGULIER;\n785 = HUHTAMAKI NEDERLAND BV;\n787 = SBS VEERDIENST MAASSLUIS;\n788 = CNV ONDERWIJS;\n789 = SUPERCONFEX;\n791 = TEXTIELGOEDEREN EN AANVERWANTE ARTIKELEN GROOTH. IN -;\n797 = SYNGENTA MANUFACTURING B.V. V/H NOVARTIS AGRO BENE;\n8 = ECOLAB PRODUCTION NETHERLANDS B.V.;\n80 = WATERBOUW;\n800 = ENCI HOLDING NV EN ENCI BV;\n8004 = AIR LIQUIDE INDUSTRIE BV;\n8005 = AKZO NOBEL ENGINEERING & SUAC;\n8006 = ALPHA FLIGHT SERVICES;\n8007 = FORTIS ASR VERZEKERINGSGROEP V/H AMEV STAD ROTTERDAM VERZEKERINGSGROEP (ASR) N.V.;\n8008 = ASTENHOF (VH GOOSSENS);\n8009 = ASTMAFONDS, NEDERLANDS;\n8010 = AT5 GROEP;\n8012 = BAT COMMERCIE;\n8013 = BAT PRODUKTIE;\n8016 = BRUNA;\n8017 = BUDELPACK;\n8019 = CHEMGAS SHIPPING VAREND PERSONEEL;\n802 = HAVENBEDRIJF DELFZIJL;\n8020 = CHEMGAS TERMINAL VLISSINGEN BV;\n8021 = CONTRADO;\n8022 = CULTUUR NETWERK (V.H. LOKV);\n8023 = EDVENTURE;\n8025 = FWZ - FEDERATIE WERKNEMERS IN DE ZEEVAART;\n8026 = GATE GOURMET;\n8027 = GELDERS GENOOTSCHAP;\n8028 = GERLING NCM;\n8029 = HAL BEHEER;\n8030 = HITT HOLLAND INSTITUTE OF TRAFFIC TECHNO;\n8032 = JO TANKERS;\n8034 = KADASTER;\n8035 = KANTOREN FONDS NEDERLAND;\n8036 = KINTENT;\n8040 = KNAUF ISOL (VH LITONIT);\n8041 = KOEKKOEK KRAANVERHUUR;\n8044 = MAATSCHAP EUROPOORT TERMINAL (MET/MAFINA;\n8046 = BP RAFFINADERIJ ROTTERDAM B.V. ( VH NETHERLANDS REFINING COMPANY (NEREFCO) );\n8047 = NORFOLKLINE BEAMBTEN;\n8048 = NORTHERN MARINE MANAGEMENT;\n8049 = NOVIB;\n805 = CABOT B.V.;\n8053 = ODFJELL TERMINALS (ROTTERDAM);\n8056 = PEINEMAN HEFTRUCKS;\n8057 = PVDA + NEVENINSTELLINGEN;\n8058 = RANDSTAD UITZENDBUREAU VASTE MEDEWERKERS;\n806 = ENNA AEROSOLS B.V.;\n8060 = SCA PACKAGING DISPLAY BARNEVELD;\n8063 = SECEUROP NEDERLAND SECURITY CHECK BV;\n8068 = SHIN ETSU PVC;\n8069 = SJOR-SEKTOR;\n807 = EVONIK CARBON BLACK NEDERLAND B.V.;\n8070 = ST. HAVENBEDRIJF EEMSMOND;\n8071 = STATER;\n8073 = STORAENSO;\n8074 = STUKGOED AMSTERDAM;\n8075 = VEILING VLEUTEN;\n8076 = ZEEHAVEN IJMUIDEN;\n8077 = ZEEHAVENBEDRIJF DORDRECHT;\n8078 = ZENITEL NETHERLANDS BV;\n8079 = STAHL EUROPE;\n8080 = STICHTING ROI;\n8081 = QLIP CAO;\n8082 = LEDERINDUSTRIE;\n8083 = SMIT HARBOUR TOWAGE ROTTERDAM BV, VARENDE WERKNEMERS;\n8084 = ISOFT NEDERLAND BV (V/H TOREX HISCOM);\n8085 = AEGON BANK (V/H AEGON SPAARBELEG);\n8087 = ALBEMARLE CATALYSTS;\n8088 = CONNEXXION WATER;\n8089 = HEIDENHAIN NUMERIC BV;\n8090 = ENERGIEONDERZOEK CENTRUM NEDERLAND (ECN);\n8091 = KAMERS VAN KOOPHANDEL;\n8092 = NATTE GRINDBAGGERBEDRIJF;\n8093 = NUPLEX RESINS BV;\n8094 = SROL, STICHTING;\n8095 = UNIFINE SAUCES EN SPICES;\n8096 = VERSTEGEN SPICES & SAUCES;\n8097 = VOPAK TERMINAL VLISSINGEN;\n8098 = RECHTSBIJSTAND;\n8099 = BEIERSDORF;\n810 = CYTEC INDUSTRIES EN CYTEC MANUFACTURING B.V.;\n8100 = GERESERVEERD;\n8101 = GERESERVEERD;\n8102 = TNO;\n8103 = GERESERVEERD;\n8104 = GERESERVEERD;\n8105 = KNMT-ARBEIDSVOORWAARDENREGELING TANDHEELKUNDIGE PRAKTIJKEN;\n8106 = GERESERVEERD;\n8107 = GERESERVEERD;\n8108 = GERESERVEERD;\n8109 = GERESERVEERD;\n811 = BROCACEF HOLDING NV;\n8110 = GERESERVEERD;\n8111 = ALGEMEEN NEDERLANDS PERSBUREAU(ANP);\n8112 = NBBU VASTE MEDEWERKERS UITZENDBUREAUS;\n8113 = GERESERVEERD;\n8114 = GERESERVEERD;\n8115 = GERESERVEERD;\n8116 = GERESERVEERD;\n8117 = GERESERVEERD;\n8118 = GERESERVEERD;\n8119 = GERESERVEERD;\n8120 = GERESERVEERD;\n8121 = GERESERVEERD;\n8122 = GERESERVEERD;\n8123 = GERESERVEERD;\n8124 = GERESERVEERD;\n8125 = GERESERVEERD;\n8126 = GERESERVEERD;\n8127 = GERESERVEERD;\n8128 = GERESERVEERD;\n8129 = GERESERVEERD;\n8130 = GERESERVEERD;\n8131 = GERESERVEERD;\n8132 = GERESERVEERD;\n8133 = GERESERVEERD;\n8134 = GERESERVEERD;\n8135 = GERESERVEERD;\n8136 = GERESERVEERD;\n8137 = GERESERVEERD;\n8138 = GERESERVEERD;\n8139 = GERESERVEERD;\n8140 = GERESERVEERD;\n8141 = GERESERVEERD;\n8142 = GERESERVEERD;\n8143 = GERESERVEERD;\n8144 = GERESERVEERD;\n8145 = GERESERVEERD;\n8146 = GERESERVEERD;\n8147 = GERESERVEERD;\n8148 = GERESERVEERD;\n8149 = GERESERVEERD;\n8150 = GERESERVEERD;\n8151 = GERESERVEERD;\n8152 = GERESERVEERD;\n8153 = GERESERVEERD;\n8154 = GERESERVEERD;\n8155 = GERESERVEERD;\n8156 = GERESERVEERD;\n8157 = GERESERVEERD;\n8158 = GERESERVEERD;\n8159 = GERESERVEERD;\n8160 = GERESERVEERD;\n8161 = GERESERVEERD;\n8162 = GERESERVEERD;\n8163 = GERESERVEERD;\n8164 = GERESERVEERD;\n8165 = GERESERVEERD;\n8166 = GERESERVEERD;\n8167 = GERESERVEERD;\n8168 = GERESERVEERD;\n8169 = GERESERVEERD;\n8170 = GERESERVEERD;\n8171 = GERESERVEERD;\n8172 = GERESERVEERD;\n8173 = GERESERVEERD;\n8174 = GERESERVEERD;\n8175 = GERESERVEERD;\n8176 = GERESERVEERD;\n8177 = GERESERVEERD;\n8178 = GERESERVEERD;\n8179 = GERESERVEERD;\n8180 = GERESERVEERD;\n8181 = GERESERVEERD;\n8182 = GERESERVEERD;\n8183 = GERESERVEERD;\n8184 = GERESERVEERD;\n8185 = GERESERVEERD;\n8186 = GERESERVEERD;\n8187 = GERESERVEERD;\n8188 = GERESERVEERD;\n8189 = GERESERVEERD;\n819 = BEREIDE VERF- EN DRUKINKTINDUSTRIE;\n8190 = GERESERVEERD;\n8191 = GERESERVEERD;\n8192 = GERESERVEERD;\n8193 = GERESERVEERD;\n8194 = GERESERVEERD;\n8195 = GERESERVEERD;\n8196 = GERESERVEERD;\n8197 = GERESERVEERD;\n8198 = GERESERVEERD;\n8199 = GERESERVEERD;\n820 = ZEEP-, WAS-, EN REINIGINGSMIDDELENINDUST;\n8200 = GERESERVEERD;\n8201 = GERESERVEERD;\n8202 = GERESERVEERD;\n8203 = GERESERVEERD;\n8204 = GERESERVEERD;\n8205 = GERESERVEERD;\n8206 = GERESERVEERD;\n8207 = GERESERVEERD;\n8208 = GERESERVEERD;\n8209 = GERESERVEERD;\n821 = HERCULES;\n8210 = GERESERVEERD;\n8211 = GERESERVEERD;\n8212 = GERESERVEERD;\n8213 = GERESERVEERD;\n8214 = GERESERVEERD;\n8215 = GERESERVEERD;\n8216 = GERESERVEERD;\n8217 = GERESERVEERD;\n8218 = GERESERVEERD;\n8219 = GERESERVEERD;\n822 = M EN T CARROSSERIEBEDRIJF;\n8220 = GERESERVEERD;\n8221 = GERESERVEERD;\n8222 = GERESERVEERD;\n8223 = GERESERVEERD;\n8224 = GERESERVEERD;\n8225 = GERESERVEERD;\n8226 = GERESERVEERD;\n8227 = GERESERVEERD;\n8228 = GERESERVEERD;\n8229 = GERESERVEERD;\n823 = MOTORVOERTUIGENBEDRIJF EN TWEEWIELERBEDRIJF;\n8230 = GERESERVEERD;\n8231 = GERESERVEERD;\n8232 = GERESERVEERD;\n8233 = GERESERVEERD;\n8234 = GERESERVEERD;\n8235 = GERESERVEERD;\n8236 = GERESERVEERD;\n8237 = GERESERVEERD;\n8238 = GERESERVEERD;\n8239 = GERESERVEERD;\n824 = M EN T METAALBEWERKINGSBEDRIJF;\n8240 = GERESERVEERD;\n8241 = GERESERVEERD;\n8242 = GERESERVEERD;\n8243 = GERESERVEERD;\n8244 = GERESERVEERD;\n8245 = GERESERVEERD;\n8246 = GERESERVEERD;\n8247 = GERESERVEERD;\n8248 = GERESERVEERD;\n8249 = GERESERVEERD;\n825 = M en T Loodg., Fitters-, Centr. Verwarm. en Koeltechn. Installatiebedrijf (vervallen);\n8250 = GERESERVEERD;\n8251 = GERESERVEERD;\n8252 = GERESERVEERD;\n8253 = GERESERVEERD;\n8254 = GERESERVEERD;\n8255 = GERESERVEERD;\n8256 = GERESERVEERD;\n8257 = GERESERVEERD;\n8258 = GERESERVEERD;\n8259 = GERESERVEERD;\n826 = M EN T ISOLATIEBEDRIJF;\n8260 = GERESERVEERD;\n8261 = GERESERVEERD;\n8262 = GERESERVEERD;\n8263 = GERESERVEERD;\n8264 = GERESERVEERD;\n8265 = GERESERVEERD;\n8266 = GERESERVEERD;\n8267 = GERESERVEERD;\n8268 = GERESERVEERD;\n8269 = GERESERVEERD;\n827 = M EN T GOUD- EN ZILVERNIJVERHEID;\n8270 = GERESERVEERD;\n8271 = GERESERVEERD;\n8272 = GERESERVEERD;\n8273 = GERESERVEERD;\n8274 = GERESERVEERD;\n8275 = GERESERVEERD;\n8276 = GERESERVEERD;\n8277 = GERESERVEERD;\n8278 = GERESERVEERD;\n8279 = GERESERVEERD;\n8280 = GERESERVEERD;\n8281 = GERESERVEERD;\n8282 = GERESERVEERD;\n8283 = GERESERVEERD;\n8284 = GERESERVEERD;\n8285 = GERESERVEERD;\n8286 = GERESERVEERD;\n8287 = GERESERVEERD;\n8288 = GERESERVEERD;\n8289 = GERESERVEERD;\n8290 = GERESERVEERD;\n8291 = GERESERVEERD;\n8292 = GERESERVEERD;\n8293 = GERESERVEERD;\n8294 = GERESERVEERD;\n8295 = GERESERVEERD;\n8296 = GERESERVEERD;\n8297 = GERESERVEERD;\n8298 = GERESERVEERD;\n8299 = GERESERVEERD;\n83 = BETONPRODUKTENINDUSTRIE;\n830 = GROENVOEDERDROGERIJEN;\n8300 = GERESERVEERD;\n8301 = GERESERVEERD;\n8302 = GERESERVEERD;\n8303 = GERESERVEERD;\n8304 = GERESERVEERD;\n8305 = GERESERVEERD;\n8306 = GERESERVEERD;\n8307 = GERESERVEERD;\n8308 = GERESERVEERD;\n8309 = GERESERVEERD;\n8310 = GERESERVEERD;\n8311 = GERESERVEERD;\n8312 = GERESERVEERD;\n833 = WOONDIENSTEN;\n834 = PEPSICO NEDERLAND B.V.;\n835 = CHEMCOM INDUSTRIES BV;\n836 = LATENSTEIN B.V. ( VH AVEBE LATENSTEIN V/H LATENSTEIN ZETMEEL);\n838 = WONEN V/H WONINGINRICHTING;\n839 = DLV ADVIESGROEP N.V. V/H DLV;\n84 = HELVOET B.V.;\n840 = DSM SPECIALS PRODUCTS;\n841 = OWASE-BEDRIJVEN;\n843 = BRITISH AMERICAN TOBACCO NIEMEYER BV;\n845 = MONDI MAASTRICHT NV;\n848 = KARTONNAGE- EN FLEXIBELE VERPAKKINGENBEDRIJF;\n85 = REPROGRAFISCH BEDRIJF;\n851 = STICHTING MAASTRICHT SCHOOL OF MANAGEMENT;\n854 = BRITISCH AMERICAN TOBACCO NIEMEYER B.V. -HP (VH KONINKLIJKE THEODORUS NIEMEYER HP);\n855 = OWENS CORNING VEIL NEDERLAND;\n857 = MERCK SHARP & DOHME;\n858 = MERCK SHARP & DOHME CAO II;\n864 = CHEVRON ORONITE TECHNOLOGY BV;\n874 = HAPAG - LLOYD ROTTERDAM;\n876 = ASHLAND INDUSTRIES NEDERLAND B.V.;\n877 = MCCAIN FOODS HOLLAND;\n880 = ZEILMAKERIJEN, SCHEEPSBENODIGDHEDENHANDEL \"SZS\";\n884 = BOEKHANDEL EN DE KANTOORVAKHANDEL, CAO VOOR DE;\n887 = SATURN PETCARE BV;\n889 = SIBELCO NEDERLAND;\n892 = VARKENSVERBETERING IN NEDERLAND;\n893 = INVISTA (NEDERLAND) B.V. DORDRECHT;\n898 = NORIT NEDERLAND B.V.;\n9 = ROSIER NEDERLAND B.V.;\n90 = DIERENPARK EMMEN (VH NOORDER DIERENPARK REG);\n903 = ELECTRIC GLASS FIBER NL B.V. CAO I;\n904 = ELECTRIC GLASS FIBER NL B.V. CAO II;\n910 = CAO RPC BEBO BEUNINGEN (VH RPC PACKAGING EUROPE B.V.);\n911 = AGTERBERG;\n914 = KLM-CABINEPERSONEEL;\n917 = NIC GROEP (VH NIC PROCLARE B.V.);\n918 = SCHOONHOVEN KERAMIEK BV;\n921 = SABIC INNOVATIVE PLASTICS BV ( VH GENERAL ELECTRIC PLASTICS (BERGEN OP ZOO);\n923 = GLASRECYCLING NOORD OOST NEDERLAND;\n924 = REISBRANCHE;\n925 = KESSEL GEBR. VAN;\n929 = DHL ECOMMERCE SERVICES;\n93 = NORPLAST B.V. V/H KENDRION NORPLAST B.V.;\n930 = BASF NEDERLAND B.V. CATLYSTS DE MEERN;\n931 = UNIVAR SOLUTIONS NETERHLANDS B.V.;\n932 = BIOSCOOPBEDRIJF;\n938 = SLEEPDIENST ADRIAAN KOOREN;\n94 = ELF ATOCHEM AGRI ROTTERDAM / ELF ATOCHEM ROTTERDAM;\n941 = WATERBEDRIJVEN AANGESLOTEN BIJ DE WWB RAAM CAO;\n942 = SOLIDUS SOLUTIONS ZUTPHEN BV;\n943 = INTOS;\n945 = SCHOENENDETAILHANDEL;\n947 = A&O SERVICES;\n955 = EURO CERAMIC (HEPWORTH NGI EN TEEUWEN VAN THIEL KE;\n956 = EUROPESE WATERWEG- TRANSPORTEN, EWT, DUWBOTEN;\n96 = FRESENIUS HEMOCARE NETHERLANDS B.V.;\n97 = ARMSTRONG BUILDING PRODUCTS;\n972 = BOEKELO DECOR BV V/H BOEKELO FOLIEN;\n979 = MUSEUM CAO;\n983 = INTERSNACK NEDERLAND BV;\n985 = HOLLAND CASINO;\n987 = AAG BEHEER B.V. c.s.;\n988 = GASUNIE, NEDERLANDSE CAO II HOGER PERSONEEL;\n989 = MAASTRICHT HANDLING SERVICES;\n997 = CENTRAAL ORGAAN VOOR KWALITEITSAANGELEGENHEDEN IN;\n9999 = GEEN REGULIERE CAO VAN TOEPASSING;", "format": "" }, "ViOk": { "type": "string", "enum": [ "0", "1" ], "maxLength": 20, "description": "Alleenstaande ouderenkorting\n0 = Do not apply 'Alleenstaande ouderenkorting';\n1 = Apply 'Alleenstaande ouderenkorting';", "format": "" }, "ViHa": { "type": "string", "enum": [ "0", "1", "10", "2", "3", "4", "5", "6", "7", "8", "9" ], "maxLength": 20, "description": "Premium reduction\n0 = No 'premiekorting';\n1 = Arb.geh.korting in dienst genomen jonggeh. of pers. met REA-voorziening (geldig t/m 2007);\n10 = Younger employee;\n2 = Arb.geh.korting voor herplaatste jonggeh. of pers. met REA-voorziening (geldig t/m 2007);\n3 = Arb.geh.korting voor in dienst genomen arbeidsgehandicapte (geldig t/m 2007);\n4 = Arb.geh.korting voor herplaatste arbeidsgehandicapte (geldig t/m 2007);\n5 = Werknemer met een arbeidshandicap (geldig t/m 2016);\n6 = New labour relation with older employees;\n7 = Employee of 62, 63 or 64 years old to whom 6 code is not applicable (valid until 2012);\n8 = Employee to whom the 5 and 6 codes are both applicable (valid until 2012);\n9 = Employee to whom the 5 and 7 codes are both applicable (valid until 2012);", "format": "" }, "ViVb": { "type": "string", "enum": [ "0", "1", "2", "9" ], "maxLength": 20, "description": "'Vakantiebonnen'\n0 = No 'vakantiebonnen';\n1 = 19 days or less (up to 2019);\n2 = 20 Days or more (up to 2019);\n9 = 'Tijdsparen', No 'vakantiebonnen';", "format": "" }, "ViCx": { "type": "string", "enum": [ "0", "1", "2", "3", "4", "5", "6", "7" ], "maxLength": 20, "description": "No car addition reason\n0 = Not applicable;\n1 = Arrangement through employer with tax authority;\n2 = Employee has declared no private use car Tax authority;\n3 = Other proof persons and delivery van;\n4 = Delivery van without private use (valid to 2006);\n5 = Continuously alternate delivery van use;\n6 = 0% addition (valid up to 2018);\n7 = Employee has tax authority statement for exclusive business use of delivery van;", "format": "" }, "TxF4": { "type": "boolean", "description": "Student and pupil arrangement", "format": "" }, "TrI": { "type": "boolean", "description": "Transport for withholding entity", "format": "" }, "TxIs": { "type": "boolean", "description": "'Zelfstandige binnenschipper'", "format": "" }, "TxHc": { "type": "boolean", "description": "In-house staff and/or working children", "format": "" }, "TxGf": { "type": "boolean", "description": "No relationship of authority with owner's family", "format": "" }, "TxGo": { "type": "boolean", "description": "No relationship of authority with previous owner", "format": "" }, "TxCs": { "type": "boolean", "description": "'Directeur/grootaandeelhouder'", "format": "" }, "TxGy": { "type": "boolean", "description": "On-call/stand-in worker without obligation", "format": "" }, "TxGn": { "type": "boolean", "description": "On-call/stand-in worker with obligation", "format": "" }, "TxAo": { "type": "boolean", "description": "State pension benefit for single persons", "format": "" }, "TxF5": { "type": "boolean", "description": "'Wajong' benefit", "format": "" }, "Dblr": { "type": "boolean", "description": "'Doorbetaaldloon' regulation payer", "format": "" }, "Cons": { "type": "boolean", "description": "Conscientious objections", "format": "" }, "PMA": { "type": "boolean", "description": "'Premievrijstelling marginale arbeid'", "format": "" }, "NRsk": { "type": "boolean", "description": "No-risk policy", "format": "" }, "PiAw": { "type": "boolean", "description": "LKV for 'arbeidsgehandicapte' employee", "format": "" }, "PkBa": { "type": "boolean", "description": "LKV banenafspraak", "format": "" }, "PkHa": { "type": "boolean", "description": "LKV for reinstating 'arbeidsgehandicapte' employee", "format": "" }, "PkBc": { "type": "boolean", "description": "Withholding tax at foreign source", "format": "" }, "DaEk": { "type": "string", "description": "LKV end date", "format": "date" }, "Lkvo": { "type": "boolean", "description": "LKV for older employee", "format": "" }, "CoDi": { "type": "string", "maxLength": 3, "description": "Non-standard country of residence", "format": "" } }, "required": [ "DaBe", "AyId" ] } } } } } }, "AfasAgencyCadans": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "DaBe": { "type": "string", "description": "Start date", "format": "date" }, "AyId": { "type": "string", "maxLength": 15, "description": "Agency", "format": "" }, "DaEn": { "type": "string", "description": "End date", "format": "date" }, "ViCw": { "type": "string", "enum": [ "01", "00", "02", "03", "04", "05", "06", "07", "08", "09", "99" ], "maxLength": 20, "description": "'Cadans' basic insurance\n01 = Acceptance of work;\n00 = Contract of employment;\n02 = Sales representative;\n03 = Wsw'er;\n04 = Placement;\n05 = Conscript;\n06 = Home-worker;\n07 = Temp;\n08 = Musician/artist;\n09 = Someone who works (without employment contract);\n99 = Conscientious objections;", "format": "" }, "ViCs": { "type": "string", "enum": [ "R", "H" ], "maxLength": 20, "description": "Sector\nR = Retail trade;\nH = Health, mental and social interests;", "format": "" }, "ViCe": { "type": "string", "enum": [ "221", "222", "223", "224", "225", "226", "228", "229", "230", "231", "232", "233", "234", "235", "238", "239", "240", "241", "242", "243", "244", "245", "246", "247", "248", "249", "250", "253", "254", "255", "256", "257", "258", "259", "262", "263", "264", "265", "266", "267", "268", "271", "272", "273", "274", "275", "276", "277", "279", "280", "281", "282", "283", "284", "286", "287", "289", "290", "291", "292", "293", "297", "298", "299" ], "maxLength": 20, "description": "'Cadans' profession\n221 = Manager;\n222 = Manager, head of sector, group supervisor;\n223 = Head nurse;\n224 = Staff member;\n225 = Administrative managerial profession;\n226 = Other managerial professions;\n228 = General practitioner;\n229 = Dentist;\n230 = Specialist;\n231 = General practitioner’s assistant;\n232 = Social physician;\n233 = Veterinary surgeon;\n234 = Pharmacist;\n235 = Other medical profession employees;\n238 = Physiotherapist;\n239 = Kinesiotherapist;\n240 = Occupational therapist;\n241 = Psychotherapist;\n242 = Therapist;\n243 = Speech therapist;\n244 = Dietician;\n245 = Dental hygienist;\n246 = Radiological lab technician;\n247 = E.E.G. lab technician;\n248 = Obstetrician;\n249 = Apothekers-, tandarts-, dokters-, dierenartsassistent;\n250 = Other Paramedic employees;\n253 = Qualified nurse, qualified district nurse;\n254 = Nurse in training;\n255 = Qualified sickness care assistant;\n256 = Sickness care assistant in training;\n257 = Maternity nurse/care assistant;\n258 = Group leader;\n259 = Other nursing and care professions;\n262 = Family care assistant;\n263 = Family assistant;\n264 = Care assistant for the elderly;\n265 = Elderly persons' assistant;\n266 = Social worker;\n267 = Youth leader, community centre worker;\n268 = Other professions in the family care sector, care for the elderly sector and social services;\n271 = Domestic personnel;\n272 = Laundry personnel;\n273 = Chef, waiter and kitchen staff;\n274 = Caretaker, doorkeeper;\n275 = Switchboard operator, receptionist;\n276 = Maintenance worker, technical personnel;\n277 = Other service provision professions;\n279 = Secretary, typist;\n280 = Accountant, administrator;\n281 = Salary administrator;\n282 = Staff worker;\n283 = IT staff;\n284 = Other administrative professions;\n286 = Sports instructor, trainer;\n287 = Other sports students;\n289 = Teacher, instructor/lecturer/practical supervisor;\n290 = Sociologist, Psychologist;\n291 = Priest, pastoral staff;\n292 = Burial staff;\n293 = Driving instructor;\n297 = Trainee/student on work placement;\n298 = Holiday replacement, stand-by employee and relief worker;\n299 = Other professions and functions;", "format": "" }, "ViCt": { "type": "string", "enum": [ "101", "110", "111", "112", "113", "114", "115", "116", "117", "118", "119", "102", "120", "121", "122", "123", "124", "125", "126", "127", "128", "129", "103", "104", "105", "106", "107", "108", "109" ], "maxLength": 20, "description": "'Cadans' profession\n101 = Sales person furniture (department);\n110 = (Vervallen) Schoonmaakpersoneel;\n111 = Dental staff;\n112 = Window cleaner;\n113 = Delivery person;\n114 = Warehouse employee;\n115 = Butcher's (department) staff;\n116 = Bakery (department) staff;\n117 = Hairdresser work activities;\n118 = Shoe repair activities;\n119 = Canteen staff;\n102 = Salesperson mixed sector (department);\n120 = Technical staff (mechanic, electrician etc);\n121 = IT staff;\n122 = Domestic staff;\n123 = Temporary and/or casual staff;\n124 = Stage, trainee, or voluntary;\n125 = Holiday worker;\n126 = Seasonal worker;\n127 = Artist;\n128 = Home-worker;\n129 = Other;\n103 = Salesperson retail trade;\n104 = Salesperson general/other;\n105 = Manager as well as main shareholder;\n106 = Manager not main shareholder;\n107 = Administrative personnel;\n108 = Upholsterer;\n109 = Driver;", "format": "" }, "DsEm": { "type": "string", "maxLength": 12, "description": "Description profession", "format": "" }, "ViCa": { "type": "string", "enum": [ "0001", "0002", "0003", "0004", "0005", "0006", "0007", "0008", "0009", "0010", "0011", "0012", "0013", "0014", "0015", "0016", "0017", "0018", "0019", "0020", "0021", "0022", "0023", "0024", "0025", "0026", "0027", "0028", "0122", "1100", "1200", "1202", "1300", "1400", "1600", "1800", "1801", "2000", "2100", "2300", "2500", "2600", "2700", "2800", "2900", "3000", "3200", "3300", "3400", "2400", "3600", "3700", "3800", "4000", "4100", "4200", "4300", "4301", "4400", "4500", "4600", "5000", "5100" ], "maxLength": 20, "description": "Cadans CLA\n0001 = No CLA applicable;\n0002 = Own CLA, with 'VUT' arrangemennt;\n0003 = Own CLA without 'VUT' arrangement;\n0004 = CLA of another branch of industry is applicable (that does not appear in this list);\n0005 = Retail trade in potatoes, vegetables, fruit;\n0006 = Bulb-growing company;\n0007 = Fuel company;\n0008 = Regulation on labour conditions retail trade (VAD);\n0009 = Mixed branch (Mibra);\n0010 = Chain-store business in textiles (cf);\n0011 = Business machine branch;\n0012 = Hairdresser's;\n0013 = Chain-store business in foods;\n0014 = Food company;\n0015 = Size fitting and orthopaedic shoemaker's;\n0016 = Milk and dairy retail trade company;\n0017 = Retail trade in furniture, furnishing fabrics and home furnishing company;\n0018 = Furniture industry and furnishing companies;\n0019 = Piano sector;\n0020 = Roll-down shutter and awning companies;\n0021 = Shoe-repair company;\n0022 = Cleaning and window-cleaning company;\n0023 = Butchers;\n0024 = Wine shops;\n0025 = Dental technical company;\n0026 = Textile retail trade (mitex);\n0027 = Academic and self-importing booksellers;\n0028 = Sail makers, canvas makers, canvas rentals, ship rigging companies and ship's supplies trade;\n0122 = Cleaning and window cleaners company, if specific agreements have been made with 'Cadans';\n1100 = Hospitals;\n1200 = Nursing and Care homes (Nursing homes);\n1202 = Nursing and Care homes (Nursing homes);\n1300 = Pharmacists;\n1400 = Sport, Recreation and Relaxation centres;\n1600 = Catering industry;\n1800 = Care for the handicapped;\n1801 = Disabled care (previously hospitalization);\n2000 = Welfare work;\n2100 = Youth assistance;\n2300 = Child care;\n2500 = Conference Dutch religious;\n2600 = Focus;\n2700 = Boarding schools for children of barge masters and/or showmen;\n2800 = Artistic forming;\n2900 = Public servants (not under legal position act/decree);\n3000 = Public servants (under legal position act/decree);\n3200 = Sport;\n3300 = Dental technology;\n3400 = Contracted professional football players;\n2400 = Crematoriums;\n3600 = Youth hostels;\n3700 = Health centres;\n3800 = Legal aid;\n4000 = GP care;\n4100 = Dentists assistants and Dental hygienists;\n4200 = Vets’ assistants;\n4300 = Mental care (previously addiction care);\n4301 = Mental care (previously hospitalization);\n4400 = Rehabilitation;\n4500 = Home care;\n4600 = Free established Physiotherapy Practices;\n5000 = No CLA/wage agreement;\n5100 = In-house wage agreement;", "format": "" }, "ViRf": { "type": "string", "enum": [ "1", "2", "3" ], "maxLength": 20, "description": "'Risicofonds'\n1 = Normal arrangement;\n2 = Not applicable;\n3 = special arrangement;", "format": "" }, "YnDp": { "type": "boolean", "description": "Participant", "format": "" }, "EmSa": { "type": "number", "multipleOf": 0.01, "description": "Wage total", "format": "float" }, "YnCf": { "type": "boolean", "description": "Family of owner", "format": "" }, "YnCs": { "type": "boolean", "description": "'Directeur/grootaandeelhouder'", "format": "" }, "YnCo": { "type": "boolean", "description": "Previous owner", "format": "" }, "YnCc": { "type": "boolean", "description": "On-call/stand-in worker", "format": "" }, "YnZw": { "type": "boolean", "description": "PR", "format": "" }, "YnWw": { "type": "boolean", "description": "'WW'", "format": "" }, "YWAO": { "type": "boolean", "description": "'WAO/WIA'", "format": "" }, "YZFW": { "type": "boolean", "description": "'ZFW'", "format": "" }, "YnAb": { "type": "boolean", "description": "Insured with ABP", "format": "" }, "CoId": { "type": "string", "maxLength": 3, "description": "Country", "format": "" }, "Ad": { "type": "string", "maxLength": 60, "description": "Address", "format": "" }, "HmNr": { "type": "integer", "description": "House number", "format": "" }, "HmAd": { "type": "string", "maxLength": 30, "description": "Extension (a, b, etc.) to house number", "format": "" }, "ZpCd": { "type": "string", "maxLength": 15, "description": "Postal code", "format": "" }, "Rs": { "type": "string", "maxLength": 50, "description": "City", "format": "" }, "InYr": { "type": "boolean", "description": "Do not include in year-end work", "format": "" }, "ViEx": { "type": "string", "enum": [ "0", "2", "4", "5", "7", "9" ], "maxLength": 20, "description": "Code uitzondering\n0 = Not applicable;\n2 = Conscientious objections;\n4 = Marginal work;\n5 = Unable to work;\n7 = Combination of conscientious objections and disability;\n9 = Combination of marginal labour and disability;", "format": "" }, "PuSe": { "type": "boolean", "description": "Government employee", "format": "" }, "ViPu": { "type": "string", "enum": [ "00", "01", "02", "03", "10", "11", "21", "22", "24", "27", "30", "31", "66", "88" ], "maxLength": 20, "description": "Code speciale aanduiding UWV\n00 = Not applicable;\n01 = Subsequent payment;\n02 = Student on work placement/trainee;\n03 = Casual/temp. staff not called up;\n10 = Director NV/BV insured;\n11 = Family member/spouse director NV/BV insured;\n21 = Native artist;\n22 = Foreign artist;\n24 = Group artists without social fiscal number;\n27 = No social fiscal number (if certain conditions are complied with);\n30 = Early retiree, 'ZFW' insured;\n31 = Early retiree, not 'ZFW' insured;\n66 = Gross benefit through employer after end of employment;\n88 = Four-weekly payment periods;", "format": "" }, "Vi9": { "type": "string", "enum": [ "1", "2", "3", "4" ], "maxLength": 20, "description": "ZFW pension type\n1 = None;\n2 = 'VUT';\n3 = Early pension;\n4 = Pension;", "format": "" } }, "required": [ "DaBe", "AyId" ] } } } } } }, "AfasAgencyGuo": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "DaBe": { "type": "string", "description": "Start date", "format": "date" }, "AyId": { "type": "string", "maxLength": 15, "description": "Agency", "format": "" }, "DaEn": { "type": "string", "description": "End date", "format": "date" }, "ViAc": { "type": "string", "enum": [ "0000", "0001", "0002", "0003", "0004", "0005", "0007", "0009", "0010", "0012", "0013", "0015", "0019", "0020", "0021", "0022", "0023", "0024", "0026", "0027", "0028", "0029", "0030", "0031", "0032", "0033", "0035", "0036", "0053", "0054", "0055", "0056", "0072", "0073", "0074", "0076", "0078", "0079", "0080", "0081", "0097", "0099", "0125", "0162", "1059", "3548" ], "maxLength": 20, "description": "Colland (agricultural) CLA\n0000 = No CLA;\n0001 = CLA Agriculture (up to and incl. 2003);\n0002 = CLA Horticulture (up to and incl. 2003);\n0003 = Land development project;\n0004 = Enterprises utilizing farm machinery;\n0005 = CLA Tree cultivation (up to and incl. 2003);\n0007 = CLA Bulb cultivation (up to and incl. 2003);\n0009 = Private forestry;\n0010 = Gebr. Van Kessel BV;\n0012 = Farm relief services;\n0013 = Grading and sorting plants;\n0015 = De Enk BV;\n0019 = Drying facilities for green fodder;\n0020 = Agterberg;\n0021 = Hommel BV;\n0022 = Garden seed companies;\n0023 = Gardeners;\n0024 = Heidemij;\n0026 = NAK;\n0027 = Flax industry;\n0028 = Garden centres;\n0029 = Griendtsveen;\n0030 = Veldkamp Holding B.V.;\n0031 = Cattle improvement;\n0032 = Pig improvement in the Netherlands;\n0033 = Mushrooms;\n0035 = CLA Place for the upkeep of animals;\n0036 = CLA Cultivation under glass;\n0053 = CLA Open Field Agriculture;\n0054 = CLA Open Field Horticulture;\n0055 = CLA Open Field Bulb cultivation;\n0056 = CLA Open Field Tree cultivation;\n0072 = Grontmij;\n0073 = Noorderdierenpark;\n0074 = Oranjewoud;\n0076 = De Schepper;\n0078 = Zelder;\n0079 = Weefselkweek;\n0080 = Forestry;\n0081 = Peat and Turf;\n0097 = CLA Bulb cultivation wholesale trade;\n0099 = Another, not mentioned, CLA;\n0125 = Groente- en Fruitverwerkende Industrie;\n0162 = Cigar industry;\n1059 = Health Department for Animals;\n3548 = 'CRV' CLA;", "format": "" }, "ViSl": { "type": "string", "enum": [ "0000", "0099", "0111", "0121", "0122", "0123", "0125", "0126", "0127", "0129", "0131", "0132", "0135", "0136", "0171", "0172", "0173", "0174", "0180" ], "maxLength": 20, "description": "Interpolis (butchers) CLA\n0000 = No CLA;\n0099 = Another, not mentioned, CLA;\n0111 = Butcher industry;\n0121 = Meat products;\n0122 = Offerman;\n0123 = Stegeman;\n0125 = Scholtes Hazerswoude;\n0126 = Persoon BV;\n0127 = Meester BV;\n0129 = Prova BV;\n0131 = Meat sector;\n0132 = Convenience foods industry;\n0135 = Ekro;\n0136 = Nijgrosco;\n0171 = Poultry regulation;\n0172 = Goossens BV;\n0173 = Plukon BV;\n0174 = Pingo Poultry Ingredients BV;\n0180 = Compaxo;", "format": "" }, "ViTc": { "type": "string", "enum": [ "0000", "0081", "0082", "0083", "0085", "0086", "0088", "0090", "0092", "0099" ], "maxLength": 20, "description": "Interpolis (tobacco) CLA\n0000 = No CLA;\n0081 = Cigar industry;\n0082 = Sara Lee Coffee en Tea/Douwe Egberts BV;\n0083 = Del-HTL Tabaksmaatschappij BV;\n0085 = Theodorus Niemeyer BV;\n0086 = British American Tobacco The Netherlands BV;\n0088 = Philip Morris Holland BV;\n0090 = British American Tobacco Exports/Manufacturing BV;\n0092 = Van Nelle Douwe Egberts;\n0099 = British American Tobacco The Netherlands BV;", "format": "" }, "ViGA": { "type": "string", "enum": [ "00", "01", "02", "03", "04", "06", "07", "08", "09", "10", "11", "12", "14", "15", "16", "17", "99" ], "maxLength": 20, "description": "Colland (Agrarisch) Basisverzekering\n00 = Contract of employment;\n01 = Acceptance of work;\n02 = Sales representative;\n03 = Wsw'er;\n04 = Placement;\n06 = Home-worker;\n07 = Temp;\n08 = Musician/artist;\n09 = Individual labour against payment;\n10 = PMA student;\n11 = PMA housewife (cancelled since 1999);\n12 = PMA welfare recipient (cancelled since 1999);\n14 = GLW student;\n15 = GLW housewife;\n16 = GLW asylum seeker or alien;\n17 = GLW independent farmers;\n99 = Conscientious objections;", "format": "" }, "ViGS": { "type": "string", "enum": [ "00", "01", "02", "03", "04", "06", "07", "08", "09", "12", "99" ], "maxLength": 20, "description": "Colland (Agrarisch) Basisverzekering\n00 = Contract of employment;\n01 = Acceptance of work;\n02 = Sales representative;\n03 = Wsw'er;\n04 = Placement;\n06 = Home-worker;\n07 = Temp;\n08 = Musician/artist;\n09 = Individual labour against payment;\n12 = PMA welfare recipient;\n99 = Conscientious objections;", "format": "" }, "ViGT": { "type": "string", "enum": [ "00", "01", "02", "03", "04", "06", "07", "08", "09", "12", "50", "99" ], "maxLength": 20, "description": "Interpolis (Tabak) Basisverzekering\n00 = Contract of employment;\n01 = Acceptance of work;\n02 = Sales representative;\n03 = Wsw'er;\n04 = Placement;\n06 = Home-worker;\n07 = Temp;\n08 = Musician/artist;\n09 = Individual labour against payment;\n12 = PMA welfare recipient;\n50 = 'VUT';\n99 = Conscientious objections;", "format": "" }, "ViFi": { "type": "string", "enum": [ "P", "C" ], "maxLength": 20, "description": "Fixed/freelance\nP = Fixed;\nC = Freelance;", "format": "" }, "DsEm": { "type": "string", "maxLength": 12, "description": "Description profession", "format": "" }, "YnFu": { "type": "boolean", "description": "'Overbruggingsfonds'", "format": "" }, "YnVb": { "type": "boolean", "description": "'Vakantiebon'", "format": "" }, "YnPf": { "type": "boolean", "description": "VNPS pension fund", "format": "" }, "YnPb": { "type": "boolean", "description": "BPS pension fund", "format": "" }, "YnSk": { "type": "boolean", "description": "Steinkühlerfonds", "format": "" }, "YnWa": { "type": "boolean", "description": "'WAGW' (Indication)", "format": "" }, "YnCf": { "type": "boolean", "description": "Family of owner", "format": "" }, "YnCs": { "type": "boolean", "description": "'Directeur/grootaandeelhouder'", "format": "" }, "YnCo": { "type": "boolean", "description": "Previous owner", "format": "" }, "YnCc": { "type": "boolean", "description": "On-call/stand-in worker", "format": "" }, "YnZw": { "type": "boolean", "description": "PR", "format": "" }, "YnWw": { "type": "boolean", "description": "'WW'", "format": "" }, "YWAO": { "type": "boolean", "description": "'WAO/WIA'", "format": "" }, "YZFW": { "type": "boolean", "description": "'ZFW'", "format": "" }, "CoId": { "type": "string", "maxLength": 3, "description": "Country", "format": "" }, "Ad": { "type": "string", "maxLength": 60, "description": "Address", "format": "" }, "HmNr": { "type": "integer", "description": "House number", "format": "" }, "HmAd": { "type": "string", "maxLength": 30, "description": "Extension (a, b, etc.) to house number", "format": "" }, "ZpCd": { "type": "string", "maxLength": 15, "description": "Postal code", "format": "" }, "Rs": { "type": "string", "maxLength": 50, "description": "City", "format": "" }, "InPG": { "type": "boolean", "description": "Include in PLO Interpolis/Colland", "format": "" }, "Vi9": { "type": "string", "enum": [ "1", "2", "3", "4" ], "maxLength": 20, "description": "ZFW pension type\n1 = None;\n2 = 'VUT';\n3 = Early pension;\n4 = Pension;", "format": "" } }, "required": [ "DaBe", "AyId" ] } } } } } }, "AfasAgencySfb": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "DaBe": { "type": "string", "description": "Start date", "format": "date" }, "AyId": { "type": "string", "maxLength": 15, "description": "Agency", "format": "" }, "DaEn": { "type": "string", "description": "End date", "format": "date" }, "ViDi": { "type": "string", "enum": [ "1", "50", "51", "60", "61", "62", "70", "71", "80" ], "maxLength": 20, "description": "Dispensation for early retirement\n1 = Not applicable;\n50 = No VPM dispensation;\n51 = Dispensation for Basis and supplement;\n60 = No 'UTA' dispensation;\n61 = Dispensation for Statutory Pension and Bonus/Purchase arrangements;\n62 = Dispensation for Statutory Pension Scheme;\n70 = Dispensation VET;\n71 = Dispensation basis early retirement scheme;\n80 = Dispensation BP;", "format": "" }, "ViSe": { "type": "string", "enum": [ "001", "002", "003", "004", "005", "006", "007", "008", "009", "010", "021", "022", "023", "024", "025", "026", "027", "028", "029", "030", "031", "032", "035", "036", "037", "038", "039", "041", "042", "043", "044", "045", "046", "047", "051", "052", "053", "054", "061", "065", "066", "069", "070", "071", "072", "073", "074", "075", "076", "077", "078", "079", "080", "081", "082", "083", "084", "085", "086", "087", "088", "090", "091", "092", "093", "094", "095", "096", "097", "098", "100", "101", "102", "103", "104", "105", "106", "110", "111", "112", "113", "114", "120", "121", "122", "125", "126", "127", "128", "130", "131", "132", "133", "134", "135", "136", "137", "138", "140", "141", "142", "143", "150", "151", "152", "153", "154", "155", "156", "157", "158", "160", "161", "162", "163", "164", "165", "166", "167", "168", "169", "170", "171", "172", "179", "180", "181", "182", "183", "184", "185", "187", "188", "189", "190", "191", "192", "193", "194", "195", "196", "198", "200", "201", "202", "203", "204", "205", "206", "209", "210", "211", "212", "213", "214", "215", "216", "217", "218", "219", "220", "221", "222", "223", "224", "225", "226", "230", "231", "232", "233", "234", "235", "236", "237", "238", "239", "240", "245", "246", "247", "248", "249", "250", "251", "252", "253", "254", "255", "256", "257", "258", "259", "260", "261", "265", "266", "267", "270", "271", "272", "273", "274", "275", "276", "277", "278", "279", "280", "281", "282", "283", "284", "285", "286", "287", "288", "289", "290", "291", "295", "296", "297", "301", "302", "303", "304", "305", "306", "307", "308", "309", "310", "311", "312", "321", "322", "323", "324", "325", "326", "327", "328", "329", "330", "331", "332", "333", "334", "335", "337", "338", "339", "340", "341", "342", "343", "344", "345", "346", "347", "348", "350", "351", "352", "353", "354", "355", "356", "360", "361", "362", "363", "364", "365", "366", "367", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382", "383", "384", "385", "390", "391", "392", "393", "394", "395", "400", "410", "415", "420", "425", "430", "435", "440", "445", "450", "455", "460", "470", "475", "480", "485", "495", "500", "505", "510", "515", "520", "530", "535", "540", "550", "560", "693", "694", "701", "702", "703", "704", "705", "706", "707", "708", "709", "710", "711", "712", "713", "714", "715", "716", "717", "718", "719", "720", "721", "722", "723", "724", "725", "726", "730", "731", "732", "733", "734", "735", "736", "740", "741", "742", "743", "751", "752", "753", "754", "755", "756", "757", "758", "759", "760", "761", "762", "763", "764", "771", "772", "800", "801", "803", "804", "805", "806", "807", "808", "809", "810", "811", "812", "813", "814", "815", "816", "817", "818", "819", "820", "821", "822", "823", "824", "825", "826", "830", "831", "840", "841", "850", "851", "852", "853", "854", "855", "856", "857", "858", "859", "860", "861", "862", "863", "864", "865", "866", "867", "868", "870", "871", "872", "880", "881", "882", "883", "884", "890", "891", "892", "893", "894", "895", "896", "897", "898", "900", "901", "902", "910", "911", "920", "921", "930", "931", "935", "940", "950", "960", "961", "962", "997", "998", "999" ], "maxLength": 20, "description": "‘APG’ profession\n001 = Framemaker;\n002 = Carpenter II;\n003 = Carpenter I;\n004 = Workshop carpenter;\n005 = Maatvoerder;\n006 = Post aligner;\n007 = Carpenter;\n008 = Warehouseman;\n009 = Foreman;\n010 = Carpenter-Bricklayer;\n021 = Mechanical\\Woodworker Building site;\n022 = Final inspector;\n023 = Mechanical Woodworker Joinery works;\n024 = Retainer;\n025 = Author;\n026 = Grinder-Setter;\n027 = Warehouseman Joinery works;\n028 = Crosscutter Joinery works;\n029 = Company master Joinery works;\n030 = Concrete constructor;\n031 = System formwork Engineer;\n032 = Remmingwerker;\n035 = Mould fitter;\n036 = Modelmaker-Mould builder;\n037 = Carpenter-Modelmaker;\n038 = Setter II;\n039 = Setter I;\n041 = Bricklayer II;\n042 = Bricklayer I;\n043 = Metselaar (te gebruiken tot en met 2005);\n044 = Oven builder;\n045 = Bricklayer-Oven builder;\n046 = Bricklayer-Chimney builder;\n047 = Zuurbouwer;\n051 = Builder's labourer-Bricklayer;\n052 = Builder's labourer-Scaffolder;\n053 = Constructor Steel Scaffolding II;\n054 = Constructor Steel Scaffolding I;\n061 = Jointer;\n065 = Tiler;\n066 = Builder's labourer-Tiler;\n069 = Concrete sprayer;\n070 = Concrete repairer;\n071 = Engineer in prestressed/post-tension concrete;\n072 = Steel bender II;\n073 = Steel bender I;\n074 = Reinforcing steel bender;\n075 = Concrete driller/Sawer;\n076 = Concretor II;\n077 = Concretor I;\n078 = Mixer-driver (Concrete);\n079 = Die-cast builder;\n080 = Plasterer (Traditional);\n081 = Lathing setter;\n082 = Polisher Plasterer;\n083 = Outer wall insulation specialist;\n084 = Slab layer;\n085 = Concrete enameller;\n086 = Ceiling/wall sprayer;\n087 = Plasterer (Sprayer);\n088 = Gluer;\n090 = Block layer (Completion);\n091 = Durox layer;\n092 = Plaster board builder;\n093 = Block layer (Carcass);\n094 = Sand-lime stone block layer;\n095 = Builder's labourer Plasterer;\n096 = Assistant Sander;\n097 = Sander;\n098 = Whitewasher;\n100 = Floor tiler (Cem.Anhydr,E.D.);\n101 = Builder's labourer Floor tiler;\n102 = Polisher (Terrazzo);\n103 = Terrazzo Floor tiler;\n104 = Terrazzo worker;\n105 = Floor tiler (Epoxy);\n106 = Upholsterer;\n110 = Roofer;\n111 = Roofer (Bitum);\n112 = Roofer (Stoker);\n113 = Roofer I;\n114 = Roofer II;\n120 = Slater;\n121 = Roof tiler;\n122 = Thatcher;\n125 = Layer of roof sheeting;\n126 = Applier of façade cladding-welder;\n127 = Engineer, Outer walls/Roofs;\n128 = Outer wall cleaner;\n130 = Insulation engineer;\n131 = Insulation engineer, outer walls;\n132 = Insulation engineer, cavity walls;\n133 = Engineer, Sealing;\n134 = Applicator;\n135 = Kitter;\n136 = Applier of PUR;\n137 = Plastics worker;\n138 = Mechanic, plastic window frames;\n140 = Assembler;\n141 = Kitchen fitter;\n142 = Fitter, Completion;\n143 = Engineer, Walls/Ceilings;\n150 = Painter II (CLA Construction);\n151 = Painter I (CLA Construction);\n152 = Wallpaperer;\n153 = Maintenance painter;\n154 = Painter newly built houses (CLA Painters);\n155 = Decorator;\n156 = Ship's cleaner;\n157 = Furniture sprayer;\n158 = Furniture sprayer Dispensation;\n160 = Construction painter;\n161 = Car sprayer;\n162 = Spray-painter;\n163 = Ship painter;\n164 = Painter Sprayer;\n165 = Steel blaster;\n166 = Road marker III;\n167 = Road marker II;\n168 = Road marker I;\n169 = Road marker;\n170 = Glazier;\n171 = Greenhouse kitter;\n172 = Greenhouse builder;\n179 = Crane driver;\n180 = Crane driver II (Mobile);\n181 = Crane driver I (Mobile);\n182 = Crane driver With certificate;\n183 = Crane driver (Mobile);\n184 = Machinist Mobile Crane;\n185 = Machinist Mobile Crane With Certificate N Y;\n187 = Machinist Tower Crane With Certificate;\n188 = Machinist, Tower Crane;\n189 = Machinist With Certificate;\n190 = Machinist mechanical shovel;\n191 = Heavy Equipment Machinist;\n192 = Heavy Equipment Mach. With Certificate;\n193 = Light equipment engineer;\n194 = Trench Digger Machinist;\n195 = Machinist, Compaction;\n196 = Machinist, 'GWW';\n198 = Machinist, Boilerhouse;\n200 = Master mechanic;\n201 = Machine mechanic II;\n202 = Machine mechanic I;\n203 = Machine mechanic Specialist;\n204 = Mechanic (BMC);\n205 = Mechanic, Maintenance;\n206 = Mechanic, Car;\n209 = Sheet metal worker I;\n210 = Bench Fitter Welder Assistant;\n211 = Bench Fitter Welder;\n212 = Machine Metalworker II;\n213 = Machine Metalworker I;\n214 = Bench fitter/Turner;\n215 = Welder, Aluminium;\n216 = Welder (No Pipes or Cables);\n217 = Sheet metal worker II;\n218 = Smith;\n219 = Engineer, Central Heating;\n220 = Electronics fitter II;\n221 = Electronics fitter I;\n222 = Electrician;\n223 = Engineer, Electro;\n224 = Refrigeration engineer;\n225 = Engineer, CAI;\n226 = Engineer, Telecommunications;\n230 = Boorassistent;\n231 = Foreman driller II;\n232 = Foreman driller I;\n233 = Head foreman driller Deep drilling;\n234 = Engineer Well-point drainage III;\n235 = Engineer Well-point drainage II;\n236 = Engineer Well-point drainage I;\n237 = Sounding assistant II;\n238 = Sounding assistant I;\n239 = Sounding master II;\n240 = Sounding master I;\n245 = Asphalter Pipes;\n246 = Pipelayer II (No sewer);\n247 = Pipelayer II (No sewer);\n248 = Pipelayer I (No sewer);\n249 = Pipe installer (No sewers);\n250 = Cable joiner II;\n251 = Cable joiner I;\n252 = Cable worker;\n253 = Welder Pipelines;\n254 = Welder Pipelines (Allround);\n255 = Engineer, Cables;\n256 = Welder, Pipefitter;\n257 = Pipelayer (Sewer pipes);\n258 = Sewer worker;\n259 = Sewer repairer;\n260 = Excavation worker Road construction;\n261 = Excavation worker;\n265 = Roadworker II;\n266 = Roadworker I;\n267 = Builder's labourer-Roadworker;\n270 = Asphalt labourer;\n271 = Joist setter;\n272 = Foundations expert;\n273 = Foundations worker;\n274 = Expert 'GWW';\n275 = Road builder;\n276 = Apprentice SOMA;\n277 = Tracklayer-Points II;\n278 = Tracklayer-Points I;\n279 = Maintenance worker Roads;\n280 = Plotter;\n281 = Barge captain (CLA Construction);\n282 = Sailor Engine driver (CLA Construction);\n283 = Wattle fencer;\n284 = Stone worker;\n285 = Captain (CLA Construction);\n286 = Foreman Wet Poured Concrete (CLA Construction);\n287 = Sheet workers;\n288 = Dike worker;\n289 = Coast And Shore worker;\n290 = Zinkbaas;\n291 = Captain (Not CLA Dredging);\n295 = Clay digger;\n296 = Sand And Gravel digger;\n297 = Mixer-driver (Sand And Gravel);\n301 = Foreman driller Piles;\n302 = Foreman of a pile-driving gang;\n303 = Pile driver II;\n304 = Pile driver I;\n305 = Machinist Hei Install. (Leerling);\n306 = Machinist Mini-pile Installation;\n307 = Machinist Mobile Pile Installation;\n308 = Machinist Mobile Pile Install. Dipl.;\n309 = Pile driller II;\n310 = Pile driller I;\n311 = Pile driller/Foundation worker II;\n312 = Pile driller/Foundation worker I;\n321 = Mixing boss Centralist;\n322 = Centralist;\n323 = Analyst;\n324 = Mixer;\n325 = Mixing boss;\n326 = Operator Concrete mixing installation;\n327 = Machinist concrete pump;\n328 = Head machinist concrete pump;\n329 = Machinist cement pump;\n330 = Pipe layer;\n331 = Driver III;\n332 = Driver II;\n333 = Driver I;\n334 = Driver;\n335 = Driver-Mechanic;\n337 = Forklift truck driver;\n338 = Tractor driver;\n339 = Caravan builder;\n340 = Operator Portal crane;\n341 = Construction worker assistant;\n342 = Mechanical Pounder;\n343 = Builder’s hoist attendant;\n344 = Chore worker;\n345 = Wood piler;\n346 = Rubble remover;\n347 = Sandblaster;\n348 = Machine man;\n350 = Builder’s labourer (Not mentioned elsewhere);\n351 = Ship unloader;\n352 = Site worker;\n353 = Transporter;\n354 = Transport worker;\n355 = Basisoperator;\n356 = Machineoperator;\n360 = Demolition contractor II;\n361 = Demolition contractor I;\n362 = Diamond driller;\n363 = Recruiter;\n364 = Rubble breaker;\n365 = Explosives engineer Assistant;\n366 = Explosives engineer II;\n367 = Explosives engineer I;\n370 = Circular saw operator;\n371 = Wire saw operator;\n372 = Letterblaster-Engraver;\n373 = Mechanical Natural stone mason;\n374 = Natural stone mason;\n375 = Polisher (Natural stone);\n376 = Polisher Sander;\n377 = Frame saw operator;\n378 = Steenhouwer;\n379 = Steller (Natuursteen);\n380 = Plumber;\n381 = Engineer, Gawalo;\n382 = Fitter;\n383 = Plumber (Roof);\n384 = Production employee;\n385 = Asbestverwijderaar;\n390 = Engineer, Crashbarrier;\n391 = Tegelzetter I;\n392 = Tegelzetter II;\n393 = Betonboorder specialist I;\n394 = Betonboorder II;\n395 = Betonboorder III;\n400 = Achterman;\n410 = Waiter, Waitress/Assistant cooks;\n415 = Drag shovel Driver;\n420 = Boatswain;\n425 = Driver/Labourer Poured Concrete;\n430 = Deck labourer;\n435 = Deck labourer/Cook;\n440 = Electronics fitter (CLA Dredging);\n445 = Head machinist;\n450 = Head captain;\n455 = Head mechanic;\n460 = Captain (CLA Dredging);\n470 = Cook;\n475 = Crane driver (CLA Dredging);\n480 = Welder/Bench fitter (CLA Dredging);\n485 = Machinist (CLA Dredging);\n495 = Mixer-driver (CLA Dredging);\n500 = Drag shovel Mechanic;\n505 = Oil man;\n510 = Pipe man;\n515 = Ship’s electronics engineer;\n520 = Captain (CLA Dredging);\n530 = Foreman Wet Poured Concrete;\n535 = Labourer Wet Poured Concrete;\n540 = Navigating officer;\n550 = Navigating officer/Engine driver;\n560 = Suction dredge manager;\n693 = Zelfstandige natuursteen (geldig t/m 2025);\n694 = Zelfstandige afbouw (geldig t/m 2025);\n701 = Productiemedewerker A;\n702 = Productiemedewerker B;\n703 = Productiemedewerker C;\n704 = Medewerker kleivoorbereiding;\n705 = Analyst;\n706 = Heftruckchauffeur / medewerker tasveld;\n707 = Expeditiemedewerker binnendienst;\n708 = Administratief medewerker verkoop binnendienst;\n709 = Mechanisch monteur A;\n710 = Elektromonteur A;\n711 = Mechanisch monteur B;\n712 = Elektromonteur B;\n713 = Productieleider A;\n714 = Productieleider B;\n715 = Functionaris kwaliteit/proces;\n716 = Onderhoudstechnicus;\n717 = Chef technische dienst A;\n718 = Chef technische dienst B;\n719 = Logistiek medewerker;\n720 = Chef expeditie/tasveld;\n721 = Commercieel medewerker verkoop binnendienst;\n722 = Chef verkoop binnendienst;\n723 = Secretarieel/administratief medewerker;\n724 = Administratief medewerker financiële administratie;\n725 = Managementassistente;\n726 = Chef financiële administratie;\n730 = Roofing assistant (1A);\n731 = Prospective roofer (1B);\n732 = Dakdekker (2);\n733 = Eerste dakdekker (3);\n734 = Chauffeur (3);\n735 = Voorman-dakdekker (B4);\n736 = Voorman-dakdekker (A5);\n740 = Youth without a vocational diploma;\n741 = Youth with a vocational diploma;\n742 = Youth new intake;\n743 = Employee with occupational impairment;\n751 = Voor- en afmontage;\n752 = Kunststofverwerking;\n753 = Houtbewerking;\n754 = Algemene ondersteuning;\n755 = Spuiterij;\n756 = Houtskeletbouw;\n757 = Bouwmontage;\n758 = Magazijn/Expeditie/Transport;\n759 = Werkvoorbereiding/Calculatie;\n760 = Financiële Administratie;\n761 = Commerce;\n762 = Technische Dienst;\n763 = Productieleiding;\n764 = ICT/Automatisering;\n771 = Jeugd 16 tot en met 21 jaar tijdens vakopleiding BBL;\n772 = Jeugd 16 tot en met 22 jaar zonder vakopleiding;\n800 = Manager;\n801 = Commissioner;\n803 = Manager;\n804 = Deputy director;\n805 = Manager;\n806 = Project manager;\n807 = Area manager;\n808 = Construction engineer;\n809 = Engineer;\n810 = Position classifier;\n811 = Architect;\n812 = Technical Employee Planning Office;\n813 = Concrete technician;\n814 = Design engineer;\n815 = Architect of bending schedule;\n816 = Calculator (Pre-);\n817 = Quality controller;\n818 = Surveyor;\n819 = Welding expert;\n820 = Equipment department, Head;\n821 = Management consultant;\n822 = Supervisor;\n823 = Draughtsman;\n824 = Planner;\n825 = Property developer;\n826 = Medewerker PR en Marketing;\n830 = Manager Joinery works;\n831 = Hall manager;\n840 = Construction supervisor;\n841 = Head construction supervisor;\n850 = Accountant;\n851 = Canvasser;\n852 = Administrator;\n853 = Administrative employee;\n854 = Business economist;\n855 = Bookkeeper;\n856 = Calculator (Post-);\n857 = Commercial employee;\n858 = Checker;\n859 = Purchaser;\n860 = Lawyer;\n861 = Clerk;\n862 = Personnel manager;\n863 = Repro employee;\n864 = Secretariat employee;\n865 = Word processor;\n866 = Telephone operator;\n867 = Typist;\n868 = Sales representative;\n870 = UTA 1;\n871 = UTA 2;\n872 = UTA 3;\n880 = Operator;\n881 = Programmer Computer;\n882 = Head Computer Centre;\n883 = Systems analyst;\n884 = Systems manager;\n890 = Watchman/Doorkeeper;\n891 = Warehouse manager-Managerial;\n892 = Terrain manager (Managerial);\n893 = Warehouseman-Non managerial;\n894 = Transport, Manager;\n895 = Salesperson, Shop;\n896 = Engineer (UTA);\n897 = Sales manager;\n898 = Buyer counsellor;\n900 = Praktikant (geldig t/m 2015);\n901 = Stagiair (geldig t/m 2015);\n902 = Volontair (geldig t/m 2015);\n910 = Vakantiewerker, administratief (geldig t/m 2015);\n911 = Vakantiewerker, niet administratief (geldig t/m 2015);\n920 = Administrator;\n921 = Manager, Living quarters;\n930 = Canteen staff;\n931 = Coffee lady;\n935 = Cleaners;\n940 = Priv.Ins.Person (e.g. Artists);\n950 = Household staff (Private);\n960 = Vut/Pension;\n961 = Analyst Mortel CLA;\n962 = Cleaner Mortel CLA;\n997 = Niet gespecificeerd beroep, werkzaam binnen UTA;\n998 = Niet gespecificeerd beroep, niet werkzaam binnen UTA;\n999 = No profession;", "format": "" }, "ViSw": { "type": "string", "enum": [ "00", "01", "02", "03", "04", "05", "06", "07", "08", "09", "99" ], "maxLength": 20, "description": "'SFB' basic insurance\n00 = Contract of employment;\n01 = Acceptance of work;\n02 = Sales representative;\n03 = Wsw'er;\n04 = Placement;\n05 = Conscript;\n06 = Home-worker;\n07 = Temp;\n08 = Musician/artist;\n09 = Individual labour against payment;\n99 = Conscientious objections;", "format": "" }, "DsEm": { "type": "string", "maxLength": 12, "description": "Description profession", "format": "" }, "YnCf": { "type": "boolean", "description": "Family of owner", "format": "" }, "YnCs": { "type": "boolean", "description": "'Directeur/grootaandeelhouder'", "format": "" }, "YnCo": { "type": "boolean", "description": "Previous owner", "format": "" }, "YnCc": { "type": "boolean", "description": "On-call/stand-in worker", "format": "" }, "ViSc": { "type": "string", "enum": [ "001", "010", "011", "012", "013", "014", "015", "016", "017", "099", "091", "002", "092", "093", "094", "048", "080", "003", "004", "005", "006", "007", "008", "009" ], "maxLength": 20, "description": "CLA 'APG'\n001 = Build;\n010 = Koelkastenbouwers (geldig t/m 2005);\n011 = Schilders en afwerk Nederland (Vervallen);\n012 = Metaalnijverheid (Vervallen);\n013 = Railbouw 13 (Vervallen);\n014 = Railbouw 14 (Vervallen);\n015 = Uitzendwerk stucadoors (geldig t/m 2005);\n016 = Uitzendwerk natuursteen (geldig t/m 2005);\n017 = 'UTA Bouw' pension arrangement;\n099 = No CLA (valid up to 2018);\n091 = Vrijwillige deelname UTA;\n002 = Reduction;\n092 = Pensioen bouw;\n093 = Zelfstandige natuursteen (geldig t/m 2025);\n094 = Zelfstandige afbouw (geldig t/m 2025);\n048 = Baksteenindustrie;\n080 = Vrijwillige deelname UTA;\n003 = Natural stone;\n004 = Bituminous roofing material;\n005 = Mortar and mortar transport;\n006 = 'UTA';\n007 = VUT-UTA (geldig t/m 2005);\n008 = Baggers (Vervallen);\n009 = Woodwork factory Netherlands;", "format": "" }, "ViSr": { "type": "string", "enum": [ "N", "24", "72" ], "maxLength": 20, "description": "Personal risk period\nN = none;\n24 = 24 hours;\n72 = 72 hours;", "format": "" }, "SdLn": { "type": "integer", "description": "No. of days compulsory education", "format": "" }, "SdRf": { "type": "boolean", "description": "'Risicofonds' dispensation", "format": "" }, "ViSp": { "type": "string", "enum": [ "00", "15", "25", "35", "45", "55", "65", "80" ], "maxLength": 20, "description": "WAO (%)\n00 = Collectieve dispensatie BPF, geen a.o. perc;\n15 = 15-25%;\n25 = 25-35%;\n35 = 35-45%;\n45 = 45-55%;\n55 = 55-65%;\n65 = 65-80%;\n80 = 80-100%;", "format": "" }, "ViSz": { "type": "string", "enum": [ "A", "B" ], "maxLength": 20, "description": "Premium group ZW\nA = Premium group A;\nB = Premium group B;", "format": "" }, "YnZw": { "type": "boolean", "description": "PR", "format": "" }, "YnWw": { "type": "boolean", "description": "'WW'", "format": "" }, "YWAO": { "type": "boolean", "description": "'WAO/WIA'", "format": "" }, "YZFW": { "type": "boolean", "description": "'ZFW'", "format": "" }, "CoId": { "type": "string", "maxLength": 3, "description": "Country", "format": "" }, "Ad": { "type": "string", "maxLength": 60, "description": "Address", "format": "" }, "HmNr": { "type": "integer", "description": "House number", "format": "" }, "HmAd": { "type": "string", "maxLength": 30, "description": "Extension (a, b, etc.) to house number", "format": "" }, "ZpCd": { "type": "string", "maxLength": 15, "description": "Postal code", "format": "" }, "Rs": { "type": "string", "maxLength": 50, "description": "City", "format": "" }, "InYr": { "type": "boolean", "description": "Do not include in year-end work", "format": "" }, "Vi9": { "type": "string", "enum": [ "1", "2", "3", "4" ], "maxLength": 20, "description": "ZFW pension type\n1 = None;\n2 = 'VUT';\n3 = Early pension;\n4 = Pension;", "format": "" } }, "required": [ "DaBe", "AyId" ] } } } } } }, "AfasAgencyArbo": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "DaBe": { "type": "string", "description": "Start date", "format": "date" }, "AyId": { "type": "string", "maxLength": 15, "description": "Agency", "format": "" }, "DaEn": { "type": "string", "description": "End date", "format": "date" }, "ViDa": { "type": "string", "enum": [ "01", "10", "02", "21", "22", "23", "03", "04", "05", "07", "08", "09" ], "maxLength": 20, "description": "Employment\n01 = Normal labour agreement;\n10 = The one that performs personal activities for payment;\n02 = Acceptance of work;\n21 = Fisherman working in a partnership;\n22 = Director of a cooperative society with employees;\n23 = Casual/temp. staff;\n03 = Sales representative;\n04 = Wsw'er;\n05 = Placement;\n07 = Home-worker;\n08 = Temp;\n09 = Musician/artist and professional sportsman;", "format": "" }, "ViAs": { "type": "string", "enum": [ "1", "2", "3", "4", "5", "6", "7", "8" ], "maxLength": 20, "description": "Type of service\n1 = Day shift;\n2 = Night shift;\n3 = Evening shift;\n4 = Irregular;\n5 = Stand-by employee with duty to turn up;\n6 = Stand-by employee without duty to turn up;\n7 = Vacation job;\n8 = Placement;", "format": "" } }, "required": [ "DaBe", "AyId" ] } } } } } }, "AfasAgencyZF": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "DaBe": { "type": "string", "description": "Start date", "format": "date" }, "AyId": { "type": "string", "maxLength": 15, "description": "Agency", "format": "" }, "DaEn": { "type": "string", "description": "End date", "format": "date" }, "SfNr": { "type": "string", "maxLength": 20, "description": "Registration number", "format": "" }, "YnWr": { "type": "boolean", "description": "Work is done every week.", "format": "" } }, "required": [ "DaBe", "AyId" ] } } } } } }, "AfasAgencyAfbouw": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "DaBe": { "type": "string", "description": "Start date", "format": "date" }, "AyId": { "type": "string", "maxLength": 15, "description": "Agency", "format": "" }, "DaEn": { "type": "string", "description": "End date", "format": "date" }, "ViUc": { "type": "string", "enum": [ "0013", "0002", "0099" ], "maxLength": 20, "description": "&AO (dismantlement) CLA\n0013 = 'UTA' SAT/V;\n0002 = SAT/V (no uta);\n0099 = No CLA applicable;", "format": "" }, "ViSi": { "type": "string", "enum": [ "0000", "0011", "0012" ], "maxLength": 20, "description": "&AO (painters) CLA\n0000 = No CLA applicable;\n0011 = 'Schilders';\n0012 = 'UTA';", "format": "" }, "ViTe": { "type": "string", "enum": [ "405", "406", "407", "408", "409", "410", "426", "430", "431", "437", "438", "439", "441", "442", "443", "452", "453", "454", "461", "465", "466", "469", "470", "472", "475", "476", "477", "480", "481", "482", "483", "484", "486", "487", "488", "489", "490", "491", "492", "493", "494", "495", "496", "497", "500", "501", "502", "503", "504", "505", "521", "530", "531", "533", "534", "535", "537", "538", "540", "542", "543", "550", "551", "552", "553", "564", "579", "580", "581", "591", "593", "600", "605", "641", "642", "643", "660", "666", "667", "676", "680", "704", "722", "723", "729", "732", "733", "734", "737", "741", "744", "750", "752", "753", "760", "776", "779", "780", "784", "800", "801", "803", "804", "805", "806", "807", "808", "809", "810", "811", "812", "813", "814", "815", "816", "817", "818", "819", "820", "821", "822", "823", "824", "825", "826", "830", "831", "840", "841", "850", "851", "852", "853", "854", "855", "856", "857", "858", "859", "860", "861", "862", "863", "864", "865", "866", "867", "868", "880", "881", "882", "883", "884", "890", "891", "892", "893", "894", "895", "896", "897", "898", "900", "901", "902", "910", "911", "920", "921", "930", "931", "935", "951", "952", "953" ], "maxLength": 20, "description": "&A&O (Afbouw) profession\n405 = Maatvoerder;\n406 = Post aligner;\n407 = Carpenter;\n408 = Warehouseman (construction CLA);\n409 = Foreman;\n410 = Carpenter - Bricklayer;\n426 = Grinder - Setter;\n430 = Concrete constructor;\n431 = System formwork Engineer;\n437 = Carpenter - Modelmaker;\n438 = Setter II;\n439 = Scaffolding builder;\n441 = Bricklayer II;\n442 = Bricklayer I;\n443 = Bricklayer;\n452 = Bricklayer's labourer - Scaffolder;\n453 = Mechanic, steel scaffold II;\n454 = Mechanic, steel scaffold I;\n461 = Jointer;\n465 = Tiler;\n466 = Bricklayer's labourer-Tiler;\n469 = Concrete sprayer;\n470 = Concrete construction worker;\n472 = Steel bender II;\n475 = Concrete driller/ Sawyer;\n476 = Concretor II;\n477 = Concretor I;\n480 = Plasterer (Traditional);\n481 = Lathing setter;\n482 = Polisher Plasterer;\n483 = Outer wall insulation specialist;\n484 = Slab layer;\n486 = Ceiling, Wall sprayer;\n487 = Plasterer (Sprayer);\n488 = Gluer;\n489 = Compulsory education;\n490 = Block layer (Completion);\n491 = Durox layer;\n492 = Plaster board builder;\n493 = Block layer (structural work);\n494 = Sand-lime stone block layer;\n495 = Builder's labourer Plasterer;\n496 = Assistant Sander;\n497 = Sander;\n500 = Vloerenlegger (Cem., Anhydr, e.d.);\n501 = Builder's labourer Floor tiler;\n502 = Polisher (Terrazzo);\n503 = Terrazzo Floor tiler;\n504 = Terrazzo worker;\n505 = Floor tiler (Epoxy);\n521 = Roof tiler;\n530 = Insulation engineer;\n531 = Insulation engineer, outer walls;\n533 = Mechanic, sealing up;\n534 = Applicator;\n535 = Kitter;\n537 = Plastics worker;\n538 = Fitter, Synthetic Window Frames;\n540 = Assembler;\n542 = Fitter, Completion;\n543 = Engineer, Walls/Ceilings;\n550 = Painter II;\n551 = Painter I;\n552 = Wallpaperer;\n553 = Maintenance painter;\n564 = Painter sprayer;\n579 = Crane driver;\n580 = Crane driver II (Mobile);\n581 = Crane driver I (mobile);\n591 = Heavy Equipment Machinist;\n593 = Light Equipment Machinist;\n600 = Master mechanic;\n605 = Mechanic, Maintenance;\n641 = Framemaker;\n642 = Carpenter II;\n643 = Carpenter I;\n660 = Road construction excavation worker;\n666 = Roadworker I;\n667 = Bricklayer's labourer - Roadworker;\n676 = Student soma;\n680 = Plotter;\n704 = Pile driver I;\n722 = Centralist;\n723 = Analyst;\n729 = Concrete pump machinist;\n732 = Driver II;\n733 = Driver I;\n734 = Driver;\n737 = Forklift truck driver;\n741 = Construction worker assistant;\n744 = Chore worker;\n750 = Labourer;\n752 = Site worker;\n753 = Transporter;\n760 = Demolition contractor II;\n776 = Polisher Sander;\n779 = Setter (of natural stone);\n780 = Plumber;\n784 = Production employee;\n800 = Director (Bpf Insured);\n801 = Commissioner;\n803 = Manager;\n804 = Deputy director;\n805 = Manager;\n806 = Project manager;\n807 = Area manager;\n808 = Construction engineer;\n809 = Engineer;\n810 = Position classifier;\n811 = Architect;\n812 = Technical Employee Planning Office;\n813 = Concrete technician;\n814 = Design engineer;\n815 = Architect of bending schedule;\n816 = Calculator (Pre-);\n817 = Quality controller;\n818 = Surveyor;\n819 = Welding expert;\n820 = Equipment department, Head;\n821 = Management consultant;\n822 = Supervisor;\n823 = Draughtsman;\n824 = Planner;\n825 = Property developer;\n826 = Medewerker PR En Marketing;\n830 = Manager Joinery works;\n831 = Hall manager;\n840 = Construction supervisor;\n841 = Head construction supervisor;\n850 = Accountant;\n851 = Canvasser;\n852 = Administrator;\n853 = Administrative employee;\n854 = Business economist;\n855 = Bookkeeper;\n856 = Calculator (Post-);\n857 = Commercial employee;\n858 = Checker;\n859 = Purchaser;\n860 = Lawyer;\n861 = Clerk;\n862 = Personnel manager;\n863 = Repro employee;\n864 = Secretariat employee;\n865 = Word processor;\n866 = Telephone operator;\n867 = Typist;\n868 = Sales representative;\n880 = Operator;\n881 = Programmer Computer;\n882 = Head Computer Centre;\n883 = Systems analyst;\n884 = Systems manager;\n890 = Watchman/Doorkeeper;\n891 = Warehouse manager-Managerial;\n892 = Terrain manager (Managerial);\n893 = Warehouseman-Non managerial;\n894 = Transport, Manager;\n895 = Salesperson, Shop;\n896 = Fitter (Uta);\n897 = Sales manager;\n898 = Buyer counsellor;\n900 = Trainee;\n901 = Placement;\n902 = Volunteer;\n910 = Holiday worker, Administrative;\n911 = Vakantiewerker, Niet-Adminstratief;\n920 = Manager, Camp;\n921 = Manager, Living quarters;\n930 = Canteen staff;\n931 = Coffee lady;\n935 = Cleaners;\n951 = DGA voluntary LAP;\n952 = DGA voluntary VP;\n953 = DGA voluntary LAP/VP;", "format": "" }, "ViIe": { "type": "string", "enum": [ "101", "102", "103", "104", "105", "106", "107", "108", "109", "110", "111", "112", "113", "114", "115", "116", "117", "118", "119", "120", "121", "123", "124", "125", "126", "129", "130", "131", "132", "133", "134", "135", "136", "137", "138", "140", "141", "142", "150", "151", "160", "199", "200", "201", "202", "203", "205", "206", "210", "211", "220", "221", "222", "223", "240", "250", "251", "252", "253", "254", "255", "256", "257", "258", "259", "265", "266", "267", "268", "269", "270", "271", "299", "301", "305", "310", "311", "315", "316", "317", "318", "319", "320", "321", "322", "323", "324", "325", "326", "327", "328", "329", "330", "331", "332", "333", "340", "350", "351", "352", "353", "354", "355", "356", "357", "358", "359", "360", "361", "362", "363", "364", "365", "366", "367", "368", "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382", "383", "384", "385", "386", "387", "388", "389", "390", "391", "392", "401", "402", "403" ], "maxLength": 20, "description": "&A&O (Schilders) profession\n101 = Onderhoudsschilder (geldig t/m 2012);\n102 = Nieuwbouwschilder (geldig t/m 2012);\n103 = Constructieschilder (geldig t/m 2012);\n104 = Plafond/wandspuiter (geldig t/m 2012);\n105 = Voorman schilder (geldig t/m 2012);\n106 = Uitvoerder (geldig t/m 2012);\n107 = Decoratieschilder (geldig t/m 2012);\n108 = Letterschilder (geldig t/m 2012);\n109 = Reclameschilder (geldig t/m 2012);\n110 = Meubelspuiter (geldig t/m 2012);\n111 = Autospuiter (geldig t/m 2012).;\n112 = Scheepsschilder - 1 (geldig t/m 2012);\n113 = Scheepsschilder - 2 (geldig t/m 2012);\n114 = Betonspuiter (geldig t/m 2012);\n115 = Beton(be)werker (geldig t/m 2012);\n116 = Spuiter (geldig t/m 2012);\n117 = Afwerker (geldig t/m 2012);\n118 = Opperman (geldig t/m 2012);\n119 = Gevelreiniger (geldig t/m 2012);\n120 = Glaszetter - 1 (geldig t/m 2012);\n121 = Glaszetter - 2 (geldig t/m 2012);\n123 = Wegmarkeerder (geldig t/m 2012);\n124 = Behanger (geldig t/m 2012);\n125 = Isoleerder (geldig t/m 2012);\n126 = Decorateur (geldig t/m 2012);\n129 = Werkplaats timmerman (geldig t/m 2012);\n130 = Timmerman (geldig t/m 2012);\n131 = Metselaar (geldig t/m 2012);\n132 = Stukadoor (geldig t/m 2012);\n133 = Applicateur (geldig t/m 2012);\n134 = Classificeerder (geldig t/m 2012);\n135 = Halfwas (geldig t/m 2012);\n136 = Apprentice painter (valid up to and incl. 2012);\n137 = Leerling stukadoor (geldig t/m 2012);\n138 = Practicant schilder (geld.ig t/m 2012);\n140 = Holiday worker;\n141 = Spacspuiter (geldig t/m 2012);\n142 = Schoonmaker schilderwerken (geldig t/m 2012);\n150 = Durox/gibosteller (geldig t/m 2012);\n151 = Vloerenlegger (geldig t/m 2012);\n160 = Autoschadehersteller (geldig t/m 2012);\n199 = Timmerman (geen cao) (geldig t/m 2010);\n200 = MMS;\n201 = Manager;\n202 = Adjunct-directeur (geldig t/m 2012);\n203 = Manager (geldig t/m 2012);\n205 = Meewerkend directeur (geldig t/m 2012);\n206 = Procuratiehouder (geldig t/m 2012);\n210 = Bedrijfsleider (geldig t/m 2012);\n211 = Hoofduitvoerder (geldig t/m 2012);\n220 = Calculator - werkvoorbereider (geldig t/m 2012);\n221 = Technisch administratief persoon (geldig t/m 2012);\n222 = Administratief personeel (geldig t/m 2012);\n223 = Secretaresse /telefoniste (geldig t/m 2012);\n240 = 'UTA' holiday worker;\n250 = Accountant (geldig t/m 2012);\n251 = Administrateur (geldig t/m 2012);\n252 = Boekhouder (geldig t/m 2012);\n253 = Magazijnchef (geldig t/m 2012);\n254 = Meewerkend bedrijfsleider (geldig t/m 2012);\n255 = Meewerkend hoofduitvoerder (geldig t/m 2012);\n256 = Meewerkendtechn. en admin.pers. (geldig t/m jaar 2012);\n257 = Projectontwikkelaar (geldig t/m 2012);\n258 = Telefoniste / receptioniste (geldig t/m 2012);\n259 = Vertegenwoordiger (geldig t/m 2012);\n265 = Werkvoorbereider (geldig t/m 2012);\n266 = Chef werkplaats (geldig t/m 2012);\n267 = Beheerder (geldig t/m 2012);\n268 = Projectleider (geldig t/m 2012);\n269 = Assistant project manager;\n270 = Typist(e) (geldig t/m 2012);\n271 = Secretariaat medewerker (geldig t/m 2012);\n299 = Commissaris (geldig t/m 2012);\n301 = Practicant UTA (geldig t/m 2012);\n305 = Doorman/watchman;\n310 = Cleaner (valid through 2011);\n311 = Chauffeur (geldig t/m 2012);\n315 = Canteen staff;\n316 = Warehouseman;\n317 = Delivery person;\n318 = Shop staff;\n319 = Salesperson;\n320 = Domestic personnel;\n321 = Kassenbeglazer (geldig t/m 2012);\n322 = Kitter (geldig t/m 2012);\n323 = Kunststofverwerker (geldig t/m 2012);\n324 = Mastieker (geldig t/m 2012);\n325 = Furniture sprayer (no CLA);\n326 = Monteur (geldig t/m 2012);\n327 = Permanieter (geldig t/m 2012);\n328 = Steigerbouwer (geldig t/m 2012);\n329 = Stoffeerder (geldig t/m 2012);\n330 = Straler (geldig t/m 2012);\n331 = Werkster/interieurverzorgster (geldig t/m 2012);\n332 = Verkoopleider (geldig t/m 2012);\n333 = Trainee (no CLA);\n340 = Vakantiewerker (geen cao) (geldig t/m 2010);\n350 = Meubelspuiter (dispensatie cao) (Vervallen);\n351 = Administrative employee;\n352 = Secretaresse/Managementassistent;\n353 = Financieel administratief medewerker;\n354 = Office manager;\n355 = Hoofd administratie;\n356 = Controller;\n357 = Temp staff;\n358 = Assistent betonbewerker;\n359 = Assistent timmerkracht;\n360 = Betonbewerker;\n361 = Timmerkracht/houtreparateur;\n362 = Allround betonbewerker;\n363 = Allround timmerkracht;\n364 = Voorman/teamleider;\n365 = Assistent glaszetter;\n366 = Glazier;\n367 = Allround glaszetter;\n368 = Specialist glaszetter;\n369 = Voorman/teamleider;\n370 = Assistent metaalconservering;\n371 = Medewerker metaalconservering;\n372 = Construction painter;\n373 = Sandblaster;\n374 = Sprayer;\n375 = Voorman/teamleider;\n376 = Assistent schilder;\n377 = Schilder;\n378 = Allroundschilder;\n379 = Specialist schilder/restauratieschilder;\n380 = Voorman/teamleider;\n381 = Materiaalbeheerder;\n382 = Calculator;\n383 = Planner;\n384 = Calculator/werkvoorbereider;\n385 = Onderhoudsadviseur;\n386 = Hoofd bedrijfsbureau;\n387 = Construction supervisor;\n388 = Project manager;\n389 = Manager;\n390 = Other CLA values;\n391 = Other ‘UTA’ values;\n392 = New entrant 2016 (valid until 2016);\n401 = Nieuwkomer (geldig t/m 2012);\n402 = Temporarily employed tradesman;\n403 = Temporary 'UTA' personnel;", "format": "" }, "ViSw": { "type": "string", "enum": [ "00", "01", "02", "03", "04", "05", "06", "07", "08", "09", "99" ], "maxLength": 20, "description": "'SFB' basic insurance\n00 = Contract of employment;\n01 = Acceptance of work;\n02 = Sales representative;\n03 = Wsw'er;\n04 = Placement;\n05 = Conscript;\n06 = Home-worker;\n07 = Temp;\n08 = Musician/artist;\n09 = Individual labour against payment;\n99 = Conscientious objections;", "format": "" }, "DsEm": { "type": "string", "maxLength": 12, "description": "Description profession", "format": "" }, "YnCf": { "type": "boolean", "description": "Family of owner", "format": "" }, "YnCs": { "type": "boolean", "description": "'Directeur/grootaandeelhouder'", "format": "" }, "YnCo": { "type": "boolean", "description": "Previous owner", "format": "" }, "YnCc": { "type": "boolean", "description": "On-call/stand-in worker", "format": "" }, "YnZw": { "type": "boolean", "description": "PR", "format": "" }, "YnWw": { "type": "boolean", "description": "'WW'", "format": "" }, "YWAO": { "type": "boolean", "description": "'WAO/WIA'", "format": "" }, "YZFW": { "type": "boolean", "description": "'ZFW'", "format": "" }, "YnAb": { "type": "boolean", "description": "Insured with ABP", "format": "" }, "UTAy": { "type": "boolean", "description": "'UTA'", "format": "" }, "DcFr": { "type": "boolean", "description": "Declaring work susceptible to frost possible", "format": "" }, "ViSr": { "type": "string", "enum": [ "N", "24", "72" ], "maxLength": 20, "description": "Personal risk period\nN = none;\n24 = 24 hours;\n72 = 72 hours;", "format": "" }, "SdLn": { "type": "integer", "description": "No. of days compulsory education", "format": "" }, "SdRf": { "type": "boolean", "description": "'Risicofonds' dispensation", "format": "" }, "ViSp": { "type": "string", "enum": [ "00", "15", "25", "35", "45", "55", "65", "80" ], "maxLength": 20, "description": "WAO (%)\n00 = Collectieve dispensatie BPF, geen a.o. perc;\n15 = 15-25%;\n25 = 25-35%;\n35 = 35-45%;\n45 = 45-55%;\n55 = 55-65%;\n65 = 65-80%;\n80 = 80-100%;", "format": "" }, "ViSz": { "type": "string", "enum": [ "A", "B" ], "maxLength": 20, "description": "Premium group ZW\nA = Premium group A;\nB = Premium group B;", "format": "" }, "CoId": { "type": "string", "maxLength": 3, "description": "Country", "format": "" }, "Ad": { "type": "string", "maxLength": 60, "description": "Address", "format": "" }, "HmNr": { "type": "integer", "description": "House number", "format": "" }, "HmAd": { "type": "string", "maxLength": 30, "description": "Extension (a, b, etc.) to house number", "format": "" }, "ZpCd": { "type": "string", "maxLength": 15, "description": "Postal code", "format": "" }, "Rs": { "type": "string", "maxLength": 50, "description": "City", "format": "" }, "InYr": { "type": "boolean", "description": "Do not include in year-end work", "format": "" }, "ViSb": { "type": "string", "enum": [ "AB", "AW" ], "maxLength": 20, "description": "Address reference\nAB = Houseboat;\nAW = Caravan;", "format": "" } }, "required": [ "DaBe", "AyId" ] } } } } } }, "AfasAgencyO_O": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "DaBe": { "type": "string", "description": "Start date", "format": "date" }, "AyId": { "type": "string", "maxLength": 15, "description": "Agency", "format": "" }, "DaEn": { "type": "string", "description": "End date", "format": "date" }, "Vi1": { "type": "string", "enum": [ "01", "10", "11", "12", "02", "03", "04", "05", "06", "07", "08", "09" ], "maxLength": 20, "description": "&UWV OO basic insurance\n01 = Contract of employment;\n10 = Temp;\n11 = Individual labour against payment;\n12 = Payment at dismissal;\n02 = Appointment pertaining to public law;\n03 = WSW recipient;\n04 = Placement;\n05 = Shareholding fisherman;\n06 = Managed co-operative society;\n07 = Conscript;\n08 = Home-worker;\n09 = Musician/artist;", "format": "" }, "YnCf": { "type": "boolean", "description": "Family of owner", "format": "" }, "YnCs": { "type": "boolean", "description": "'Directeur/grootaandeelhouder'", "format": "" }, "YnCo": { "type": "boolean", "description": "Previous owner", "format": "" }, "YnCc": { "type": "boolean", "description": "On-call/stand-in worker", "format": "" }, "YnZW": { "type": "boolean", "description": "PR", "format": "" }, "DoPs": { "type": "boolean", "description": "'Ufo'", "format": "" }, "DoWo": { "type": "boolean", "description": "'WAO O&O'", "format": "" }, "YZFW": { "type": "boolean", "description": "'ZFW'", "format": "" }, "Hand": { "type": "boolean", "description": "'Arbeidsgehandicapte' reduction", "format": "" }, "Cons": { "type": "boolean", "description": "Conscientious objections", "format": "" }, "CoId": { "type": "string", "maxLength": 3, "description": "Country", "format": "" }, "Ad": { "type": "string", "maxLength": 60, "description": "Address", "format": "" }, "HmNr": { "type": "integer", "description": "House number", "format": "" }, "HmAd": { "type": "string", "maxLength": 30, "description": "Extension (a, b, etc.) to house number", "format": "" }, "ZpCd": { "type": "string", "maxLength": 15, "description": "Postal code", "format": "" }, "Rs": { "type": "string", "maxLength": 50, "description": "City", "format": "" }, "Vi9": { "type": "string", "enum": [ "1", "2", "3", "4" ], "maxLength": 20, "description": "ZFW pension type\n1 = None;\n2 = 'VUT';\n3 = Early pension;\n4 = Pension;", "format": "" } }, "required": [ "DaBe", "AyId" ] } } } } } }, "AfasAgencyABP": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "DaBe": { "type": "string", "description": "Start date", "format": "date" }, "AyId": { "type": "string", "maxLength": 15, "description": "Agency", "format": "" }, "DaEn": { "type": "string", "description": "End date", "format": "date" }, "ExVP": { "type": "boolean", "description": "Do not include in VFPF delivery", "format": "" }, "ExDu": { "type": "boolean", "description": "Not included in DUO deliveries", "format": "" }, "ExAv": { "type": "boolean", "description": "Do not include in 'AVR' indicators", "format": "" } }, "required": [ "DaBe", "AyId" ] } } } } } }, "AfasAgencyPGGM": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "DaBe": { "type": "string", "description": "Start date", "format": "date" }, "AyId": { "type": "string", "maxLength": 15, "description": "Agency", "format": "" }, "Pg1": { "type": "boolean", "description": "Include in 'GMA'", "format": "" } }, "required": [ "DaBe", "AyId" ] } } } } } }, "AfasAgencyTKP": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "DaBe": { "type": "string", "description": "Start date", "format": "date" }, "AyId": { "type": "string", "maxLength": 15, "description": "Agency", "format": "" }, "DaEn": { "type": "string", "description": "End date", "format": "date" } }, "required": [ "DaBe", "AyId" ] } } } } } }, "AfasAgencyPensioenaangifte": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "DaBe": { "type": "string", "description": "Start date", "format": "date" }, "AyId": { "type": "string", "maxLength": 15, "description": "Agency", "format": "" }, "DaEn": { "type": "string", "description": "End date", "format": "date" }, "CoNr": { "type": "string", "maxLength": 20, "description": "Registration", "format": "" } }, "required": [ "DaBe", "AyId" ] } } } } } }, "AfasAgencyGroupS": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "DaBe": { "type": "string", "description": "Start date", "format": "date" }, "AyId": { "type": "string", "maxLength": 15, "description": "Agency", "format": "" }, "DaEn": { "type": "string", "description": "End date", "format": "date" }, "AKL": { "type": "number", "description": "Dependent children", "format": "number" }, "APL": { "type": "number", "description": "Number of other dependants", "format": "number" }, "BST": { "type": "string", "enum": [ "1", "2", "3", "4", "5", "6", "7", "8" ], "maxLength": 20, "description": "Marital status\n1 = Unmarried;\n2 = Married;\n3 = Widow(er);\n4 = Divorced / Legally separated;\n5 = De facto divorced;\n6 = Cohabiting;\n7 = Widow with surviving depedent's pension;\n8 = Legally cohabiting;", "format": "" }, "CEL": { "type": "string", "enum": [ "0", "1", "2", "3", "4", "5", "8", "9" ], "maxLength": 20, "description": "Dependent spouse\n0 = Spouse not dependent;\n1 = Dependent spouse;\n2 = Dependent handicapped spouse;\n3 = Dependent spouse: employee with early retirement pension, not head of family;\n4 = Handicapped dependent spouse: employee with early retirement pension, not head of family.;\n5 = Spouse not dependent: employee with early retirement pension, head of family.;\n8 = Spouse with small pension;\n9 = Spouse with minimum income;", "format": "" }, "CWH": { "type": "boolean", "description": "Disabled employee", "format": "" }, "ExSs": { "type": "boolean", "description": "Exclude employers' social-accounting secretariat", "format": "" }, "G65L": { "type": "number", "description": "Dependent disabled 65+", "format": "number" }, "GAL": { "type": "number", "description": "Dependent other disabled", "format": "number" }, "GKL": { "type": "number", "description": "Dependent disabled children", "format": "number" }, "DTH": { "type": "string", "description": "Wedding date", "format": "date" }, "ENA": { "type": "string", "maxLength": 36, "description": "Surname and first name of partner", "format": "" }, "PBiD": { "type": "string", "description": "Partner's date of birth", "format": "date" }, "W04": { "type": "number", "description": "Number of dependants aged 65 or over", "format": "number" }, "Z32": { "type": "string", "enum": [ "1", "2", "3", "4", "5" ], "maxLength": 20, "description": "Salary periodicity\n1 = Monthly;\n2 = Per half month (fifteen days);\n3 = Per 2 weeks (fourteen days);\n4 = Per 4 weeks;\n5 = Weekly;", "format": "" }, "Z03": { "type": "number", "description": "Registration number fund for the disabled", "format": "number" }, "Z04": { "type": "string", "enum": [ "A", "B", "C" ], "maxLength": 20, "description": "Medical category\nA = A;\nB = B;\nC = C;", "format": "" }, "NI1": { "type": "string", "enum": [ "1", "2", "3", "4", "5", "6", "7" ], "maxLength": 20, "description": "Level 1 allocation\n1 = Employer;\n2 = Employee;\n3 = Organisational unit;\n4 = Cost centre;\n5 = Cost unit;\n6 = Job;\n7 = Project;", "format": "" }, "NI2": { "type": "string", "enum": [ "1", "2", "3", "4", "5", "6", "7" ], "maxLength": 20, "description": "Level 2 allocation\n1 = Employer;\n2 = Employee;\n3 = Organisational unit;\n4 = Cost centre;\n5 = Cost unit;\n6 = Job;\n7 = Project;", "format": "" }, "NI3": { "type": "string", "enum": [ "1", "2", "3", "4", "5", "6", "7" ], "maxLength": 20, "description": "Level 3 allocation\n1 = Employer;\n2 = Employee;\n3 = Organisational unit;\n4 = Cost centre;\n5 = Cost unit;\n6 = Job;\n7 = Project;", "format": "" }, "CGA": { "type": "string", "enum": [ "0", "1", "2", "3", "4" ], "maxLength": 20, "description": "Cross-border worker\n0 = Not cross-border worker;\n1 = Cross-border worker living in Germany;\n2 = Cross-border worker living in France;\n3 = Cross-border worker living in Luxemburg;\n4 = Cross-border worker living in the Netherlands;", "format": "" }, "CBV": { "type": "string", "enum": [ "0", "1", "2", "3", "4", "5", "6" ], "maxLength": 20, "description": "Subject to advance levy\n0 = Niet onderworpen;\n1 = Onderworpen;\n2 = No right of abode in Belgium;\n3 = Vrijstell.stort.BV nacht of ploeg;\n4 = Niet verblijfhouder sportbeoef./ -30 dagen;\n5 = Niet verblijfh./vrijst.nacht of ploeg;\n6 = Onderworpen (+werk.beroepskosten);", "format": "" }, "MaTl": { "type": "number", "description": "Informal care 65+ chargeable", "format": "number" } }, "required": [ "DaBe", "AyId" ] } } } } } }, "AfasAgencySDWorx": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "DaBe": { "type": "string", "description": "Start date", "format": "date" }, "AyId": { "type": "string", "maxLength": 15, "description": "Agency", "format": "" }, "DaEn": { "type": "string", "description": "End date", "format": "date" }, "AKL": { "type": "number", "description": "Dependent children", "format": "number" }, "APL": { "type": "number", "description": "Number of other dependants", "format": "number" }, "BST": { "type": "string", "enum": [ "1", "2", "3", "4", "5", "6", "7", "8" ], "maxLength": 20, "description": "Marital status\n1 = Unmarried;\n2 = Married;\n3 = Widow(er);\n4 = Divorced / Legally separated;\n5 = De facto divorced;\n6 = Cohabiting;\n7 = Widow with surviving depedent's pension;\n8 = Legally cohabiting;", "format": "" }, "CEL": { "type": "string", "enum": [ "0", "1", "2", "3", "4", "5", "8", "9" ], "maxLength": 20, "description": "Dependent spouse\n0 = Spouse not dependent;\n1 = Dependent spouse;\n2 = Dependent handicapped spouse;\n3 = Dependent spouse: employee with early retirement pension, not head of family;\n4 = Handicapped dependent spouse: employee with early retirement pension, not head of family.;\n5 = Spouse not dependent: employee with early retirement pension, head of family.;\n8 = Spouse with small pension;\n9 = Spouse with minimum income;", "format": "" }, "CWH": { "type": "boolean", "description": "Disabled employee", "format": "" }, "ExSs": { "type": "boolean", "description": "Exclude employers' social-accounting secretariat", "format": "" }, "G65L": { "type": "number", "description": "Dependent disabled 65+", "format": "number" }, "GAL": { "type": "number", "description": "Dependent other disabled", "format": "number" }, "GKL": { "type": "number", "description": "Dependent disabled children", "format": "number" }, "DTH": { "type": "string", "description": "Wedding date", "format": "date" }, "ENA": { "type": "string", "maxLength": 36, "description": "Surname and first name of partner", "format": "" }, "PBiD": { "type": "string", "description": "Partner's date of birth", "format": "date" }, "W04": { "type": "number", "description": "Number of dependants aged 65 or over", "format": "number" }, "Z32": { "type": "string", "enum": [ "1", "2", "3", "4", "5" ], "maxLength": 20, "description": "Salary periodicity\n1 = Monthly;\n2 = Per half month (fifteen days);\n3 = Per 2 weeks (fourteen days);\n4 = Per 4 weeks;\n5 = Weekly;", "format": "" }, "F281": { "type": "string", "enum": [ "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "30", "31", "51" ], "maxLength": 20, "description": "Fiche 281\n01 = Early retirement old system;\n02 = Foreign element;\n03 = German cross-border worker;\n04 = French cross-border worker;\n05 = Dutch cross-border worker;\n06 = Pensioner without performance;\n07 = Manager;\n08 = Foreign element manager;\n09 = No fiche 281/325;\n10 = Commissions, brokerages, trade reversals;\n11 = Business manager that is not a partner;\n12 = Buitenlands kaderlid werknemer;\n13 = Buitenlands kaderlid bedrijfsleider;\n14 = Buitenlands onderzoeker;\n15 = Buit.arb.land/tuinb.met woonstaatverkl.;\n16 = Buit.arb.land/tuinb.zonder woonstaatverk;\n17 = Binnenl. gelegenheidsarbeider land/tuin;\n18 = F281.18 andere vervangingsinkomsten;\n19 = Fiche 281.27 verenigingswerk socio-cult;\n20 = Fiche 281.27 verenigingswerk sport;\n30 = Fiche 281.30;\n31 = Foreign company record 281.30;\n51 = Legal entity record 281.50;", "format": "" }, "PaFu": { "type": "string", "enum": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C", "X" ], "maxLength": 20, "description": "Spouse's profession\n1 = Worker;\n2 = Internal post;\n3 = Office worker;\n4 = Self-employed;\n5 = Miner;\n6 = Sailor;\n7 = State/province/municipality;\n8 = Other;\n9 = Without;\nA = Income < € 195,00 / mnth;\nB = Pension < € 117,00 / mnth;\nC = Pension < € 390,00 / mnth;\nX = Unknown;", "format": "" }, "ReCo": { "type": "string", "enum": [ "0", "1", "2", "3", "4", "5", "6", "7" ], "maxLength": 20, "description": "Refunded costs\n0 = Without refunded costs;\n1 = 'Ja: bewijsstukken';\n2 = Common transportation;\n3 = 'Ja: bewijsstukken + gemeenschappelijk vervoer';\n4 = 'Ja: ernstige normen';\n5 = 'Ja: ernstige normen + bewijsstukken';\n6 = 'Ja: ernstige normen + gemeenschappelijk vervoer';\n7 = 'Ja: ernstige normen + bewijsstukken + gemeenschappelijk vervoer';", "format": "" }, "WsDo": { "type": "string", "enum": [ "2", "B", "K", "P", "S" ], "maxLength": 20, "description": "Pay slip\n2 = Pay slip in employee's language;\nB = Pay slip in employee's language + English translation;\nK = Pay slip in German;\nP = Pay slip in employee's language + German translation;\nS = Pay slip in employee's language + Dutch or French translation;", "format": "" }, "MaTl": { "type": "number", "description": "Informal care 65+ chargeable", "format": "number" } }, "required": [ "DaBe", "AyId" ] } } } } } }, "AfasAgencyAcerta": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "DaBe": { "type": "string", "description": "Start date", "format": "date" }, "AyId": { "type": "string", "maxLength": 15, "description": "Agency", "format": "" }, "DaEn": { "type": "string", "description": "End date", "format": "date" }, "AKL": { "type": "number", "description": "Dependent children", "format": "number" }, "APL": { "type": "number", "description": "Number of other dependants", "format": "number" }, "BST": { "type": "string", "enum": [ "1", "2", "3", "4", "5", "6", "7", "8" ], "maxLength": 20, "description": "Marital status\n1 = Unmarried;\n2 = Married;\n3 = Widow(er);\n4 = Divorced / Legally separated;\n5 = De facto divorced;\n6 = Cohabiting;\n7 = Widow with surviving depedent's pension;\n8 = Legally cohabiting;", "format": "" }, "CEL": { "type": "string", "enum": [ "0", "1", "2", "3", "4", "5", "8", "9" ], "maxLength": 20, "description": "Dependent spouse\n0 = Spouse not dependent;\n1 = Dependent spouse;\n2 = Dependent handicapped spouse;\n3 = Dependent spouse: employee with early retirement pension, not head of family;\n4 = Handicapped dependent spouse: employee with early retirement pension, not head of family.;\n5 = Spouse not dependent: employee with early retirement pension, head of family.;\n8 = Spouse with small pension;\n9 = Spouse with minimum income;", "format": "" }, "CWH": { "type": "boolean", "description": "Disabled employee", "format": "" }, "ExSs": { "type": "boolean", "description": "Exclude employers' social-accounting secretariat", "format": "" }, "G65L": { "type": "number", "description": "Dependent disabled 65+", "format": "number" }, "GAL": { "type": "number", "description": "Dependent other disabled", "format": "number" }, "GKL": { "type": "number", "description": "Dependent disabled children", "format": "number" }, "DTH": { "type": "string", "description": "Wedding date", "format": "date" }, "ENA": { "type": "string", "maxLength": 36, "description": "Surname and first name of partner", "format": "" }, "PBiD": { "type": "string", "description": "Partner's date of birth", "format": "date" }, "W04": { "type": "number", "description": "Number of dependants aged 65 or over", "format": "number" }, "Z32": { "type": "string", "enum": [ "1", "2", "3", "4", "5" ], "maxLength": 20, "description": "Salary periodicity\n1 = Monthly;\n2 = Per half month (fifteen days);\n3 = Per 2 weeks (fourteen days);\n4 = Per 4 weeks;\n5 = Weekly;", "format": "" }, "SiCh": { "type": "boolean", "description": "Non-married with children", "format": "" }, "ExFi": { "type": "string", "enum": [ "1", "2", "3", "4", "5", "6", "7" ], "maxLength": 20, "description": "Reason for fiscal regimen exemption\n1 = Pays taxes as independant;\n2 = Pays taxes in a foreign country;\n3 = Taxes paid by the fund of disabled persons;\n4 = Working student;\n5 = Tax exemption for young workers;\n6 = Flex employee;\n7 = Society worker;", "format": "" }, "Pain": { "type": "string", "enum": [ "0", "1", "2", "3", "8", "9" ], "maxLength": 20, "description": "Partner's income\n0 = Alleenstaande;\n1 = Echtg.met gewone beroepsink.max. = *** eur net/m;\n2 = Echtg. Met pens.,rente,ed. Max. = *** eur netto/m.;\n3 = Echtg. Eeg. En inkomen > *** eur/jaar;\n8 = Echtgeno(o)t(e) met beroepsinkomsten;\n9 = Echtg.zond.ber.ink./pens,rente,ed < *** eur net/m;", "format": "" }, "PaPo": { "type": "string", "enum": [ "1", "2", "3", "4", "5", "6", "7", "8", "9" ], "maxLength": 20, "description": "Partner's profession\n1 = Worker;\n2 = Domestic servant;\n3 = Hoofdarbeider (bediende);\n4 = Self-employed;\n5 = Miner;\n6 = Zeeman ter koopvaardij;\n7 = Vaste beambte of stagiair;\n8 = Andere;\n9 = None;", "format": "" }, "Payr": { "type": "string", "enum": [ "1", "10", "11", "12", "13", "14", "15", "2", "3", "4", "5", "6", "7", "8", "9" ], "maxLength": 20, "description": "PAYE\n1 = Gewoon, bedrijfsvoorheffing-onderworpen;\n10 = Gewone bv onderworpen met min. van 11,11 %;\n11 = Sport nevenact. Gewoon tarief;\n12 = Sport nevenactiv. Tarief buitenland;\n13 = Podiumkunstenaar/sportbeoef. Niet-inwoner;\n14 = Gelegenheidswerknemer horeca;\n15 = Foreign seasonal work Country/horticulture company 18.725%;\n2 = Not subject to advance levy;\n3 = Advance levy at foreign rate;\n4 = Bedrijfsvoorh. voor toevall. of periodieke vergoed;\n5 = Reservermilitairen (niet rijksinwoners) (30% bv);\n6 = Uitzendkrachten en seizoenarbeiders (11,11% bv);\n7 = Sociaal plan/uitstappers;\n8 = Gewoon, bedrijfsvoorh.-onderworpen(basis70%);\n9 = Ngo co-operant;", "format": "" }, "FaCh": { "type": "string", "enum": [ "0", "1", "2" ], "maxLength": 20, "description": "Early retiree with dependent family\n0 = Not applicable;\n1 = No. of dependents;\n2 = No dependents;", "format": "" }, "Fich": { "type": "string", "enum": [ "1", "2", "3", "4", "5" ], "maxLength": 20, "description": "Employee type for declaration\n1 = Fiche, geen aangifte;\n2 = Fiche en aangifte;\n3 = Geen fiche, geen aangifte;\n4 = Fiche, 325, geen aangifte;\n5 = Geen fiscale documenten;", "format": "" }, "FiId": { "type": "string", "maxLength": 35, "description": "Fiscal identification number", "format": "" }, "FiRe": { "type": "string", "enum": [ "1", "2", "3", "6" ], "maxLength": 20, "description": "Fiscal regimen\n1 = Pays company advance tax;\n2 = Does not pay company advance tax;\n3 = Non-resident advance tax;\n6 = Fictitious PAYE;", "format": "" }, "MaSt": { "type": "string", "enum": [ "1", "2", "3", "4", "5", "6", "7", "9" ], "maxLength": 20, "description": "Marital status\n1 = Unmarried;\n2 = Married;\n3 = Weduwe of weduwnaar;\n4 = De facto divorced;\n5 = Wettelijk gescheiden;\n6 = Gescheiden van tafel en bed;\n7 = Legally cohabiting;\n9 = Unknown;", "format": "" }, "MsDa": { "type": "string", "description": "Marital status start date", "format": "date" }, "BoCo": { "type": "string", "enum": [ "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "C" ], "maxLength": 20, "description": "Cross-border worker code\n0 = Arrived taxpayer (BBIB);\n1 = Grensarbeider Frankrijk;\n2 = Grensarbeiders Nederland;\n3 = Grensarbeider Duitsland;\n4 = Incoming researcher (BBIO);\n5 = Buitenlands Kaderlid;\n6 = Buitenl kad deel loon in land met dubbelbelverdr;\n7 = Wn deel loon in land zonder dubbelbelverdr;\n8 = Wn deel loon in land met dubbelbelverdr;\n9 = Wn deel loon in land zonder dubbelbelverdr;\nC = Foreign seasonal worker WITH certificate of tax residence;", "format": "" }, "DiPa": { "type": "boolean", "description": "Invalid partner", "format": "" }, "MaTl": { "type": "number", "description": "Informal care 65+ chargeable", "format": "number" } }, "required": [ "DaBe", "AyId" ] } } } } } }, "AfasAgencyPartena": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "DaBe": { "type": "string", "description": "Start date", "format": "date" }, "AyId": { "type": "string", "maxLength": 15, "description": "Agency", "format": "" }, "DaEn": { "type": "string", "description": "End date", "format": "date" }, "AKL": { "type": "number", "description": "Dependent children", "format": "number" }, "APL": { "type": "number", "description": "Number of other dependants", "format": "number" }, "BST": { "type": "string", "enum": [ "1", "2", "3", "4", "5", "6", "7", "8" ], "maxLength": 20, "description": "Marital status\n1 = Unmarried;\n2 = Married;\n3 = Widow(er);\n4 = Divorced / Legally separated;\n5 = De facto divorced;\n6 = Cohabiting;\n7 = Widow with surviving depedent's pension;\n8 = Legally cohabiting;", "format": "" }, "CEL": { "type": "string", "enum": [ "0", "1", "2", "3", "4", "5", "8", "9" ], "maxLength": 20, "description": "Dependent spouse\n0 = Spouse not dependent;\n1 = Dependent spouse;\n2 = Dependent handicapped spouse;\n3 = Dependent spouse: employee with early retirement pension, not head of family;\n4 = Handicapped dependent spouse: employee with early retirement pension, not head of family.;\n5 = Spouse not dependent: employee with early retirement pension, head of family.;\n8 = Spouse with small pension;\n9 = Spouse with minimum income;", "format": "" }, "CWH": { "type": "boolean", "description": "Disabled employee", "format": "" }, "ExSs": { "type": "boolean", "description": "Exclude employers' social-accounting secretariat", "format": "" }, "G65L": { "type": "number", "description": "Dependent disabled 65+", "format": "number" }, "GAL": { "type": "number", "description": "Dependent other disabled", "format": "number" }, "GKL": { "type": "number", "description": "Dependent disabled children", "format": "number" }, "DTH": { "type": "string", "description": "Wedding date", "format": "date" }, "ENA": { "type": "string", "maxLength": 36, "description": "Surname and first name of partner", "format": "" }, "PBiD": { "type": "string", "description": "Partner's date of birth", "format": "date" }, "W04": { "type": "number", "description": "Number of dependants aged 65 or over", "format": "number" }, "Z32": { "type": "string", "enum": [ "1", "2", "3", "4", "5" ], "maxLength": 20, "description": "Salary periodicity\n1 = Monthly;\n2 = Per half month (fifteen days);\n3 = Per 2 weeks (fourteen days);\n4 = Per 4 weeks;\n5 = Weekly;", "format": "" }, "SiCh": { "type": "boolean", "description": "Non-married with children", "format": "" }, "ExFi": { "type": "string", "enum": [ "1", "2", "3", "4", "5", "6", "7" ], "maxLength": 20, "description": "Reason for fiscal regimen exemption\n1 = Pays taxes as independant;\n2 = Pays taxes in a foreign country;\n3 = Taxes paid by the fund of disabled persons;\n4 = Working student;\n5 = Tax exemption for young workers;\n6 = Flex employee;\n7 = Society worker;", "format": "" }, "Pain": { "type": "string", "enum": [ "0", "1", "2", "3", "8", "9" ], "maxLength": 20, "description": "Partner's income\n0 = Alleenstaande;\n1 = Echtg.met gewone beroepsink.max. = *** eur net/m;\n2 = Echtg. Met pens.,rente,ed. Max. = *** eur netto/m.;\n3 = Echtg. Eeg. En inkomen > *** eur/jaar;\n8 = Echtgeno(o)t(e) met beroepsinkomsten;\n9 = Echtg.zond.ber.ink./pens,rente,ed < *** eur net/m;", "format": "" }, "PaPo": { "type": "string", "enum": [ "1", "2", "3", "4", "5", "6", "7", "8", "9" ], "maxLength": 20, "description": "Partner's profession\n1 = Worker;\n2 = Domestic servant;\n3 = Hoofdarbeider (bediende);\n4 = Self-employed;\n5 = Miner;\n6 = Zeeman ter koopvaardij;\n7 = Vaste beambte of stagiair;\n8 = Andere;\n9 = None;", "format": "" }, "Payr": { "type": "string", "enum": [ "1", "10", "11", "12", "13", "14", "15", "2", "3", "4", "5", "6", "7", "8", "9" ], "maxLength": 20, "description": "PAYE\n1 = Gewoon, bedrijfsvoorheffing-onderworpen;\n10 = Gewone bv onderworpen met min. van 11,11 %;\n11 = Sport nevenact. Gewoon tarief;\n12 = Sport nevenactiv. Tarief buitenland;\n13 = Podiumkunstenaar/sportbeoef. Niet-inwoner;\n14 = Gelegenheidswerknemer horeca;\n15 = Foreign seasonal work Country/horticulture company 18.725%;\n2 = Not subject to advance levy;\n3 = Advance levy at foreign rate;\n4 = Bedrijfsvoorh. voor toevall. of periodieke vergoed;\n5 = Reservermilitairen (niet rijksinwoners) (30% bv);\n6 = Uitzendkrachten en seizoenarbeiders (11,11% bv);\n7 = Sociaal plan/uitstappers;\n8 = Gewoon, bedrijfsvoorh.-onderworpen(basis70%);\n9 = Ngo co-operant;", "format": "" }, "FaCh": { "type": "string", "enum": [ "0", "1", "2" ], "maxLength": 20, "description": "Early retiree with dependent family\n0 = Not applicable;\n1 = No. of dependents;\n2 = No dependents;", "format": "" }, "Fich": { "type": "string", "enum": [ "1", "2", "3", "4", "5" ], "maxLength": 20, "description": "Employee type for declaration\n1 = Fiche, geen aangifte;\n2 = Fiche en aangifte;\n3 = Geen fiche, geen aangifte;\n4 = Fiche, 325, geen aangifte;\n5 = Geen fiscale documenten;", "format": "" }, "FiId": { "type": "string", "maxLength": 35, "description": "Fiscal identification number", "format": "" }, "FiRe": { "type": "string", "enum": [ "1", "2", "3", "6" ], "maxLength": 20, "description": "Fiscal regimen\n1 = Pays company advance tax;\n2 = Does not pay company advance tax;\n3 = Non-resident advance tax;\n6 = Fictitious PAYE;", "format": "" }, "MaSt": { "type": "string", "enum": [ "1", "2", "3", "4", "5", "6", "7", "9" ], "maxLength": 20, "description": "Marital status\n1 = Unmarried;\n2 = Married;\n3 = Weduwe of weduwnaar;\n4 = De facto divorced;\n5 = Wettelijk gescheiden;\n6 = Gescheiden van tafel en bed;\n7 = Legally cohabiting;\n9 = Unknown;", "format": "" }, "MsDa": { "type": "string", "description": "Marital status start date", "format": "date" }, "BoCo": { "type": "string", "enum": [ "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "C" ], "maxLength": 20, "description": "Cross-border worker code\n0 = Arrived taxpayer (BBIB);\n1 = Grensarbeider Frankrijk;\n2 = Grensarbeiders Nederland;\n3 = Grensarbeider Duitsland;\n4 = Incoming researcher (BBIO);\n5 = Buitenlands Kaderlid;\n6 = Buitenl kad deel loon in land met dubbelbelverdr;\n7 = Wn deel loon in land zonder dubbelbelverdr;\n8 = Wn deel loon in land met dubbelbelverdr;\n9 = Wn deel loon in land zonder dubbelbelverdr;\nC = Foreign seasonal worker WITH certificate of tax residence;", "format": "" }, "DiPa": { "type": "boolean", "description": "Invalid partner", "format": "" }, "PaAn": { "type": "string", "maxLength": 48, "description": "Partner name", "format": "" }, "PaBa": { "type": "string", "enum": [ "0", "1", "2", "3", "4" ], "maxLength": 20, "description": "Salary scale specificity\n0 = None;\n1 = Tax voluntary service amount;\n2 = Tax voluntary service percentage;\n3 = Minimum income tax deducted at source amount;\n4 = Fixed amount;", "format": "" }, "PaWk": { "type": "boolean", "description": "Actual costs", "format": "" }, "PaFv": { "type": "boolean", "description": "Fixed income tax deducted at source", "format": "" }, "PaId": { "type": "string", "maxLength": 25, "description": "Partena identity card", "format": "" }, "PaMv": { "type": "boolean", "description": "Monthly calc. of holiday pay from leaving employm.", "format": "" }, "PaRe": { "type": "string", "maxLength": 10, "description": "Registration number", "format": "" }, "PaBv": { "type": "number", "multipleOf": 0.01, "description": "Value of income tax deducted at source", "format": "float" }, "PaVn": { "type": "string", "maxLength": 24, "description": "Partner's first name", "format": "" }, "PaWp": { "type": "string", "maxLength": 25, "description": "Permit for work", "format": "" }, "PaGa": { "type": "string", "enum": [ "0", "1", "8", "A", "D", "E" ], "maxLength": 20, "description": "Cross-border worker\n0 = No object;\n1 = French cross-border worker;\n8 = Non resident artists;\nA = Non-cross-border worker - with work performance in Belgium> or = 75% (scale I or II);\nD = Non-cross-border worker - with work performance in Belgium<75% (scale III)|;\nE = Non-cross-border worker - without employment contract covering the full calendar year (Scale III);", "format": "" }, "PaIp": { "type": "string", "enum": [ "0", "1", "2", "3", "4", "5" ], "maxLength": 20, "description": "Partner's income\n0 = Partner with income/other;\n1 = Partner with no income;\n2 = Income < € 230 net/month;\n3 = Pension < 138€ net/month;\n4 = Pension < € 459 net/month;\n5 = Partner works in EU;", "format": "" }, "PaOw": { "type": "string", "enum": [ "01", "02", "03", "04", "05", "06", "07", "08" ], "maxLength": 20, "description": "BV submission\n01 = With income tax deducted at source;\n02 = Income tax deducted at source payable by the employer;\n03 = Without income tax deducted at source;\n04 = Without advance tax payment (excluded yearly works);\n05 = Wage record 281.30 (325.30);\n06 = Total neutralisation of taxable;\n07 = Neutralisation of taxable with net;\n08 = Fiscal file 281.20 for independent workers liable to the NSSO;", "format": "" }, "MaTl": { "type": "number", "description": "Informal care 65+ chargeable", "format": "number" } }, "required": [ "DaBe", "AyId" ] } } } } } }, "AfasAgencyStippaangifte": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "DaBe": { "type": "string", "description": "Start date", "format": "date" }, "AyId": { "type": "string", "maxLength": 15, "description": "Agency", "format": "" }, "DaEn": { "type": "string", "description": "End date", "format": "date" }, "NoSt": { "type": "boolean", "description": "Exclude StiPP pension delivery", "format": "" } }, "required": [ "DaBe", "AyId" ] } } } } } }, "AfasIdentityDocument": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "Nr": { "type": "string", "maxLength": 20, "description": "Number", "format": "" }, "DaBe": { "type": "string", "description": "Declaration date", "format": "date" }, "DaEn": { "type": "string", "description": "Expiry date", "format": "date" }, "CoId": { "type": "string", "maxLength": 3, "description": "Issuing country", "format": "" } } }, "Objects": { "type": "array", "items": { "type": "object", "properties": { "AfasIdentityDocumentAttachment": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "FileName": { "type": "string", "maxLength": 255, "description": "FileName", "format": "" }, "FileId": { "type": "string", "maxLength": 32, "description": "File Id", "format": "" }, "FileStream": { "type": "string", "description": "File as byte-array", "format": "byte" } } } } } } } } } } } } } } } }, "AfasResidenceDocument": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "Nr": { "type": "string", "maxLength": 20, "description": "Number", "format": "" }, "DaBe": { "type": "string", "description": "Declaration date", "format": "date" }, "DaEn": { "type": "string", "description": "Expiry date", "format": "date" }, "CoId": { "type": "string", "maxLength": 3, "description": "Issuing country", "format": "" } } }, "Objects": { "type": "array", "items": { "type": "object", "properties": { "AfasResidenceDocumentAttachment": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "FileName": { "type": "string", "maxLength": 255, "description": "FileName", "format": "" }, "FileId": { "type": "string", "maxLength": 32, "description": "File Id", "format": "" }, "FileStream": { "type": "string", "description": "File as byte-array", "format": "byte" } } } } } } } } } } } } } } } }, "AfasEmploymentDocument": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "Nr": { "type": "string", "maxLength": 20, "description": "Number", "format": "" }, "DaBe": { "type": "string", "description": "Declaration date", "format": "date" }, "DaEn": { "type": "string", "description": "Expiry date", "format": "date" }, "CoId": { "type": "string", "maxLength": 3, "description": "Issuing country", "format": "" } } }, "Objects": { "type": "array", "items": { "type": "object", "properties": { "AfasEmploymentDocumentAttachment": { "type": "object", "properties": { "Element": { "type": "array", "items": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "FileName": { "type": "string", "maxLength": 255, "description": "FileName", "format": "" }, "FileId": { "type": "string", "maxLength": 32, "description": "File Id", "format": "" }, "FileStream": { "type": "string", "description": "File as byte-array", "format": "byte" } } } } } } } } } } } } } } } } } } } } } } } } }, "KnPocketNotStatus_POST": { "type": "object", "properties": { "AfasKnMessage": { "type": "object", "properties": { "Element": { "type": "object", "properties": { "Fields": { "type": "object", "properties": { "PoId": { "type": "string", "maxLength": 32, "description": "Pocket message ID", "format": "" }, "ViPo": { "type": "string", "enum": [ "100", "200", "300", "400", "500" ], "maxLength": 20, "description": "AFAS Pocket status\n100 = To be sent;\n200 = Sent;\n300 = Error while sending;\n400 = Receive;\n500 = Not applicable;", "format": "" } }, "required": [ "PoId", "ViPo" ] } } } } } } } }, "securitySchemes": { "AfasToken": { "name": "Authorization", "type": "apiKey", "in": "header", "description": "Convert the XML token to Base64 and add 'AfasToken ' in front of it." } }, "parameters": { "Accept-Language": { "name": "Accept-Language", "in": "header", "required": false, "description": "Indicates the client's preferred language for the response. If not provided, the API defaults to the base environment language.", "schema": { "type": "string", "enum": [ "en-us", "nl-nl", "nl-be", "fr-fr", "de-de" ], "example": "en-us" } }, "Content-Type": { "name": "Content-Type", "in": "header", "required": false, "description": "Specifies the media type and character encoding for the request body. Ensures proper decoding and interpretation of the transmitted data.", "schema": { "type": "string", "example": "application/json;charset=utf-8" } } }, "responses": { "200": { "description": "OK; request is successfully executed.", "headers": { "Cache-Control": { "description": "no-store, no-cache", "schema": { "type": "string" } }, "Content-Type": { "description": "application/xml; charset=utf-8", "schema": { "type": "string" } }, "Strict-Transport-Security": { "description": "max-age=31536000", "schema": { "type": "string" } }, "X-AFAS-Proxy-Stats": { "description": "init(0ms), before response(0ms), complete(418ms)", "schema": { "type": "string" } }, "X-AFAS-Proxy-Version": { "description": "4.3.0.0", "schema": { "type": "string" } }, "X-Content-Type-Options": { "description": "nosniff", "schema": { "type": "string" } }, "X-Frame-Options": { "description": "deny", "schema": { "type": "string" } }, "Access-Control-Allow-Origin": { "description": "*", "schema": { "type": "string" } }, "Access-Control-Allow-Headers": { "description": "Content-Type, Accept, Authorization, OnlineSessionId, Accept-Language", "schema": { "type": "string" } }, "Access-Control-Allow-Methods": { "description": "GET, POST, PUT, DELETE, OPTIONS", "schema": { "type": "string" } }, "Access-Control-Max-Age": { "description": "1728000", "schema": { "type": "string" } }, "Date": { "description": "Thu, 23 Nov 2023 12:11:06 GMT", "schema": { "type": "string" } }, "Content-Length": { "description": "0", "schema": { "type": "string" } } } }, "400": { "description": "Bad Request; invalid request" }, "401": { "description": "Unauthorized; valid token but no access to this endpoint.", "headers": { "Cache-Control": { "description": "no-store, no-cache", "schema": { "type": "string" } }, "Content-Type": { "description": "application/xml; charset=utf-8", "schema": { "type": "string" } }, "Strict-Transport-Security": { "description": "max-age=31536000", "schema": { "type": "string" } }, "X-AFAS-Proxy-Stats": { "description": "init(0ms), before response(0ms), complete(418ms)", "schema": { "type": "string" } }, "X-AFAS-Proxy-Version": { "description": "4.3.0.0", "schema": { "type": "string" } }, "X-Content-Type-Options": { "description": "nosniff", "schema": { "type": "string" } }, "X-Frame-Options": { "description": "deny", "schema": { "type": "string" } }, "Access-Control-Allow-Origin": { "description": "*", "schema": { "type": "string" } }, "Access-Control-Allow-Headers": { "description": "Content-Type, Accept, Authorization, OnlineSessionId, Accept-Language", "schema": { "type": "string" } }, "Access-Control-Allow-Methods": { "description": "GET, POST, PUT, DELETE, OPTIONS", "schema": { "type": "string" } }, "Access-Control-Max-Age": { "description": "1728000", "schema": { "type": "string" } }, "Date": { "description": "Thu, 23 Nov 2023 12:11:06 GMT", "schema": { "type": "string" } }, "Content-Length": { "description": "0", "schema": { "type": "string" } } } }, "403": { "description": "Forbidden; Due to IP restrictions in AFAS environment.", "headers": { "Cache-Control": { "description": "no-store, no-cache", "schema": { "type": "string" } }, "Content-Type": { "description": "application/xml; charset=utf-8", "schema": { "type": "string" } }, "Strict-Transport-Security": { "description": "max-age=31536000", "schema": { "type": "string" } }, "X-AFAS-Proxy-Stats": { "description": "init(0ms), before response(0ms), complete(418ms)", "schema": { "type": "string" } }, "X-AFAS-Proxy-Version": { "description": "4.3.0.0", "schema": { "type": "string" } }, "X-Content-Type-Options": { "description": "nosniff", "schema": { "type": "string" } }, "X-Frame-Options": { "description": "deny", "schema": { "type": "string" } }, "Access-Control-Allow-Origin": { "description": "*", "schema": { "type": "string" } }, "Access-Control-Allow-Headers": { "description": "Content-Type, Accept, Authorization, OnlineSessionId, Accept-Language", "schema": { "type": "string" } }, "Access-Control-Allow-Methods": { "description": "GET, POST, PUT, DELETE, OPTIONS", "schema": { "type": "string" } }, "Access-Control-Max-Age": { "description": "1728000", "schema": { "type": "string" } }, "Date": { "description": "Thu, 23 Nov 2023 12:11:06 GMT", "schema": { "type": "string" } }, "Content-Length": { "description": "0", "schema": { "type": "string" } } } }, "404": { "description": "Not Found; requested resource is not available on the server.", "headers": { "Cache-Control": { "description": "no-store, no-cache", "schema": { "type": "string" } }, "Content-Type": { "description": "application/xml; charset=utf-8", "schema": { "type": "string" } }, "Strict-Transport-Security": { "description": "max-age=31536000", "schema": { "type": "string" } }, "X-AFAS-Proxy-Stats": { "description": "init(0ms), before response(0ms), complete(101ms)", "schema": { "type": "string" } }, "X-AFAS-Proxy-Version": { "description": "4.3.0.0", "schema": { "type": "string" } }, "X-Content-Type-Options": { "description": "nosniff", "schema": { "type": "string" } }, "X-Frame-Options": { "description": "deny", "schema": { "type": "string" } }, "Access-Control-Allow-Origin": { "description": "*", "schema": { "type": "string" } }, "Access-Control-Allow-Headers": { "description": "Content-Type, Accept, Authorization, OnlineSessionId, Accept-Language", "schema": { "type": "string" } }, "Access-Control-Allow-Methods": { "description": "GET, POST, PUT, DELETE, OPTIONS", "schema": { "type": "string" } }, "Access-Control-Max-Age": { "description": "1728000", "schema": { "type": "string" } }, "Date": { "description": "Thu, 23 Nov 2023 12:11:06 GMT", "schema": { "type": "string" } }, "Content-Length": { "description": "0", "schema": { "type": "string" } } } }, "413": { "description": "Payload Too Large.", "headers": { "Cache-Control": { "description": "no-store, no-cache", "schema": { "type": "string" } }, "Content-Type": { "description": "application/xml; charset=utf-8", "schema": { "type": "string" } }, "Strict-Transport-Security": { "description": "max-age=31536000", "schema": { "type": "string" } }, "X-AFAS-Proxy-Stats": { "description": "init(0ms), before response(0ms), complete(418ms)", "schema": { "type": "string" } }, "X-AFAS-Proxy-Version": { "description": "4.3.0.0", "schema": { "type": "string" } }, "X-Content-Type-Options": { "description": "nosniff", "schema": { "type": "string" } }, "X-Frame-Options": { "description": "deny", "schema": { "type": "string" } }, "Access-Control-Allow-Origin": { "description": "*", "schema": { "type": "string" } }, "Access-Control-Allow-Headers": { "description": "Content-Type, Accept, Authorization, OnlineSessionId, Accept-Language", "schema": { "type": "string" } }, "Access-Control-Allow-Methods": { "description": "GET, POST, PUT, DELETE, OPTIONS", "schema": { "type": "string" } }, "Access-Control-Max-Age": { "description": "1728000", "schema": { "type": "string" } }, "Date": { "description": "Thu, 23 Nov 2023 12:11:06 GMT", "schema": { "type": "string" } }, "Content-Length": { "description": "0", "schema": { "type": "string" } } } }, "500": { "description": "Internal Server Error", "headers": { "Cache-Control": { "description": "no-store, no-cache", "schema": { "type": "string" } }, "Content-Type": { "description": "application/xml; charset=utf-8", "schema": { "type": "string" } }, "Strict-Transport-Security": { "description": "max-age=31536000", "schema": { "type": "string" } }, "X-AFAS-Proxy-Stats": { "description": "init(0ms), before response(1ms), complete(2192ms)", "schema": { "type": "string" } }, "X-AFAS-Proxy-Version": { "description": "4.3.0.0", "schema": { "type": "string" } }, "X-Content-Type-Options": { "description": "nosniff", "schema": { "type": "string" } }, "X-Frame-Options": { "description": "deny", "schema": { "type": "string" } }, "Access-Control-Allow-Origin": { "description": "*", "schema": { "type": "string" } }, "Access-Control-Allow-Headers": { "description": "Content-Type, Accept, Authorization, OnlineSessionId, Accept-Language", "schema": { "type": "string" } }, "Access-Control-Allow-Methods": { "description": "GET, POST, PUT, DELETE, OPTIONS", "schema": { "type": "string" } }, "Access-Control-Max-Age": { "description": "1728000", "schema": { "type": "string" } }, "Date": { "description": "Tue, 30 Jan 2024 20:30:07 GMT", "schema": { "type": "string" } } }, "content": { "application/json": { "schema": { "type": "object", "properties": { "errorNumber": { "type": "integer", "example": { "example": 0 } }, "externalMessage": { "type": "string", "example": { "example": "string" } }, "profitLogReference": { "type": "string", "example": { "example": "string" } } } } } } }, "503": { "description": "Service unavailable; retry at a later time. Contains the number of seconds to wait before retrying the request", "headers": { "Content-Type": { "description": "application/xml; charset=utf-8", "schema": { "type": "string" } }, "Content-Length": { "description": "61", "schema": { "type": "string" } }, "Retry-After": { "description": "7200", "schema": { "type": "string" } } }, "content": { "application/json": { "schema": { "type": "object", "properties": { "error": { "type": "object", "properties": { "code": { "type": "string", "example": { "example": "503" } }, "message": { "type": "string", "example": { "example": "Service temporarily unavailable due to scheduled maintenance. Please check afasstatus.nl for details." } } } }, "retry_after": { "type": "integer", "example": 7200 } } } } } } } }, "security": [ { "AfasToken": [] } ] }