Gov't digitised 80% of services in 2025 — report

Key launches include the electronic passport, airport e-gates, the unified national government services registry, the tax e-invoicing system and an open data platform hosting more than 3,800 dataset (Petra photo)
Key launches include the electronic passport, airport e-gates, the unified national government services registry, the tax e-invoicing system and an open data platform hosting more than 3,800 dataset (Petra photo)

AMMAN — The Ministry of Digital Economy and Entrepreneurship made marked strides in Jordan’s digital transformation in 2025, fast-tracking key strategic programmes and expanding automated government services to raise institutional efficiency, improve service delivery and strengthen national competitiveness.

According to the ministry’s annual report, 80 per cent of government services,1,920 in total, have now been digitised.

Key launches included the electronic passport, airport e-gates, the unified national government services registry, the tax e-invoicing system and an open data platform hosting more than 3,800 datasets.

The ministry also rolled out the unified “Ajyal” education platform, alongside specialised digital services such as the military service document on the “Sanad” application, academic verification services and the military service platform for conscripts.

In the health sector, the Digital Health Centre was launched, with telemedicine services introduced in five peripheral hospitals during the first phase.

The national vaccination platform and birth and death notification system were upgraded, while digital IDs were activated for foreigners and refugees, bringing the total number of activated digital identities to two million, the ministry said.

On artificial intelligence and data, 9,000 public sector employees had received training in AI applications by December 2025. The “Siraj” educational platform was expanded to serve 202,262 students and teachers, logging 1,068,946 conversations by year’s end.

The report said that 20 projects under the Jordanian Artificial Intelligence Strategy had reached completion or advanced implementation (14 completed and six ongoing), while 28 projects were under execution in 2025. A twinning project to support digital transformation in personal data protection and AI was also launched in cooperation with the European Union.

On personal data protection, the relevant law and security regulations were issued, alongside the establishment of a registry for data protection officers, processors and controllers.

Accreditation standards for controllers were approved, privacy and impact-assessment guidelines published, and operational procedures for the specialised unit endorsed.

The ministry also launched the Jordanian Digital Inclusion Policy and is preparing the Immersive Technologies Strategy and the National Innovation Strategy.

In entrepreneurship, more than 100 startups were incubated and 100 companies received business development services, supported by funding packages exceeding JD2 million. The “Qissatec” initiative empowered 176 female graduates.

Jordan posted gains across several international indicators, the report noted. The Kingdom advanced in the Government Technology Maturity Index from 31st place in 2023 to 21st in 2025. Its ranking in the E-Participation Index improved from 148th in 2020 to 70th in 2024, while its position in the E-Government Development Index rose from 117th to 89th.

In the Digital Competitiveness Index, Jordan climbed from 50th in 2024 to 44th in 2025. The Kingdom also ranked 65th globally in the 2025 Global Innovation Index, third regionally and 29th worldwide in the AI Adoption Index.

Under the Youth, Technology and Jobs programme, the number of trainees reached 10,590 by the end of 2025 through the Digital Skills Empowerment Initiative. Digital curricula for grades 7–12 and activity books for grades 1–6 were also introduced.

As part of the national fibre-optic network expansion, 3,388 government, health and education sites were connected, with maintenance and route-conversion works completed across dozens of locations.

The ministry received several awards, including Best Public Sector Success Story at the Mulhim Summit 2025 and first place among ministries in the National Integrity Index for 2024–2025.

On the “Sanad” application, a self-activation feature was launched to enable secure digital identity verification without visiting activation centres. An integrated e-payment system was also introduced, supporting multiple payment methods and direct bank-linked transactions to enable fully digital services.

.col-lg-12.second .opinion-widget{border-top:1px solid #D0D0D0;} #widget_1623 .opinions-title {font-size:32px;} #widget_1623 .opinions-title a{font-size:32px;} .first-author{ background-color:#ecedef; } .first-opinion-author-name{ background-color:white; width:max-content; padding:5px; }
.epaper-separator{ height: 1px; width: 100%; background-color: #D0D0D0; margin: 15px 0; }

Today’s Paper

.related-articles .article-widget-sm .article-title{font-size:16px;-webkit-line-clamp:3;} .related-articles .layout-ratio{padding-bottom:55%;}
.alert-success { color :#A3656F ; } .alert-danger { color : red ; } .footer { font-family:Myriad Pro,Arial; } .newspaper-footer{ visibility:hidden; } .socialFixOuter { position: fixed; top: 50%; margin-top: 40px; right: 0; transition: .2s; z-index: 20; height: 217px; width: 40px; } .socialFix { height: 30px; width: 30px; display: block; position: relative; cursor: pointer; background-size: 18px 18px; transition: .2s; background-position: center; background-repeat: no-repeat; border-radius: 2px; margin-top: 1px; } .socialFix:hover { width: 40px; margin-left: -10px; } .app-badge-img { height: 36px; width: auto; } @media (max-width: 768px) { .app-badge-img { height: 32px; } .app-badges { justify-content: center !important; } }
document.addEventListener("DOMContentLoaded", function () { const socialFix = document.querySelector(".socialFixOuter"); if (!socialFix) return; let firstInteraction = false; let hideTimeout = null; function checkMobileScreen() { if (window.innerWidth < 768) { socialFix.style.display = "none"; } else { socialFix.style.display = "block"; } } checkMobileScreen(); window.addEventListener("resize", checkMobileScreen); function handleFirstInteraction() { if (firstInteraction) return; if (window.innerWidth < 768) return; firstInteraction = true; socialFix.style.right = "-25px"; } socialFix.addEventListener("mouseenter", function () { if (window.innerWidth < 768) return; if (hideTimeout) clearTimeout(hideTimeout); socialFix.style.right = "0"; }); socialFix.addEventListener("mouseleave", function () { if (window.innerWidth < 768) return; if (hideTimeout) clearTimeout(hideTimeout); hideTimeout = setTimeout(() => { socialFix.style.right = "-25px"; }, 500); }); ["click", "touchstart"].forEach((evt) => { socialFix.addEventListener(evt, handleFirstInteraction); }); }); function validateEmail(email) { if (email.length > 255) return false; const emailRegex = /^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$/; if (!emailRegex.test(email)) return false; if (email.includes('..') || email.startsWith('.') || email.endsWith('.')) return false; return true; } function sanitizeInput(input) { input = input.replace(/<[^>]*>/g, ''); input = input.replace(/javascript:/gi, ''); input = input.replace(/on\w+\s*=/gi, ''); input = input.replace(/[<>"'&(){}[\]]/g, ''); return input.trim(); } document.addEventListener('DOMContentLoaded', function () { function showModal(message, type) { const messageContainer = document.getElementById("messageContainerFooter"); messageContainer.textContent = message; messageContainer.className = `alert alert-${type} mt-3`; messageContainer.classList.remove("d-none"); setTimeout(() => { messageContainer.classList.add("d-none"); }, 5000); } document.getElementById("emailFormFooter").addEventListener("submit", function(event) { event.preventDefault(); const emailInput = document.getElementById("emailFooter"); const email = sanitizeInput(emailInput.value.trim()); if (!validateEmail(email)) { showModal('Invalid email format', 'danger'); return; } const formData = new FormData(); formData.append('email', email); fetch('/subscribeNewsletter', { method: "POST", body: formData, headers: { "Accept": "application/json", "X-Requested-With": "XMLHttpRequest" } }) .then(response => { if (!response.ok) { showModal("Error submitting email. Try again.", 'danger'); } return response.json(); }) .then(data => { showModal(data.message, 'success'); }) .catch(error => { showModal("Error submitting email. Try again.", 'danger'); }); }); });