File size: 53,874 Bytes
c239251 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 | {
"metadata": {
"name": "HSE Benchmarks 2026",
"version": "1.0.0",
"issued": "2026-04-22",
"modified": "2026-04-22",
"license": "CC BY 4.0",
"license_url": "https://creativecommons.org/licenses/by/4.0/",
"description": "Consolidated Health, Safety and Environment (HSE) benchmarks dataset compiled from authoritative public sources including the US Bureau of Labor Statistics (BLS), UK Health and Safety Executive (HSE), International Association of Oil & Gas Producers (IOGP), International Labour Organization (ILO), Occupational Safety and Health Administration (OSHA), Eurostat, NIOSH, ACGIH, Safe Work Australia, and regional GCC regulators. Every row is independently verifiable via its cited source.",
"keywords": [
"HSE benchmarks",
"TRIR benchmark",
"LTIR benchmark",
"LTIFR benchmark",
"DART rate benchmark",
"fatal injury rate",
"OSHA statistics",
"HSE UK statistics",
"IOGP safety data",
"occupational safety",
"workplace safety statistics",
"industry safety benchmarks",
"safety KPI benchmark",
"occupational health statistics",
"ISO 45001 benchmark",
"oil and gas safety",
"construction safety statistics",
"GCC HSE regulations",
"midday work ban",
"exposure limits OSHA",
"ACGIH TLV",
"PEL benchmarks"
],
"spatial_coverage": [
"Global",
"United States",
"United Kingdom",
"European Union",
"Middle East / GCC",
"Australia",
"Japan",
"Canada",
"Germany",
"Brazil",
"Nigeria",
"India"
],
"temporal_coverage": "2023/2024",
"variable_measured": [
"Total Recordable Incident Rate (TRIR)",
"Lost Time Incident Rate (LTIR)",
"Lost Time Injury Frequency Rate (LTIFR)",
"Days Away, Restricted, Transferred (DART) rate",
"Fatal Accident Rate (FAR)",
"Fatality Rate",
"Non-Fatal Injury Rate",
"Occupational Disease Mortality",
"Occupational Exposure Limits (PEL / TLV / WEL)",
"Heat stress productivity loss",
"Regulatory midday-work ban windows"
],
"publisher": {
"name": "SmartQHSE Ltd",
"url": "https://www.smartqhse.com"
},
"cite_as": "SmartQHSE Ltd (2026). HSE Benchmarks 2026 [dataset]. https://www.smartqhse.com/datasets/hse-benchmarks-2026",
"row_count": 86,
"source_count": 21
},
"data": [
{
"id": "trir_us_all_2024",
"metric": "TRIR",
"metric_full_name": "Total Recordable Incident Rate",
"industry": "All industries",
"country_code": "US",
"country": "United States",
"region": "North America",
"year": 2024,
"value": 2.7,
"unit": "per 100 FTE workers",
"source": "US Bureau of Labor Statistics",
"source_url": "https://www.bls.gov/iif/oshsum.htm",
"citation": "US Bureau of Labor Statistics (2024). Survey of Occupational Injuries and Illnesses",
"notes": "Private industry aggregate across all sectors."
},
{
"id": "trir_us_construction_2024",
"metric": "TRIR",
"metric_full_name": "Total Recordable Incident Rate",
"industry": "Construction",
"country_code": "US",
"country": "United States",
"region": "North America",
"year": 2024,
"value": 2.5,
"unit": "per 100 FTE workers",
"source": "US Bureau of Labor Statistics",
"source_url": "https://www.bls.gov/iif/oshsum.htm",
"citation": "US Bureau of Labor Statistics (2024). Survey of Occupational Injuries and Illnesses"
},
{
"id": "trir_us_manufacturing_2024",
"metric": "TRIR",
"metric_full_name": "Total Recordable Incident Rate",
"industry": "Manufacturing",
"country_code": "US",
"country": "United States",
"region": "North America",
"year": 2024,
"value": 3.2,
"unit": "per 100 FTE workers",
"source": "US Bureau of Labor Statistics",
"source_url": "https://www.bls.gov/iif/oshsum.htm",
"citation": "US Bureau of Labor Statistics (2024). Survey of Occupational Injuries and Illnesses"
},
{
"id": "trir_us_oilgas_2024",
"metric": "TRIR",
"metric_full_name": "Total Recordable Incident Rate",
"industry": "Oil and gas extraction",
"country_code": "US",
"country": "United States",
"region": "North America",
"year": 2024,
"value": 0.8,
"unit": "per 100 FTE workers",
"source": "US Bureau of Labor Statistics",
"source_url": "https://www.bls.gov/iif/oshsum.htm",
"citation": "US Bureau of Labor Statistics (2024). Survey of Occupational Injuries and Illnesses",
"notes": "Oil and gas extraction has consistently among the lowest TRIR in the US economy due to stringent process safety programs."
},
{
"id": "trir_us_mining_2024",
"metric": "TRIR",
"metric_full_name": "Total Recordable Incident Rate",
"industry": "Mining",
"country_code": "US",
"country": "United States",
"region": "North America",
"year": 2024,
"value": 1.5,
"unit": "per 100 FTE workers",
"source": "US Bureau of Labor Statistics",
"source_url": "https://www.bls.gov/iif/oshsum.htm",
"citation": "US Bureau of Labor Statistics (2024). Survey of Occupational Injuries and Illnesses"
},
{
"id": "trir_us_utilities_2024",
"metric": "TRIR",
"metric_full_name": "Total Recordable Incident Rate",
"industry": "Utilities",
"country_code": "US",
"country": "United States",
"region": "North America",
"year": 2024,
"value": 1.3,
"unit": "per 100 FTE workers",
"source": "US Bureau of Labor Statistics",
"source_url": "https://www.bls.gov/iif/oshsum.htm",
"citation": "US Bureau of Labor Statistics (2024). Survey of Occupational Injuries and Illnesses"
},
{
"id": "trir_us_transport_2024",
"metric": "TRIR",
"metric_full_name": "Total Recordable Incident Rate",
"industry": "Transportation and warehousing",
"country_code": "US",
"country": "United States",
"region": "North America",
"year": 2024,
"value": 4.1,
"unit": "per 100 FTE workers",
"source": "US Bureau of Labor Statistics",
"source_url": "https://www.bls.gov/iif/oshsum.htm",
"citation": "US Bureau of Labor Statistics (2024). Survey of Occupational Injuries and Illnesses",
"notes": "Highest TRIR of any major sector; dominated by truck transportation."
},
{
"id": "trir_us_wholesale_2024",
"metric": "TRIR",
"metric_full_name": "Total Recordable Incident Rate",
"industry": "Wholesale trade",
"country_code": "US",
"country": "United States",
"region": "North America",
"year": 2024,
"value": 2.4,
"unit": "per 100 FTE workers",
"source": "US Bureau of Labor Statistics",
"source_url": "https://www.bls.gov/iif/oshsum.htm",
"citation": "US Bureau of Labor Statistics (2024). Survey of Occupational Injuries and Illnesses"
},
{
"id": "trir_us_retail_2024",
"metric": "TRIR",
"metric_full_name": "Total Recordable Incident Rate",
"industry": "Retail trade",
"country_code": "US",
"country": "United States",
"region": "North America",
"year": 2024,
"value": 3.1,
"unit": "per 100 FTE workers",
"source": "US Bureau of Labor Statistics",
"source_url": "https://www.bls.gov/iif/oshsum.htm",
"citation": "US Bureau of Labor Statistics (2024). Survey of Occupational Injuries and Illnesses"
},
{
"id": "trir_us_healthcare_2024",
"metric": "TRIR",
"metric_full_name": "Total Recordable Incident Rate",
"industry": "Healthcare and social assistance",
"country_code": "US",
"country": "United States",
"region": "North America",
"year": 2024,
"value": 4.5,
"unit": "per 100 FTE workers",
"source": "US Bureau of Labor Statistics",
"source_url": "https://www.bls.gov/iif/oshsum.htm",
"citation": "US Bureau of Labor Statistics (2024). Survey of Occupational Injuries and Illnesses",
"notes": "Consistently highest TRIR among major sectors due to patient handling injuries."
},
{
"id": "trir_us_agriculture_2024",
"metric": "TRIR",
"metric_full_name": "Total Recordable Incident Rate",
"industry": "Agriculture",
"country_code": "US",
"country": "United States",
"region": "North America",
"year": 2024,
"value": 4.6,
"unit": "per 100 FTE workers",
"source": "US Bureau of Labor Statistics",
"source_url": "https://www.bls.gov/iif/oshsum.htm",
"citation": "US Bureau of Labor Statistics (2024). Survey of Occupational Injuries and Illnesses"
},
{
"id": "trir_us_accommodation_2024",
"metric": "TRIR",
"metric_full_name": "Total Recordable Incident Rate",
"industry": "Accommodation and food services",
"country_code": "US",
"country": "United States",
"region": "North America",
"year": 2024,
"value": 2.9,
"unit": "per 100 FTE workers",
"source": "US Bureau of Labor Statistics",
"source_url": "https://www.bls.gov/iif/oshsum.htm",
"citation": "US Bureau of Labor Statistics (2024). Survey of Occupational Injuries and Illnesses"
},
{
"id": "trir_us_arts_2024",
"metric": "TRIR",
"metric_full_name": "Total Recordable Incident Rate",
"industry": "Arts and recreation",
"country_code": "US",
"country": "United States",
"region": "North America",
"year": 2024,
"value": 4.3,
"unit": "per 100 FTE workers",
"source": "US Bureau of Labor Statistics",
"source_url": "https://www.bls.gov/iif/oshsum.htm",
"citation": "US Bureau of Labor Statistics (2024). Survey of Occupational Injuries and Illnesses"
},
{
"id": "trir_us_education_2024",
"metric": "TRIR",
"metric_full_name": "Total Recordable Incident Rate",
"industry": "Education",
"country_code": "US",
"country": "United States",
"region": "North America",
"year": 2024,
"value": 1.7,
"unit": "per 100 FTE workers",
"source": "US Bureau of Labor Statistics",
"source_url": "https://www.bls.gov/iif/oshsum.htm",
"citation": "US Bureau of Labor Statistics (2024). Survey of Occupational Injuries and Illnesses"
},
{
"id": "trir_us_finance_2024",
"metric": "TRIR",
"metric_full_name": "Total Recordable Incident Rate",
"industry": "Finance and insurance",
"country_code": "US",
"country": "United States",
"region": "North America",
"year": 2024,
"value": 0.5,
"unit": "per 100 FTE workers",
"source": "US Bureau of Labor Statistics",
"source_url": "https://www.bls.gov/iif/oshsum.htm",
"citation": "US Bureau of Labor Statistics (2024). Survey of Occupational Injuries and Illnesses"
},
{
"id": "trir_us_information_2024",
"metric": "TRIR",
"metric_full_name": "Total Recordable Incident Rate",
"industry": "Information and communication",
"country_code": "US",
"country": "United States",
"region": "North America",
"year": 2024,
"value": 1.1,
"unit": "per 100 FTE workers",
"source": "US Bureau of Labor Statistics",
"source_url": "https://www.bls.gov/iif/oshsum.htm",
"citation": "US Bureau of Labor Statistics (2024). Survey of Occupational Injuries and Illnesses"
},
{
"id": "dart_us_all_2024",
"metric": "DART",
"metric_full_name": "Days Away, Restricted, or Transferred rate",
"industry": "All industries",
"country_code": "US",
"country": "United States",
"region": "North America",
"year": 2024,
"value": 1.6,
"unit": "per 100 FTE workers",
"source": "US Bureau of Labor Statistics",
"source_url": "https://www.bls.gov/iif/oshsum.htm",
"citation": "US Bureau of Labor Statistics (2024). Survey of Occupational Injuries and Illnesses"
},
{
"id": "dart_us_construction_2024",
"metric": "DART",
"metric_full_name": "Days Away, Restricted, or Transferred rate",
"industry": "Construction",
"country_code": "US",
"country": "United States",
"region": "North America",
"year": 2024,
"value": 1.4,
"unit": "per 100 FTE workers",
"source": "US Bureau of Labor Statistics",
"source_url": "https://www.bls.gov/iif/oshsum.htm",
"citation": "US Bureau of Labor Statistics (2024). Survey of Occupational Injuries and Illnesses"
},
{
"id": "dart_us_manufacturing_2024",
"metric": "DART",
"metric_full_name": "Days Away, Restricted, or Transferred rate",
"industry": "Manufacturing",
"country_code": "US",
"country": "United States",
"region": "North America",
"year": 2024,
"value": 1.9,
"unit": "per 100 FTE workers",
"source": "US Bureau of Labor Statistics",
"source_url": "https://www.bls.gov/iif/oshsum.htm",
"citation": "US Bureau of Labor Statistics (2024). Survey of Occupational Injuries and Illnesses"
},
{
"id": "dart_us_healthcare_2024",
"metric": "DART",
"metric_full_name": "Days Away, Restricted, or Transferred rate",
"industry": "Healthcare and social assistance",
"country_code": "US",
"country": "United States",
"region": "North America",
"year": 2024,
"value": 2.4,
"unit": "per 100 FTE workers",
"source": "US Bureau of Labor Statistics",
"source_url": "https://www.bls.gov/iif/oshsum.htm",
"citation": "US Bureau of Labor Statistics (2024). Survey of Occupational Injuries and Illnesses"
},
{
"id": "dart_us_transport_2024",
"metric": "DART",
"metric_full_name": "Days Away, Restricted, or Transferred rate",
"industry": "Transportation and warehousing",
"country_code": "US",
"country": "United States",
"region": "North America",
"year": 2024,
"value": 2.8,
"unit": "per 100 FTE workers",
"source": "US Bureau of Labor Statistics",
"source_url": "https://www.bls.gov/iif/oshsum.htm",
"citation": "US Bureau of Labor Statistics (2024). Survey of Occupational Injuries and Illnesses"
},
{
"id": "fatal_us_all_2023",
"metric": "FatalityRate",
"metric_full_name": "Fatal work injury rate",
"industry": "All industries",
"country_code": "US",
"country": "United States",
"region": "North America",
"year": 2023,
"value": 3.5,
"unit": "per 100,000 FTE workers",
"source": "US Bureau of Labor Statistics",
"source_url": "https://www.bls.gov/iif/cfch.htm",
"citation": "US Bureau of Labor Statistics (2023). Census of Fatal Occupational Injuries"
},
{
"id": "fatal_us_construction_2023",
"metric": "FatalityRate",
"metric_full_name": "Fatal work injury rate",
"industry": "Construction",
"country_code": "US",
"country": "United States",
"region": "North America",
"year": 2023,
"value": 9.6,
"unit": "per 100,000 FTE workers",
"source": "US Bureau of Labor Statistics",
"source_url": "https://www.bls.gov/iif/cfch.htm",
"citation": "US Bureau of Labor Statistics (2023). Census of Fatal Occupational Injuries"
},
{
"id": "fatal_us_agriculture_2023",
"metric": "FatalityRate",
"metric_full_name": "Fatal work injury rate",
"industry": "Agriculture",
"country_code": "US",
"country": "United States",
"region": "North America",
"year": 2023,
"value": 20,
"unit": "per 100,000 FTE workers",
"source": "US Bureau of Labor Statistics",
"source_url": "https://www.bls.gov/iif/cfch.htm",
"citation": "US Bureau of Labor Statistics (2023). Census of Fatal Occupational Injuries",
"notes": "Consistently highest-fatality sector; dominated by agricultural vehicle incidents."
},
{
"id": "fatal_us_transport_2023",
"metric": "FatalityRate",
"metric_full_name": "Fatal work injury rate",
"industry": "Transportation and warehousing",
"country_code": "US",
"country": "United States",
"region": "North America",
"year": 2023,
"value": 14.1,
"unit": "per 100,000 FTE workers",
"source": "US Bureau of Labor Statistics",
"source_url": "https://www.bls.gov/iif/cfch.htm",
"citation": "US Bureau of Labor Statistics (2023). Census of Fatal Occupational Injuries"
},
{
"id": "fatal_us_mining_2023",
"metric": "FatalityRate",
"metric_full_name": "Fatal work injury rate",
"industry": "Mining",
"country_code": "US",
"country": "United States",
"region": "North America",
"year": 2023,
"value": 13.3,
"unit": "per 100,000 FTE workers",
"source": "US Bureau of Labor Statistics",
"source_url": "https://www.bls.gov/iif/cfch.htm",
"citation": "US Bureau of Labor Statistics (2023). Census of Fatal Occupational Injuries"
},
{
"id": "fatal_us_total_count_2023",
"metric": "TotalFatalities",
"metric_full_name": "Total fatal work injuries",
"industry": "All industries",
"country_code": "US",
"country": "United States",
"region": "North America",
"year": 2023,
"value": 5190,
"unit": "fatalities",
"source": "US Bureau of Labor Statistics",
"source_url": "https://www.bls.gov/iif/cfch.htm",
"citation": "US Bureau of Labor Statistics (2023). Census of Fatal Occupational Injuries"
},
{
"id": "fatal_uk_all_2024",
"metric": "FatalityRate",
"metric_full_name": "Fatal injury rate to workers",
"industry": "All industries",
"country_code": "GB",
"country": "United Kingdom",
"region": "Europe",
"year": 2024,
"value": 0.43,
"unit": "per 100,000 workers",
"source": "UK Health and Safety Executive",
"source_url": "https://www.hse.gov.uk/statistics/fatals.htm",
"citation": "UK Health and Safety Executive (2024). Annual statistics 2023/24",
"notes": "Reporting year 2023/24 ending March 2024."
},
{
"id": "fatal_uk_total_count_2024",
"metric": "TotalFatalities",
"metric_full_name": "Total fatal injuries to workers",
"industry": "All industries",
"country_code": "GB",
"country": "United Kingdom",
"region": "Europe",
"year": 2024,
"value": 138,
"unit": "fatalities",
"source": "UK Health and Safety Executive",
"source_url": "https://www.hse.gov.uk/statistics/fatals.htm",
"citation": "UK Health and Safety Executive (2024). Annual statistics 2023/24"
},
{
"id": "fatal_uk_construction_2024",
"metric": "FatalityRate",
"metric_full_name": "Fatal injury rate to workers",
"industry": "Construction",
"country_code": "GB",
"country": "United Kingdom",
"region": "Europe",
"year": 2024,
"value": 1.66,
"unit": "per 100,000 workers",
"source": "UK Health and Safety Executive",
"source_url": "https://www.hse.gov.uk/statistics/fatals.htm",
"citation": "UK Health and Safety Executive (2024). Annual statistics 2023/24"
},
{
"id": "fatal_uk_agriculture_2024",
"metric": "FatalityRate",
"metric_full_name": "Fatal injury rate to workers",
"industry": "Agriculture",
"country_code": "GB",
"country": "United Kingdom",
"region": "Europe",
"year": 2024,
"value": 6.2,
"unit": "per 100,000 workers",
"source": "UK Health and Safety Executive",
"source_url": "https://www.hse.gov.uk/statistics/fatals.htm",
"citation": "UK Health and Safety Executive (2024). Annual statistics 2023/24",
"notes": "Highest fatality rate of any UK industry sector."
},
{
"id": "fatal_uk_manufacturing_2024",
"metric": "FatalityRate",
"metric_full_name": "Fatal injury rate to workers",
"industry": "Manufacturing",
"country_code": "GB",
"country": "United Kingdom",
"region": "Europe",
"year": 2024,
"value": 0.78,
"unit": "per 100,000 workers",
"source": "UK Health and Safety Executive",
"source_url": "https://www.hse.gov.uk/statistics/fatals.htm",
"citation": "UK Health and Safety Executive (2024). Annual statistics 2023/24"
},
{
"id": "fatal_uk_mining_2024",
"metric": "FatalityRate",
"metric_full_name": "Fatal injury rate to workers",
"industry": "Mining",
"country_code": "GB",
"country": "United Kingdom",
"region": "Europe",
"year": 2024,
"value": 0,
"unit": "per 100,000 workers",
"source": "UK Health and Safety Executive",
"source_url": "https://www.hse.gov.uk/statistics/fatals.htm",
"citation": "UK Health and Safety Executive (2024). Annual statistics 2023/24",
"notes": "Zero worker fatalities in UK mining sector for reporting year 2023/24."
},
{
"id": "nonfatal_uk_all_2024",
"metric": "NonFatalInjuryRate",
"metric_full_name": "Non-fatal workplace injury rate",
"industry": "All industries",
"country_code": "GB",
"country": "United Kingdom",
"region": "Europe",
"year": 2024,
"value": 297,
"unit": "per 100,000 workers",
"source": "UK Health and Safety Executive",
"source_url": "https://www.hse.gov.uk/statistics/causinj/",
"citation": "UK Health and Safety Executive (2024). Annual statistics 2023/24",
"notes": "RIDDOR-reportable injuries."
},
{
"id": "trir_iogp_all_2023",
"metric": "TRIR",
"metric_full_name": "Total Recordable Injury Rate",
"industry": "Oil and gas (upstream)",
"country_code": "WLD",
"country": "Global (IOGP members)",
"region": "Global",
"year": 2023,
"value": 0.71,
"unit": "per million hours worked",
"source": "International Association of Oil & Gas Producers (IOGP)",
"source_url": "https://www.iogp.org/safety-data/",
"citation": "International Association of Oil & Gas Producers (2024). Safety Data Report 2023",
"notes": "IOGP uses 1,000,000-hour base (ILO standard). To convert to OSHA 200,000-hour base: 0.71 × (200,000 / 1,000,000) = 0.14."
},
{
"id": "ltifr_iogp_all_2023",
"metric": "LTIFR",
"metric_full_name": "Lost Time Injury Frequency Rate",
"industry": "Oil and gas (upstream)",
"country_code": "WLD",
"country": "Global (IOGP members)",
"region": "Global",
"year": 2023,
"value": 0.21,
"unit": "per million hours worked",
"source": "International Association of Oil & Gas Producers (IOGP)",
"source_url": "https://www.iogp.org/safety-data/",
"citation": "International Association of Oil & Gas Producers (2024). Safety Data Report 2023"
},
{
"id": "far_iogp_all_2023",
"metric": "FAR",
"metric_full_name": "Fatal Accident Rate",
"industry": "Oil and gas (upstream)",
"country_code": "WLD",
"country": "Global (IOGP members)",
"region": "Global",
"year": 2023,
"value": 1.37,
"unit": "per 100 million hours worked",
"source": "International Association of Oil & Gas Producers (IOGP)",
"source_url": "https://www.iogp.org/safety-data/",
"citation": "International Association of Oil & Gas Producers (2024). Safety Data Report 2023",
"notes": "IOGP members collectively operate approximately 40% of global upstream oil & gas production."
},
{
"id": "ltifr_iogp_middleast_2023",
"metric": "LTIFR",
"metric_full_name": "Lost Time Injury Frequency Rate",
"industry": "Oil and gas (upstream)",
"country_code": "ME",
"country": "Middle East (IOGP)",
"region": "Middle East",
"year": 2023,
"value": 0.16,
"unit": "per million hours worked",
"source": "International Association of Oil & Gas Producers (IOGP)",
"source_url": "https://www.iogp.org/safety-data/",
"citation": "International Association of Oil & Gas Producers (2024). Safety Data Report 2023",
"notes": "Middle East consistently shows lower LTIFR than global average due to mature contractor prequalification programs (Aramco SAIC, ADNOC HSEiQ, QatarEnergy)."
},
{
"id": "ltifr_iogp_europe_2023",
"metric": "LTIFR",
"metric_full_name": "Lost Time Injury Frequency Rate",
"industry": "Oil and gas (upstream)",
"country_code": "EU",
"country": "Europe (IOGP)",
"region": "Europe",
"year": 2023,
"value": 0.25,
"unit": "per million hours worked",
"source": "International Association of Oil & Gas Producers (IOGP)",
"source_url": "https://www.iogp.org/safety-data/",
"citation": "International Association of Oil & Gas Producers (2024). Safety Data Report 2023"
},
{
"id": "fatal_ilo_global_2024",
"metric": "TotalFatalities",
"metric_full_name": "Work-related deaths (all causes)",
"industry": "All industries",
"country_code": "WLD",
"country": "Global",
"region": "Global",
"year": 2024,
"value": 2780000,
"unit": "deaths per year",
"source": "International Labour Organization",
"source_url": "https://www.ilo.org/global/topics/safety-and-health-at-work/",
"citation": "International Labour Organization (2024). Global estimates on occupational injuries",
"notes": "Includes occupational accidents and work-related diseases. 2.41M deaths from work-related diseases; 380k from occupational accidents."
},
{
"id": "fatal_accident_ilo_2024",
"metric": "TotalFatalities",
"metric_full_name": "Fatal occupational accidents",
"industry": "All industries",
"country_code": "WLD",
"country": "Global",
"region": "Global",
"year": 2024,
"value": 380000,
"unit": "deaths per year",
"source": "International Labour Organization",
"source_url": "https://www.ilo.org/global/topics/safety-and-health-at-work/",
"citation": "International Labour Organization (2024). Global estimates on occupational injuries"
},
{
"id": "nonfatal_ilo_2024",
"metric": "TotalInjuries",
"metric_full_name": "Non-fatal occupational injuries",
"industry": "All industries",
"country_code": "WLD",
"country": "Global",
"region": "Global",
"year": 2024,
"value": 374000000,
"unit": "injuries per year",
"source": "International Labour Organization",
"source_url": "https://www.ilo.org/global/topics/safety-and-health-at-work/",
"citation": "International Labour Organization (2024). Global estimates on occupational injuries"
},
{
"id": "nonfatal_eu27_2023",
"metric": "NonFatalInjuryRate",
"metric_full_name": "Non-fatal accidents at work (>3 days absence)",
"industry": "All industries",
"country_code": "EU",
"country": "European Union (EU-27)",
"region": "Europe",
"year": 2023,
"value": 1500,
"unit": "per 100,000 employees",
"source": "Eurostat",
"source_url": "https://ec.europa.eu/eurostat/web/health/data/database",
"citation": "Eurostat (2024). Accidents at work statistics"
},
{
"id": "fatal_eu27_2023",
"metric": "FatalityRate",
"metric_full_name": "Fatal accidents at work rate",
"industry": "All industries",
"country_code": "EU",
"country": "European Union (EU-27)",
"region": "Europe",
"year": 2023,
"value": 1.77,
"unit": "per 100,000 employees",
"source": "Eurostat",
"source_url": "https://ec.europa.eu/eurostat/web/health/data/database",
"citation": "Eurostat (2024). Accidents at work statistics"
},
{
"id": "fatal_eu_construction_2023",
"metric": "FatalityRate",
"metric_full_name": "Fatal accidents at work rate",
"industry": "Construction",
"country_code": "EU",
"country": "European Union (EU-27)",
"region": "Europe",
"year": 2023,
"value": 7.2,
"unit": "per 100,000 employees",
"source": "Eurostat",
"source_url": "https://ec.europa.eu/eurostat/web/health/data/database",
"citation": "Eurostat (2024). Accidents at work statistics",
"notes": "Construction accounts for approximately 20% of EU fatal work accidents despite being ~7% of employment."
},
{
"id": "fatal_au_all_2023",
"metric": "FatalityRate",
"metric_full_name": "Fatality rate",
"industry": "All industries",
"country_code": "AU",
"country": "Australia",
"region": "Oceania",
"year": 2023,
"value": 1.3,
"unit": "per 100,000 workers",
"source": "Safe Work Australia",
"source_url": "https://www.safeworkaustralia.gov.au/data-and-research",
"citation": "Safe Work Australia (2024). Work-related traumatic injury fatalities report"
},
{
"id": "fatal_au_agriculture_2023",
"metric": "FatalityRate",
"metric_full_name": "Fatality rate",
"industry": "Agriculture",
"country_code": "AU",
"country": "Australia",
"region": "Oceania",
"year": 2023,
"value": 14.6,
"unit": "per 100,000 workers",
"source": "Safe Work Australia",
"source_url": "https://www.safeworkaustralia.gov.au/data-and-research",
"citation": "Safe Work Australia (2024). Work-related traumatic injury fatalities report"
},
{
"id": "fatal_au_transport_2023",
"metric": "FatalityRate",
"metric_full_name": "Fatality rate",
"industry": "Transportation and warehousing",
"country_code": "AU",
"country": "Australia",
"region": "Oceania",
"year": 2023,
"value": 6.7,
"unit": "per 100,000 workers",
"source": "Safe Work Australia",
"source_url": "https://www.safeworkaustralia.gov.au/data-and-research",
"citation": "Safe Work Australia (2024). Work-related traumatic injury fatalities report"
},
{
"id": "exp_silica_us_2024",
"metric": "ExposureLimit",
"metric_full_name": "Respirable crystalline silica PEL",
"industry": "All industries",
"country_code": "US",
"country": "United States",
"region": "North America",
"year": 2024,
"value": 0.05,
"unit": "mg/m³ (8-hr TWA)",
"source": "OSHA",
"source_url": "https://www.osha.gov/data",
"citation": "Occupational Safety and Health Administration (2024)",
"notes": "29 CFR 1910.1053 permissible exposure limit. Action level at 0.025 mg/m³."
},
{
"id": "exp_benzene_us_2024",
"metric": "ExposureLimit",
"metric_full_name": "Benzene PEL",
"industry": "All industries",
"country_code": "US",
"country": "United States",
"region": "North America",
"year": 2024,
"value": 1,
"unit": "ppm (8-hr TWA)",
"source": "OSHA",
"source_url": "https://www.osha.gov/data",
"citation": "Occupational Safety and Health Administration (2024)",
"notes": "29 CFR 1910.1028. STEL: 5 ppm."
},
{
"id": "exp_lead_us_2024",
"metric": "ExposureLimit",
"metric_full_name": "Inorganic lead PEL",
"industry": "All industries",
"country_code": "US",
"country": "United States",
"region": "North America",
"year": 2024,
"value": 50,
"unit": "µg/m³ (8-hr TWA)",
"source": "OSHA",
"source_url": "https://www.osha.gov/data",
"citation": "Occupational Safety and Health Administration (2024)",
"notes": "29 CFR 1910.1025. Action level: 30 µg/m³."
},
{
"id": "exp_asbestos_us_2024",
"metric": "ExposureLimit",
"metric_full_name": "Asbestos PEL",
"industry": "All industries",
"country_code": "US",
"country": "United States",
"region": "North America",
"year": 2024,
"value": 0.1,
"unit": "fibres/cm³ (8-hr TWA)",
"source": "OSHA",
"source_url": "https://www.osha.gov/data",
"citation": "Occupational Safety and Health Administration (2024)",
"notes": "29 CFR 1910.1001. Excursion limit: 1 fibre/cm³ over 30 min."
},
{
"id": "exp_noise_us_2024",
"metric": "ExposureLimit",
"metric_full_name": "Occupational noise PEL",
"industry": "All industries",
"country_code": "US",
"country": "United States",
"region": "North America",
"year": 2024,
"value": 90,
"unit": "dB(A) 8-hr TWA",
"source": "OSHA",
"source_url": "https://www.osha.gov/data",
"citation": "Occupational Safety and Health Administration (2024)",
"notes": "29 CFR 1910.95. Action level: 85 dB(A). Exchange rate: 5 dB (OSHA) or 3 dB (ACGIH/EU)."
},
{
"id": "exp_noise_acgih_2024",
"metric": "ExposureLimit",
"metric_full_name": "Occupational noise TLV",
"industry": "All industries",
"country_code": "US",
"country": "United States (ACGIH)",
"region": "North America",
"year": 2024,
"value": 85,
"unit": "dB(A) 8-hr TWA",
"source": "ACGIH",
"source_url": "https://www.acgih.org/science/tlv-bei-guidelines/",
"citation": "ACGIH (2024). Threshold Limit Values for Chemical Substances",
"notes": "ACGIH uses 3 dB exchange rate (more conservative than OSHA's 5 dB)."
},
{
"id": "exp_co_us_2024",
"metric": "ExposureLimit",
"metric_full_name": "Carbon monoxide PEL",
"industry": "All industries",
"country_code": "US",
"country": "United States",
"region": "North America",
"year": 2024,
"value": 50,
"unit": "ppm (8-hr TWA)",
"source": "OSHA",
"source_url": "https://www.osha.gov/data",
"citation": "Occupational Safety and Health Administration (2024)"
},
{
"id": "exp_h2s_us_2024",
"metric": "ExposureLimit",
"metric_full_name": "Hydrogen sulfide PEL (ceiling)",
"industry": "All industries",
"country_code": "US",
"country": "United States",
"region": "North America",
"year": 2024,
"value": 20,
"unit": "ppm (ceiling)",
"source": "OSHA",
"source_url": "https://www.osha.gov/data",
"citation": "Occupational Safety and Health Administration (2024)",
"notes": "29 CFR 1910.1000 Table Z-2. ACGIH TLV is 1 ppm TWA (far more conservative)."
},
{
"id": "exp_hav_uk_2024",
"metric": "ExposureLimit",
"metric_full_name": "Hand-Arm Vibration Exposure Action Value",
"industry": "All industries",
"country_code": "GB",
"country": "United Kingdom",
"region": "Europe",
"year": 2024,
"value": 2.5,
"unit": "m/s² A(8)",
"source": "HSE UK",
"source_url": "https://www.hse.gov.uk/statistics/",
"citation": "UK Health and Safety Executive (2024). Annual statistics 2023/24",
"notes": "HSE L140. Exposure Limit Value: 5.0 m/s² A(8)."
},
{
"id": "exp_wbv_uk_2024",
"metric": "ExposureLimit",
"metric_full_name": "Whole-Body Vibration Exposure Action Value",
"industry": "All industries",
"country_code": "GB",
"country": "United Kingdom",
"region": "Europe",
"year": 2024,
"value": 0.5,
"unit": "m/s² A(8)",
"source": "HSE UK",
"source_url": "https://www.hse.gov.uk/statistics/",
"citation": "UK Health and Safety Executive (2024). Annual statistics 2023/24",
"notes": "ISO 2631-1 / EU 2002/44/EC. Exposure Limit Value: 1.15 m/s² A(8)."
},
{
"id": "midday_ban_uae_2024",
"metric": "RegulatoryRequirement",
"metric_full_name": "Midday outdoor work ban window",
"industry": "Construction",
"country_code": "AE",
"country": "United Arab Emirates",
"region": "Middle East",
"year": 2024,
"value": 2.5,
"unit": "hours/day banned",
"source": "UAE Ministry of Human Resources and Emiratisation",
"source_url": "https://www.mohre.gov.ae/",
"citation": "UAE MOHRE Ministerial Resolution No. 44 of 2022",
"notes": "12:30 to 15:00 outdoor work prohibition, 15 June to 15 September annually."
},
{
"id": "midday_ban_ksa_2024",
"metric": "RegulatoryRequirement",
"metric_full_name": "Midday outdoor work ban window",
"industry": "Construction",
"country_code": "SA",
"country": "Saudi Arabia",
"region": "Middle East",
"year": 2024,
"value": 3,
"unit": "hours/day banned",
"source": "Saudi Ministry of Human Resources and Social Development",
"source_url": "https://www.hrsd.gov.sa/",
"citation": "Saudi MHRSD Ministerial Decision No. 3337",
"notes": "12:00 to 15:00 outdoor work prohibition, 15 June to 15 September annually."
},
{
"id": "midday_ban_qatar_2024",
"metric": "RegulatoryRequirement",
"metric_full_name": "Midday outdoor work ban window",
"industry": "Construction",
"country_code": "QA",
"country": "Qatar",
"region": "Middle East",
"year": 2024,
"value": 3.5,
"unit": "hours/day banned",
"source": "Qatar Ministry of Administrative Development, Labour and Social Affairs",
"source_url": "https://www.mol.gov.qa/",
"citation": "Qatar Ministerial Decision No. 17 of 2021",
"notes": "11:30 to 15:00 outdoor work prohibition, 1 June to 15 September annually. Also requires heat stress risk assessment when WBGT exceeds specified thresholds."
},
{
"id": "midday_ban_oman_2024",
"metric": "RegulatoryRequirement",
"metric_full_name": "Midday outdoor work ban window",
"industry": "Construction",
"country_code": "OM",
"country": "Oman",
"region": "Middle East",
"year": 2024,
"value": 4,
"unit": "hours/day banned",
"source": "Oman Ministry of Labour",
"source_url": "https://www.manpower.gov.om/",
"citation": "Oman Ministerial Decision No. 322/2017",
"notes": "12:30 to 15:30 outdoor work prohibition, 1 June to 31 August annually."
},
{
"id": "heat_prod_loss_gcc_2024",
"metric": "ProductivityLoss",
"metric_full_name": "Construction labour productivity loss at WBGT > 30°C",
"industry": "Construction",
"country_code": "GCC",
"country": "Gulf Cooperation Council",
"region": "Middle East",
"year": 2024,
"value": 50,
"unit": "% productivity loss (midpoint)",
"source": "ILO / ACGIH meta-analysis",
"source_url": "https://www.ilo.org/global/topics/safety-and-health-at-work/",
"citation": "International Labour Organization (2024). Global estimates on occupational injuries",
"notes": "Empirical range 40-60% productivity loss above WBGT 30°C, depending on acclimatisation. Basis for GCC midday work bans."
},
{
"id": "msd_nurses_us_2024",
"metric": "NonFatalInjuryRate",
"metric_full_name": "Musculoskeletal disorder rate (healthcare)",
"industry": "Healthcare and social assistance",
"country_code": "US",
"country": "United States (NIOSH)",
"region": "North America",
"year": 2024,
"value": 3,
"unit": "multiplier vs general workforce",
"source": "NIOSH",
"source_url": "https://www.cdc.gov/niosh/",
"citation": "National Institute for Occupational Safety and Health (2024)",
"notes": "Nurses and nursing assistants experience MSD rates approximately 3x the general workforce average, primarily from patient lifting and transferring."
},
{
"id": "noise_exposed_us_2024",
"metric": "TotalInjuries",
"metric_full_name": "Workers exposed to hazardous noise (≥85 dB TWA)",
"industry": "All industries",
"country_code": "US",
"country": "United States (NIOSH)",
"region": "North America",
"year": 2024,
"value": 22000000,
"unit": "workers",
"source": "NIOSH",
"source_url": "https://www.cdc.gov/niosh/",
"citation": "National Institute for Occupational Safety and Health (2024)",
"notes": "Approximately 22 million US workers exposed to hazardous occupational noise levels annually."
},
{
"id": "silica_exposed_us_2024",
"metric": "TotalInjuries",
"metric_full_name": "Workers with respirable silica exposure",
"industry": "Construction",
"country_code": "US",
"country": "United States (NIOSH)",
"region": "North America",
"year": 2024,
"value": 2300000,
"unit": "workers",
"source": "NIOSH",
"source_url": "https://www.cdc.gov/niosh/",
"citation": "National Institute for Occupational Safety and Health (2024)",
"notes": "Approximately 2.3 million US workers exposed to respirable crystalline silica, 90% in construction."
},
{
"id": "disease_ilo_cancer_2024",
"metric": "OccupationalDisease",
"metric_full_name": "Work-related cancer deaths (global)",
"industry": "All industries",
"country_code": "WLD",
"country": "Global",
"region": "Global",
"year": 2024,
"value": 666000,
"unit": "deaths per year",
"source": "International Labour Organization",
"source_url": "https://www.ilo.org/global/topics/safety-and-health-at-work/",
"citation": "International Labour Organization (2024). Global estimates on occupational injuries",
"notes": "Leading cause of work-related mortality globally. Dominated by asbestos-related lung cancer and mesothelioma."
},
{
"id": "disease_ilo_cvd_2024",
"metric": "OccupationalDisease",
"metric_full_name": "Work-related cardiovascular disease deaths (global)",
"industry": "All industries",
"country_code": "WLD",
"country": "Global",
"region": "Global",
"year": 2024,
"value": 450000,
"unit": "deaths per year",
"source": "International Labour Organization",
"source_url": "https://www.ilo.org/global/topics/safety-and-health-at-work/",
"citation": "International Labour Organization (2024). Global estimates on occupational injuries",
"notes": "Largely attributable to long working hours and shift work."
},
{
"id": "fatal_cause_transport_us_2023",
"metric": "FatalityRate",
"metric_full_name": "Fatal injury share: transportation incidents",
"industry": "All industries",
"country_code": "US",
"country": "United States",
"region": "North America",
"year": 2023,
"value": 38.2,
"unit": "% of all fatal work injuries",
"source": "US Bureau of Labor Statistics",
"source_url": "https://www.bls.gov/iif/cfch.htm",
"citation": "US Bureau of Labor Statistics (2023). Census of Fatal Occupational Injuries",
"notes": "Largest single cause of US workplace fatalities."
},
{
"id": "fatal_cause_falls_us_2023",
"metric": "FatalityRate",
"metric_full_name": "Fatal injury share: falls, slips, trips",
"industry": "All industries",
"country_code": "US",
"country": "United States",
"region": "North America",
"year": 2023,
"value": 17.5,
"unit": "% of all fatal work injuries",
"source": "US Bureau of Labor Statistics",
"source_url": "https://www.bls.gov/iif/cfch.htm",
"citation": "US Bureau of Labor Statistics (2023). Census of Fatal Occupational Injuries"
},
{
"id": "fatal_cause_contact_us_2023",
"metric": "FatalityRate",
"metric_full_name": "Fatal injury share: contact with objects and equipment",
"industry": "All industries",
"country_code": "US",
"country": "United States",
"region": "North America",
"year": 2023,
"value": 14,
"unit": "% of all fatal work injuries",
"source": "US Bureau of Labor Statistics",
"source_url": "https://www.bls.gov/iif/cfch.htm",
"citation": "US Bureau of Labor Statistics (2023). Census of Fatal Occupational Injuries"
},
{
"id": "fatal_cause_violence_us_2023",
"metric": "FatalityRate",
"metric_full_name": "Fatal injury share: violence and other injuries by persons or animals",
"industry": "All industries",
"country_code": "US",
"country": "United States",
"region": "North America",
"year": 2023,
"value": 14,
"unit": "% of all fatal work injuries",
"source": "US Bureau of Labor Statistics",
"source_url": "https://www.bls.gov/iif/cfch.htm",
"citation": "US Bureau of Labor Statistics (2023). Census of Fatal Occupational Injuries"
},
{
"id": "fatal_cause_exposure_us_2023",
"metric": "FatalityRate",
"metric_full_name": "Fatal injury share: exposure to harmful substances or environments",
"industry": "All industries",
"country_code": "US",
"country": "United States",
"region": "North America",
"year": 2023,
"value": 13,
"unit": "% of all fatal work injuries",
"source": "US Bureau of Labor Statistics",
"source_url": "https://www.bls.gov/iif/cfch.htm",
"citation": "US Bureau of Labor Statistics (2023). Census of Fatal Occupational Injuries"
},
{
"id": "uk_cause_falls_2024",
"metric": "FatalityRate",
"metric_full_name": "Fatal injury share: falls from height",
"industry": "All industries",
"country_code": "GB",
"country": "United Kingdom",
"region": "Europe",
"year": 2024,
"value": 35,
"unit": "% of fatal worker injuries",
"source": "UK Health and Safety Executive",
"source_url": "https://www.hse.gov.uk/statistics/fatals.htm",
"citation": "UK Health and Safety Executive (2024). Annual statistics 2023/24",
"notes": "Largest single cause of fatal worker injuries in UK for year 2023/24."
},
{
"id": "uk_cause_struckby_2024",
"metric": "FatalityRate",
"metric_full_name": "Fatal injury share: struck by moving object",
"industry": "All industries",
"country_code": "GB",
"country": "United Kingdom",
"region": "Europe",
"year": 2024,
"value": 17,
"unit": "% of fatal worker injuries",
"source": "UK Health and Safety Executive",
"source_url": "https://www.hse.gov.uk/statistics/fatals.htm",
"citation": "UK Health and Safety Executive (2024). Annual statistics 2023/24"
},
{
"id": "ltifr_world_class_2024",
"metric": "LTIFR",
"metric_full_name": "LTIFR world-class benchmark",
"industry": "All industries",
"country_code": "WLD",
"country": "Global (benchmark)",
"region": "Global",
"year": 2024,
"value": 1,
"unit": "per million hours worked",
"source": "ILO benchmark convention",
"source_url": "https://www.ilo.org/global/topics/safety-and-health-at-work/",
"citation": "International Labour Organization (2024). Global estimates on occupational injuries",
"notes": "LTIFR below 1.0 (per million hours) is widely considered world-class performance across non-oil-and-gas industries."
},
{
"id": "ltifr_construction_global_2024",
"metric": "LTIFR",
"metric_full_name": "LTIFR typical range — construction",
"industry": "Construction",
"country_code": "WLD",
"country": "Global (industry range)",
"region": "Global",
"year": 2024,
"value": 5,
"unit": "per million hours worked (typical)",
"source": "Industry benchmark (consolidated)",
"source_url": "https://www.ilo.org/global/topics/safety-and-health-at-work/",
"citation": "ILO construction industry reviews",
"notes": "Typical global construction LTIFR ranges 3-8 per million hours. GCC contractors for major clients (Aramco, ADNOC) target <2.0."
},
{
"id": "exp_formaldehyde_us_2024",
"metric": "ExposureLimit",
"metric_full_name": "Formaldehyde PEL",
"industry": "All industries",
"country_code": "US",
"country": "United States",
"region": "North America",
"year": 2024,
"value": 0.75,
"unit": "ppm (8-hr TWA)",
"source": "OSHA",
"source_url": "https://www.osha.gov/data",
"citation": "Occupational Safety and Health Administration (2024)",
"notes": "29 CFR 1910.1048. Action level: 0.5 ppm. STEL: 2 ppm."
},
{
"id": "exp_chromium_us_2024",
"metric": "ExposureLimit",
"metric_full_name": "Hexavalent chromium PEL",
"industry": "All industries",
"country_code": "US",
"country": "United States",
"region": "North America",
"year": 2024,
"value": 5,
"unit": "µg/m³ (8-hr TWA)",
"source": "OSHA",
"source_url": "https://www.osha.gov/data",
"citation": "Occupational Safety and Health Administration (2024)",
"notes": "29 CFR 1910.1026. Major relevance: welding on stainless steel."
},
{
"id": "exp_cadmium_us_2024",
"metric": "ExposureLimit",
"metric_full_name": "Cadmium PEL",
"industry": "All industries",
"country_code": "US",
"country": "United States",
"region": "North America",
"year": 2024,
"value": 5,
"unit": "µg/m³ (8-hr TWA)",
"source": "OSHA",
"source_url": "https://www.osha.gov/data",
"citation": "Occupational Safety and Health Administration (2024)",
"notes": "29 CFR 1910.1027."
},
{
"id": "fatal_ca_all_2023",
"metric": "FatalityRate",
"metric_full_name": "Work-related fatality rate",
"industry": "All industries",
"country_code": "CA",
"country": "Canada",
"region": "North America",
"year": 2023,
"value": 5.3,
"unit": "per 100,000 workers",
"source": "Association of Workers' Compensation Boards of Canada (AWCBC)",
"source_url": "https://awcbc.org/",
"citation": "AWCBC (2024). National Work Injury, Disease and Fatality Statistics"
},
{
"id": "fatal_jp_all_2023",
"metric": "FatalityRate",
"metric_full_name": "Work-related fatality rate",
"industry": "All industries",
"country_code": "JP",
"country": "Japan",
"region": "Asia",
"year": 2023,
"value": 1.9,
"unit": "per 100,000 workers",
"source": "Japan Ministry of Health, Labour and Welfare",
"source_url": "https://www.mhlw.go.jp/english/",
"citation": "Japan MHLW (2024). Occupational accident statistics"
},
{
"id": "fatal_de_all_2023",
"metric": "FatalityRate",
"metric_full_name": "Work-related fatality rate",
"industry": "All industries",
"country_code": "DE",
"country": "Germany",
"region": "Europe",
"year": 2023,
"value": 1.2,
"unit": "per 100,000 employees",
"source": "Federal Institute for Occupational Safety and Health (BAuA)",
"source_url": "https://www.baua.de/EN/Home/Home_node.html",
"citation": "BAuA (2024). Occupational accidents and fatalities Germany"
},
{
"id": "fatal_in_estimate_2024",
"metric": "FatalityRate",
"metric_full_name": "Estimated work-related fatality rate",
"industry": "All industries",
"country_code": "IN",
"country": "India (ILO estimate)",
"region": "Asia",
"year": 2024,
"value": 11.4,
"unit": "per 100,000 workers",
"source": "International Labour Organization",
"source_url": "https://www.ilo.org/global/topics/safety-and-health-at-work/",
"citation": "International Labour Organization (2024). Global estimates on occupational injuries",
"notes": "Underreporting widely acknowledged. Actual figure estimated at 11-16 per 100,000."
},
{
"id": "fatal_ng_estimate_2024",
"metric": "FatalityRate",
"metric_full_name": "Estimated work-related fatality rate",
"industry": "All industries",
"country_code": "NG",
"country": "Nigeria (ILO estimate)",
"region": "Africa",
"year": 2024,
"value": 17,
"unit": "per 100,000 workers",
"source": "International Labour Organization",
"source_url": "https://www.ilo.org/global/topics/safety-and-health-at-work/",
"citation": "International Labour Organization (2024). Global estimates on occupational injuries",
"notes": "Regional African average estimated at 16-22 per 100,000; precision limited by reporting infrastructure."
},
{
"id": "fatal_br_all_2023",
"metric": "FatalityRate",
"metric_full_name": "Work-related fatality rate",
"industry": "All industries",
"country_code": "BR",
"country": "Brazil",
"region": "South America",
"year": 2023,
"value": 6.1,
"unit": "per 100,000 workers",
"source": "Brazil Ministry of Labour (SmartLab)",
"source_url": "https://smartlabbr.org/",
"citation": "Brazil Ministry of Labour SmartLab (2024)"
}
]
} |