Skip to Content

🇴🇲Oman Subdivisions

All 9 Oman subdivisions with ISO 3166-2:OM codes - Asia / Western Asia

Total

9 subdivisions

Types

Governorate, Region

ISO Standard

ISO 3166-2:OM

Code Example

import { subdivision } from '@koshmoney/countries';

// Get all Oman subdivisions
const subs = subdivision.getByCountry('OM');
// => 9 subdivisions

// Look up a specific subdivision
subdivision.get('OM-BA');
// => { code: 'OM-BA', name: 'Al Bāţinah', type: 'Region' }

// Validate a subdivision code
subdivision.isValidCode('OM-BA');  // true
subdivision.isValidRegion('OM', 'BA');  // true

Tree-Shaking Tip

Import only Oman subdivisions to minimize bundle size:

// Import only Oman subdivisions for smaller bundles
import { subdivisions } from '@koshmoney/countries/subdivision/OM';

Object.entries(subdivisions);
// => 9 entries

All Oman Subdivisions

Governorates (4)

CodeName
OM-BUAl Buraymī
OM-MAMasqaţ
OM-MUMusandam
OM-ZUZ̧ufār

Regions (5)

CodeName
OM-BAAl Bāţinah
OM-DAAd Dākhilīyah
OM-SHAsh Sharqīyah
OM-WUAl Wusţá
OM-ZAAz̧ Z̧āhirah

FAQ

How many subdivisions does Oman have?
Oman has 9 subdivisions defined in ISO 3166-2:OM, including 4 governorates, 5 regions.
What is the ISO 3166-2 code format for Oman?
Oman subdivision codes follow the format OM-XX, where OM is the country's alpha-2 code and XX is the subdivision identifier. For example, OM-BA represents Al Bāţinah.
How to get Oman subdivisions in JavaScript?
Install @koshmoney/countries via npm, then use subdivision.getByCountry('OM') to get all 9 subdivisions.
View Oman country page →Country code converter →

Use Oman subdivision data in your project

Get all 9 Oman subdivisions with ISO 3166-2 codes, plus countries, currencies, postal codes, and more.

npm install @koshmoney/countries