United Kingdom - Working at Ecorys Global (2025)

Vacancies UK

View and apply for our open positions. We look forward to receiving your application.

'; return html; } function newImageCell(imageUrl) { var html = '

' + 'United Kingdom - Working at Ecorys Global (4)' + '

' + '

'; return html; } function getImageUrl(factData, fact) { if (!fact || fact.type !== 2) { return null; } return factData.fileUrl ? factData.fileUrl : null; } function factDataIsV2DeadlineWithDate(factData) { return factData && factData.factId === 'deadline' && factData.type === 0 && factData.date; } function getV2DeadlineWithDate(factData, fact) { var dateMoment = moment(factData.text); var datePattern = factData.datePattern; var timePattern = factData.timePattern; var dateFormat = dateMoment.hours() === 23 && dateMoment.minutes() === 59 ? datePattern : datePattern + ', ' + timePattern; var dateString = dateMoment.format(dateFormat); return dateString; } function getFact(factId) { if (!facts) { return null; } var matchedFact = null; for (var i = 0; i < facts.length; i++) { var currentFact = facts[i]; if (currentFact.id === factId) { matchedFact = currentFact; break; } } return matchedFact; } function getTranslation(vacancy) { var matchedTranslation = null; for (var i = 0; i < vacancy.translations.length; i++) { var currentTranslation = vacancy.translations[i]; if (currentTranslation.languageKey === languageKey) { matchedTranslation = currentTranslation; break; } } if (!matchedTranslation) { matchedTranslation = vacancy.translations[0]; } return matchedTranslation; } function getFactData(vacancy, factId) { var matchedTranslation = getTranslation(vacancy); var matchedFactData = null; for (var j = 0; j < matchedTranslation.factDatas.length; j++) { var currentFactData = matchedTranslation.factDatas[j]; if (currentFactData.factId === factId) { matchedFactData = currentFactData; break; } } return matchedFactData; } //draw function drawVacancies() { if (!facts || !vacancies) { return; } if (clearVacanciesOnce) { if (isTable) { $('#section_10049d9c-2b99-4ff2-963d-78a05711cb1d .ui_jobs_table .css_jobsAdvRow:not(:first-child)').remove(); } else { $('#section_10049d9c-2b99-4ff2-963d-78a05711cb1d .ui_jobs_grid').html(''); } clearVacanciesOnce = false; } var jobsInRow = 2; var html = ''; for (var i = 0; i < vacancies.length; i++) { var vacancy = vacancies[i]; var translation = getTranslation(vacancy); var titleFactData = getFactData(vacancy, 'job_title'); var bannerFactData = bannerFactId ? getFactData(vacancy, bannerFactId) : null; var logoFactData = logoFactId ? getFactData(vacancy, logoFactId) : null; var adLink = '/en/ad/' + vacancy.titleAsUrl + '/' + vacancy.shortId; var applyLink = 'https://careers.ecorys.com/en/apply/' + vacancy.titleAsUrl + '/' + vacancy.shortId; var externalLink = vacancy.externalCseAdLink; var link = externalLink ? externalLink : vacancy.talentPool ? applyLink : adLink; var target = externalLink ? 'target="_blank"' : ''; if (isTable) { html += '

'; html += newTableCell(titleFactData.title, translation.title, link, target); } else { if (i % jobsInRow === 0) { html += '

'; } var banner = ''; if (bannerFactData && bannerFactData.fileUrl) { banner += '

'; if (logoFactData && logoFactData.fileUrl) { banner += '

United Kingdom - Working at Ecorys Global (5)

'; } banner += '

'; } html += '

' + banner + '

' + translation.title + '

'; } for (var j = 0; j < informationFactIds.length; j++) { var factId = informationFactIds[j]; var factData = getFactData(vacancy, factId); var fact = getFact(factId); if (factData) { if (fact && fact.type === 2) { var imageUrl = getImageUrl(factData, fact); if (imageUrl) { html += isTable ? newImageCell(imageUrl) : '

United Kingdom - Working at Ecorys Global (6)

'; } } else { var factDataText = factDataIsV2DeadlineWithDate(factData) ? getV2DeadlineWithDate(factData, fact) : factData.text; html += isTable ? newTableCell(factData.title, factDataText) : '

' + factData.title + ': ' + factDataText + '

'; } } } if (isTable) { html += '

'; } else { html += '' + '

'; if (i % jobsInRow === jobsInRow - 1) { html += '

'; } } } if (isTable) { $('#section_10049d9c-2b99-4ff2-963d-78a05711cb1d .ui_jobs_table').append(html); } else { $('#section_10049d9c-2b99-4ff2-963d-78a05711cb1d .ui_jobs_grid').append(html); } if (vacancies.length > 0) { $('#section_10049d9c-2b99-4ff2-963d-78a05711cb1d .ui_jobs_empty').hide(); $('#section_10049d9c-2b99-4ff2-963d-78a05711cb1d .ui_jobs_loading').hide(); if (isTable) { $('#section_10049d9c-2b99-4ff2-963d-78a05711cb1d .ui_jobs_table').show(); } else { $('#section_10049d9c-2b99-4ff2-963d-78a05711cb1d .ui_jobs_grid').show(); } if (total > offset) { $('#section_10049d9c-2b99-4ff2-963d-78a05711cb1d .ui_jobs_more').show(); } else { $('#section_10049d9c-2b99-4ff2-963d-78a05711cb1d .ui_jobs_more').hide(); loadedAll = true; } } else { $('#section_10049d9c-2b99-4ff2-963d-78a05711cb1d .ui_jobs_table').hide(); $('#section_10049d9c-2b99-4ff2-963d-78a05711cb1d .ui_jobs_grid').hide(); $('#section_10049d9c-2b99-4ff2-963d-78a05711cb1d .ui_jobs_more').hide(); $('#section_10049d9c-2b99-4ff2-963d-78a05711cb1d .ui_jobs_empty').show(); $('#section_10049d9c-2b99-4ff2-963d-78a05711cb1d .ui_jobs_loading').hide(); } vacancies = null; } function drawTableHeader() { var html = ''; var titleFact = getFact('job_title'); html += '

'; html += newTableCell(null, titleFact.title, 'javascript:void(0);', 'data-fact-id="' + titleFact.id + '"'); for (var i = 0; i < informationFactIds.length; i++) { var fact = getFact(informationFactIds[i]); if (fact) { html += newTableCell(null, fact.title, 'javascript:void(0);', 'data-fact-id="' + fact.id + '"'); } } html += '

