Gov’t approves water, sanitation tariff restructuring for 2023-2029

Prime Minister Bisher Khasawneh chairs a Cabinet session on Sunday (Petra photo)

AMMAN — The Cabinet, upon a recommendation by the board of directors of the Water Authority of Jordan, on Sunday endorsed a plan to restructure the water and sanitation tariffs for households for 2023-2029.

The plan is in line with the 2023-2040 National Water Strategy, which seeks to ensure financial sustainability for the sector, whose debt currently stands at JD2.3 billion, the Jordan News Agency, Petra, reported.

The plan included shifting to issuing water and sanitation bills from quarterly to monthly as of the September bill according to the current tariffs until December 1.

The first category spans from zero to six cubic metres (m3), while the second ranges between 7 and 12m3, the third from 13 to 18m3, the fourth from 19 to 24m3, the fifth from  25 to 30m3, the sixth from 31 to 42m3 and the seventh covers consumptions exceeding 42m3.

As per the new plan, no changes will be made for the first category that consumes less than 6m3 per month during 2024, where the cost is JD0.218. The tariff will increase by JD0.05 for the second, third and fourth categories that consume 7 to 24m3.

An increase of JD0.10 will be imposed for the fifth category, JD0.18 for the sixth category, and JD0.28 for the seventh category. 

As for the sanitation tariff, it will remain unchanged for the first category for 2024 at JD0.23, while it will be increased by JD0.03 for each cubic metre consumed for the second category, by JD0.01 for the third category, JD0.03 for the fourth, and JD0.05 for the fifth, and JD0.02 for the sixth and JD0.1 for the seventh.

The first category covers 29 per cent of the total subscribers nationwide, while the second covers 31 per cent, the third covers 22 per cent, the fourth 10 per cent, the fifth 4 per cent, the sixth 3 per cent and the seventh 1 per cent.

The government will continue to subsidise the total cost of water and sanitation even after 2028 to take account of low-income people. In 2024, the subsidy for the first category, which comprises 82 per cent of the total cost, will be JD0.180, and the subsidy for the second category, which comprises 77 per cent of the total cost, will be JD0.170.

The subsidy will be JD0.157 for the third category, comprising 71 per cent of the total cost;  JD0.131 for the fourth category, comprising 60 per cent of the total cost; JD0.106 for the fifth category, comprising 48 per cent of the total cost; and JD0.60 for the sixth category, comprising 27 per cent of the total cost. The seventh category is not subsidised.

 

.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'); }); }); });