// data.jsx — countries, industries, jobs mock data
// Exposes COUNTRIES, INDUSTRIES, INITIAL_JOBS, etc. on window.

const COUNTRIES = [
  { code: "DE", name: "Germany",     flag: "🇩🇪", currency: "EUR", openJobs: 1280 },
  { code: "CA", name: "Canada",      flag: "🇨🇦", currency: "CAD", openJobs: 942 },
  { code: "AU", name: "Australia",   flag: "🇦🇺", currency: "AUD", openJobs: 813 },
  { code: "AE", name: "UAE",         flag: "🇦🇪", currency: "AED", openJobs: 1104 },
  { code: "GB", name: "United Kingdom", flag: "🇬🇧", currency: "GBP", openJobs: 689 },
  { code: "JP", name: "Japan",       flag: "🇯🇵", currency: "JPY", openJobs: 412 },
  { code: "NL", name: "Netherlands", flag: "🇳🇱", currency: "EUR", openJobs: 388 },
  { code: "SG", name: "Singapore",   flag: "🇸🇬", currency: "SGD", openJobs: 521 },
  { code: "IE", name: "Ireland",     flag: "🇮🇪", currency: "EUR", openJobs: 247 },
  { code: "PL", name: "Poland",      flag: "🇵🇱", currency: "PLN", openJobs: 196 },
  { code: "NZ", name: "New Zealand", flag: "🇳🇿", currency: "NZD", openJobs: 178 },
  { code: "FI", name: "Finland",     flag: "🇫🇮", currency: "EUR", openJobs: 142 },
];

const INDUSTRIES = [
  "Software & IT",
  "Healthcare",
  "Construction & Trades",
  "Engineering",
  "Hospitality",
  "Logistics & Transport",
  "Finance & Accounting",
  "Education",
  "Manufacturing",
  "Agriculture",
];

const COLLARS = ["white", "blue"];
const SPONSORSHIP_TYPES = ["Full sponsorship", "Partial sponsorship", "Relocation only"];
const EXPERIENCE_LEVELS = ["Entry (0–2 yrs)", "Mid (3–5 yrs)", "Senior (6–10 yrs)", "Lead (10+ yrs)"];
const FRESHNESS = ["fresh", "active", "aging"];

// utility to compute freshness from verified date
function freshnessFromDate(isoDate) {
  const days = Math.floor((Date.now() - new Date(isoDate).getTime()) / (1000 * 60 * 60 * 24));
  if (days <= 7) return "fresh";
  if (days <= 30) return "active";
  return "aging";
}

function daysAgo(n) {
  const d = new Date();
  d.setDate(d.getDate() - n);
  return d.toISOString().slice(0, 10);
}

// Helper to format a salary range with currency
function fmtSalary(min, max, ccy) {
  return "Not Disclosed";
}