'; $('#section_10049d9c-2b99-4ff2-963d-78a05711cb1d .ui_jobs_table').append(html); $('#section_10049d9c-2b99-4ff2-963d-78a05711cb1d .ui_jobs_table a[data-fact-id]').click(function() { var factId = $(this).attr('data-fact-id'); if (sortByFactId === factId) { sortAscending = !sortAscending; } else { sortByFactId = factId; sortAscending = true; } reloadVacancies(); updateSortImage(); }); updateSortImage(); } function drawTreeOption(option) { var html = '

  • ' + ' 0 ? 'toggle' : 'notoggle') + '" href="javascript:void(0);" >' + '' + option.title + '' + '
  • '; return html; } function drawFilters() { if (filterFactIds.length > 0) { $('#section_10049d9c-2b99-4ff2-963d-78a05711cb1d .ui_jobs_filters').show(); } else { return; } $('#section_10049d9c-2b99-4ff2-963d-78a05711cb1d .ui_jobs_filters').html(''); var html = ''; for (var i = 0; i < filterFactIds.length; i++) { var factId = filterFactIds[i]; var fact = getFact(factId); if (fact) { if (fact.type === 1) { html += '

    ' + '

    ' + '

    ' + fact.title + '

    ' + '

    ' + '

    '; html += '' + deselectAllText + ''; for (var j = 0; j < fact.options.length; j++) { var option = fact.options[j]; html += '' + option.title + ''; } html += '

    '; } else if (fact.type === 6) { html += '

    ' + '

    ' + '

    ' + fact.title + '

    ' + '

    ' + '

    ' + '

      '; html += '
    • ' + deselectAllText + '
    • '; for (var k = 0; k < fact.options.length; k++) { html += drawTreeOption(fact.options[k]); } html += '

    '; } } else if (factId === 'search') { html += '

    '; } else { html += '

    '; } } $('#section_10049d9c-2b99-4ff2-963d-78a05711cb1d .ui_jobs_filters').html(html); initAllBasic(); initAllLogic(); $('#section_10049d9c-2b99-4ff2-963d-78a05711cb1d .ui_dropdown_tree[class^="filter_"]').on('customChange', reloadVacancies); $('#section_10049d9c-2b99-4ff2-963d-78a05711cb1d .ui_dropdown[class^="filter_"]').on('customChange', reloadVacancies); $('#section_10049d9c-2b99-4ff2-963d-78a05711cb1d .ui_textbox[class^="filter_"]').on('customChange', $.debounce(250, reloadVacancies)); } //load data //todo: remove function loadFacts() { $.ajax({ type: 'GET', contentType: 'application/json', url: '/api/integration/fact/get-for-site/' + languageKey, success: function (data) { proceedFacts(data); }, error: function () { //todo: alert error } }); } function proceedFacts(data) { //console.log('---------- Facts ----------'); //console.log(data); facts = data; if (isTable) { drawTableHeader(); } drawFilters(); drawVacancies(); } function loadBatch() { if (loading) { return; } loading = true; config.offset = offset; config.sortByProjectDataId = sortByFactId; config.sortAscending = sortAscending; config.searchText = $('#section_10049d9c-2b99-4ff2-963d-78a05711cb1d .filter_search input').val(); config.filters = []; for (var i = 0; i < filterFactIds.length; i++) { var factId = filterFactIds[i]; var fact = getFact(factId); if (fact) { var filterData = { filterTypeOrFactId: fact.id, value: $('#section_10049d9c-2b99-4ff2-963d-78a05711cb1d .filter_' + fact.id).attr('data-value') }; if (filterData.value) { config.filters.push(filterData); } } } loadingAjax = $.ajax({ type: 'POST', contentType: 'application/json', url: '/api/integration/vacancy/get-page', data: JSON.stringify(config), success: function(data) { proceedBatch(data); }, error: function() { //todo: alert error loading = false; } }); } function proceedBatch(data) { //console.log('---------- Jobs ----------'); //console.log(data); offset += data.vacancies.length; total = data.count; if (!vacancies) { vacancies = data.vacancies; } else { vacancies = vacancies.concat(data.vacancies); } drawVacancies(); loading = false; if (loadAutomatically) { setTimeout(checkScroll, 50); } } function abortLoading() { if (loading) { loadingAjax.abort(); loading = false; } } function reloadVacancies() { if (loading) { abortLoading(); } offset = 0; loadedAll = false; clearVacanciesOnce = true; $('#section_10049d9c-2b99-4ff2-963d-78a05711cb1d .ui_jobs_table').hide(); $('#section_10049d9c-2b99-4ff2-963d-78a05711cb1d .ui_jobs_grid').hide(); $('#section_10049d9c-2b99-4ff2-963d-78a05711cb1d .ui_jobs_more').hide(); $('#section_10049d9c-2b99-4ff2-963d-78a05711cb1d .ui_jobs_empty').hide(); $('#section_10049d9c-2b99-4ff2-963d-78a05711cb1d .ui_jobs_loading').show(); loadBatch(); } //load more click $('#section_10049d9c-2b99-4ff2-963d-78a05711cb1d .ui_jobs_more').click(loadBatch); //load automatically function checkScroll() { if (loadedAll || offset === total) { return; } var hiddenHeight = $('#section_10049d9c-2b99-4ff2-963d-78a05711cb1d').offset().top + $('#section_10049d9c-2b99-4ff2-963d-78a05711cb1d').height() - $(window).height(); if (hiddenHeight < 100) { loadBatch(); } } if (loadAutomatically) { $('body').scroll(checkScroll); } //update table header function updateSortImage() { $('#section_10049d9c-2b99-4ff2-963d-78a05711cb1d .ui_jobs_table a[data-fact-id]').each(function() { $(this).parent().find('img').remove(); if (sortByFactId === $(this).attr('data-fact-id')) { $(this).after('United Kingdom - Working at Ecorys Global (7)'); } }); } //init drawFilters(); proceedFacts(JSON.parse('[{\"id\":\"project_number\",\"title\":\"Number\",\"type\":0,\"multiple\":false,\"options\":[]},{\"id\":\"job_title\",\"title\":\"Title\",\"type\":0,\"multiple\":false,\"options\":[]},{\"id\":\"location\",\"title\":\"Location\",\"type\":0,\"multiple\":false,\"options\":[]},{\"id\":\"deadline\",\"title\":\"Deadline\",\"type\":0,\"multiple\":false,\"options\":[]},{\"id\":\"department\",\"title\":\"Department\",\"type\":6,\"multiple\":false,\"options\":[{\"id\":\"9b588085-5d2f-479d-a398-d46548b6290d\",\"title\":\"Ecorys Global\",\"options\":[{\"id\":\"34c079d0-4563-4075-aba7-5c0ddbffc096\",\"title\":\"Ecorys Belgium\",\"options\":[{\"id\":\"b64907e1-77e4-4035-ac21-4569ebf5dcc0\",\"title\":\"Ecorys Brussels\",\"options\":[{\"id\":\"5e5d9d79-3552-49a5-9866-97e067d68008\",\"title\":\"Business Development Support\",\"options\":[]},{\"id\":\"052cb97c-d398-4e4a-87cb-5dd487c2816d\",\"title\":\"Communications \u0026 Digital\",\"options\":[]},{\"id\":\"c3c17fc8-70c5-4d34-a9cf-4188ad580c63\",\"title\":\"Events\",\"options\":[]},{\"id\":\"ff67d176-240b-4807-b5b7-d23e5ab9da6f\",\"title\":\"Finance\",\"options\":[]},{\"id\":\"51c1d283-2ef8-4e85-bde9-a440700fb05f\",\"title\":\"Human Resources\",\"options\":[]},{\"id\":\"12f91992-039a-4e40-8b07-ad17be6aa861\",\"title\":\"International Development Unit\",\"options\":[]},{\"id\":\"1e69581d-340e-4436-a372-958b41350f11\",\"title\":\"Managing Director\",\"options\":[]},{\"id\":\"e50e701b-88bc-4d89-8bc8-15bdd8aba9ec\",\"title\":\"Office Management\",\"options\":[]},{\"id\":\"d3cc5049-3ceb-4021-8f8f-7b16a76a8e21\",\"title\":\"Policy \u0026 Research\",\"options\":[]},{\"id\":\"f83e7517-aa19-4065-8ef2-f78c6e0311ca\",\"title\":\"Project Support Unit\",\"options\":[]}]}]},{\"id\":\"5932f3a4-5b81-4b97-bf07-583391ae2901\",\"title\":\"Ecorys Croatia\",\"options\":[]},{\"id\":\"81e982b2-42ad-434a-b351-cbf816b4b2fa\",\"title\":\"Ecorys India\",\"options\":[]},{\"id\":\"513bd247-0543-46f3-8d0d-dc3708e17b4f\",\"title\":\"Ecorys Italy\",\"options\":[]},{\"id\":\"d85e00a2-5e35-4db3-9784-14367b72c462\",\"title\":\"Ecorys Nederland\",\"options\":[{\"id\":\"ad9519a8-509e-48d8-906d-9ea5389e2938\",\"title\":\"Ecorys Amsterdam\",\"options\":[{\"id\":\"7727eb7d-5579-45cb-853a-b691d696ae7d\",\"title\":\"Transport \u0026 Infrastructure\",\"options\":[]}]},{\"id\":\"f9677e0b-394c-4464-aa67-55e1892ac2e8\",\"title\":\"Ecorys NL\",\"options\":[]},{\"id\":\"5ac30e3a-6d7d-44ee-ab7d-5de7bcf88a78\",\"title\":\"Ecorys Rotterdam\",\"options\":[{\"id\":\"2bf36777-55ce-4ca1-bfae-8a2cbf903843\",\"title\":\"Directie\",\"options\":[]},{\"id\":\"ca363d56-8851-470d-abf5-d8b4d6591f60\",\"title\":\"Economic growth\",\"options\":[]},{\"id\":\"89212c56-4fac-4223-9d8b-edcfbc7de61a\",\"title\":\"Finance \u0026 Control\",\"options\":[]},{\"id\":\"5b36aa67-ce5d-4bea-876e-4b770d6528b6\",\"title\":\"Holding\",\"options\":[]},{\"id\":\"e96a3ee0-4b90-46a2-9041-df64fb187af9\",\"title\":\"HRM\",\"options\":[]},{\"id\":\"02e20e5c-1746-44b4-90d7-d55b69c33d18\",\"title\":\"ICT\",\"options\":[]},{\"id\":\"d77cf244-b130-46f6-b3d7-f60454dd908b\",\"title\":\"ID - BDSU\",\"options\":[]},{\"id\":\"ca3bccc4-bccd-4743-b31d-1ade1b1d472d\",\"title\":\"ID - FWU\",\"options\":[]},{\"id\":\"35a6163b-ed2a-4a17-bb79-7ff58b0fd7f1\",\"title\":\"ID (receptie)\",\"options\":[]},{\"id\":\"5c57f9c1-6735-4b71-b851-12c35e6e99f3\",\"title\":\"IDU\",\"options\":[]},{\"id\":\"5317f3fc-8644-4a92-97cb-48cece60b979\",\"title\":\"M\u0026C\",\"options\":[]},{\"id\":\"450914f4-567b-4aaa-83ba-5721069417e7\",\"title\":\"Natural resources\",\"options\":[]},{\"id\":\"8f841117-8b77-4954-ac40-a8899e7df7b1\",\"title\":\"Project Control\",\"options\":[]},{\"id\":\"9fc2b6b8-37e2-41b6-9d50-47d5f153c2e9\",\"title\":\"Regions \u0026 Cities\",\"options\":[]},{\"id\":\"71ae3511-b224-4acc-82a1-a853a4138414\",\"title\":\"Secretarieel\",\"options\":[]},{\"id\":\"d0041c3c-e71a-4e3b-ba22-0e4f3d3c66bc\",\"title\":\"Security \u0026 Justice\",\"options\":[]},{\"id\":\"83d57984-fee2-4fff-8c5c-129cca44a190\",\"title\":\"Social Policy\",\"options\":[]},{\"id\":\"a2165dc6-4e5d-446a-97d0-704ef78d7b77\",\"title\":\"Tender Desk\",\"options\":[]},{\"id\":\"0240ed86-0f01-4c52-8d5d-8197d3589914\",\"title\":\"Transport \u0026 Infrastructure\",\"options\":[]}]}]},{\"id\":\"e7aeac7a-7567-465f-859f-5c5c48d944db\",\"title\":\"Ecorys Spain\",\"options\":[]},{\"id\":\"7e24fd16-53dc-47d1-8198-7e7aa969c62f\",\"title\":\"Ecorys UK\",\"options\":[{\"id\":\"1985d218-5c62-47e1-ad47-47659958efa5\",\"title\":\"Communications \u0026 Digital\",\"options\":[{\"id\":\"9622d112-6bcc-4b4d-841b-148f6433da4f\",\"title\":\"Communications \u0026 Digital - Business Development\",\"options\":[]},{\"id\":\"125631de-cbed-4f4e-9582-649fc0f26dc8\",\"title\":\"Communications \u0026 Digital - Communications\",\"options\":[]},{\"id\":\"8b2f2683-2850-4d55-9b2a-9ac2a63ed99a\",\"title\":\"Communications \u0026 Digital - Corporate Marketing\",\"options\":[]},{\"id\":\"6aef292e-4936-4b98-a312-898ce8c5edab\",\"title\":\"Communications \u0026 Digital - Creative\",\"options\":[]},{\"id\":\"002f5f9a-7350-4451-8565-22d61caa7ffa\",\"title\":\"Communications \u0026 Digital - Digital Communications\",\"options\":[]},{\"id\":\"227575a6-40c1-4ebe-8336-47c8d5bbb687\",\"title\":\"Communications \u0026 Digital - Editorial\",\"options\":[]},{\"id\":\"f8f7a6d4-aafb-4503-8a21-413a30f25f2a\",\"title\":\"Communications \u0026 Digital - Systems Development\",\"options\":[]}]},{\"id\":\"da1f4c7c-9ebc-4c42-97c5-1025fe97033a\",\"title\":\"International Development\",\"options\":[]},{\"id\":\"e9dce8ef-8940-4173-b3f9-949b09525f8c\",\"title\":\"Management Services\",\"options\":[{\"id\":\"d14a621e-dde3-4fe4-9356-dd995117c72e\",\"title\":\"Management Services - Facilities\",\"options\":[]},{\"id\":\"2e77a921-ed35-47e1-bab6-cfcb4c2e5cec\",\"title\":\"Management Services - Finance\",\"options\":[]},{\"id\":\"817ead18-ab56-47a5-9978-fb88eadbf11d\",\"title\":\"Management Services - HR\",\"options\":[]},{\"id\":\"9882f4e8-49e6-4c2d-9fc7-15e5f951a0a0\",\"title\":\"Management Services - IT\",\"options\":[]}]},{\"id\":\"a7aade0a-0fdf-4c55-b209-674bdc443caf\",\"title\":\"Policy \u0026 Research\",\"options\":[]},{\"id\":\"27a96a9e-f0f0-4229-863b-7cf42f2c9c4c\",\"title\":\"Policy \u0026 Research\",\"options\":[]},{\"id\":\"91509b52-2854-420a-877e-81a73ea56c34\",\"title\":\"Policy \u0026 Research\",\"options\":[]},{\"id\":\"4b8a204a-8058-4538-9e66-e974bea44ae7\",\"title\":\"Policy \u0026 Research\",\"options\":[]},{\"id\":\"34d82d72-7f8c-4713-9469-2ca3076a9d73\",\"title\":\"Programme Management\",\"options\":[]}]}]}]},{\"id\":\"type\",\"title\":\"Type\",\"type\":5,\"multiple\":false,\"options\":[{\"id\":\"job\",\"title\":\"Job\",\"options\":[]},{\"id\":\"talent_pool\",\"title\":\"Talent Pool\",\"options\":[]}]},{\"id\":\"825f0ac8-e54a-4580-b31a-e80a4756d4b3\",\"title\":\"Contact person\",\"type\":0,\"multiple\":false,\"options\":[]},{\"id\":\"e29358ef-52e6-4386-8434-784a79766049\",\"title\":\"Country\",\"type\":1,\"multiple\":false,\"options\":[{\"id\":\"694975c9-e6db-4909-a72a-be7deb8a72c9\",\"title\":\"Netherlands\",\"options\":[]},{\"id\":\"8f9a2c5c-0fc9-4793-8bec-a013831a5b86\",\"title\":\"Belgium\",\"options\":[]},{\"id\":\"027fbf50-85d4-4a99-97b4-cd30717c30f8\",\"title\":\"United Kingdom\",\"options\":[]},{\"id\":\"9a510d12-da1d-41bc-a85e-30d369a4353f\",\"title\":\"Spain\",\"options\":[]},{\"id\":\"5d7cf02c-8273-442a-af07-b67c293cb149\",\"title\":\"Italy\",\"options\":[]},{\"id\":\"96565684-7406-4d74-9abe-6fe75a567aa8\",\"title\":\"Poland\",\"options\":[]},{\"id\":\"a26db8d2-9c7d-4220-bc6c-0dba3279bdc4\",\"title\":\"India\",\"options\":[]},{\"id\":\"74b4ecd4-d99b-4816-853a-5be15ca49c73\",\"title\":\"Bulgaria\",\"options\":[]},{\"id\":\"857f50b8-1e0d-4910-816d-735235415c3b\",\"title\":\"Croatia\",\"options\":[]},{\"id\":\"ec0c0269-1e07-4d92-8f76-94b0989455e6\",\"title\":\"Zambia\",\"options\":[]},{\"id\":\"f62d1e0f-d3dd-4617-a898-04017f15080d\",\"title\":\"Ukraine\",\"options\":[]}]},{\"id\":\"d069c0f1-4e2c-439d-9a1b-30c0ad08fa88\",\"title\":\"Job Type\",\"type\":1,\"multiple\":false,\"options\":[{\"id\":\"61cdfaf4-41ed-409b-bb81-a5c16ab03625\",\"title\":\"Permanent\",\"options\":[]},{\"id\":\"243e22a9-0a74-4a04-b014-8517a5778a3e\",\"title\":\"Temporary\",\"options\":[]},{\"id\":\"0adeff71-3aea-4567-9e3b-4430dedc4384\",\"title\":\"Fixed Term Contract\",\"options\":[]},{\"id\":\"20c5cdf2-2f8b-4089-b5f8-912d6c101890\",\"title\":\"Interim\",\"options\":[]}]},{\"id\":\"8b326a34-7e4e-41ce-b394-cd649918d9bc\",\"title\":\"Job Category\",\"type\":1,\"multiple\":false,\"options\":[{\"id\":\"506bed27-5cc2-4aef-a8e6-b5fce5d13e50\",\"title\":\"Administration\",\"options\":[]},{\"id\":\"0e73c9de-34d6-4b6a-a50d-2f6fd44d3087\",\"title\":\"Project Management\",\"options\":[]},{\"id\":\"03be3d94-134b-4745-ab96-a99fe22ec966\",\"title\":\"Finance\",\"options\":[]},{\"id\":\"49fbfa53-f82a-4999-b986-6e71a636fb18\",\"title\":\"Human Resources\",\"options\":[]},{\"id\":\"573597ff-0c40-4f5a-9a0b-b84049368f25\",\"title\":\"Communications and Digital Marketing\",\"options\":[]},{\"id\":\"e020df0c-67fc-4389-8323-01a9abc02c25\",\"title\":\"Policy and Research\",\"options\":[]},{\"id\":\"f151a85f-541c-491b-852f-d5be3ef2554d\",\"title\":\"International Development\",\"options\":[]},{\"id\":\"576bad62-7e37-4a7d-a262-64a5512b3587\",\"title\":\"Business Development\",\"options\":[]},{\"id\":\"2a8a710c-9507-4b14-8ac7-d4b3dc7efc2c\",\"title\":\"Grants and Funding\",\"options\":[]},{\"id\":\"c40bc9ff-5b1e-4d2b-ba42-c492788eabad\",\"title\":\"Contracts and Compliance\",\"options\":[]},{\"id\":\"c84c3809-2119-4c67-a76f-81378e9a9570\",\"title\":\"Systems Development\",\"options\":[]},{\"id\":\"787a7346-890c-4394-afb2-d38c8db2af3b\",\"title\":\"Corporate Communications\",\"options\":[]},{\"id\":\"0b55df18-0f1f-4825-a996-c5ff0a2ea503\",\"title\":\"Recruitment\",\"options\":[]},{\"id\":\"ffc6267e-ca17-4c1e-acb8-be1fec32671b\",\"title\":\"CATI Interviewer\",\"options\":[]},{\"id\":\"1047af41-a794-4fbc-b8a8-73dc8c76cd61\",\"title\":\"IT\",\"options\":[]}]},{\"id\":\"4792a519-fc1e-471b-ae6b-dd43321afe0e\",\"title\":\"Working Hours\",\"type\":1,\"multiple\":false,\"options\":[{\"id\":\"ef837be5-a475-42dd-87e8-30adb318d345\",\"title\":\"Full Time\",\"options\":[]},{\"id\":\"27ca2d93-78d4-4a4f-a3bc-dc95fdc68e75\",\"title\":\"Part Time\",\"options\":[]},{\"id\":\"318ab75f-bc21-4958-a0a6-1bc19108f940\",\"title\":\"Zero Hour contract\",\"options\":[]}]},{\"id\":\"2036eae5-d46d-45d4-a144-ba785f2e4f24\",\"title\":\"Education Level\",\"type\":1,\"multiple\":false,\"options\":[{\"id\":\"5f73c104-9664-45d3-900d-907b61108e9f\",\"title\":\"Secondary Education (GCSE / A Levels)\",\"options\":[]},{\"id\":\"74333cd0-0e71-46a4-9ba7-8675ac8ab07f\",\"title\":\"University Degree (Bachelor)\",\"options\":[]},{\"id\":\"05bd1b26-addf-46df-ba51-59d2667c60a7\",\"title\":\"Masters Degree\",\"options\":[]},{\"id\":\"6da02bf5-51b5-4abf-ac00-1fdff7726530\",\"title\":\"PhD\",\"options\":[]},{\"id\":\"ba1f031a-5651-4cbf-8be4-d6b50b0bafc0\",\"title\":\"N/A\",\"options\":[]}]},{\"id\":\"b1d3cc50-6573-4755-a254-840fb78193ed\",\"title\":\"Career level\",\"type\":1,\"multiple\":false,\"options\":[{\"id\":\"cca20fb8-bf36-4eed-b446-3cc54d638b4b\",\"title\":\"Graduate / Assistant\",\"options\":[]},{\"id\":\"f1272749-e292-45a4-b40c-55c3d764aa7b\",\"title\":\"Consultant\",\"options\":[]},{\"id\":\"4577afc4-acc4-4c6e-abcd-9a7100f902f1\",\"title\":\"Senior\",\"options\":[]},{\"id\":\"7501e0a4-8f14-4910-968b-c0cee6b95a11\",\"title\":\"Director\",\"options\":[]}]},{\"id\":\"fd656d61-8d60-4b7f-a26b-dd9835d6ca58\",\"title\":\"Salary\",\"type\":0,\"multiple\":false,\"options\":[]},{\"id\":\"9287caef-a66f-446c-9073-c78cef42f1a4\",\"title\":\"Salary\",\"type\":0,\"multiple\":false,\"options\":[]},{\"id\":\"f4b624aa-f993-446d-89f6-fcd586f21f5a\",\"title\":\"Salary Extras\",\"type\":0,\"multiple\":false,\"options\":[]},{\"id\":\"1df422d5-1ebb-40ce-994d-ecef64df36f5\",\"title\":\"Job description\",\"type\":2,\"multiple\":false,\"options\":[]},{\"id\":\"25a54cfb-316c-4cec-ac56-a49bffcc09c0\",\"title\":\"Job Description\",\"type\":2,\"multiple\":false,\"options\":[]},{\"id\":\"7344bd1e-1143-480d-8df1-f3d86a69b096\",\"title\":\"Location \",\"type\":0,\"multiple\":false,\"options\":[]},{\"id\":\"b61b2cfb-a156-4605-86dd-1da33dd256d4\",\"title\":\"Working hours\",\"type\":1,\"multiple\":false,\"options\":[{\"id\":\"29a3e4ab-acc5-4d71-810e-fec0156ff860\",\"title\":\"Zero Hour Contract\",\"options\":[]},{\"id\":\"10eb9545-438e-4609-8970-cc1333b50109\",\"title\":\"Part Time\",\"options\":[]}]},{\"id\":\"786366bf-646f-40f8-b63f-823d13a0cd06\",\"title\":\"Job Description\",\"type\":2,\"multiple\":false,\"options\":[]},{\"id\":\"1793b336-3587-4ad4-8741-53237f43fe4c\",\"title\":\"Additional Application Form \",\"type\":2,\"multiple\":false,\"options\":[]},{\"id\":\"10288282-6d1a-4cd0-bdc6-ecdbd9c4da4d\",\"title\":\"Salary (Euros per month)\",\"type\":0,\"multiple\":false,\"options\":[]},{\"id\":\"879d0de9-76d5-4e1f-8262-9caa4a9f8696\",\"title\":\"Salary level (Euros per month)\",\"type\":0,\"multiple\":false,\"options\":[]},{\"id\":\"1e3e3efa-fb45-4175-b98a-ab5249110f29\",\"title\":\"Salary\",\"type\":0,\"multiple\":false,\"options\":[]},{\"id\":\"f6aa3489-8912-4b94-a4ff-64cb24afbec9\",\"title\":\"empty_title\",\"type\":1,\"multiple\":false,\"options\":[]},{\"id\":\"2ce8396b-0993-4c6e-bef5-7db2d797ab0e\",\"title\":\"Contact person\",\"type\":0,\"multiple\":false,\"options\":[]},{\"id\":\"0b640962-32c2-457d-9b67-61e2513d6c5e\",\"title\":\"Country\",\"type\":1,\"multiple\":false,\"options\":[{\"id\":\"2fbe5c1b-30f7-4caa-aa58-99814726ebc4\",\"title\":\"Italy\",\"options\":[]},{\"id\":\"7d41f3f4-34f4-428c-a76d-fa6f72e2b91d\",\"title\":\"Netherlands\",\"options\":[]},{\"id\":\"5033cfde-a35f-4012-9bf2-0cf86e9f5797\",\"title\":\"Belgium\",\"options\":[]},{\"id\":\"113f83a7-a4c6-4055-ad5e-e435623f2988\",\"title\":\"United Kingdom\",\"options\":[]},{\"id\":\"8b50f01b-9ef8-42f3-8464-93d53dc92871\",\"title\":\"Spain\",\"options\":[]},{\"id\":\"166bb03e-8087-4d04-9f6a-610a0d670280\",\"title\":\"Croatia\",\"options\":[]},{\"id\":\"038b26f2-a276-4e14-82cc-1f56e9eb8927\",\"title\":\"Poland\",\"options\":[]},{\"id\":\"2ecd7953-285a-490f-a5a0-cb0d0fdd3eae\",\"title\":\"Bulgaria\",\"options\":[]}]},{\"id\":\"ccb2a86c-0664-4009-ab8e-74cfb6e74fe8\",\"title\":\"Job type\",\"type\":1,\"multiple\":false,\"options\":[{\"id\":\"c5aaac3f-09ee-4a77-b4ab-2afa52521073\",\"title\":\"Permanent\",\"options\":[]},{\"id\":\"cfeed47a-4ff7-47e2-945f-decd2445bccf\",\"title\":\"Fixed Term Contract\",\"options\":[]}]},{\"id\":\"fd16c915-d6f8-4c52-b584-6669478bb8b6\",\"title\":\"Job Category\",\"type\":1,\"multiple\":false,\"options\":[{\"id\":\"542d065a-177f-4693-9103-0d4755277b76\",\"title\":\"Administartion\",\"options\":[]},{\"id\":\"929cba29-72f9-4faa-8908-27b9a786a615\",\"title\":\"Project Management\",\"options\":[]},{\"id\":\"fe259a34-04b1-4291-b0e7-fa9097faf5d9\",\"title\":\"Finance\",\"options\":[]},{\"id\":\"a575d4a4-9f22-44f5-aa1f-0557f968b4fb\",\"title\":\"Human Resources\",\"options\":[]},{\"id\":\"97810735-4f06-4704-a952-6ff3000e56d9\",\"title\":\"Communications and Digital Marketing\",\"options\":[]},{\"id\":\"fafca243-a64e-443f-9029-ce0e0a013d85\",\"title\":\"Policy and Research\",\"options\":[]},{\"id\":\"54addab6-85ed-42ff-90f3-72892b122d11\",\"title\":\"International Development\",\"options\":[]},{\"id\":\"8eca76cf-ea31-47a0-ba82-3763a0c474d5\",\"title\":\"Business Development \",\"options\":[]}]},{\"id\":\"46d1cf00-f89f-4633-a1ea-5d8ba1708fbb\",\"title\":\"Job description\",\"type\":2,\"multiple\":false,\"options\":[]}]')); proceedBatch({ vacancies : JSON.parse('[{\"id\":\"c2b17a59-48f7-40b3-8270-286917b2708e\",\"adId\":null,\"publishingId\":0,\"mediaId\":\"951d0a4a-7765-4e3f-b4a9-6282391ec2e5\",\"applyLink\":null,\"directLink\":null,\"externalCseAdLink\":null,\"externalCseApplyLink\":null,\"title\":\"Senior Research Manager - EU Policy \",\"titleAsUrl\":\"senior-research-manager-eu-policy\",\"talentPool\":false,\"number\":795,\"created\":\"2025-05-20T06:48:05.9708931Z\",\"published\":\"2025-05-20T06:48:24.5378476Z\",\"deadline\":null,\"department\":\"Policy \u0026 Research\",\"location\":\"5th Floor, Queen Elizabeth House, 4 St Dunstans Hill, EC3R 8AD, London\",\"shortId\":\"pw09nx\",\"videoQuestionTime\":null,\"layoutId\":null,\"useExternalSettings\":false,\"externalApply\":false,\"externalLinkInNewTab\":false,\"useApplyWithLinkedIn\":false,\"useApplyWithJobIndex\":false,\"allowApplyAfterDeadline\":true,\"translations\":[{\"title\":\"Senior Research Manager - EU Policy \",\"videoTitle\":null,\"content\":\"\u003cp\u003eEcorys is an international research-based consultancy that helps its clients make a positive impact on society. We are global leaders in research and evaluation, project management and communications providing the evidence and advice that our clients need to tackle the issues that affect communities around the world. Our 600 staff are justifiably proud of our innovative and thought-provoking contributions to policy and programme delivery. We are passionate about our environmental and social impact, donating profits to the Charity of the Year, volunteering days, and are committed to being carbon neutral by 2030.\u003c/p\u003e\u003cp\u003e\u003cstrong\u003eWhat you will be doing\u003c/strong\u003e\u003c/p\u003e\u003cp\u003eWe are currently looking for \u003cstrong\u003eEU Market\u003c/strong\u003e \u003cstrong\u003eSenior Research Managers\u003c/strong\u003e to join our Policy and Research team to help us further grow our European work. They will help us\u0026nbsp;win and deliver research, evaluation and consultancy projects across one or more of our EU policy areas including \u003cstrong\u003eemployment, education, skills, social inclusion, equalities, youth, digital, intra-EU labour mobility, climate change, migration as well as monitoring and evaluation of communication activities.\u0026nbsp;\u003c/strong\u003eOur Senior Research Managers will have the opportunity to work for a variety of key clients, including the European Commission (e.g. DG EMPL, DG EAC, DG CNCT, DG RTD, DG HOME) and other EU bodies and agencies.\u003c/p\u003e\u003cp\u003eAs a Senior Research Manager, you can expect to:\u003c/p\u003e\u003cul\u003e\u003cli\u003eManage medium to large research projects, control budgets and timescales and oversee teams of other researchers and experts.\u003c/li\u003e\u003cli\u003eUtilise core technical skills to design and oversee research and evaluation methodologies covering mixed-method research techniques. This will involve a variety of primary, secondary, qualitative and quantitative research methods such as desk research, interviews, surveys, focus groups and statistical analysis.\u003c/li\u003e\u003cli\u003eSuccessfully conclude projects through the production of high-quality written reports, presentations, articles and the use of other dissemination channels.\u0026nbsp;\u003c/li\u003e\u003cli\u003eManage high-performing technical delivery teams to work within tight deadlines.\u003c/li\u003e\u003cli\u003eAs a key part of the role, you will be expected to work with Ecorys Directors to lead proposals for new work, and to actively research opportunities to grow the company\u0027s portfolio of EU market opportunities.\u003c/li\u003e\u003c/ul\u003e\u003cp\u003e\u003cstrong\u003eWhat we will need from you\u003c/strong\u003e\u003c/p\u003e\u003cul\u003e\u003cli\u003eStrong knowledge of EU policy in relevant thematic fields.\u003c/li\u003e\u003cli\u003eExperience in the development and delivery of evaluations and/or research, including the successful application of analytical approaches and technical research skills. Prior experience in delivering EU impact assessments would be an advantage.\u003c/li\u003e\u003cli\u003eA drive for business development, ideally with track record in winning new projects and tender writing.\u0026nbsp;\u003c/li\u003e\u003cli\u003eExperience of stakeholder management and building and maintaining client relationships.\u003c/li\u003e\u003cli\u003eExperience in working with multidisciplinary and multicultural research teams (including industry and academic experts as well as partners and subcontractors).\u003c/li\u003e\u003cli\u003eAn excellent level of spoken and written English and strong presentation skills are essential.\u0026nbsp;Other languages are an advantage.\u003c/li\u003e\u003c/ul\u003e\u003cp\u003eWe offer a highly competitive benefits package. Roles can be based in our office locations in either London or Brussels.\u0026nbsp;\u003c/p\u003e\u003cp\u003eIf you would like to find out more about this opportunity and our company, please visit our website:\u0026nbsp;\u003ca href=\\\"https://www.ecorys.com/united-kingdom\\\"\u003ehttps://www.ecorys.com/united-kingdom\u003c/a\u003e\u003c/p\u003e\u003cp\u003ePlease apply with your CV and cover letter. Early applications are encouraged and reviewed daily.\u0026nbsp;\u003c/p\u003e\u003cp\u003eIf you would prefer a copy of the job advert and job description in an accessible version, please contact\u0026nbsp;\u003ca href=\\\"mailto:recruitment@ecorys.com\\\"\u003erecruitment@ecorys.com\u003c/a\u003e\u0026nbsp;\u003c/p\u003e\",\"languageKey\":\"en-GB\",\"languageTitle\":\"English\",\"factDatas\":[{\"factId\":\"job_title\",\"title\":\"Title\",\"type\":0,\"text\":\"Senior Research Manager - EU Policy \",\"date\":null,\"datePattern\":null,\"timePattern\":null,\"sortableValue\":\"Senior Research Manager - EU Policy \",\"visible\":true,\"fileUrl\":null,\"fileAttachmentId\":null,\"userInitials\":null,\"userPhone\":null,\"avatar\":null,\"showTitle\":true,\"showViewableInfo\":false,\"optionsIds\":[],\"optionsTitles\":[],\"options\":[],\"additionalData\":{}},{\"factId\":\"project_number\",\"title\":\"Number\",\"type\":0,\"text\":\"795\",\"date\":null,\"datePattern\":null,\"timePattern\":null,\"sortableValue\":\"0000000795\",\"visible\":true,\"fileUrl\":null,\"fileAttachmentId\":null,\"userInitials\":null,\"userPhone\":null,\"avatar\":null,\"showTitle\":true,\"showViewableInfo\":false,\"optionsIds\":[],\"optionsTitles\":[],\"options\":[],\"additionalData\":{}},{\"factId\":\"deadline\",\"title\":\"Deadline\",\"type\":0,\"text\":\"Open\",\"date\":null,\"datePattern\":\"DD/MM/YYYY\",\"timePattern\":\"HH:mm\",\"sortableValue\":\"\",\"visible\":true,\"fileUrl\":null,\"fileAttachmentId\":null,\"userInitials\":null,\"userPhone\":null,\"avatar\":null,\"showTitle\":true,\"showViewableInfo\":false,\"optionsIds\":[],\"optionsTitles\":[],\"options\":[],\"additionalData\":{}},{\"factId\":\"location\",\"title\":\"Location\",\"type\":0,\"text\":\"5th Floor, Queen Elizabeth House, 4 St Dunstans Hill, EC3R 8AD, London\",\"date\":null,\"datePattern\":null,\"timePattern\":null,\"sortableValue\":\"5th Floor, Queen Elizabeth House, 4 St Dunstans Hill, EC3R 8AD, London\",\"visible\":true,\"fileUrl\":null,\"fileAttachmentId\":null,\"userInitials\":null,\"userPhone\":null,\"avatar\":null,\"showTitle\":true,\"showViewableInfo\":false,\"optionsIds\":[],\"optionsTitles\":[],\"options\":[],\"additionalData\":{}},{\"factId\":\"department\",\"title\":\"Department\",\"type\":6,\"text\":\"Policy \u0026 Research\",\"date\":null,\"datePattern\":null,\"timePattern\":null,\"sortableValue\":\"Policy \u0026 Research\",\"visible\":true,\"fileUrl\":null,\"fileAttachmentId\":null,\"userInitials\":null,\"userPhone\":null,\"avatar\":null,\"showTitle\":true,\"showViewableInfo\":false,\"optionsIds\":[],\"optionsTitles\":[],\"options\":[],\"additionalData\":{}},{\"factId\":\"825f0ac8-e54a-4580-b31a-e80a4756d4b3\",\"title\":\"Contact person\",\"type\":3,\"text\":\"Charlotte Parsons\",\"date\":null,\"datePattern\":null,\"timePattern\":null,\"sortableValue\":\"Charlotte Parsons\",\"visible\":true,\"fileUrl\":null,\"fileAttachmentId\":null,\"userInitials\":null,\"userPhone\":null,\"avatar\":null,\"showTitle\":true,\"showViewableInfo\":false,\"optionsIds\":[\"59c18eec-fa55-49cb-983c-750ef79c643b\"],\"optionsTitles\":[\"Charlotte Parsons\"],\"options\":[{\"userInitials\":\"CP\",\"userPhone\":null,\"avatar\":\"\",\"text\":\"Charlotte Parsons\",\"additionalData\":{\"full Name\":\"Charlotte Parsons\"}}],\"additionalData\":{}},{\"factId\":\"e29358ef-52e6-4386-8434-784a79766049\",\"title\":\"Country\",\"type\":1,\"text\":\"United Kingdom\",\"date\":null,\"datePattern\":null,\"timePattern\":null,\"sortableValue\":\"United Kingdom\",\"visible\":true,\"fileUrl\":null,\"fileAttachmentId\":null,\"userInitials\":null,\"userPhone\":null,\"avatar\":null,\"showTitle\":true,\"showViewableInfo\":false,\"optionsIds\":[\"027fbf50-85d4-4a99-97b4-cd30717c30f8\"],\"optionsTitles\":[\"United Kingdom\"],\"options\":[],\"additionalData\":{}},{\"factId\":\"d069c0f1-4e2c-439d-9a1b-30c0ad08fa88\",\"title\":\"Job Type\",\"type\":1,\"text\":\"Permanent\",\"date\":null,\"datePattern\":null,\"timePattern\":null,\"sortableValue\":\"Permanent\",\"visible\":true,\"fileUrl\":null,\"fileAttachmentId\":null,\"userInitials\":null,\"userPhone\":null,\"avatar\":null,\"showTitle\":true,\"showViewableInfo\":false,\"optionsIds\":[\"61cdfaf4-41ed-409b-bb81-a5c16ab03625\"],\"optionsTitles\":[\"Permanent\"],\"options\":[],\"additionalData\":{}},{\"factId\":\"8b326a34-7e4e-41ce-b394-cd649918d9bc\",\"title\":\"Job Category\",\"type\":1,\"text\":\"Policy and Research\",\"date\":null,\"datePattern\":null,\"timePattern\":null,\"sortableValue\":\"Policy and Research\",\"visible\":true,\"fileUrl\":null,\"fileAttachmentId\":null,\"userInitials\":null,\"userPhone\":null,\"avatar\":null,\"showTitle\":true,\"showViewableInfo\":false,\"optionsIds\":[\"e020df0c-67fc-4389-8323-01a9abc02c25\"],\"optionsTitles\":[\"Policy and Research\"],\"options\":[],\"additionalData\":{}},{\"factId\":\"4792a519-fc1e-471b-ae6b-dd43321afe0e\",\"title\":\"Working Hours\",\"type\":1,\"text\":\"\",\"date\":null,\"datePattern\":null,\"timePattern\":null,\"sortableValue\":\"\",\"visible\":true,\"fileUrl\":null,\"fileAttachmentId\":null,\"userInitials\":null,\"userPhone\":null,\"avatar\":null,\"showTitle\":true,\"showViewableInfo\":false,\"optionsIds\":[],\"optionsTitles\":[],\"options\":[],\"additionalData\":{}},{\"factId\":\"2036eae5-d46d-45d4-a144-ba785f2e4f24\",\"title\":\"Education Level\",\"type\":1,\"text\":\"Masters Degree\",\"date\":null,\"datePattern\":null,\"timePattern\":null,\"sortableValue\":\"Masters Degree\",\"visible\":true,\"fileUrl\":null,\"fileAttachmentId\":null,\"userInitials\":null,\"userPhone\":null,\"avatar\":null,\"showTitle\":true,\"showViewableInfo\":false,\"optionsIds\":[\"05bd1b26-addf-46df-ba51-59d2667c60a7\"],\"optionsTitles\":[\"Masters Degree\"],\"options\":[],\"additionalData\":{}},{\"factId\":\"b1d3cc50-6573-4755-a254-840fb78193ed\",\"title\":\"Career level\",\"type\":1,\"text\":\"Senior\",\"date\":null,\"datePattern\":null,\"timePattern\":null,\"sortableValue\":\"Senior\",\"visible\":true,\"fileUrl\":null,\"fileAttachmentId\":null,\"userInitials\":null,\"userPhone\":null,\"avatar\":null,\"showTitle\":true,\"showViewableInfo\":false,\"optionsIds\":[\"4577afc4-acc4-4c6e-abcd-9a7100f902f1\"],\"optionsTitles\":[\"Senior\"],\"options\":[],\"additionalData\":{}},{\"factId\":\"fd656d61-8d60-4b7f-a26b-dd9835d6ca58\",\"title\":\"Salary\",\"type\":0,\"text\":\"\",\"date\":null,\"datePattern\":null,\"timePattern\":null,\"sortableValue\":\"\",\"visible\":true,\"fileUrl\":null,\"fileAttachmentId\":null,\"userInitials\":null,\"userPhone\":null,\"avatar\":null,\"showTitle\":true,\"showViewableInfo\":false,\"optionsIds\":[],\"optionsTitles\":[],\"options\":[],\"additionalData\":{}},{\"factId\":\"9287caef-a66f-446c-9073-c78cef42f1a4\",\"title\":\"Salary\",\"type\":0,\"text\":\"\",\"date\":null,\"datePattern\":null,\"timePattern\":null,\"sortableValue\":\"\",\"visible\":true,\"fileUrl\":null,\"fileAttachmentId\":null,\"userInitials\":null,\"userPhone\":null,\"avatar\":null,\"showTitle\":true,\"showViewableInfo\":false,\"optionsIds\":[],\"optionsTitles\":[],\"options\":[],\"additionalData\":{}},{\"factId\":\"f4b624aa-f993-446d-89f6-fcd586f21f5a\",\"title\":\"Salary Extras\",\"type\":0,\"text\":\"\",\"date\":null,\"datePattern\":null,\"timePattern\":null,\"sortableValue\":\"\",\"visible\":true,\"fileUrl\":null,\"fileAttachmentId\":null,\"userInitials\":null,\"userPhone\":null,\"avatar\":null,\"showTitle\":true,\"showViewableInfo\":false,\"optionsIds\":[],\"optionsTitles\":[],\"options\":[],\"additionalData\":{}},{\"factId\":\"1df422d5-1ebb-40ce-994d-ecef64df36f5\",\"title\":\"Job description\",\"type\":2,\"text\":\"\",\"date\":null,\"datePattern\":null,\"timePattern\":null,\"sortableValue\":\"\",\"visible\":true,\"fileUrl\":\"\",\"fileAttachmentId\":null,\"userInitials\":null,\"userPhone\":null,\"avatar\":null,\"showTitle\":true,\"showViewableInfo\":false,\"optionsIds\":[],\"optionsTitles\":[],\"options\":[],\"additionalData\":{}}]}]}]'), count : 1}); });

    United Kingdom - Working at Ecorys Global (2025)

    References

    Top Articles
    Latest Posts
    Recommended Articles
    Article information

    Author: Van Hayes

    Last Updated:

    Views: 6355

    Rating: 4.6 / 5 (66 voted)

    Reviews: 81% of readers found this page helpful

    Author information

    Name: Van Hayes

    Birthday: 1994-06-07

    Address: 2004 Kling Rapid, New Destiny, MT 64658-2367

    Phone: +512425013758

    Job: National Farming Director

    Hobby: Reading, Polo, Genealogy, amateur radio, Scouting, Stand-up comedy, Cryptography

    Introduction: My name is Van Hayes, I am a thankful, friendly, smiling, calm, powerful, fine, enthusiastic person who loves writing and wants to share my knowledge and understanding with you.