publish: HSE regulators directory v1 (36 entries)
Browse filesJurisdictional HSE regulators with key legislation + Wikidata links
- README.md +73 -3
- croissant.json +41 -0
- data.csv +37 -0
- data.json +582 -0
- data.jsonl +36 -0
README.md
CHANGED
|
@@ -1,3 +1,73 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: cc-by-4.0
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-4.0
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
size_categories:
|
| 6 |
+
- n<1K
|
| 7 |
+
task_categories:
|
| 8 |
+
- text-retrieval
|
| 9 |
+
- tabular-classification
|
| 10 |
+
tags:
|
| 11 |
+
- hse
|
| 12 |
+
- ehs
|
| 13 |
+
- occupational-safety
|
| 14 |
+
- osha
|
| 15 |
+
- hse-regulators
|
| 16 |
+
- compliance
|
| 17 |
+
- jurisdictional
|
| 18 |
+
- regulators-directory
|
| 19 |
+
- reference
|
| 20 |
+
pretty_name: HSE Regulators Directory
|
| 21 |
+
---
|
| 22 |
+
|
| 23 |
+
# HSE Regulators Directory
|
| 24 |
+
|
| 25 |
+
Reference dataset of **36 major occupational safety and health regulators** across **27 jurisdictions** including:
|
| 26 |
+
|
| 27 |
+
- **North America**: OSHA (US), NIOSH (US), MSHA (US), CCOHS (CA)
|
| 28 |
+
- **Europe**: HSE (UK), EU-OSHA, INRS (FR), BAuA (DE), INAIL (IT), INSST (ES), Arbeidstilsynet (NO), Arbetsmiljöverket (SE), FIOH (FI)
|
| 29 |
+
- **GCC**: MoHRE + OSHAD + Dubai Municipality (UAE), MHRSD (SA), MoL (QA), MoL (OM), PAM (KW), LMRA (BH)
|
| 30 |
+
- **Asia-Pacific**: Safe Work Australia, WorkSafe NZ, MHLW (JP), KOSHA (KR), MOM (SG), DGMS (IN)
|
| 31 |
+
- **Africa & LatAm**: DoEL (ZA), MTE (BR), STPS (MX)
|
| 32 |
+
- **International**: ILO, ISO, IOGP, IMO, ICAO
|
| 33 |
+
|
| 34 |
+
Each entry includes:
|
| 35 |
+
|
| 36 |
+
- Country / jurisdiction (with ISO 3166-1 alpha-2 code)
|
| 37 |
+
- Regulator full name, abbreviation, official website
|
| 38 |
+
- Parent agency
|
| 39 |
+
- Key legislation (Acts, Regulations, Codes, Conventions)
|
| 40 |
+
- Scope (national / sector / international)
|
| 41 |
+
- Year established
|
| 42 |
+
- Wikidata Q-ID (where the regulator has its own Wikidata entity)
|
| 43 |
+
|
| 44 |
+
## Usage
|
| 45 |
+
|
| 46 |
+
```python
|
| 47 |
+
from datasets import load_dataset
|
| 48 |
+
ds = load_dataset("SmartQHSE/hse-regulators-directory")
|
| 49 |
+
for row in ds["train"]:
|
| 50 |
+
print(row["abbr"], "—", row["country"], "—", row["regulator"])
|
| 51 |
+
```
|
| 52 |
+
|
| 53 |
+
```bash
|
| 54 |
+
# Filter Wikidata-linked regulators
|
| 55 |
+
curl -s https://huggingface.co/datasets/SmartQHSE/hse-regulators-directory/resolve/main/data.jsonl \
|
| 56 |
+
| jq 'select(.wikidata != null) | {abbr, regulator, wikidata}'
|
| 57 |
+
```
|
| 58 |
+
|
| 59 |
+
## Companion datasets
|
| 60 |
+
|
| 61 |
+
- [SmartQHSE/hse-regulations-changelog](https://huggingface.co/datasets/SmartQHSE/hse-regulations-changelog) — recent regulatory changes by jurisdiction
|
| 62 |
+
- [SmartQHSE/hse-glossary](https://huggingface.co/datasets/SmartQHSE/hse-glossary) — HSE terminology
|
| 63 |
+
- [Collection: SmartQHSE Open HSE Data](https://huggingface.co/collections/SmartQHSE/smartqhse-open-hse-data-69f7597712196f8018c2dab5)
|
| 64 |
+
|
| 65 |
+
## Wikidata cross-references
|
| 66 |
+
|
| 67 |
+
This dataset is part of the SmartQHSE open data programme. Related Q-items: HSE Regulations Changelog [Q139623117](https://www.wikidata.org/wiki/Q139623117), HSE Glossary [Q139623112](https://www.wikidata.org/wiki/Q139623112), ARIA HSE AI assistant [Q139714237](https://www.wikidata.org/wiki/Q139714237).
|
| 68 |
+
|
| 69 |
+
## Citation
|
| 70 |
+
|
| 71 |
+
> SmartQHSE Ltd (2026). HSE Regulators Directory [dataset]. https://huggingface.co/datasets/SmartQHSE/hse-regulators-directory
|
| 72 |
+
|
| 73 |
+
License: CC BY 4.0. Built by [SmartQHSE](https://www.smartqhse.com).
|
croissant.json
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"@context": {
|
| 3 |
+
"@language": "en",
|
| 4 |
+
"@vocab": "https://schema.org/",
|
| 5 |
+
"cr": "http://mlcommons.org/croissant/",
|
| 6 |
+
"sc": "https://schema.org/"
|
| 7 |
+
},
|
| 8 |
+
"@type": "sc:Dataset",
|
| 9 |
+
"name": "SmartQHSE HSE Regulators Directory",
|
| 10 |
+
"description": "Reference dataset of 36 major occupational safety and health regulators across 27 jurisdictions — names, abbreviations, official websites, key legislation, scope, and Wikidata Q-IDs where applicable. Useful for jurisdiction-aware HSE applications, RAG over compliance documentation, and LLM grounding when answering questions like \"who regulates workplace safety in Qatar\".",
|
| 11 |
+
"url": "https://huggingface.co/datasets/SmartQHSE/hse-regulators-directory",
|
| 12 |
+
"sameAs": [
|
| 13 |
+
"https://huggingface.co/datasets/SmartQHSE/hse-regulators-directory",
|
| 14 |
+
"https://www.wikidata.org/wiki/Q139714237"
|
| 15 |
+
],
|
| 16 |
+
"license": "https://creativecommons.org/licenses/by/4.0/",
|
| 17 |
+
"creator": {
|
| 18 |
+
"@type": "Organization",
|
| 19 |
+
"name": "SmartQHSE Ltd",
|
| 20 |
+
"url": "https://www.smartqhse.com"
|
| 21 |
+
},
|
| 22 |
+
"publisher": {
|
| 23 |
+
"@type": "Organization",
|
| 24 |
+
"name": "SmartQHSE Ltd",
|
| 25 |
+
"url": "https://www.smartqhse.com"
|
| 26 |
+
},
|
| 27 |
+
"datePublished": "2026-05-08",
|
| 28 |
+
"version": "1.0",
|
| 29 |
+
"keywords": [
|
| 30 |
+
"HSE",
|
| 31 |
+
"regulators",
|
| 32 |
+
"OSHA",
|
| 33 |
+
"ILO",
|
| 34 |
+
"compliance",
|
| 35 |
+
"jurisdictional",
|
| 36 |
+
"occupational safety"
|
| 37 |
+
],
|
| 38 |
+
"inLanguage": "en",
|
| 39 |
+
"conformsTo": "http://mlcommons.org/croissant/1.0",
|
| 40 |
+
"citeAs": "SmartQHSE Ltd (2026). HSE Regulators Directory [dataset]. https://huggingface.co/datasets/SmartQHSE/hse-regulators-directory"
|
| 41 |
+
}
|
data.csv
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
id,country,iso,regulator,abbr,website,parent_agency,scope,established,wikidata
|
| 2 |
+
us-osha,United States,US,Occupational Safety and Health Administration,OSHA,https://www.osha.gov,U.S. Department of Labor,private-sector occupational safety,1971,Q674547
|
| 3 |
+
us-niosh,United States,US,National Institute for Occupational Safety and Health,NIOSH,https://www.cdc.gov/niosh,Centers for Disease Control and Prevention (CDC),"research, recommendations (NIOSH lifting equation, RELs)",1970,Q1973870
|
| 4 |
+
us-msha,United States,US,Mine Safety and Health Administration,MSHA,https://www.msha.gov,U.S. Department of Labor,mining safety,1978,Q4065432
|
| 5 |
+
ca-ccohs,Canada,CA,Canadian Centre for Occupational Health and Safety,CCOHS,https://www.ccohs.ca,Government of Canada,federal OSH information & research,1978,Q5031540
|
| 6 |
+
uk-hse,United Kingdom,GB,Health and Safety Executive,HSE,https://www.hse.gov.uk,Department for Work and Pensions,GB workplace safety,1974,Q612519
|
| 7 |
+
eu-osha,European Union,EU,European Agency for Safety and Health at Work,EU-OSHA,https://osha.europa.eu,European Union,EU-wide occupational safety coordination,1994,Q1376194
|
| 8 |
+
fr-inrs,France,FR,Institut national de recherche et de sécurité,INRS,https://www.inrs.fr,French Social Security,OSH research & training,1947,Q1665307
|
| 9 |
+
de-baua,Germany,DE,Bundesanstalt für Arbeitsschutz und Arbeitsmedizin,BAuA,https://www.baua.de,Federal Ministry of Labour and Social Affairs,federal OSH research,1996,Q1003040
|
| 10 |
+
it-inail,Italy,IT,Istituto nazionale per l'assicurazione contro gli infortuni sul lavoro,INAIL,https://www.inail.it,Ministry of Labour and Social Policies,workplace insurance + OSH research,1933,Q1657867
|
| 11 |
+
es-insst,Spain,ES,Instituto Nacional de Seguridad y Salud en el Trabajo,INSST,https://www.insst.es,Ministry of Labour and Social Economy,national OSH technical reference,1979,
|
| 12 |
+
no-arbeidstilsynet,Norway,NO,Arbeidstilsynet (Labour Inspection Authority),AT,https://www.arbeidstilsynet.no,Ministry of Labour and Social Inclusion,labour inspection,1893,Q4787569
|
| 13 |
+
se-av,Sweden,SE,Arbetsmiljöverket (Swedish Work Environment Authority),AV,https://www.av.se,Ministry of Employment,labour environment,2001,Q284014
|
| 14 |
+
fi-tt,Finland,FI,Työterveyslaitos (FIOH),FIOH,https://www.ttl.fi,Ministry of Social Affairs and Health,OSH research,1945,
|
| 15 |
+
ae-mohre,United Arab Emirates,AE,Ministry of Human Resources and Emiratisation,MoHRE,https://www.mohre.gov.ae,Federal Government of UAE,federal labour + OHS,1972,
|
| 16 |
+
ae-oshad,United Arab Emirates / Abu Dhabi,AE,Abu Dhabi Department of Health Occupational Safety and Health Center,OSHAD,https://www.oshad.ae,Abu Dhabi Department of Health,Abu Dhabi emirate-level OSH,2010,
|
| 17 |
+
ae-dm,United Arab Emirates / Dubai,AE,"Dubai Municipality Health, Safety and Environment Department",DM HSE,https://www.dm.gov.ae,Dubai Municipality,Dubai emirate-level construction + environmental HSE,1957,Q5306941
|
| 18 |
+
sa-mhrsd,Saudi Arabia,SA,Ministry of Human Resources and Social Development,MHRSD,https://www.hrsd.gov.sa,Government of Saudi Arabia,national labour + OSH,1962,
|
| 19 |
+
qa-moadlsa,Qatar,QA,Ministry of Labour,MOL,https://www.adlsa.gov.qa,Government of Qatar,national labour + OSH,1972,
|
| 20 |
+
qa-kahramaa,Qatar,QA,Qatar General Electricity and Water Corporation (Kahramaa),Kahramaa,https://www.km.qa,Government of Qatar,utilities/HSE technical regulator,2000,Q3498611
|
| 21 |
+
om-momp,Oman,OM,Ministry of Labour,MoL,https://www.mol.gov.om,Government of Oman,national labour + OSH,1972,
|
| 22 |
+
kw-mosal,Kuwait,KW,Public Authority for Manpower,PAM,https://www.paci.gov.kw,Government of Kuwait,national labour + OSH,2013,
|
| 23 |
+
bh-lmra,Bahrain,BH,Labour Market Regulatory Authority,LMRA,https://www.lmra.gov.bh,Government of Bahrain,national labour + OSH,2006,Q26199957
|
| 24 |
+
au-swa,Australia,AU,Safe Work Australia,SWA,https://www.safeworkaustralia.gov.au,Australian Government,federal model WHS,2008,Q7398060
|
| 25 |
+
nz-wsnz,New Zealand,NZ,WorkSafe New Zealand,WorkSafe NZ,https://www.worksafe.govt.nz,New Zealand Government,national workplace safety,2013,Q24878987
|
| 26 |
+
jp-mhlw,Japan,JP,"Ministry of Health, Labour and Welfare",MHLW,https://www.mhlw.go.jp,Government of Japan,national labour + OSH,2001,Q726513
|
| 27 |
+
kr-mole,South Korea,KR,Korea Occupational Safety and Health Agency,KOSHA,https://www.kosha.or.kr,Ministry of Employment and Labor,national OSH,1987,Q15918218
|
| 28 |
+
sg-mom,Singapore,SG,Ministry of Manpower (Workplace Safety and Health Council),MOM/WSHC,https://www.mom.gov.sg,Government of Singapore,national WSH,2008,
|
| 29 |
+
in-dgms,India,IN,Directorate General of Mines Safety / Directorate General Factory Advice Service & Labour Institutes,DGMS / DGFASLI,https://www.dgms.gov.in,Ministry of Labour and Employment,mining + factories OSH,1901,
|
| 30 |
+
za-doel,South Africa,ZA,Department of Employment and Labour (Occupational Health and Safety Branch),DoEL,https://www.labour.gov.za,Government of South Africa,national OSH,1994,
|
| 31 |
+
br-mte,Brazil,BR,Ministério do Trabalho e Emprego (Secretaria de Inspeção do Trabalho),MTE/SIT,https://www.gov.br/trabalho-e-emprego,Government of Brazil,national labour + OSH,1930,Q5736229
|
| 32 |
+
mx-stps,Mexico,MX,Secretaría del Trabajo y Previsión Social,STPS,https://www.gob.mx/stps,Government of Mexico,national labour + OSH,1940,Q3486194
|
| 33 |
+
intl-ilo,International,ZZ,International Labour Organization,ILO,https://www.ilo.org,United Nations,international OSH standards,1919,Q41566
|
| 34 |
+
intl-iso,International,ZZ,International Organization for Standardization,ISO,https://www.iso.org,Independent NGO,international voluntary standards,1947,Q15028
|
| 35 |
+
intl-iogp,International (oil & gas),ZZ,International Association of Oil & Gas Producers,IOGP,https://www.iogp.org,Industry association,upstream oil & gas voluntary HSE,1974,Q3343396
|
| 36 |
+
intl-imo,International (maritime),ZZ,International Maritime Organization,IMO,https://www.imo.org,United Nations,international maritime safety,1948,Q40023
|
| 37 |
+
intl-icao,International (aviation),ZZ,International Civil Aviation Organization,ICAO,https://www.icao.int,United Nations,international aviation safety,1944,Q170481
|
data.json
ADDED
|
@@ -0,0 +1,582 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata": {
|
| 3 |
+
"name": "SmartQHSE HSE Regulators Directory",
|
| 4 |
+
"description": "Reference dataset of 36 major occupational safety and health regulators across 27 jurisdictions — names, abbreviations, official websites, key legislation, scope, and Wikidata Q-IDs where applicable. Useful for jurisdiction-aware HSE applications, RAG over compliance documentation, and LLM grounding when answering questions like \"who regulates workplace safety in Qatar\".",
|
| 5 |
+
"publisher": "SmartQHSE Ltd",
|
| 6 |
+
"license": "CC BY 4.0",
|
| 7 |
+
"cite_as": "SmartQHSE Ltd (2026). HSE Regulators Directory [dataset]. https://huggingface.co/datasets/SmartQHSE/hse-regulators-directory",
|
| 8 |
+
"rows": 36,
|
| 9 |
+
"last_updated": "2026-05-08"
|
| 10 |
+
},
|
| 11 |
+
"data": [
|
| 12 |
+
{
|
| 13 |
+
"id": "us-osha",
|
| 14 |
+
"country": "United States",
|
| 15 |
+
"iso": "US",
|
| 16 |
+
"regulator": "Occupational Safety and Health Administration",
|
| 17 |
+
"abbr": "OSHA",
|
| 18 |
+
"website": "https://www.osha.gov",
|
| 19 |
+
"parent_agency": "U.S. Department of Labor",
|
| 20 |
+
"key_legislation": [
|
| 21 |
+
"Occupational Safety and Health Act of 1970",
|
| 22 |
+
"29 CFR 1904 (Recordkeeping)",
|
| 23 |
+
"29 CFR 1910 (General Industry)",
|
| 24 |
+
"29 CFR 1926 (Construction)"
|
| 25 |
+
],
|
| 26 |
+
"scope": "private-sector occupational safety",
|
| 27 |
+
"established": 1971,
|
| 28 |
+
"wikidata": "Q674547"
|
| 29 |
+
},
|
| 30 |
+
{
|
| 31 |
+
"id": "us-niosh",
|
| 32 |
+
"country": "United States",
|
| 33 |
+
"iso": "US",
|
| 34 |
+
"regulator": "National Institute for Occupational Safety and Health",
|
| 35 |
+
"abbr": "NIOSH",
|
| 36 |
+
"website": "https://www.cdc.gov/niosh",
|
| 37 |
+
"parent_agency": "Centers for Disease Control and Prevention (CDC)",
|
| 38 |
+
"key_legislation": [
|
| 39 |
+
"Occupational Safety and Health Act of 1970"
|
| 40 |
+
],
|
| 41 |
+
"scope": "research, recommendations (NIOSH lifting equation, RELs)",
|
| 42 |
+
"established": 1970,
|
| 43 |
+
"wikidata": "Q1973870"
|
| 44 |
+
},
|
| 45 |
+
{
|
| 46 |
+
"id": "us-msha",
|
| 47 |
+
"country": "United States",
|
| 48 |
+
"iso": "US",
|
| 49 |
+
"regulator": "Mine Safety and Health Administration",
|
| 50 |
+
"abbr": "MSHA",
|
| 51 |
+
"website": "https://www.msha.gov",
|
| 52 |
+
"parent_agency": "U.S. Department of Labor",
|
| 53 |
+
"key_legislation": [
|
| 54 |
+
"Federal Mine Safety and Health Act of 1977"
|
| 55 |
+
],
|
| 56 |
+
"scope": "mining safety",
|
| 57 |
+
"established": 1978,
|
| 58 |
+
"wikidata": "Q4065432"
|
| 59 |
+
},
|
| 60 |
+
{
|
| 61 |
+
"id": "ca-ccohs",
|
| 62 |
+
"country": "Canada",
|
| 63 |
+
"iso": "CA",
|
| 64 |
+
"regulator": "Canadian Centre for Occupational Health and Safety",
|
| 65 |
+
"abbr": "CCOHS",
|
| 66 |
+
"website": "https://www.ccohs.ca",
|
| 67 |
+
"parent_agency": "Government of Canada",
|
| 68 |
+
"key_legislation": [
|
| 69 |
+
"Canadian Centre for Occupational Health and Safety Act"
|
| 70 |
+
],
|
| 71 |
+
"scope": "federal OSH information & research",
|
| 72 |
+
"established": 1978,
|
| 73 |
+
"wikidata": "Q5031540"
|
| 74 |
+
},
|
| 75 |
+
{
|
| 76 |
+
"id": "uk-hse",
|
| 77 |
+
"country": "United Kingdom",
|
| 78 |
+
"iso": "GB",
|
| 79 |
+
"regulator": "Health and Safety Executive",
|
| 80 |
+
"abbr": "HSE",
|
| 81 |
+
"website": "https://www.hse.gov.uk",
|
| 82 |
+
"parent_agency": "Department for Work and Pensions",
|
| 83 |
+
"key_legislation": [
|
| 84 |
+
"Health and Safety at Work etc. Act 1974",
|
| 85 |
+
"Management of Health and Safety at Work Regulations 1999",
|
| 86 |
+
"RIDDOR 2013",
|
| 87 |
+
"COSHH 2002",
|
| 88 |
+
"CDM 2015"
|
| 89 |
+
],
|
| 90 |
+
"scope": "GB workplace safety",
|
| 91 |
+
"established": 1974,
|
| 92 |
+
"wikidata": "Q612519"
|
| 93 |
+
},
|
| 94 |
+
{
|
| 95 |
+
"id": "eu-osha",
|
| 96 |
+
"country": "European Union",
|
| 97 |
+
"iso": "EU",
|
| 98 |
+
"regulator": "European Agency for Safety and Health at Work",
|
| 99 |
+
"abbr": "EU-OSHA",
|
| 100 |
+
"website": "https://osha.europa.eu",
|
| 101 |
+
"parent_agency": "European Union",
|
| 102 |
+
"key_legislation": [
|
| 103 |
+
"Framework Directive 89/391/EEC",
|
| 104 |
+
"Seveso III Directive 2012/18/EU"
|
| 105 |
+
],
|
| 106 |
+
"scope": "EU-wide occupational safety coordination",
|
| 107 |
+
"established": 1994,
|
| 108 |
+
"wikidata": "Q1376194"
|
| 109 |
+
},
|
| 110 |
+
{
|
| 111 |
+
"id": "fr-inrs",
|
| 112 |
+
"country": "France",
|
| 113 |
+
"iso": "FR",
|
| 114 |
+
"regulator": "Institut national de recherche et de sécurité",
|
| 115 |
+
"abbr": "INRS",
|
| 116 |
+
"website": "https://www.inrs.fr",
|
| 117 |
+
"parent_agency": "French Social Security",
|
| 118 |
+
"key_legislation": [
|
| 119 |
+
"Code du travail Livre IV"
|
| 120 |
+
],
|
| 121 |
+
"scope": "OSH research & training",
|
| 122 |
+
"established": 1947,
|
| 123 |
+
"wikidata": "Q1665307"
|
| 124 |
+
},
|
| 125 |
+
{
|
| 126 |
+
"id": "de-baua",
|
| 127 |
+
"country": "Germany",
|
| 128 |
+
"iso": "DE",
|
| 129 |
+
"regulator": "Bundesanstalt für Arbeitsschutz und Arbeitsmedizin",
|
| 130 |
+
"abbr": "BAuA",
|
| 131 |
+
"website": "https://www.baua.de",
|
| 132 |
+
"parent_agency": "Federal Ministry of Labour and Social Affairs",
|
| 133 |
+
"key_legislation": [
|
| 134 |
+
"Arbeitsschutzgesetz (ArbSchG)",
|
| 135 |
+
"Betriebssicherheitsverordnung (BetrSichV)"
|
| 136 |
+
],
|
| 137 |
+
"scope": "federal OSH research",
|
| 138 |
+
"established": 1996,
|
| 139 |
+
"wikidata": "Q1003040"
|
| 140 |
+
},
|
| 141 |
+
{
|
| 142 |
+
"id": "it-inail",
|
| 143 |
+
"country": "Italy",
|
| 144 |
+
"iso": "IT",
|
| 145 |
+
"regulator": "Istituto nazionale per l'assicurazione contro gli infortuni sul lavoro",
|
| 146 |
+
"abbr": "INAIL",
|
| 147 |
+
"website": "https://www.inail.it",
|
| 148 |
+
"parent_agency": "Ministry of Labour and Social Policies",
|
| 149 |
+
"key_legislation": [
|
| 150 |
+
"Decreto Legislativo 81/2008 (Testo Unico)"
|
| 151 |
+
],
|
| 152 |
+
"scope": "workplace insurance + OSH research",
|
| 153 |
+
"established": 1933,
|
| 154 |
+
"wikidata": "Q1657867"
|
| 155 |
+
},
|
| 156 |
+
{
|
| 157 |
+
"id": "es-insst",
|
| 158 |
+
"country": "Spain",
|
| 159 |
+
"iso": "ES",
|
| 160 |
+
"regulator": "Instituto Nacional de Seguridad y Salud en el Trabajo",
|
| 161 |
+
"abbr": "INSST",
|
| 162 |
+
"website": "https://www.insst.es",
|
| 163 |
+
"parent_agency": "Ministry of Labour and Social Economy",
|
| 164 |
+
"key_legislation": [
|
| 165 |
+
"Ley 31/1995 de Prevención de Riesgos Laborales"
|
| 166 |
+
],
|
| 167 |
+
"scope": "national OSH technical reference",
|
| 168 |
+
"established": 1979,
|
| 169 |
+
"wikidata": null
|
| 170 |
+
},
|
| 171 |
+
{
|
| 172 |
+
"id": "no-arbeidstilsynet",
|
| 173 |
+
"country": "Norway",
|
| 174 |
+
"iso": "NO",
|
| 175 |
+
"regulator": "Arbeidstilsynet (Labour Inspection Authority)",
|
| 176 |
+
"abbr": "AT",
|
| 177 |
+
"website": "https://www.arbeidstilsynet.no",
|
| 178 |
+
"parent_agency": "Ministry of Labour and Social Inclusion",
|
| 179 |
+
"key_legislation": [
|
| 180 |
+
"Arbeidsmiljøloven (Working Environment Act 2005)"
|
| 181 |
+
],
|
| 182 |
+
"scope": "labour inspection",
|
| 183 |
+
"established": 1893,
|
| 184 |
+
"wikidata": "Q4787569"
|
| 185 |
+
},
|
| 186 |
+
{
|
| 187 |
+
"id": "se-av",
|
| 188 |
+
"country": "Sweden",
|
| 189 |
+
"iso": "SE",
|
| 190 |
+
"regulator": "Arbetsmiljöverket (Swedish Work Environment Authority)",
|
| 191 |
+
"abbr": "AV",
|
| 192 |
+
"website": "https://www.av.se",
|
| 193 |
+
"parent_agency": "Ministry of Employment",
|
| 194 |
+
"key_legislation": [
|
| 195 |
+
"Arbetsmiljölagen (Work Environment Act 1977)"
|
| 196 |
+
],
|
| 197 |
+
"scope": "labour environment",
|
| 198 |
+
"established": 2001,
|
| 199 |
+
"wikidata": "Q284014"
|
| 200 |
+
},
|
| 201 |
+
{
|
| 202 |
+
"id": "fi-tt",
|
| 203 |
+
"country": "Finland",
|
| 204 |
+
"iso": "FI",
|
| 205 |
+
"regulator": "Työterveyslaitos (FIOH)",
|
| 206 |
+
"abbr": "FIOH",
|
| 207 |
+
"website": "https://www.ttl.fi",
|
| 208 |
+
"parent_agency": "Ministry of Social Affairs and Health",
|
| 209 |
+
"key_legislation": [
|
| 210 |
+
"Occupational Safety and Health Act 738/2002"
|
| 211 |
+
],
|
| 212 |
+
"scope": "OSH research",
|
| 213 |
+
"established": 1945,
|
| 214 |
+
"wikidata": null
|
| 215 |
+
},
|
| 216 |
+
{
|
| 217 |
+
"id": "ae-mohre",
|
| 218 |
+
"country": "United Arab Emirates",
|
| 219 |
+
"iso": "AE",
|
| 220 |
+
"regulator": "Ministry of Human Resources and Emiratisation",
|
| 221 |
+
"abbr": "MoHRE",
|
| 222 |
+
"website": "https://www.mohre.gov.ae",
|
| 223 |
+
"parent_agency": "Federal Government of UAE",
|
| 224 |
+
"key_legislation": [
|
| 225 |
+
"Federal Decree-Law No. 33 of 2021 on Regulation of Labour Relations",
|
| 226 |
+
"Cabinet Resolution 13 of 2009"
|
| 227 |
+
],
|
| 228 |
+
"scope": "federal labour + OHS",
|
| 229 |
+
"established": 1972,
|
| 230 |
+
"wikidata": null
|
| 231 |
+
},
|
| 232 |
+
{
|
| 233 |
+
"id": "ae-oshad",
|
| 234 |
+
"country": "United Arab Emirates / Abu Dhabi",
|
| 235 |
+
"iso": "AE",
|
| 236 |
+
"regulator": "Abu Dhabi Department of Health Occupational Safety and Health Center",
|
| 237 |
+
"abbr": "OSHAD",
|
| 238 |
+
"website": "https://www.oshad.ae",
|
| 239 |
+
"parent_agency": "Abu Dhabi Department of Health",
|
| 240 |
+
"key_legislation": [
|
| 241 |
+
"OSHAD-SF Code of Practice (CoP)",
|
| 242 |
+
"Law No. (29) of 2019"
|
| 243 |
+
],
|
| 244 |
+
"scope": "Abu Dhabi emirate-level OSH",
|
| 245 |
+
"established": 2010,
|
| 246 |
+
"wikidata": null
|
| 247 |
+
},
|
| 248 |
+
{
|
| 249 |
+
"id": "ae-dm",
|
| 250 |
+
"country": "United Arab Emirates / Dubai",
|
| 251 |
+
"iso": "AE",
|
| 252 |
+
"regulator": "Dubai Municipality Health, Safety and Environment Department",
|
| 253 |
+
"abbr": "DM HSE",
|
| 254 |
+
"website": "https://www.dm.gov.ae",
|
| 255 |
+
"parent_agency": "Dubai Municipality",
|
| 256 |
+
"key_legislation": [
|
| 257 |
+
"Dubai HSE Code of Practice",
|
| 258 |
+
"DM Building Code"
|
| 259 |
+
],
|
| 260 |
+
"scope": "Dubai emirate-level construction + environmental HSE",
|
| 261 |
+
"established": 1957,
|
| 262 |
+
"wikidata": "Q5306941"
|
| 263 |
+
},
|
| 264 |
+
{
|
| 265 |
+
"id": "sa-mhrsd",
|
| 266 |
+
"country": "Saudi Arabia",
|
| 267 |
+
"iso": "SA",
|
| 268 |
+
"regulator": "Ministry of Human Resources and Social Development",
|
| 269 |
+
"abbr": "MHRSD",
|
| 270 |
+
"website": "https://www.hrsd.gov.sa",
|
| 271 |
+
"parent_agency": "Government of Saudi Arabia",
|
| 272 |
+
"key_legislation": [
|
| 273 |
+
"Labor Law (Royal Decree M/51 of 1426H)"
|
| 274 |
+
],
|
| 275 |
+
"scope": "national labour + OSH",
|
| 276 |
+
"established": 1962,
|
| 277 |
+
"wikidata": null
|
| 278 |
+
},
|
| 279 |
+
{
|
| 280 |
+
"id": "qa-moadlsa",
|
| 281 |
+
"country": "Qatar",
|
| 282 |
+
"iso": "QA",
|
| 283 |
+
"regulator": "Ministry of Labour",
|
| 284 |
+
"abbr": "MOL",
|
| 285 |
+
"website": "https://www.adlsa.gov.qa",
|
| 286 |
+
"parent_agency": "Government of Qatar",
|
| 287 |
+
"key_legislation": [
|
| 288 |
+
"Labour Law No. 14 of 2004",
|
| 289 |
+
"Ministerial Decision No. 16 of 2007 on Occupational Health"
|
| 290 |
+
],
|
| 291 |
+
"scope": "national labour + OSH",
|
| 292 |
+
"established": 1972,
|
| 293 |
+
"wikidata": null
|
| 294 |
+
},
|
| 295 |
+
{
|
| 296 |
+
"id": "qa-kahramaa",
|
| 297 |
+
"country": "Qatar",
|
| 298 |
+
"iso": "QA",
|
| 299 |
+
"regulator": "Qatar General Electricity and Water Corporation (Kahramaa)",
|
| 300 |
+
"abbr": "Kahramaa",
|
| 301 |
+
"website": "https://www.km.qa",
|
| 302 |
+
"parent_agency": "Government of Qatar",
|
| 303 |
+
"key_legislation": [
|
| 304 |
+
"Kahramaa Safety Requirements"
|
| 305 |
+
],
|
| 306 |
+
"scope": "utilities/HSE technical regulator",
|
| 307 |
+
"established": 2000,
|
| 308 |
+
"wikidata": "Q3498611"
|
| 309 |
+
},
|
| 310 |
+
{
|
| 311 |
+
"id": "om-momp",
|
| 312 |
+
"country": "Oman",
|
| 313 |
+
"iso": "OM",
|
| 314 |
+
"regulator": "Ministry of Labour",
|
| 315 |
+
"abbr": "MoL",
|
| 316 |
+
"website": "https://www.mol.gov.om",
|
| 317 |
+
"parent_agency": "Government of Oman",
|
| 318 |
+
"key_legislation": [
|
| 319 |
+
"Oman Labour Law (Royal Decree 35/2003)",
|
| 320 |
+
"Ministerial Decision 286/2008"
|
| 321 |
+
],
|
| 322 |
+
"scope": "national labour + OSH",
|
| 323 |
+
"established": 1972,
|
| 324 |
+
"wikidata": null
|
| 325 |
+
},
|
| 326 |
+
{
|
| 327 |
+
"id": "kw-mosal",
|
| 328 |
+
"country": "Kuwait",
|
| 329 |
+
"iso": "KW",
|
| 330 |
+
"regulator": "Public Authority for Manpower",
|
| 331 |
+
"abbr": "PAM",
|
| 332 |
+
"website": "https://www.paci.gov.kw",
|
| 333 |
+
"parent_agency": "Government of Kuwait",
|
| 334 |
+
"key_legislation": [
|
| 335 |
+
"Labour Law in the Private Sector No. 6 of 2010"
|
| 336 |
+
],
|
| 337 |
+
"scope": "national labour + OSH",
|
| 338 |
+
"established": 2013,
|
| 339 |
+
"wikidata": null
|
| 340 |
+
},
|
| 341 |
+
{
|
| 342 |
+
"id": "bh-lmra",
|
| 343 |
+
"country": "Bahrain",
|
| 344 |
+
"iso": "BH",
|
| 345 |
+
"regulator": "Labour Market Regulatory Authority",
|
| 346 |
+
"abbr": "LMRA",
|
| 347 |
+
"website": "https://www.lmra.gov.bh",
|
| 348 |
+
"parent_agency": "Government of Bahrain",
|
| 349 |
+
"key_legislation": [
|
| 350 |
+
"Labour Law No. 36 of 2012"
|
| 351 |
+
],
|
| 352 |
+
"scope": "national labour + OSH",
|
| 353 |
+
"established": 2006,
|
| 354 |
+
"wikidata": "Q26199957"
|
| 355 |
+
},
|
| 356 |
+
{
|
| 357 |
+
"id": "au-swa",
|
| 358 |
+
"country": "Australia",
|
| 359 |
+
"iso": "AU",
|
| 360 |
+
"regulator": "Safe Work Australia",
|
| 361 |
+
"abbr": "SWA",
|
| 362 |
+
"website": "https://www.safeworkaustralia.gov.au",
|
| 363 |
+
"parent_agency": "Australian Government",
|
| 364 |
+
"key_legislation": [
|
| 365 |
+
"Model Work Health and Safety (WHS) Act 2011",
|
| 366 |
+
"WHS Regulations 2011"
|
| 367 |
+
],
|
| 368 |
+
"scope": "federal model WHS",
|
| 369 |
+
"established": 2008,
|
| 370 |
+
"wikidata": "Q7398060"
|
| 371 |
+
},
|
| 372 |
+
{
|
| 373 |
+
"id": "nz-wsnz",
|
| 374 |
+
"country": "New Zealand",
|
| 375 |
+
"iso": "NZ",
|
| 376 |
+
"regulator": "WorkSafe New Zealand",
|
| 377 |
+
"abbr": "WorkSafe NZ",
|
| 378 |
+
"website": "https://www.worksafe.govt.nz",
|
| 379 |
+
"parent_agency": "New Zealand Government",
|
| 380 |
+
"key_legislation": [
|
| 381 |
+
"Health and Safety at Work Act 2015"
|
| 382 |
+
],
|
| 383 |
+
"scope": "national workplace safety",
|
| 384 |
+
"established": 2013,
|
| 385 |
+
"wikidata": "Q24878987"
|
| 386 |
+
},
|
| 387 |
+
{
|
| 388 |
+
"id": "jp-mhlw",
|
| 389 |
+
"country": "Japan",
|
| 390 |
+
"iso": "JP",
|
| 391 |
+
"regulator": "Ministry of Health, Labour and Welfare",
|
| 392 |
+
"abbr": "MHLW",
|
| 393 |
+
"website": "https://www.mhlw.go.jp",
|
| 394 |
+
"parent_agency": "Government of Japan",
|
| 395 |
+
"key_legislation": [
|
| 396 |
+
"Industrial Safety and Health Act (1972)"
|
| 397 |
+
],
|
| 398 |
+
"scope": "national labour + OSH",
|
| 399 |
+
"established": 2001,
|
| 400 |
+
"wikidata": "Q726513"
|
| 401 |
+
},
|
| 402 |
+
{
|
| 403 |
+
"id": "kr-mole",
|
| 404 |
+
"country": "South Korea",
|
| 405 |
+
"iso": "KR",
|
| 406 |
+
"regulator": "Korea Occupational Safety and Health Agency",
|
| 407 |
+
"abbr": "KOSHA",
|
| 408 |
+
"website": "https://www.kosha.or.kr",
|
| 409 |
+
"parent_agency": "Ministry of Employment and Labor",
|
| 410 |
+
"key_legislation": [
|
| 411 |
+
"Occupational Safety and Health Act"
|
| 412 |
+
],
|
| 413 |
+
"scope": "national OSH",
|
| 414 |
+
"established": 1987,
|
| 415 |
+
"wikidata": "Q15918218"
|
| 416 |
+
},
|
| 417 |
+
{
|
| 418 |
+
"id": "sg-mom",
|
| 419 |
+
"country": "Singapore",
|
| 420 |
+
"iso": "SG",
|
| 421 |
+
"regulator": "Ministry of Manpower (Workplace Safety and Health Council)",
|
| 422 |
+
"abbr": "MOM/WSHC",
|
| 423 |
+
"website": "https://www.mom.gov.sg",
|
| 424 |
+
"parent_agency": "Government of Singapore",
|
| 425 |
+
"key_legislation": [
|
| 426 |
+
"Workplace Safety and Health Act 2006"
|
| 427 |
+
],
|
| 428 |
+
"scope": "national WSH",
|
| 429 |
+
"established": 2008,
|
| 430 |
+
"wikidata": null
|
| 431 |
+
},
|
| 432 |
+
{
|
| 433 |
+
"id": "in-dgms",
|
| 434 |
+
"country": "India",
|
| 435 |
+
"iso": "IN",
|
| 436 |
+
"regulator": "Directorate General of Mines Safety / Directorate General Factory Advice Service & Labour Institutes",
|
| 437 |
+
"abbr": "DGMS / DGFASLI",
|
| 438 |
+
"website": "https://www.dgms.gov.in",
|
| 439 |
+
"parent_agency": "Ministry of Labour and Employment",
|
| 440 |
+
"key_legislation": [
|
| 441 |
+
"Mines Act 1952",
|
| 442 |
+
"Factories Act 1948",
|
| 443 |
+
"Building and Other Construction Workers Act 1996"
|
| 444 |
+
],
|
| 445 |
+
"scope": "mining + factories OSH",
|
| 446 |
+
"established": 1901,
|
| 447 |
+
"wikidata": null
|
| 448 |
+
},
|
| 449 |
+
{
|
| 450 |
+
"id": "za-doel",
|
| 451 |
+
"country": "South Africa",
|
| 452 |
+
"iso": "ZA",
|
| 453 |
+
"regulator": "Department of Employment and Labour (Occupational Health and Safety Branch)",
|
| 454 |
+
"abbr": "DoEL",
|
| 455 |
+
"website": "https://www.labour.gov.za",
|
| 456 |
+
"parent_agency": "Government of South Africa",
|
| 457 |
+
"key_legislation": [
|
| 458 |
+
"Occupational Health and Safety Act 85 of 1993",
|
| 459 |
+
"Mine Health and Safety Act 29 of 1996"
|
| 460 |
+
],
|
| 461 |
+
"scope": "national OSH",
|
| 462 |
+
"established": 1994,
|
| 463 |
+
"wikidata": null
|
| 464 |
+
},
|
| 465 |
+
{
|
| 466 |
+
"id": "br-mte",
|
| 467 |
+
"country": "Brazil",
|
| 468 |
+
"iso": "BR",
|
| 469 |
+
"regulator": "Ministério do Trabalho e Emprego (Secretaria de Inspeção do Trabalho)",
|
| 470 |
+
"abbr": "MTE/SIT",
|
| 471 |
+
"website": "https://www.gov.br/trabalho-e-emprego",
|
| 472 |
+
"parent_agency": "Government of Brazil",
|
| 473 |
+
"key_legislation": [
|
| 474 |
+
"Consolidação das Leis do Trabalho (CLT) Capítulo V",
|
| 475 |
+
"Normas Regulamentadoras (NR-1 to NR-37)"
|
| 476 |
+
],
|
| 477 |
+
"scope": "national labour + OSH",
|
| 478 |
+
"established": 1930,
|
| 479 |
+
"wikidata": "Q5736229"
|
| 480 |
+
},
|
| 481 |
+
{
|
| 482 |
+
"id": "mx-stps",
|
| 483 |
+
"country": "Mexico",
|
| 484 |
+
"iso": "MX",
|
| 485 |
+
"regulator": "Secretaría del Trabajo y Previsión Social",
|
| 486 |
+
"abbr": "STPS",
|
| 487 |
+
"website": "https://www.gob.mx/stps",
|
| 488 |
+
"parent_agency": "Government of Mexico",
|
| 489 |
+
"key_legislation": [
|
| 490 |
+
"Ley Federal del Trabajo",
|
| 491 |
+
"NOM-001 to NOM-036 (Normas Oficiales Mexicanas en Seguridad y Salud)"
|
| 492 |
+
],
|
| 493 |
+
"scope": "national labour + OSH",
|
| 494 |
+
"established": 1940,
|
| 495 |
+
"wikidata": "Q3486194"
|
| 496 |
+
},
|
| 497 |
+
{
|
| 498 |
+
"id": "intl-ilo",
|
| 499 |
+
"country": "International",
|
| 500 |
+
"iso": "ZZ",
|
| 501 |
+
"regulator": "International Labour Organization",
|
| 502 |
+
"abbr": "ILO",
|
| 503 |
+
"website": "https://www.ilo.org",
|
| 504 |
+
"parent_agency": "United Nations",
|
| 505 |
+
"key_legislation": [
|
| 506 |
+
"ILO Convention C155 (Occupational Safety and Health, 1981)",
|
| 507 |
+
"ILO Convention C161 (Occupational Health Services, 1985)",
|
| 508 |
+
"ILO Convention C187 (Promotional Framework, 2006)"
|
| 509 |
+
],
|
| 510 |
+
"scope": "international OSH standards",
|
| 511 |
+
"established": 1919,
|
| 512 |
+
"wikidata": "Q41566"
|
| 513 |
+
},
|
| 514 |
+
{
|
| 515 |
+
"id": "intl-iso",
|
| 516 |
+
"country": "International",
|
| 517 |
+
"iso": "ZZ",
|
| 518 |
+
"regulator": "International Organization for Standardization",
|
| 519 |
+
"abbr": "ISO",
|
| 520 |
+
"website": "https://www.iso.org",
|
| 521 |
+
"parent_agency": "Independent NGO",
|
| 522 |
+
"key_legislation": [
|
| 523 |
+
"ISO 45001:2018 (OH&S management)",
|
| 524 |
+
"ISO 14001 (Environmental management)",
|
| 525 |
+
"ISO 31000 (Risk management)"
|
| 526 |
+
],
|
| 527 |
+
"scope": "international voluntary standards",
|
| 528 |
+
"established": 1947,
|
| 529 |
+
"wikidata": "Q15028"
|
| 530 |
+
},
|
| 531 |
+
{
|
| 532 |
+
"id": "intl-iogp",
|
| 533 |
+
"country": "International (oil & gas)",
|
| 534 |
+
"iso": "ZZ",
|
| 535 |
+
"regulator": "International Association of Oil & Gas Producers",
|
| 536 |
+
"abbr": "IOGP",
|
| 537 |
+
"website": "https://www.iogp.org",
|
| 538 |
+
"parent_agency": "Industry association",
|
| 539 |
+
"key_legislation": [
|
| 540 |
+
"IOGP Report 2023s (Safety Performance Indicators)",
|
| 541 |
+
"IOGP Report 510 (OMS Framework)",
|
| 542 |
+
"IOGP Report 432 (Major Accident Hazards)"
|
| 543 |
+
],
|
| 544 |
+
"scope": "upstream oil & gas voluntary HSE",
|
| 545 |
+
"established": 1974,
|
| 546 |
+
"wikidata": "Q3343396"
|
| 547 |
+
},
|
| 548 |
+
{
|
| 549 |
+
"id": "intl-imo",
|
| 550 |
+
"country": "International (maritime)",
|
| 551 |
+
"iso": "ZZ",
|
| 552 |
+
"regulator": "International Maritime Organization",
|
| 553 |
+
"abbr": "IMO",
|
| 554 |
+
"website": "https://www.imo.org",
|
| 555 |
+
"parent_agency": "United Nations",
|
| 556 |
+
"key_legislation": [
|
| 557 |
+
"SOLAS",
|
| 558 |
+
"MARPOL",
|
| 559 |
+
"ISM Code"
|
| 560 |
+
],
|
| 561 |
+
"scope": "international maritime safety",
|
| 562 |
+
"established": 1948,
|
| 563 |
+
"wikidata": "Q40023"
|
| 564 |
+
},
|
| 565 |
+
{
|
| 566 |
+
"id": "intl-icao",
|
| 567 |
+
"country": "International (aviation)",
|
| 568 |
+
"iso": "ZZ",
|
| 569 |
+
"regulator": "International Civil Aviation Organization",
|
| 570 |
+
"abbr": "ICAO",
|
| 571 |
+
"website": "https://www.icao.int",
|
| 572 |
+
"parent_agency": "United Nations",
|
| 573 |
+
"key_legislation": [
|
| 574 |
+
"Chicago Convention",
|
| 575 |
+
"ICAO Annex 19 Safety Management"
|
| 576 |
+
],
|
| 577 |
+
"scope": "international aviation safety",
|
| 578 |
+
"established": 1944,
|
| 579 |
+
"wikidata": "Q170481"
|
| 580 |
+
}
|
| 581 |
+
]
|
| 582 |
+
}
|
data.jsonl
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{"id":"us-osha","country":"United States","iso":"US","regulator":"Occupational Safety and Health Administration","abbr":"OSHA","website":"https://www.osha.gov","parent_agency":"U.S. Department of Labor","key_legislation":["Occupational Safety and Health Act of 1970","29 CFR 1904 (Recordkeeping)","29 CFR 1910 (General Industry)","29 CFR 1926 (Construction)"],"scope":"private-sector occupational safety","established":1971,"wikidata":"Q674547"}
|
| 2 |
+
{"id":"us-niosh","country":"United States","iso":"US","regulator":"National Institute for Occupational Safety and Health","abbr":"NIOSH","website":"https://www.cdc.gov/niosh","parent_agency":"Centers for Disease Control and Prevention (CDC)","key_legislation":["Occupational Safety and Health Act of 1970"],"scope":"research, recommendations (NIOSH lifting equation, RELs)","established":1970,"wikidata":"Q1973870"}
|
| 3 |
+
{"id":"us-msha","country":"United States","iso":"US","regulator":"Mine Safety and Health Administration","abbr":"MSHA","website":"https://www.msha.gov","parent_agency":"U.S. Department of Labor","key_legislation":["Federal Mine Safety and Health Act of 1977"],"scope":"mining safety","established":1978,"wikidata":"Q4065432"}
|
| 4 |
+
{"id":"ca-ccohs","country":"Canada","iso":"CA","regulator":"Canadian Centre for Occupational Health and Safety","abbr":"CCOHS","website":"https://www.ccohs.ca","parent_agency":"Government of Canada","key_legislation":["Canadian Centre for Occupational Health and Safety Act"],"scope":"federal OSH information & research","established":1978,"wikidata":"Q5031540"}
|
| 5 |
+
{"id":"uk-hse","country":"United Kingdom","iso":"GB","regulator":"Health and Safety Executive","abbr":"HSE","website":"https://www.hse.gov.uk","parent_agency":"Department for Work and Pensions","key_legislation":["Health and Safety at Work etc. Act 1974","Management of Health and Safety at Work Regulations 1999","RIDDOR 2013","COSHH 2002","CDM 2015"],"scope":"GB workplace safety","established":1974,"wikidata":"Q612519"}
|
| 6 |
+
{"id":"eu-osha","country":"European Union","iso":"EU","regulator":"European Agency for Safety and Health at Work","abbr":"EU-OSHA","website":"https://osha.europa.eu","parent_agency":"European Union","key_legislation":["Framework Directive 89/391/EEC","Seveso III Directive 2012/18/EU"],"scope":"EU-wide occupational safety coordination","established":1994,"wikidata":"Q1376194"}
|
| 7 |
+
{"id":"fr-inrs","country":"France","iso":"FR","regulator":"Institut national de recherche et de sécurité","abbr":"INRS","website":"https://www.inrs.fr","parent_agency":"French Social Security","key_legislation":["Code du travail Livre IV"],"scope":"OSH research & training","established":1947,"wikidata":"Q1665307"}
|
| 8 |
+
{"id":"de-baua","country":"Germany","iso":"DE","regulator":"Bundesanstalt für Arbeitsschutz und Arbeitsmedizin","abbr":"BAuA","website":"https://www.baua.de","parent_agency":"Federal Ministry of Labour and Social Affairs","key_legislation":["Arbeitsschutzgesetz (ArbSchG)","Betriebssicherheitsverordnung (BetrSichV)"],"scope":"federal OSH research","established":1996,"wikidata":"Q1003040"}
|
| 9 |
+
{"id":"it-inail","country":"Italy","iso":"IT","regulator":"Istituto nazionale per l'assicurazione contro gli infortuni sul lavoro","abbr":"INAIL","website":"https://www.inail.it","parent_agency":"Ministry of Labour and Social Policies","key_legislation":["Decreto Legislativo 81/2008 (Testo Unico)"],"scope":"workplace insurance + OSH research","established":1933,"wikidata":"Q1657867"}
|
| 10 |
+
{"id":"es-insst","country":"Spain","iso":"ES","regulator":"Instituto Nacional de Seguridad y Salud en el Trabajo","abbr":"INSST","website":"https://www.insst.es","parent_agency":"Ministry of Labour and Social Economy","key_legislation":["Ley 31/1995 de Prevención de Riesgos Laborales"],"scope":"national OSH technical reference","established":1979,"wikidata":null}
|
| 11 |
+
{"id":"no-arbeidstilsynet","country":"Norway","iso":"NO","regulator":"Arbeidstilsynet (Labour Inspection Authority)","abbr":"AT","website":"https://www.arbeidstilsynet.no","parent_agency":"Ministry of Labour and Social Inclusion","key_legislation":["Arbeidsmiljøloven (Working Environment Act 2005)"],"scope":"labour inspection","established":1893,"wikidata":"Q4787569"}
|
| 12 |
+
{"id":"se-av","country":"Sweden","iso":"SE","regulator":"Arbetsmiljöverket (Swedish Work Environment Authority)","abbr":"AV","website":"https://www.av.se","parent_agency":"Ministry of Employment","key_legislation":["Arbetsmiljölagen (Work Environment Act 1977)"],"scope":"labour environment","established":2001,"wikidata":"Q284014"}
|
| 13 |
+
{"id":"fi-tt","country":"Finland","iso":"FI","regulator":"Työterveyslaitos (FIOH)","abbr":"FIOH","website":"https://www.ttl.fi","parent_agency":"Ministry of Social Affairs and Health","key_legislation":["Occupational Safety and Health Act 738/2002"],"scope":"OSH research","established":1945,"wikidata":null}
|
| 14 |
+
{"id":"ae-mohre","country":"United Arab Emirates","iso":"AE","regulator":"Ministry of Human Resources and Emiratisation","abbr":"MoHRE","website":"https://www.mohre.gov.ae","parent_agency":"Federal Government of UAE","key_legislation":["Federal Decree-Law No. 33 of 2021 on Regulation of Labour Relations","Cabinet Resolution 13 of 2009"],"scope":"federal labour + OHS","established":1972,"wikidata":null}
|
| 15 |
+
{"id":"ae-oshad","country":"United Arab Emirates / Abu Dhabi","iso":"AE","regulator":"Abu Dhabi Department of Health Occupational Safety and Health Center","abbr":"OSHAD","website":"https://www.oshad.ae","parent_agency":"Abu Dhabi Department of Health","key_legislation":["OSHAD-SF Code of Practice (CoP)","Law No. (29) of 2019"],"scope":"Abu Dhabi emirate-level OSH","established":2010,"wikidata":null}
|
| 16 |
+
{"id":"ae-dm","country":"United Arab Emirates / Dubai","iso":"AE","regulator":"Dubai Municipality Health, Safety and Environment Department","abbr":"DM HSE","website":"https://www.dm.gov.ae","parent_agency":"Dubai Municipality","key_legislation":["Dubai HSE Code of Practice","DM Building Code"],"scope":"Dubai emirate-level construction + environmental HSE","established":1957,"wikidata":"Q5306941"}
|
| 17 |
+
{"id":"sa-mhrsd","country":"Saudi Arabia","iso":"SA","regulator":"Ministry of Human Resources and Social Development","abbr":"MHRSD","website":"https://www.hrsd.gov.sa","parent_agency":"Government of Saudi Arabia","key_legislation":["Labor Law (Royal Decree M/51 of 1426H)"],"scope":"national labour + OSH","established":1962,"wikidata":null}
|
| 18 |
+
{"id":"qa-moadlsa","country":"Qatar","iso":"QA","regulator":"Ministry of Labour","abbr":"MOL","website":"https://www.adlsa.gov.qa","parent_agency":"Government of Qatar","key_legislation":["Labour Law No. 14 of 2004","Ministerial Decision No. 16 of 2007 on Occupational Health"],"scope":"national labour + OSH","established":1972,"wikidata":null}
|
| 19 |
+
{"id":"qa-kahramaa","country":"Qatar","iso":"QA","regulator":"Qatar General Electricity and Water Corporation (Kahramaa)","abbr":"Kahramaa","website":"https://www.km.qa","parent_agency":"Government of Qatar","key_legislation":["Kahramaa Safety Requirements"],"scope":"utilities/HSE technical regulator","established":2000,"wikidata":"Q3498611"}
|
| 20 |
+
{"id":"om-momp","country":"Oman","iso":"OM","regulator":"Ministry of Labour","abbr":"MoL","website":"https://www.mol.gov.om","parent_agency":"Government of Oman","key_legislation":["Oman Labour Law (Royal Decree 35/2003)","Ministerial Decision 286/2008"],"scope":"national labour + OSH","established":1972,"wikidata":null}
|
| 21 |
+
{"id":"kw-mosal","country":"Kuwait","iso":"KW","regulator":"Public Authority for Manpower","abbr":"PAM","website":"https://www.paci.gov.kw","parent_agency":"Government of Kuwait","key_legislation":["Labour Law in the Private Sector No. 6 of 2010"],"scope":"national labour + OSH","established":2013,"wikidata":null}
|
| 22 |
+
{"id":"bh-lmra","country":"Bahrain","iso":"BH","regulator":"Labour Market Regulatory Authority","abbr":"LMRA","website":"https://www.lmra.gov.bh","parent_agency":"Government of Bahrain","key_legislation":["Labour Law No. 36 of 2012"],"scope":"national labour + OSH","established":2006,"wikidata":"Q26199957"}
|
| 23 |
+
{"id":"au-swa","country":"Australia","iso":"AU","regulator":"Safe Work Australia","abbr":"SWA","website":"https://www.safeworkaustralia.gov.au","parent_agency":"Australian Government","key_legislation":["Model Work Health and Safety (WHS) Act 2011","WHS Regulations 2011"],"scope":"federal model WHS","established":2008,"wikidata":"Q7398060"}
|
| 24 |
+
{"id":"nz-wsnz","country":"New Zealand","iso":"NZ","regulator":"WorkSafe New Zealand","abbr":"WorkSafe NZ","website":"https://www.worksafe.govt.nz","parent_agency":"New Zealand Government","key_legislation":["Health and Safety at Work Act 2015"],"scope":"national workplace safety","established":2013,"wikidata":"Q24878987"}
|
| 25 |
+
{"id":"jp-mhlw","country":"Japan","iso":"JP","regulator":"Ministry of Health, Labour and Welfare","abbr":"MHLW","website":"https://www.mhlw.go.jp","parent_agency":"Government of Japan","key_legislation":["Industrial Safety and Health Act (1972)"],"scope":"national labour + OSH","established":2001,"wikidata":"Q726513"}
|
| 26 |
+
{"id":"kr-mole","country":"South Korea","iso":"KR","regulator":"Korea Occupational Safety and Health Agency","abbr":"KOSHA","website":"https://www.kosha.or.kr","parent_agency":"Ministry of Employment and Labor","key_legislation":["Occupational Safety and Health Act"],"scope":"national OSH","established":1987,"wikidata":"Q15918218"}
|
| 27 |
+
{"id":"sg-mom","country":"Singapore","iso":"SG","regulator":"Ministry of Manpower (Workplace Safety and Health Council)","abbr":"MOM/WSHC","website":"https://www.mom.gov.sg","parent_agency":"Government of Singapore","key_legislation":["Workplace Safety and Health Act 2006"],"scope":"national WSH","established":2008,"wikidata":null}
|
| 28 |
+
{"id":"in-dgms","country":"India","iso":"IN","regulator":"Directorate General of Mines Safety / Directorate General Factory Advice Service & Labour Institutes","abbr":"DGMS / DGFASLI","website":"https://www.dgms.gov.in","parent_agency":"Ministry of Labour and Employment","key_legislation":["Mines Act 1952","Factories Act 1948","Building and Other Construction Workers Act 1996"],"scope":"mining + factories OSH","established":1901,"wikidata":null}
|
| 29 |
+
{"id":"za-doel","country":"South Africa","iso":"ZA","regulator":"Department of Employment and Labour (Occupational Health and Safety Branch)","abbr":"DoEL","website":"https://www.labour.gov.za","parent_agency":"Government of South Africa","key_legislation":["Occupational Health and Safety Act 85 of 1993","Mine Health and Safety Act 29 of 1996"],"scope":"national OSH","established":1994,"wikidata":null}
|
| 30 |
+
{"id":"br-mte","country":"Brazil","iso":"BR","regulator":"Ministério do Trabalho e Emprego (Secretaria de Inspeção do Trabalho)","abbr":"MTE/SIT","website":"https://www.gov.br/trabalho-e-emprego","parent_agency":"Government of Brazil","key_legislation":["Consolidação das Leis do Trabalho (CLT) Capítulo V","Normas Regulamentadoras (NR-1 to NR-37)"],"scope":"national labour + OSH","established":1930,"wikidata":"Q5736229"}
|
| 31 |
+
{"id":"mx-stps","country":"Mexico","iso":"MX","regulator":"Secretaría del Trabajo y Previsión Social","abbr":"STPS","website":"https://www.gob.mx/stps","parent_agency":"Government of Mexico","key_legislation":["Ley Federal del Trabajo","NOM-001 to NOM-036 (Normas Oficiales Mexicanas en Seguridad y Salud)"],"scope":"national labour + OSH","established":1940,"wikidata":"Q3486194"}
|
| 32 |
+
{"id":"intl-ilo","country":"International","iso":"ZZ","regulator":"International Labour Organization","abbr":"ILO","website":"https://www.ilo.org","parent_agency":"United Nations","key_legislation":["ILO Convention C155 (Occupational Safety and Health, 1981)","ILO Convention C161 (Occupational Health Services, 1985)","ILO Convention C187 (Promotional Framework, 2006)"],"scope":"international OSH standards","established":1919,"wikidata":"Q41566"}
|
| 33 |
+
{"id":"intl-iso","country":"International","iso":"ZZ","regulator":"International Organization for Standardization","abbr":"ISO","website":"https://www.iso.org","parent_agency":"Independent NGO","key_legislation":["ISO 45001:2018 (OH&S management)","ISO 14001 (Environmental management)","ISO 31000 (Risk management)"],"scope":"international voluntary standards","established":1947,"wikidata":"Q15028"}
|
| 34 |
+
{"id":"intl-iogp","country":"International (oil & gas)","iso":"ZZ","regulator":"International Association of Oil & Gas Producers","abbr":"IOGP","website":"https://www.iogp.org","parent_agency":"Industry association","key_legislation":["IOGP Report 2023s (Safety Performance Indicators)","IOGP Report 510 (OMS Framework)","IOGP Report 432 (Major Accident Hazards)"],"scope":"upstream oil & gas voluntary HSE","established":1974,"wikidata":"Q3343396"}
|
| 35 |
+
{"id":"intl-imo","country":"International (maritime)","iso":"ZZ","regulator":"International Maritime Organization","abbr":"IMO","website":"https://www.imo.org","parent_agency":"United Nations","key_legislation":["SOLAS","MARPOL","ISM Code"],"scope":"international maritime safety","established":1948,"wikidata":"Q40023"}
|
| 36 |
+
{"id":"intl-icao","country":"International (aviation)","iso":"ZZ","regulator":"International Civil Aviation Organization","abbr":"ICAO","website":"https://www.icao.int","parent_agency":"United Nations","key_legislation":["Chicago Convention","ICAO Annex 19 Safety Management"],"scope":"international aviation safety","established":1944,"wikidata":"Q170481"}
|