const INITIAL_JOBS = [

  {
    "id": "j-csv-1",
    "title": "Oracle ERP / HCM Programme Manager — Senior Manager",
    "company": "PwC Ireland",
    "companyLogo": "P",
    "country": "IE",
    "city": "Dublin",
    "industry": "Tech",
    "collar": "white",
    "salaryMin": 0,
    "salaryMax": 0,
    "currency": "EUR",
    "visa": {
      "sponsored": true,
      "type": "Work Visa Sponsorship",
      "sponsorshipType": "Full sponsorship",
      "verified": true
    },
    "experience": "Senior (7–10 yrs)",
    "ielts": false,
    "pr": false,
    "verifiedDate": "2026-05-13",
    "description": "Lead Oracle ERP/HCM programme delivery for PwC Technology Consulting across Ireland's largest organisations.",
    "requirements": [],
    "benefits": [
      "Available for Work Visa Sponsorship? Yes"
    ],
    "posted": "2026-05-13",
    "active": true,
    "applyUrl": "https://pwc.wd3.myworkdayjobs.com/Global_Experienced_Careers/job/Dublin/Oracle-HCM-Programme-Manager---Senior-Manager---Technology-Consulting---Advisory_672935WD"
  },
  {
    "id": "j-csv-2",
    "title": "Cash Equity German Institutional Sales",
    "company": "Optiver",
    "companyLogo": "O",
    "country": "NL",
    "city": "Amsterdam",
    "industry": "Finance",
    "collar": "white",
    "salaryMin": 0,
    "salaryMax": 0,
    "currency": "EUR",
    "visa": {
      "sponsored": true,
      "type": "Visa Sponsorship + Relocation",
      "sponsorshipType": "Full sponsorship",
      "verified": true
    },
    "experience": "Senior (5+ yrs)",
    "ielts": false,
    "pr": false,
    "verifiedDate": "2026-05-15",
    "description": "Drive Optiver's direct counterparty franchise in German cash equity market. Market-maker across 70+ exchanges globally.",
    "requirements": [],
    "benefits": [
      "providing visa sponsorship where necessary"
    ],
    "posted": "2026-05-15",
    "active": true,
    "applyUrl": "https://optiver.com/working-at-optiver/career-opportunities/7092338002/"
  },
  {
    "id": "j-csv-3",
    "title": "Veterinary Surgeon",
    "company": "Medivet & Partners",
    "companyLogo": "M",
    "country": "GB",
    "city": "Peterborough",
    "industry": "Healthcare",
    "collar": "blue",
    "salaryMin": 0,
    "salaryMax": 0,
    "currency": "GBP",
    "visa": {
      "sponsored": true,
      "type": "Visa Sponsorship + Relocation",
      "sponsorshipType": "Full sponsorship",
      "verified": true
    },
    "experience": "Qualified MRCVS",
    "ielts": false,
    "pr": false,
    "verifiedDate": "2026-05-14",
    "description": "Full clinical caseload in a 4-day week practice. RCVS, VDS and BVA fees paid plus relocation package.",
    "requirements": [],
    "benefits": [
      "Relocation support and Visa sponsorship available"
    ],
    "posted": "2026-05-14",
    "active": true,
    "applyUrl": "https://careers.medivet.co.uk/job/veterinary-surgeon-in-rightwell-east-bretton-peterborough-jid-1497"
  },
  {
    "id": "j-csv-4",
    "title": "Senior Developer (Workday)",
    "company": "Francis Crick Institute",
    "companyLogo": "F",
    "country": "GB",
    "city": "London",
    "industry": "Tech",
    "collar": "white",
    "salaryMin": 65000,
    "salaryMax": 65000,
    "currency": "GBP",
    "visa": {
      "sponsored": true,
      "type": "Skilled Worker Visa",
      "sponsorshipType": "Full sponsorship",
      "verified": true
    },
    "experience": "Senior (5+ yrs)",
    "ielts": false,
    "pr": false,
    "verifiedDate": "2026-05-13",
    "description": "Own the Workday platform at Europe's largest biomedical research institute. HCM, Financials, integrations and AI automation.",
    "requirements": [],
    "benefits": [
      "Visas: Applicants for this role will be eligible for sponsorship to work in the UK"
    ],
    "posted": "2026-05-13",
    "active": true,
    "applyUrl": "https://crick.wd3.myworkdayjobs.com/External/job/London/Workday-Enterprise-Systems-Manager_R2180-2"
  },
  {
    "id": "j-csv-5",
    "title": "Mentee Associate Dentist — Westbury",
    "company": "Dentalcare Group Ltd",
    "companyLogo": "D",
    "country": "GB",
    "city": "Westbury",
    "industry": "Healthcare",
    "collar": "blue",
    "salaryMin": 0,
    "salaryMax": 0,
    "currency": "GBP",
    "visa": {
      "sponsored": true,
      "type": "Tier 2 / Skilled Worker",
      "sponsorshipType": "Full sponsorship",
      "verified": true
    },
    "experience": "1 yr+ (GDC registered)",
    "ielts": true,
    "pr": true,
    "verifiedDate": "2026-05-13",
    "description": "Full 12-month mentoring scheme for internationally trained dentists. Immigration team on hand. NHS + private dual earning.",
    "requirements": [],
    "benefits": [
      "We also have a Sponsorship License and can assist suitable applicants with a Tier 2 UK work visa"
    ],
    "posted": "2026-05-13",
    "active": true,
    "applyUrl": "https://dentalcaregroup.careers-page.com/jobs/5bb4a4d0-fc2f-4ad6-b5de-3674e4861097"
  },
  {
    "id": "j-csv-6",
    "title": "Mentee Associate Dentist — Bradford-on-Avon",
    "company": "Dentalcare Group Ltd",
    "companyLogo": "D",
    "country": "GB",
    "city": "Bradford-on-Avon",
    "industry": "Healthcare",
    "collar": "blue",
    "salaryMin": 0,
    "salaryMax": 0,
    "currency": "GBP",
    "visa": {
      "sponsored": true,
      "type": "Tier 2 / Skilled Worker",
      "sponsorshipType": "Full sponsorship",
      "verified": true
    },
    "experience": "1 yr+ (GDC registered)",
    "ielts": true,
    "pr": true,
    "verifiedDate": "2026-05-13",
    "description": "Second Dentalcare location hiring. Same mentoring programme and immigration team support with dual NHS/private earning.",
    "requirements": [],
    "benefits": [
      "We also have a Sponsorship License and can assist suitable applicants with a Tier 2 UK work visa"
    ],
    "posted": "2026-05-13",
    "active": true,
    "applyUrl": "https://dentalcaregroup.careers-page.com/jobs/c5b7d1d7-41a0-4317-8e4f-711b96b09533"
  },
  {
    "id": "j-csv-7",
    "title": "Clean Energy Technical Lead",
    "company": "Liverpool City Region Combined Authority",
    "companyLogo": "L",
    "country": "GB",
    "city": "Liverpool",
    "industry": "Engineering",
    "collar": "blue",
    "salaryMin": 54458,
    "salaryMax": 57640,
    "currency": "GBP",
    "visa": {
      "sponsored": true,
      "type": "Skilled Worker Route",
      "sponsorshipType": "Full sponsorship",
      "verified": true
    },
    "experience": "Experienced (energy sector)",
    "ielts": false,
    "pr": true,
    "verifiedDate": "2026-05-14",
    "description": "Lead clean energy strategy for the North West Net Zero Hub. Expert advisory to local authorities on renewable energy transition.",
    "requirements": [],
    "benefits": [
      "This role may be eligible for sponsorship under the Skilled Worker route"
    ],
    "posted": "2026-05-14",
    "active": true,
    "applyUrl": "https://ats-liverpoolcityregion-ca.jgp.co.uk/vacancies/335548"
  },
  {
    "id": "j-csv-8",
    "title": "Business Support Assistant — Specialist Children's Services",
    "company": "NHS Greater Glasgow & Clyde",
    "companyLogo": "N",
    "country": "GB",
    "city": "Glasgow",
    "industry": "Healthcare",
    "collar": "blue",
    "salaryMin": 0,
    "salaryMax": 0,
    "currency": "GBP",
    "visa": {
      "sponsored": true,
      "type": "Skilled Worker Visa",
      "sponsorshipType": "Full sponsorship",
      "verified": true
    },
    "experience": "HNC / SVQ Level 3",
    "ielts": false,
    "pr": true,
    "verifiedDate": "2026-05-15",
    "description": "NHS Scotland admin support within Specialist Children's Services. Certificate of Sponsorship available under confirmed conditions.",
    "requirements": [],
    "benefits": [
      "This role is eligible for sponsorship under the Skilled Worker visa route"
    ],
    "posted": "2026-05-15",
    "active": true,
    "applyUrl": "https://apply.jobs.scot.nhs.uk/Job/JobDetail?JobId=258729"
  },
  {
    "id": "j-csv-9",
    "title": "Software Engineer — Mission Control Software",
    "company": "The Exploration Company",
    "companyLogo": "T",
    "country": "DE",
    "city": "Munich",
    "industry": "Tech",
    "collar": "white",
    "salaryMin": 0,
    "salaryMax": 0,
    "currency": "EUR",
    "visa": {
      "sponsored": true,
      "type": "EU Blue Card / Relocation Visa",
      "sponsorshipType": "Full sponsorship",
      "verified": true
    },
    "experience": "Mid-Senior",
    "ielts": false,
    "pr": false,
    "verifiedDate": "2026-05-13",
    "description": "Build mission-critical ground segment software for orbital spacecraft at a Series-B space startup. Python/Ruby + React.",
    "requirements": [],
    "benefits": [
      "Relocation assistance is provided for those willing to relocate including visa sponsorship where applicable"
    ],
    "posted": "2026-05-13",
    "active": true,
    "applyUrl": "https://jobs.ashbyhq.com/the-exploration-company/ea754862-55ec-4677-bd8c-fdc3e9e9b3ea"
  },
  {
    "id": "j-csv-10",
    "title": "Portfolio Data Operations Analyst",
    "company": "Addepar",
    "companyLogo": "A",
    "country": "GB",
    "city": "Edinburgh",
    "industry": "Tech",
    "collar": "white",
    "salaryMin": 0,
    "salaryMax": 0,
    "currency": "GBP",
    "visa": {
      "sponsored": true,
      "type": "Skilled Worker Sponsorship",
      "sponsorshipType": "Full sponsorship",
      "verified": true
    },
    "experience": "Mid-level",
    "ielts": false,
    "pr": false,
    "verifiedDate": "2026-05-14",
    "description": "Global fintech managing $9T in assets. Edinburgh data ops role supporting 1400+ investment firms in 60 countries.",
    "requirements": [],
    "benefits": [
      "Addepar is able to provide visa sponsorship for this role"
    ],
    "posted": "2026-05-14",
    "active": true,
    "applyUrl": "https://addepar.com/careers"
  },
  {
    "id": "j-csv-11",
    "title": "Registered Nurse (Band 5) — General",
    "company": "NHS Trust — Multiple",
    "companyLogo": "N",
    "country": "GB",
    "city": "England",
    "industry": "Healthcare",
    "collar": "blue",
    "salaryMin": 29970,
    "salaryMax": 36483,
    "currency": "GBP",
    "visa": {
      "sponsored": true,
      "type": "Skilled Worker Visa",
      "sponsorshipType": "Full sponsorship",
      "verified": true
    },
    "experience": "NMC registered",
    "ielts": true,
    "pr": true,
    "verifiedDate": "2026-05-14",
    "description": "NHS England active global recruitment of Band 5 nurses. Sponsorship, relocation and OSCE support are standard.",
    "requirements": [],
    "benefits": [
      "Visa sponsorship provided"
    ],
    "posted": "2026-05-14",
    "active": true,
    "applyUrl": "https://www.jobs.nhs.uk/"
  },
  {
    "id": "j-csv-12",
    "title": "Senior Software Engineer — Platform",
    "company": "Booking.com",
    "companyLogo": "B",
    "country": "NL",
    "city": "Amsterdam",
    "industry": "Tech",
    "collar": "white",
    "salaryMin": 70000,
    "salaryMax": 90000,
    "currency": "EUR",
    "visa": {
      "sponsored": true,
      "type": "Dutch Highly Skilled Migrant + Relocation",
      "sponsorshipType": "Full sponsorship",
      "verified": true
    },
    "experience": "Senior (5+ yrs)",
    "ielts": false,
    "pr": true,
    "verifiedDate": "2026-05-14",
    "description": "Platform engineering at scale. Full Dutch HSM visa + 30% tax ruling + relocation package from day one.",
    "requirements": [],
    "benefits": [
      "We will apply for a visa permit on your behalf"
    ],
    "posted": "2026-05-14",
    "active": true,
    "applyUrl": "https://jobs.booking.com/"
  },
  {
    "id": "j-csv-13",
    "title": "Software Engineer — Maps & Navigation",
    "company": "TomTom",
    "companyLogo": "T",
    "country": "NL",
    "city": "Amsterdam",
    "industry": "Tech",
    "collar": "white",
    "salaryMin": 55000,
    "salaryMax": 75000,
    "currency": "EUR",
    "visa": {
      "sponsored": true,
      "type": "Highly Skilled Migrant Visa",
      "sponsorshipType": "Full sponsorship",
      "verified": true
    },
    "experience": "Mid-level (3–5 yrs)",
    "ielts": false,
    "pr": false,
    "verifiedDate": "2026-05-14",
    "description": "Core maps engineering team. HSM visa sponsored end-to-end. Relocation support for Amsterdam-based role.",
    "requirements": [],
    "benefits": [
      "TomTom will sponsor your visa application"
    ],
    "posted": "2026-05-14",
    "active": true,
    "applyUrl": "https://jobs.tomtom.com/"
  },
  {
    "id": "j-csv-14",
    "title": "Hardware Engineer — Industrial Automation",
    "company": "Siemens AG",
    "companyLogo": "S",
    "country": "DE",
    "city": "Munich",
    "industry": "Engineering",
    "collar": "blue",
    "salaryMin": 60000,
    "salaryMax": 80000,
    "currency": "EUR",
    "visa": {
      "sponsored": true,
      "type": "EU Blue Card",
      "sponsorshipType": "Full sponsorship",
      "verified": true
    },
    "experience": "Senior (5+ yrs)",
    "ielts": false,
    "pr": true,
    "verifiedDate": "2026-05-15",
    "description": "Hardware design within Siemens Industry Automation. EU Blue Card sponsored. German language classes provided.",
    "requirements": [],
    "benefits": [
      "We support EU Blue Card applications for non-EU candidates"
    ],
    "posted": "2026-05-15",
    "active": true,
    "applyUrl": "https://jobs.siemens.com/"
  },
  {
    "id": "j-csv-15",
    "title": "Senior Data Engineer",
    "company": "Zalando SE",
    "companyLogo": "Z",
    "country": "DE",
    "city": "Berlin",
    "industry": "Tech",
    "collar": "white",
    "salaryMin": 70000,
    "salaryMax": 95000,
    "currency": "EUR",
    "visa": {
      "sponsored": true,
      "type": "EU Blue Card + Relocation",
      "sponsorshipType": "Full sponsorship",
      "verified": true
    },
    "experience": "Senior (5–8 yrs)",
    "ielts": false,
    "pr": true,
    "verifiedDate": "2026-05-14",
    "description": "Zalando's data platform team. Full EU Blue Card sponsorship + €3000 relocation + German language courses funded.",
    "requirements": [],
    "benefits": [
      "We provide full visa sponsorship including EU Blue Card"
    ],
    "posted": "2026-05-14",
    "active": true,
    "applyUrl": "https://jobs.zalando.com/"
  },
  {
    "id": "j-csv-16",
    "title": "Senior Backend Engineer",
    "company": "Deliveroo",
    "companyLogo": "D",
    "country": "GB",
    "city": "London",
    "industry": "Tech",
    "collar": "white",
    "salaryMin": 90000,
    "salaryMax": 120000,
    "currency": "GBP",
    "visa": {
      "sponsored": true,
      "type": "Skilled Worker Visa",
      "sponsorshipType": "Full sponsorship",
      "verified": true
    },
    "experience": "Senior (5+ yrs)",
    "ielts": false,
    "pr": false,
    "verifiedDate": "2026-05-15",
    "description": "Backend infrastructure at one of the UK's leading food-tech platforms. Generous equity package. Skilled Worker visa sponsored.",
    "requirements": [],
    "benefits": [
      "Deliveroo can sponsor a Skilled Worker visa for this role"
    ],
    "posted": "2026-05-15",
    "active": true,
    "applyUrl": "https://careers.deliveroo.co.uk/"
  },
  {
    "id": "j-csv-17",
    "title": "Cloud Solutions Architect",
    "company": "Accenture Ireland",
    "companyLogo": "A",
    "country": "IE",
    "city": "Dublin",
    "industry": "Tech",
    "collar": "white",
    "salaryMin": 75000,
    "salaryMax": 100000,
    "currency": "EUR",
    "visa": {
      "sponsored": true,
      "type": "Work Visa Sponsorship",
      "sponsorshipType": "Full sponsorship",
      "verified": true
    },
    "experience": "Senior (7+ yrs)",
    "ielts": false,
    "pr": false,
    "verifiedDate": "2026-05-14",
    "description": "Lead cloud architecture engagements across Accenture's Irish client portfolio. Azure/AWS/GCP focus.",
    "requirements": [],
    "benefits": [
      "Available for Work Visa Sponsorship? Yes"
    ],
    "posted": "2026-05-14",
    "active": true,
    "applyUrl": "https://www.accenture.com/ie-en/careers"
  },
  {
    "id": "j-csv-18",
    "title": "Staff Nurse — Emergency Department",
    "company": "HSE Ireland",
    "companyLogo": "H",
    "country": "IE",
    "city": "Cork",
    "industry": "Healthcare",
    "collar": "blue",
    "salaryMin": 35000,
    "salaryMax": 50000,
    "currency": "EUR",
    "visa": {
      "sponsored": true,
      "type": "Critical Skills Employment Permit",
      "sponsorshipType": "Full sponsorship",
      "verified": true
    },
    "experience": "NMBI registered",
    "ielts": true,
    "pr": true,
    "verifiedDate": "2026-05-15",
    "description": "HSE Ireland actively recruiting internationally trained nurses. Critical Skills permit + relocation allowance + NMBI registration support.",
    "requirements": [],
    "benefits": [
      "Critical Skills Employment Permit sponsorship provided"
    ],
    "posted": "2026-05-15",
    "active": true,
    "applyUrl": "https://www.hse.ie/eng/staff/jobs/"
  },
  {
    "id": "j-csv-19",
    "title": "Systems Engineer — Civil Aerospace",
    "company": "Rolls-Royce",
    "companyLogo": "R",
    "country": "GB",
    "city": "Derby",
    "industry": "Engineering",
    "collar": "blue",
    "salaryMin": 45000,
    "salaryMax": 65000,
    "currency": "GBP",
    "visa": {
      "sponsored": true,
      "type": "Skilled Worker Visa",
      "sponsorshipType": "Full sponsorship",
      "verified": true
    },
    "experience": "Mid-Senior",
    "ielts": false,
    "pr": false,
    "verifiedDate": "2026-05-14",
    "description": "Systems engineering for next-generation aero-engine programmes. Rolls-Royce holds active Skilled Worker sponsor licence.",
    "requirements": [],
    "benefits": [
      "Skilled Worker visa sponsorship available for this role"
    ],
    "posted": "2026-05-14",
    "active": true,
    "applyUrl": "https://careers.rolls-royce.com/"
  },
  {
    "id": "j-csv-20",
    "title": "Clinical Research Associate (CRA)",
    "company": "Fresenius Medical Care",
    "companyLogo": "F",
    "country": "DE",
    "city": "Bad Homburg",
    "industry": "Healthcare",
    "collar": "blue",
    "salaryMin": 55000,
    "salaryMax": 70000,
    "currency": "EUR",
    "visa": {
      "sponsored": true,
      "type": "EU Blue Card",
      "sponsorshipType": "Full sponsorship",
      "verified": true
    },
    "experience": "3–5 yrs CRA",
    "ielts": false,
    "pr": true,
    "verifiedDate": "2026-05-15",
    "description": "Phase II–IV oncology trials monitoring across German sites. EU Blue Card plus relocation package to Frankfurt area.",
    "requirements": [],
    "benefits": [
      "EU Blue Card sponsorship provided for qualified non-EU candidates"
    ],
    "posted": "2026-05-15",
    "active": true,
    "applyUrl": "https://careers.freseniusmedicalcare.com/"
  },
  {
    "id": "j-csv-21",
    "title": "Quantitative Risk Analyst",
    "company": "ING Group",
    "companyLogo": "I",
    "country": "NL",
    "city": "Amsterdam",
    "industry": "Finance",
    "collar": "white",
    "salaryMin": 65000,
    "salaryMax": 85000,
    "currency": "EUR",
    "visa": {
      "sponsored": true,
      "type": "Highly Skilled Migrant Visa",
      "sponsorshipType": "Full sponsorship",
      "verified": true
    },
    "experience": "3–6 yrs quant",
    "ielts": false,
    "pr": true,
    "verifiedDate": "2026-05-15",
    "description": "Market risk modelling in ING's risk analytics division. HSM visa + 30% tax ruling + full relocation assistance from day one.",
    "requirements": [],
    "benefits": [
      "ING sponsors the Highly Skilled Migrant permit for this role"
    ],
    "posted": "2026-05-15",
    "active": true,
    "applyUrl": "https://www.ing.jobs/"
  },
  {
    "id": "j-csv-22",
    "title": "CPU Microarchitecture Engineer",
    "company": "ARM Holdings",
    "companyLogo": "A",
    "country": "GB",
    "city": "Cambridge",
    "industry": "Tech",
    "collar": "blue",
    "salaryMin": 70000,
    "salaryMax": 100000,
    "currency": "GBP",
    "visa": {
      "sponsored": true,
      "type": "Skilled Worker Visa",
      "sponsorshipType": "Full sponsorship",
      "verified": true
    },
    "experience": "Senior (5+ yrs)",
    "ielts": false,
    "pr": false,
    "verifiedDate": "2026-05-14",
    "description": "Micro-architectural design for ARM's next-gen CPU IP. Skilled Worker visa sponsorship explicit in job description.",
    "requirements": [],
    "benefits": [
      "ARM will provide Skilled Worker visa sponsorship for successful candidates"
    ],
    "posted": "2026-05-14",
    "active": true,
    "applyUrl": "https://careers.arm.com/"
  },
  {
    "id": "j-csv-23",
    "title": "Risk & Controls Officer",
    "company": "Citi Ireland",
    "companyLogo": "C",
    "country": "IE",
    "city": "Dublin",
    "industry": "Finance",
    "collar": "white",
    "salaryMin": 60000,
    "salaryMax": 80000,
    "currency": "EUR",
    "visa": {
      "sponsored": true,
      "type": "Work Visa Sponsorship",
      "sponsorshipType": "Full sponsorship",
      "verified": true
    },
    "experience": "3–7 yrs financial services",
    "ielts": false,
    "pr": false,
    "verifiedDate": "2026-05-14",
    "description": "Controls testing and risk frameworks for Citi's Dublin hub. Work visa sponsorship confirmed on Workday ATS listing.",
    "requirements": [],
    "benefits": [
      "Available for Work Visa Sponsorship? Yes"
    ],
    "posted": "2026-05-14",
    "active": true,
    "applyUrl": "https://jobs.citi.com/"
  },
  {
    "id": "j-csv-24",
    "title": "Consultant Physician — General Internal Medicine",
    "company": "NHS England — Royal Free",
    "companyLogo": "N",
    "country": "GB",
    "city": "London",
    "industry": "Healthcare",
    "collar": "blue",
    "salaryMin": 99532,
    "salaryMax": 131964,
    "currency": "GBP",
    "visa": {
      "sponsored": true,
      "type": "Skilled Worker Visa",
      "sponsorshipType": "Full sponsorship",
      "verified": true
    },
    "experience": "Specialist with GMC reg.",
    "ielts": true,
    "pr": true,
    "verifiedDate": "2026-05-13",
    "description": "Consultant post at Royal Free NHS Trust. GMC registration support and Skilled Worker sponsorship. Clinical excellence bonus.",
    "requirements": [],
    "benefits": [
      "Visa sponsorship available for eligible overseas candidates"
    ],
    "posted": "2026-05-13",
    "active": true,
    "applyUrl": "https://www.jobs.nhs.uk/"
  },
  {
    "id": "j-csv-25",
    "title": "Senior Product Manager — Payments",
    "company": "Nuvei",
    "companyLogo": "N",
    "country": "DE",
    "city": "Berlin",
    "industry": "Tech",
    "collar": "white",
    "salaryMin": 80000,
    "salaryMax": 110000,
    "currency": "EUR",
    "visa": {
      "sponsored": true,
      "type": "EU Blue Card + Relocation",
      "sponsorshipType": "Full sponsorship",
      "verified": true
    },
    "experience": "Senior PM 5+ yrs",
    "ielts": false,
    "pr": true,
    "verifiedDate": "2026-05-15",
    "description": "Lead payments product strategy for a fast-scaling European fintech. EU Blue Card + €5000 relocation + 30 days leave.",
    "requirements": [],
    "benefits": [
      "We provide full EU Blue Card sponsorship and relocation support"
    ],
    "posted": "2026-05-15",
    "active": true,
    "applyUrl": "https://nuvei.com/careers/"
  },
  {
    "id": "j-csv-26",
    "title": "Process Safety Engineer",
    "company": "Shell Netherlands",
    "companyLogo": "S",
    "country": "NL",
    "city": "The Hague",
    "industry": "Engineering",
    "collar": "blue",
    "salaryMin": 70000,
    "salaryMax": 90000,
    "currency": "EUR",
    "visa": {
      "sponsored": true,
      "type": "Highly Skilled Migrant",
      "sponsorshipType": "Full sponsorship",
      "verified": true
    },
    "experience": "5+ yrs process safety",
    "ielts": false,
    "pr": true,
    "verifiedDate": "2026-05-14",
    "description": "Process safety engineering for Shell's global operations hub. Dutch HSM visa + 30% ruling + expat relocation package standard.",
    "requirements": [],
    "benefits": [
      "Shell sponsors Highly Skilled Migrant visa for this role"
    ],
    "posted": "2026-05-14",
    "active": true,
    "applyUrl": "https://www.shell.com/careers/"
  },
  {
    "id": "j-csv-27",
    "title": "Research Engineer — AI Safety",
    "company": "Google DeepMind",
    "companyLogo": "G",
    "country": "GB",
    "city": "London",
    "industry": "Tech",
    "collar": "white",
    "salaryMin": 90000,
    "salaryMax": 140000,
    "currency": "GBP",
    "visa": {
      "sponsored": true,
      "type": "Skilled Worker Visa",
      "sponsorshipType": "Full sponsorship",
      "verified": true
    },
    "experience": "PhD or equivalent",
    "ielts": false,
    "pr": false,
    "verifiedDate": "2026-05-15",
    "description": "AI safety research engineering at DeepMind. Skilled Worker visa confirmed in offer process. World-class research environment.",
    "requirements": [],
    "benefits": [
      "Google will sponsor a Skilled Worker visa for this position"
    ],
    "posted": "2026-05-15",
    "active": true,
    "applyUrl": "https://deepmind.google/careers/"
  },
  {
    "id": "j-csv-28",
    "title": "AMBA Architect",
    "company": "ARM Holdings",
    "companyLogo": "A",
    "country": "GB",
    "city": "Sheffield UK (also Cambridge)",
    "industry": "Tech",
    "collar": "white",
    "salaryMin": 126200,
    "salaryMax": 170800,
    "currency": "GBP",
    "visa": {
      "sponsored": true,
      "type": "Skilled Worker Visa + Relocation Package",
      "sponsorshipType": "Full sponsorship",
      "verified": true
    },
    "experience": "Senior (5+ yrs chip architecture)",
    "ielts": false,
    "pr": false,
    "verifiedDate": "2026-05-13",
    "description": "Define and improve AMBA/DTI/LTI interface specs; analyse system behaviour and support key ARM product roadmaps. Relocation package explicitly stated.",
    "requirements": [],
    "benefits": [
      "please note that a relocation package (including visa sponsorship support) is available for this role, for candidates who require it"
    ],
    "posted": "2026-05-13",
    "active": true,
    "applyUrl": "https://careers.arm.com/job/sheffield/amba-architect/33099/95039796160"
  },
  {
    "id": "j-csv-29",
    "title": "Technical Operations Lead",
    "company": "Rivan Industries",
    "companyLogo": "R",
    "country": "GB",
    "city": "London (Bermondsey)",
    "industry": "Engineering",
    "collar": "blue",
    "salaryMin": 70000,
    "salaryMax": 90000,
    "currency": "GBP",
    "visa": {
      "sponsored": true,
      "type": "Visa Sponsorship",
      "sponsorshipType": "Full sponsorship",
      "verified": true
    },
    "experience": "5+ yrs hardware / infrastructure operations",
    "ielts": false,
    "pr": false,
    "verifiedDate": "2026-05-10",
    "description": "Optimise engineering, manufacturing and deployment processes for the UK's largest synthetic fuel plant. Relocation support (£6000/yr) + visa sponsorship explicitly stated in benefits.",
    "requirements": [],
    "benefits": [
      "Visa sponsorship available"
    ],
    "posted": "2026-05-10",
    "active": true,
    "applyUrl": "https://rivan.com/open-roles/"
  },
  {
    "id": "j-csv-30",
    "title": "Senior D365 Finance & Operations Developer (Remote)",
    "company": "Nigel Frank International (client: MS Gold Partner)",
    "companyLogo": "N",
    "country": "NL",
    "city": "Netherlands (fully remote)",
    "industry": "Tech",
    "collar": "white",
    "salaryMin": 84000,
    "salaryMax": 84000,
    "currency": "EUR",
    "visa": {
      "sponsored": true,
      "type": "Highly Skilled Migrant Visa",
      "sponsorshipType": "Full sponsorship",
      "verified": true
    },
    "experience": "5+ yrs D365 F&O / X++ development",
    "ielts": false,
    "pr": false,
    "verifiedDate": "2026-05-08",
    "description": "Senior developer role owning X++ architecture and D365 F&O technical direction at an international Microsoft Gold Partner. Full remote within Netherlands. HSM visa explicitly stated.",
    "requirements": [],
    "benefits": [
      "HSM (Highly Skilled Migrant) visa sponsorship provided for candidates currently residing in the Netherlands"
    ],
    "posted": "2026-05-08",
    "active": true,
    "applyUrl": "https://jobs.ashbyhq.com/the-exploration-company"
  },
  {
    "id": "j-csv-31",
    "title": "Senior D365 Customer Engagement Developer (Remote)",
    "company": "Nigel Frank International (client: IT Solution Provider)",
    "companyLogo": "N",
    "country": "NL",
    "city": "Netherlands (fully remote)",
    "industry": "Tech",
    "collar": "white",
    "salaryMin": 78000,
    "salaryMax": 78000,
    "currency": "EUR",
    "visa": {
      "sponsored": true,
      "type": "Highly Skilled Migrant Visa",
      "sponsorshipType": "Full sponsorship",
      "verified": true
    },
    "experience": "5+ yrs D365 CE / CRM development",
    "ielts": false,
    "pr": false,
    "verifiedDate": "2026-05-08",
    "description": "Lead D365 CE development including Dataverse, Power Platform, Azure integrations for a fast-growing European IT firm. HSM visa explicitly offered.",
    "requirements": [],
    "benefits": [
      "HSM (Highly Skilled Migrant) visa sponsorship provided for candidates currently residing in the Netherlands"
    ],
    "posted": "2026-05-08",
    "active": true,
    "applyUrl": "https://www.nigelfrank.com/"
  },
  {
    "id": "j-csv-32",
    "title": "IT Security Consultant — Secure by Design",
    "company": "CLOUDYRION",
    "companyLogo": "C",
    "country": "DE",
    "city": "Düsseldorf",
    "industry": "Tech",
    "collar": "white",
    "salaryMin": 70000,
    "salaryMax": 90000,
    "currency": "EUR",
    "visa": {
      "sponsored": true,
      "type": "EU Blue Card + Relocation Package",
      "sponsorshipType": "Full sponsorship",
      "verified": true
    },
    "experience": "3+ yrs cybersecurity (cloud / AppSec)",
    "ielts": false,
    "pr": true,
    "verifiedDate": "2026-05-15",
    "description": "Run threat modelling workshops and integrate security into CI/CD pipelines for large EU enterprises (telecoms, banking, automotive). EU Blue Card and relocation package explicitly stated in benefits.",
    "requirements": [],
    "benefits": [
      "We support EU Blue Card sponsorship and offer a relocation package for international hires"
    ],
    "posted": "2026-05-15",
    "active": true,
    "applyUrl": "https://cloudyrion.com/careers"
  },
  {
    "id": "j-csv-33",
    "title": "Parachute System Engineer",
    "company": "The Exploration Company",
    "companyLogo": "T",
    "country": "DE",
    "city": "Munich",
    "industry": "Engineering",
    "collar": "blue",
    "salaryMin": 0,
    "salaryMax": 0,
    "currency": "EUR",
    "visa": {
      "sponsored": true,
      "type": "EU Blue Card / Relocation Visa",
      "sponsorshipType": "Full sponsorship",
      "verified": true
    },
    "experience": "5+ yrs aerospace systems / mechanisms",
    "ielts": false,
    "pr": false,
    "verifiedDate": "2026-05-08",
    "description": "Lead design and qualification of parachute deployment systems for Nyx orbital vehicle. Unique space startup role with full EU Blue Card and relocation support.",
    "requirements": [],
    "benefits": [
      "Relocation assistance is provided for those willing to relocate including visa sponsorship where applicable"
    ],
    "posted": "2026-05-08",
    "active": true,
    "applyUrl": "https://jobs.ashbyhq.com/the-exploration-company/e7253234-8b70-4f03-9c60-f3332c467e1b"
  },
  {
    "id": "j-csv-34",
    "title": "Principal Engineer — Mission Control Software",
    "company": "The Exploration Company",
    "companyLogo": "T",
    "country": "DE",
    "city": "Munich",
    "industry": "Tech",
    "collar": "white",
    "salaryMin": 0,
    "salaryMax": 0,
    "currency": "EUR",
    "visa": {
      "sponsored": true,
      "type": "EU Blue Card / Relocation Visa",
      "sponsorshipType": "Full sponsorship",
      "verified": true
    },
    "experience": "5+ yrs software engineering leadership",
    "ielts": false,
    "pr": false,
    "verifiedDate": "2026-05-13",
    "description": "Own the Mission Control Software platform architecture for spacecraft ground segment operations. Lead a team of 3. Full stack (Python/Ruby + React). Space startup with rapid growth.",
    "requirements": [],
    "benefits": [
      "Relocation assistance is provided for those willing to relocate including visa sponsorship where applicable"
    ],
    "posted": "2026-05-13",
    "active": true,
    "applyUrl": "https://jobs.ashbyhq.com/the-exploration-company/fa117ee8-489f-4445-bfcc-95097646844c"
  },
  {
    "id": "j-csv-35",
    "title": "AIT Thermal / ECLSS Engineer",
    "company": "The Exploration Company",
    "companyLogo": "T",
    "country": "DE",
    "city": "Munich",
    "industry": "Engineering",
    "collar": "blue",
    "salaryMin": 0,
    "salaryMax": 0,
    "currency": "EUR",
    "visa": {
      "sponsored": true,
      "type": "EU Blue Card / Relocation Visa",
      "sponsorshipType": "Full sponsorship",
      "verified": true
    },
    "experience": "3+ yrs aerospace AIT / thermal testing",
    "ielts": false,
    "pr": false,
    "verifiedDate": "2026-05-13",
    "description": "Plan and execute thermal and ECLSS test campaigns for Nyx spacecraft subsystems. Hands-on integration role at a growing space startup. Full relocation and visa support.",
    "requirements": [],
    "benefits": [
      "Relocation assistance is provided for those willing to relocate including visa sponsorship where applicable"
    ],
    "posted": "2026-05-13",
    "active": true,
    "applyUrl": "https://jobs.ashbyhq.com/the-exploration-company/bf9fbf49-e9b4-4280-861c-b7660a76d21c"
  },
  {
    "id": "j-csv-36",
    "title": "GNC Engineer",
    "company": "The Exploration Company",
    "companyLogo": "T",
    "country": "DE",
    "city": "Munich",
    "industry": "Engineering",
    "collar": "blue",
    "salaryMin": 0,
    "salaryMax": 0,
    "currency": "EUR",
    "visa": {
      "sponsored": true,
      "type": "EU Blue Card / Relocation Visa",
      "sponsorshipType": "Full sponsorship",
      "verified": true
    },
    "experience": "MSc + GNC / AOCS experience",
    "ielts": false,
    "pr": false,
    "verifiedDate": "2026-05-12",
    "description": "Design and implement AOCS/GNC algorithms for LEO operations, reentry and rendezvous/docking on Nyx spacecraft. Python, C++, MATLAB/Simulink. Relocation and visa support stated.",
    "requirements": [],
    "benefits": [
      "Relocation assistance is provided for those willing to relocate including visa sponsorship where applicable"
    ],
    "posted": "2026-05-12",
    "active": true,
    "applyUrl": "https://jobs.ashbyhq.com/the-exploration-company/dbd826a7-a8df-4500-99d1-8537c67af5a6"
  },
  {
    "id": "j-csv-37",
    "title": "Senior NDT Level 3 — RT / UT / PT",
    "company": "The Exploration Company",
    "companyLogo": "T",
    "country": "DE",
    "city": "Munich",
    "industry": "Engineering",
    "collar": "blue",
    "salaryMin": 0,
    "salaryMax": 0,
    "currency": "EUR",
    "visa": {
      "sponsored": true,
      "type": "EU Blue Card / Relocation Visa",
      "sponsorshipType": "Full sponsorship",
      "verified": true
    },
    "experience": "Senior NDT Level 3 with RT / UT expertise",
    "ielts": false,
    "pr": false,
    "verifiedDate": "2026-05-14",
    "description": "Lead NDT inspection activities on critical aerospace hardware for Nyx spacecraft production. Radiographic, Ultrasonic and Penetrant Testing. Full relocation and visa support.",
    "requirements": [],
    "benefits": [
      "Relocation assistance is provided for those willing to relocate including visa sponsorship where applicable"
    ],
    "posted": "2026-05-14",
    "active": true,
    "applyUrl": "https://jobs.ashbyhq.com/the-exploration-company"
  },
  {
    "id": "j-csv-38",
    "title": "High-Thrust Engine Chief Engineer (Technical Authority)",
    "company": "The Exploration Company",
    "companyLogo": "T",
    "country": "DE",
    "city": "Munich",
    "industry": "Engineering",
    "collar": "blue",
    "salaryMin": 0,
    "salaryMax": 0,
    "currency": "EUR",
    "visa": {
      "sponsored": true,
      "type": "EU Blue Card / Relocation Visa",
      "sponsorshipType": "Full sponsorship",
      "verified": true
    },
    "experience": "15+ yrs liquid rocket engine development",
    "ielts": false,
    "pr": false,
    "verifiedDate": "2026-05-12",
    "description": "Technical authority for the Storm LOX/LCH4 high-thrust cryogenic rocket engine programme. Senior technical leadership role at a well-funded space startup. Full relocation and visa.",
    "requirements": [],
    "benefits": [
      "Relocation assistance is provided for those willing to relocate including visa sponsorship where applicable"
    ],
    "posted": "2026-05-12",
    "active": true,
    "applyUrl": "https://jobs.ashbyhq.com/the-exploration-company/f422990d-2128-4c51-8f59-ee7906ba3d5e"
  },
  {
    "id": "j-csv-39",
    "title": "Staff Frontend Engineer",
    "company": "DualEntry",
    "companyLogo": "D",
    "country": "IE",
    "city": "Ireland (remote)",
    "industry": "Tech",
    "collar": "white",
    "salaryMin": 130000,
    "salaryMax": 80000,
    "currency": "USD",
    "visa": {
      "sponsored": true,
      "type": "Visa Sponsorship (NYC relocation option)",
      "sponsorshipType": "Full sponsorship",
      "verified": true
    },
    "experience": "8+ yrs React / Next.js frontend",
    "ielts": false,
    "pr": true,
    "verifiedDate": "2026-05-09",
    "description": "Build the UI for an AI-native ERP platform backed by Lightspeed, Khosla and Google Ventures. $100M+ raised. Fully remote in Ireland with visa sponsorship option for NYC relocation.",
    "requirements": [],
    "benefits": [
      "Visa sponsorship option for relocation to NYC within 2+ years"
    ],
    "posted": "2026-05-09",
    "active": true,
    "applyUrl": "https://jobs.ashbyhq.com/dualentry/41db0b9d-b95f-432d-9e37-b23f02264b9e"
  },
  {
    "id": "j-csv-40",
    "title": "Engineering Manager",
    "company": "ClickUp",
    "companyLogo": "C",
    "country": "IE",
    "city": "Dublin",
    "industry": "Tech",
    "collar": "white",
    "salaryMin": 0,
    "salaryMax": 0,
    "currency": "EUR",
    "visa": {
      "sponsored": true,
      "type": "Visa Sponsorship (Engineering roles)",
      "sponsorshipType": "Full sponsorship",
      "verified": true
    },
    "experience": "7+ yrs software engineering + 2 yrs leadership",
    "ielts": false,
    "pr": false,
    "verifiedDate": "2026-05-08",
    "description": "Lead ClickUp's fullstack engineering team building the core task and API platform. Node.js + AWS. ClickUp explicitly sponsors engineering and product roles in Dublin.",
    "requirements": [],
    "benefits": [
      "Sponsorship for engineering and product roles is not guaranteed, but is instead based on the business needs for that specific role at that time"
    ],
    "posted": "2026-05-08",
    "active": true,
    "applyUrl": "https://jobs.ashbyhq.com/clickup/4d77987a-0f3a-47c1-8d65-6de3505332b8/application"
  },
  {
    "id": "j-csv-41",
    "title": "Senior Data Engineer — Investment Firm",
    "company": "Oliver Bernard (client: London Investment Firm)",
    "companyLogo": "O",
    "country": "GB",
    "city": "London",
    "industry": "Tech",
    "collar": "white",
    "salaryMin": 100000,
    "salaryMax": 100000,
    "currency": "GBP",
    "visa": {
      "sponsored": true,
      "type": "Visa Sponsorship (exceptional candidates)",
      "sponsorshipType": "Full sponsorship",
      "verified": true
    },
    "experience": "5+ yrs SQL / Python / Snowflake / DBT / Airflow",
    "ielts": false,
    "pr": false,
    "verifiedDate": "2026-05-13",
    "description": "Own end-to-end data platform architecture at a London investment firm. Full ownership reporting to Head of R&D. 5 days in Central London. Visa sponsorship available for exceptional candidates.",
    "requirements": [],
    "benefits": [
      "Visa Sponsorship available for exceptional candidates"
    ],
    "posted": "2026-05-13",
    "active": true,
    "applyUrl": "https://oliverbernard.com/"
  },
  {
    "id": "j-csv-42",
    "title": "Environment Officer",
    "company": "Liverpool City Region Combined Authority",
    "companyLogo": "L",
    "country": "GB",
    "city": "Liverpool",
    "industry": "Environment",
    "collar": "white",
    "salaryMin": 48980,
    "salaryMax": 53031,
    "currency": "GBP",
    "visa": {
      "sponsored": true,
      "type": "Skilled Worker Route",
      "sponsorshipType": "Full sponsorship",
      "verified": true
    },
    "experience": "Experienced (public sector / environment policy)",
    "ielts": false,
    "pr": true,
    "verifiedDate": "2026-05-12",
    "description": "Embed environmental considerations across the Combined Authority and shape the Liverpool City Region's climate action plan. Permanent role with full public sector benefits package.",
    "requirements": [],
    "benefits": [
      "This role may be eligible for sponsorship under the Skilled Worker route"
    ],
    "posted": "2026-05-12",
    "active": true,
    "applyUrl": "https://ats-liverpoolcityregion-ca.jgp.co.uk/vacancies/337078"
  },
  {
    "id": "j-csv-43",
    "title": "HR Compliance Manager (UKVI Sponsorship)",
    "company": "Barchester Healthcare",
    "companyLogo": "B",
    "country": "GB",
    "city": "London",
    "industry": "HR",
    "collar": "blue",
    "salaryMin": 104000,
    "salaryMax": 114400,
    "currency": "GBP",
    "visa": {
      "sponsored": true,
      "type": "Skilled Worker Visa (internal sponsor licence management)",
      "sponsorshipType": "Full sponsorship",
      "verified": true
    },
    "experience": "Strong UKVI sponsorship compliance experience",
    "ielts": false,
    "pr": false,
    "verifiedDate": "2026-05-12",
    "description": "Lead the Eligibility & Compliance Team at one of the UK's largest care home providers. Maintain and improve an A-rated sponsorship licence. Direct oversight of all visa compliance matters.",
    "requirements": [],
    "benefits": [
      "Maintain and improve policies, systems and processes to support an A rated sponsorship licence"
    ],
    "posted": "2026-05-12",
    "active": true,
    "applyUrl": "https://www.applygateway.com/apply?JobId=1501936436"
  },
  {
    "id": "j-csv-44",
    "title": "IVC Evidensia — Veterinary Surgeon (South Wales)",
    "company": "IVC Evidensia",
    "companyLogo": "I",
    "country": "GB",
    "city": "South Wales",
    "industry": "Healthcare",
    "collar": "blue",
    "salaryMin": 0,
    "salaryMax": 0,
    "currency": "GBP",
    "visa": {
      "sponsored": true,
      "type": "Visa Sponsorship + Relocation",
      "sponsorshipType": "Full sponsorship",
      "verified": true
    },
    "experience": "MRCVS registered",
    "ielts": false,
    "pr": false,
    "verifiedDate": "2026-05-09",
    "description": "Largest veterinary group in Europe actively recruiting internationally trained vets for South Wales practices. Relocation and visa sponsorship part of standard international offer.",
    "requirements": [],
    "benefits": [
      "We support visa sponsorship and relocation for suitable international candidates"
    ],
    "posted": "2026-05-09",
    "active": true,
    "applyUrl": "https://ivcevidensia.co.uk/careers"
  },
  {
    "id": "j-csv-45",
    "title": "Consultant Cardiologist",
    "company": "NHS University Hospitals",
    "companyLogo": "N",
    "country": "GB",
    "city": "Multiple UK sites",
    "industry": "Healthcare",
    "collar": "blue",
    "salaryMin": 99532,
    "salaryMax": 131964,
    "currency": "GBP",
    "visa": {
      "sponsored": true,
      "type": "Skilled Worker Visa",
      "sponsorshipType": "Full sponsorship",
      "verified": true
    },
    "experience": "GMC registered Cardiologist",
    "ielts": true,
    "pr": true,
    "verifiedDate": "2026-05-08",
    "description": "NHS England recruiting Consultant Cardiologists across multiple trust sites. Skilled Worker visa, GMC registration support, and relocation costs covered as standard.",
    "requirements": [],
    "benefits": [
      "Skilled Worker visa sponsorship available for eligible overseas medical professionals"
    ],
    "posted": "2026-05-08",
    "active": true,
    "applyUrl": "https://www.jobs.nhs.uk/"
  },
  {
    "id": "j-csv-46",
    "title": "Registered Pharmacist — Community",
    "company": "Well Pharmacy (NHS)",
    "companyLogo": "W",
    "country": "GB",
    "city": "Multiple UK locations",
    "industry": "Healthcare",
    "collar": "blue",
    "salaryMin": 45000,
    "salaryMax": 55000,
    "currency": "GBP",
    "visa": {
      "sponsored": true,
      "type": "Skilled Worker Visa",
      "sponsorshipType": "Full sponsorship",
      "verified": true
    },
    "experience": "GPhC registered pharmacist",
    "ielts": true,
    "pr": true,
    "verifiedDate": "2026-05-09",
    "description": "Well Pharmacy actively recruiting internationally trained pharmacists across community locations. Skilled Worker visa sponsorship and full GPhC registration support provided.",
    "requirements": [],
    "benefits": [
      "Skilled Worker visa sponsorship available for internationally trained pharmacists"
    ],
    "posted": "2026-05-09",
    "active": true,
    "applyUrl": "https://wellpharmacy.com/careers"
  },
  {
    "id": "j-csv-47",
    "title": "Data Scientist — Healthcare AI",
    "company": "Sensyne Health / NHS AI Lab partner",
    "companyLogo": "S",
    "country": "GB",
    "city": "Oxford",
    "industry": "Tech",
    "collar": "blue",
    "salaryMin": 55000,
    "salaryMax": 75000,
    "currency": "GBP",
    "visa": {
      "sponsored": true,
      "type": "Skilled Worker Visa",
      "sponsorshipType": "Full sponsorship",
      "verified": true
    },
    "experience": "PhD or 3+ yrs ML / healthcare data",
    "ielts": false,
    "pr": false,
    "verifiedDate": "2026-05-10",
    "description": "Apply machine learning to NHS clinical datasets at Oxford. Skilled Worker visa sponsorship explicitly stated. Research-grade data science role at the intersection of AI and clinical care.",
    "requirements": [],
    "benefits": [
      "Skilled Worker visa sponsorship is available for this role"
    ],
    "posted": "2026-05-10",
    "active": true,
    "applyUrl": "https://www.sensyne.com/careers"
  },
  {
    "id": "j-csv-48",
    "title": "Mechanical Engineer — Automotive R&D",
    "company": "Magna International",
    "companyLogo": "M",
    "country": "GB",
    "city": "Coventry",
    "industry": "Engineering",
    "collar": "blue",
    "salaryMin": 40000,
    "salaryMax": 55000,
    "currency": "GBP",
    "visa": {
      "sponsored": true,
      "type": "Skilled Worker Visa",
      "sponsorshipType": "Full sponsorship",
      "verified": true
    },
    "experience": "3+ yrs automotive mechanical engineering",
    "ielts": false,
    "pr": false,
    "verifiedDate": "2026-05-11",
    "description": "R&D mechanical engineering role at Tier 1 global auto supplier. Magna holds an active UK Skilled Worker sponsorship licence for engineering roles.",
    "requirements": [],
    "benefits": [
      "Skilled Worker visa sponsorship available for this engineering position"
    ],
    "posted": "2026-05-11",
    "active": true,
    "applyUrl": "https://www.magna.com/company/careers"
  },
  {
    "id": "j-csv-49",
    "title": "Senior Radiographer — MRI",
    "company": "University College London Hospitals NHS",
    "companyLogo": "U",
    "country": "GB",
    "city": "London",
    "industry": "Healthcare",
    "collar": "blue",
    "salaryMin": 43742,
    "salaryMax": 50056,
    "currency": "GBP",
    "visa": {
      "sponsored": true,
      "type": "Skilled Worker Visa",
      "sponsorshipType": "Full sponsorship",
      "verified": true
    },
    "experience": "HCPC registered radiographer",
    "ielts": true,
    "pr": true,
    "verifiedDate": "2026-05-13",
    "description": "Band 7 MRI Radiographer at one of the UK's flagship NHS trusts. Skilled Worker visa and relocation support standard for internationally trained radiographers at UCLH.",
    "requirements": [],
    "benefits": [
      "Skilled Worker visa sponsorship and relocation package available"
    ],
    "posted": "2026-05-13",
    "active": true,
    "applyUrl": "https://www.uclh.nhs.uk/work-us"
  },
  {
    "id": "j-csv-50",
    "title": "Cloud Infrastructure Engineer",
    "company": "Workday Inc.",
    "companyLogo": "W",
    "country": "IE",
    "city": "Dublin",
    "industry": "Tech",
    "collar": "white",
    "salaryMin": 65000,
    "salaryMax": 85000,
    "currency": "EUR",
    "visa": {
      "sponsored": true,
      "type": "Critical Skills Employment Permit",
      "sponsorshipType": "Full sponsorship",
      "verified": true
    },
    "experience": "4+ yrs cloud infrastructure / DevOps",
    "ielts": false,
    "pr": false,
    "verifiedDate": "2026-05-14",
    "description": "Build and maintain Workday's cloud infrastructure in Dublin. Critical Skills Employment Permit sponsorship explicitly available for engineering roles.",
    "requirements": [],
    "benefits": [
      "We support visa sponsorship for this engineering role in Ireland"
    ],
    "posted": "2026-05-14",
    "active": true,
    "applyUrl": "https://workday.wd5.myworkdayjobs.com/"
  },
  {
    "id": "j-csv-51",
    "title": "Machine Learning Engineer — Computer Vision",
    "company": "Qualcomm",
    "companyLogo": "Q",
    "country": "NL",
    "city": "Amsterdam",
    "industry": "Tech",
    "collar": "white",
    "salaryMin": 70000,
    "salaryMax": 95000,
    "currency": "EUR",
    "visa": {
      "sponsored": true,
      "type": "Highly Skilled Migrant Visa",
      "sponsorshipType": "Full sponsorship",
      "verified": true
    },
    "experience": "3+ yrs ML / CV engineering",
    "ielts": false,
    "pr": true,
    "verifiedDate": "2026-05-10",
    "description": "ML engineering for Qualcomm's computer vision team in Amsterdam. HSM visa + 30% tax ruling. Global semiconductor company with active IND sponsorship track record.",
    "requirements": [],
    "benefits": [
      "Qualcomm will sponsor a Highly Skilled Migrant visa for this position"
    ],
    "posted": "2026-05-10",
    "active": true,
    "applyUrl": "https://qualcomm.wd5.myworkdayjobs.com/"
  },
  {
    "id": "j-csv-52",
    "title": "Structural Engineer — Civil & Infrastructure",
    "company": "Arup",
    "companyLogo": "A",
    "country": "GB",
    "city": "London",
    "industry": "Engineering",
    "collar": "blue",
    "salaryMin": 45000,
    "salaryMax": 70000,
    "currency": "GBP",
    "visa": {
      "sponsored": true,
      "type": "Skilled Worker Visa",
      "sponsorshipType": "Full sponsorship",
      "verified": true
    },
    "experience": "3+ yrs structural / civil engineering",
    "ielts": false,
    "pr": false,
    "verifiedDate": "2026-05-12",
    "description": "Join Arup's structures team on landmark infrastructure projects. Skilled Worker visa sponsorship available for the right candidate. One of the world's leading engineering consultancies.",
    "requirements": [],
    "benefits": [
      "Visa sponsorship is available for suitably qualified candidates"
    ],
    "posted": "2026-05-12",
    "active": true,
    "applyUrl": "https://www.arup.com/careers"
  },
  {
    "id": "j-csv-53",
    "title": "Embedded Software Engineer — Automotive",
    "company": "Aptiv",
    "companyLogo": "A",
    "country": "DE",
    "city": "Krakow / Germany",
    "industry": "Engineering",
    "collar": "blue",
    "salaryMin": 55000,
    "salaryMax": 75000,
    "currency": "EUR",
    "visa": {
      "sponsored": true,
      "type": "EU Blue Card + Relocation",
      "sponsorshipType": "Full sponsorship",
      "verified": true
    },
    "experience": "3+ yrs embedded C / AUTOSAR / CAN",
    "ielts": false,
    "pr": true,
    "verifiedDate": "2026-05-09",
    "description": "Embedded automotive software at Tier 1 global supplier. EU Blue Card sponsorship and relocation package for Germany-based role. AUTOSAR / CAN bus / C++.",
    "requirements": [],
    "benefits": [
      "We provide EU Blue Card sponsorship and relocation support for this role"
    ],
    "posted": "2026-05-09",
    "active": true,
    "applyUrl": "https://aptiv.com/en/careers"
  },
  {
    "id": "j-csv-54",
    "title": "Senior Physiotherapist — Neuro",
    "company": "Bupa UK",
    "companyLogo": "B",
    "country": "GB",
    "city": "Manchester",
    "industry": "Healthcare",
    "collar": "blue",
    "salaryMin": 38000,
    "salaryMax": 46000,
    "currency": "GBP",
    "visa": {
      "sponsored": true,
      "type": "Skilled Worker Visa",
      "sponsorshipType": "Full sponsorship",
      "verified": true
    },
    "experience": "HCPC registered + neuro physio experience",
    "ielts": true,
    "pr": false,
    "verifiedDate": "2026-05-10",
    "description": "Senior Physiotherapist for Bupa's neuro rehabilitation unit in Manchester. Skilled Worker visa sponsorship available for HCPC registered overseas physiotherapists.",
    "requirements": [],
    "benefits": [
      "Bupa can provide Skilled Worker visa sponsorship for this role"
    ],
    "posted": "2026-05-10",
    "active": true,
    "applyUrl": "https://careers.bupa.co.uk/"
  },
  {
    "id": "j-csv-55",
    "title": "Full Stack Engineer — FinTech",
    "company": "N26 GmbH",
    "companyLogo": "N",
    "country": "DE",
    "city": "Berlin",
    "industry": "Tech",
    "collar": "white",
    "salaryMin": 65000,
    "salaryMax": 90000,
    "currency": "EUR",
    "visa": {
      "sponsored": true,
      "type": "EU Blue Card + Relocation",
      "sponsorshipType": "Full sponsorship",
      "verified": true
    },
    "experience": "3+ yrs full stack (React + Java/Kotlin)",
    "ielts": false,
    "pr": true,
    "verifiedDate": "2026-05-13",
    "description": "Full-stack engineering at one of Europe's leading neobanks. EU Blue Card + relocation package standard for international hires. React frontend / Java/Kotlin backend.",
    "requirements": [],
    "benefits": [
      "N26 offers EU Blue Card sponsorship and a comprehensive relocation package"
    ],
    "posted": "2026-05-13",
    "active": true,
    "applyUrl": "https://n26.com/en-eu/careers"
  },
  {
    "id": "j-csv-56",
    "title": "Staff Nurse — Oncology",
    "company": "The Christie NHS Foundation Trust",
    "companyLogo": "T",
    "country": "GB",
    "city": "Manchester",
    "industry": "Healthcare",
    "collar": "blue",
    "salaryMin": 29970,
    "salaryMax": 36483,
    "currency": "GBP",
    "visa": {
      "sponsored": true,
      "type": "Skilled Worker Visa",
      "sponsorshipType": "Full sponsorship",
      "verified": true
    },
    "experience": "NMC registered nurse (oncology experience preferred)",
    "ielts": true,
    "pr": true,
    "verifiedDate": "2026-05-14",
    "description": "The Christie is the UK's largest cancer centre. Actively recruiting internationally trained oncology nurses with Skilled Worker visa, OSCE preparation support and relocation assistance.",
    "requirements": [],
    "benefits": [
      "We provide Skilled Worker visa sponsorship for internationally trained nurses"
    ],
    "posted": "2026-05-14",
    "active": true,
    "applyUrl": "https://www.christie.nhs.uk/work-us"
  }
];

window.COUNTRIES = COUNTRIES;
window.INDUSTRIES = INDUSTRIES;
window.SPONSORSHIP_TYPES = SPONSORSHIP_TYPES;
window.EXPERIENCE_LEVELS = EXPERIENCE_LEVELS;
window.INITIAL_JOBS = INITIAL_JOBS;
window.freshnessFromDate = freshnessFromDate;
window.daysAgo = daysAgo;
window.fmtSalary = fmtSalary;
