🇴🇲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'); // trueTree-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 entriesAll Oman Subdivisions
Governorates (4)
| Code | Name |
|---|---|
| OM-BU | Al Buraymī |
| OM-MA | Masqaţ |
| OM-MU | Musandam |
| OM-ZU | Z̧ufār |
Regions (5)
| Code | Name |
|---|---|
| OM-BA | Al Bāţinah |
| OM-DA | Ad Dākhilīyah |
| OM-SH | Ash Sharqīyah |
| OM-WU | Al Wusţá |
| OM-ZA | Az̧ 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/countriesvia npm, then usesubdivision.getByCountry('OM')to get all 9 subdivisions.
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