@gruncellka/porto-data 0.3.1 → 0.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (88) hide show
  1. package/CHANGELOG.md +85 -1
  2. package/LICENSE +199 -5
  3. package/README.md +52 -39
  4. package/index.d.ts +35 -18
  5. package/index.js +2 -1
  6. package/package.json +23 -9
  7. package/porto_data/formats/envelopes.json +120 -0
  8. package/porto_data/formats/layouts.json +288 -0
  9. package/porto_data/mappings.json +65 -10
  10. package/porto_data/metadata.json +662 -125
  11. package/porto_data/policy/jurisdictions.json +839 -0
  12. package/porto_data/policy/markets.json +75 -0
  13. package/porto_data/policy/restrictions.json +668 -0
  14. package/porto_data/providers/deutschepost/features.json +42 -0
  15. package/porto_data/providers/deutschepost/graph.json +203 -0
  16. package/porto_data/providers/deutschepost/limits.json +17 -0
  17. package/porto_data/providers/deutschepost/marks.json +71 -0
  18. package/porto_data/providers/deutschepost/prices/products.json +239 -0
  19. package/porto_data/providers/deutschepost/prices/services.json +51 -0
  20. package/porto_data/providers/deutschepost/products.json +197 -0
  21. package/porto_data/providers/deutschepost/services.json +88 -0
  22. package/porto_data/providers/deutschepost/weights.json +46 -0
  23. package/porto_data/providers/deutschepost/zones.json +231 -0
  24. package/porto_data/providers/laposte/features.json +42 -0
  25. package/porto_data/providers/laposte/graph.json +234 -0
  26. package/porto_data/providers/laposte/limits.json +17 -0
  27. package/porto_data/providers/laposte/marks.json +39 -0
  28. package/porto_data/providers/laposte/prices/products.json +947 -0
  29. package/porto_data/providers/laposte/prices/services.json +41 -0
  30. package/porto_data/providers/laposte/products.json +276 -0
  31. package/porto_data/providers/laposte/services.json +63 -0
  32. package/porto_data/providers/laposte/weights.json +38 -0
  33. package/porto_data/providers/laposte/zones.json +230 -0
  34. package/porto_data/providers/swisspost/features.json +21 -0
  35. package/porto_data/providers/swisspost/graph.json +212 -0
  36. package/porto_data/providers/swisspost/limits.json +17 -0
  37. package/porto_data/providers/swisspost/marks.json +41 -0
  38. package/porto_data/providers/swisspost/prices/products.json +347 -0
  39. package/porto_data/providers/swisspost/prices/services.json +31 -0
  40. package/porto_data/providers/swisspost/products.json +193 -0
  41. package/porto_data/providers/swisspost/rules.json +25 -0
  42. package/porto_data/providers/swisspost/services.json +40 -0
  43. package/porto_data/providers/swisspost/weights.json +38 -0
  44. package/porto_data/providers/swisspost/zones.json +223 -0
  45. package/porto_data/providers/ukrposhta/features.json +28 -0
  46. package/porto_data/providers/ukrposhta/graph.json +148 -0
  47. package/porto_data/providers/ukrposhta/limits.json +17 -0
  48. package/porto_data/providers/ukrposhta/marks.json +25 -0
  49. package/porto_data/providers/ukrposhta/prices/products.json +123 -0
  50. package/porto_data/providers/ukrposhta/prices/services.json +42 -0
  51. package/porto_data/providers/ukrposhta/products.json +74 -0
  52. package/porto_data/providers/ukrposhta/services.json +40 -0
  53. package/porto_data/providers/ukrposhta/weights.json +26 -0
  54. package/porto_data/providers/ukrposhta/zones.json +226 -0
  55. package/porto_data/providers.json +37 -0
  56. package/porto_data/schemas/envelopes.schema.json +120 -0
  57. package/porto_data/schemas/features.schema.json +66 -55
  58. package/porto_data/schemas/graph.schema.json +189 -0
  59. package/porto_data/schemas/jurisdictions.schema.json +116 -0
  60. package/porto_data/schemas/layouts.schema.json +156 -0
  61. package/porto_data/schemas/limits.schema.json +253 -0
  62. package/porto_data/schemas/mappings.schema.json +73 -0
  63. package/porto_data/schemas/markets.schema.json +186 -0
  64. package/porto_data/schemas/marks.schema.json +127 -0
  65. package/porto_data/schemas/metadata.schema.json +183 -0
  66. package/porto_data/schemas/porto_ids.schema.json +45 -0
  67. package/porto_data/schemas/product_prices.schema.json +126 -0
  68. package/porto_data/schemas/products.schema.json +338 -110
  69. package/porto_data/schemas/providers.schema.json +71 -0
  70. package/porto_data/schemas/restrictions.schema.json +175 -355
  71. package/porto_data/schemas/rules.schema.json +104 -0
  72. package/porto_data/schemas/service_prices.schema.json +116 -0
  73. package/porto_data/schemas/services.schema.json +113 -70
  74. package/porto_data/schemas/weights.schema.json +70 -0
  75. package/porto_data/schemas/zones.schema.json +78 -72
  76. package/porto_data/data/data_links.json +0 -148
  77. package/porto_data/data/dimensions.json +0 -158
  78. package/porto_data/data/features.json +0 -66
  79. package/porto_data/data/prices.json +0 -242
  80. package/porto_data/data/products.json +0 -84
  81. package/porto_data/data/restrictions.json +0 -795
  82. package/porto_data/data/services.json +0 -61
  83. package/porto_data/data/weight_tiers.json +0 -54
  84. package/porto_data/data/zones.json +0 -230
  85. package/porto_data/schemas/data_links.schema.json +0 -223
  86. package/porto_data/schemas/dimensions.schema.json +0 -215
  87. package/porto_data/schemas/prices.schema.json +0 -180
  88. package/porto_data/schemas/weight_tiers.schema.json +0 -70
@@ -1,795 +0,0 @@
1
- {
2
- "$schema": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/restrictions.schema.json",
3
- "file_type": "restrictions",
4
- "unit": {
5
- "country_code": "ISO 3166-1 alpha-2",
6
- "date": "ISO 8601"
7
- },
8
- "sanctions_information": {
9
- "eu_sanctions": {
10
- "description": "Germany/Deutsche Post complies with EU sanctions",
11
- "primary_targets": [
12
- "Russia (comprehensive sanctions)",
13
- "Belarus (comprehensive sanctions)",
14
- "Iran (nuclear-related sanctions)",
15
- "North Korea (comprehensive sanctions)",
16
- "Syria (comprehensive sanctions)"
17
- ],
18
- "source": "EU Common Foreign and Security Policy",
19
- "url": "https://www.sanctionsmap.eu/"
20
- },
21
- "un_sanctions": {
22
- "description": "Deutsche Post complies with UN Security Council sanctions",
23
- "targets": [
24
- "North Korea",
25
- "Iran",
26
- "Taliban (Afghanistan)",
27
- "Various terrorist organizations"
28
- ]
29
- },
30
- "german_national": {
31
- "description": "Germany may have additional national restrictions",
32
- "notes": "May be stricter than EU requirements in some cases"
33
- }
34
- },
35
- "denied_party_screening": {
36
- "description": "Deutsche Post conducts Denied Party Screening",
37
- "details": "Shipments are screened against international sanctions lists to prevent transactions with prohibited individuals, entities, or destinations",
38
- "compliance": [
39
- "EU sanctions lists",
40
- "UN sanctions lists",
41
- "German national restrictions",
42
- "OFAC (US sanctions)",
43
- "Other international embargo lists"
44
- ]
45
- },
46
- "sources": [
47
- "EU Sanctions Map",
48
- "Deutsche Post Denied Party Screening policy",
49
- "USPS International Mail Manual (reference)",
50
- "Norway Posten country restrictions (reference)",
51
- "Public information on international sanctions"
52
- ],
53
- "disclaimer": "This information is for reference only. Restrictions change frequently. Always verify current restrictions with Deutsche Post before shipping. | Volatility: This list can change rapidly due to political developments, conflicts, or natural disasters | Verification: Always verify current restrictions with Deutsche Post before sending | Customs: Even if postal service is available, customs duties and restrictions may apply | Payment: Payment services (Nachnahme, insurance) may not be available even if basic postal service exists | Recommendation: For business/important shipments, consult Deutsche Post customer service for current status",
54
- "restrictions": [
55
- {
56
- "id": "CRIMEA_2014",
57
- "country_code": "UA",
58
- "region_code": "UA-43",
59
- "claimed_by": "UA",
60
- "occupied_by": "RU",
61
- "status": "prohibited",
62
- "reason": "Illegal annexation, EU sanctions",
63
- "restrictions": "No postal services from EU/Germany",
64
- "notes": "Annexed by Russia 2014, not recognized by international community",
65
- "entity_type": "occupied_territory",
66
- "framework_id": "EU_SANCTIONS_OCCUPIED_UA",
67
- "effective_from": "2014-03-18",
68
- "effective_to": null,
69
- "effective_partial": false
70
- },
71
- {
72
- "id": "DONETSK_2014",
73
- "country_code": "UA",
74
- "region_code": "UA-14",
75
- "claimed_by": "UA",
76
- "occupied_by": "RU",
77
- "status": "prohibited",
78
- "reason": "Occupation, EU sanctions",
79
- "restrictions": "No postal services",
80
- "notes": "Occupied territories in eastern Ukraine",
81
- "entity_type": "occupied_territory",
82
- "framework_id": "EU_SANCTIONS_OCCUPIED_UA",
83
- "effective_from": "2014-04-07",
84
- "effective_to": null,
85
- "effective_partial": true
86
- },
87
- {
88
- "id": "KHERSON_2022",
89
- "country_code": "UA",
90
- "region_code": "UA-65",
91
- "claimed_by": "UA",
92
- "occupied_by": "RU",
93
- "status": "prohibited",
94
- "reason": "Partial occupation, EU sanctions",
95
- "restrictions": "No postal services to occupied areas",
96
- "notes": "Southern Ukraine, partially occupied since 2022. City of Kherson liberated Nov 2022, but parts remain occupied",
97
- "entity_type": "occupied_territory",
98
- "framework_id": "EU_SANCTIONS_OCCUPIED_UA",
99
- "effective_from": "2022-02-24",
100
- "effective_to": null,
101
- "effective_partial": true
102
- },
103
- {
104
- "id": "KP_SANCTIONS",
105
- "country_code": "KP",
106
- "status": "prohibited",
107
- "reason": "International sanctions, political situation",
108
- "restrictions": "All merchandise prohibited. Only letters and postcards may be allowed with severe restrictions.",
109
- "notes": "One of the most restricted destinations globally",
110
- "entity_type": "country",
111
- "framework_id": "UN_SC_RES_1718",
112
- "zone_reference": null,
113
- "effective_from": "2006-10-09",
114
- "effective_to": null
115
- },
116
- {
117
- "id": "LUHANSK_2014",
118
- "country_code": "UA",
119
- "region_code": "UA-09",
120
- "claimed_by": "UA",
121
- "occupied_by": "RU",
122
- "status": "prohibited",
123
- "reason": "Occupation, EU sanctions",
124
- "restrictions": "No postal services",
125
- "notes": "Occupied territories in eastern Ukraine",
126
- "entity_type": "occupied_territory",
127
- "framework_id": "EU_SANCTIONS_OCCUPIED_UA",
128
- "effective_from": "2014-04-27",
129
- "effective_to": null,
130
- "effective_partial": true
131
- },
132
- {
133
- "id": "SY_SANCTIONS",
134
- "country_code": "SY",
135
- "status": "prohibited",
136
- "reason": "Ongoing conflict, EU sanctions",
137
- "restrictions": "Most postal services suspended",
138
- "notes": "Civil war and international sanctions",
139
- "entity_type": "country",
140
- "framework_id": "EU_36_2012",
141
- "zone_reference": null,
142
- "effective_from": "2011-05-09",
143
- "effective_to": null
144
- },
145
- {
146
- "id": "YE_CONFLICT",
147
- "country_code": "YE",
148
- "status": "prohibited",
149
- "reason": "Ongoing conflict, operational challenges",
150
- "restrictions": "Postal services severely limited or suspended",
151
- "notes": "Humanitarian crisis and armed conflict",
152
- "entity_type": "country",
153
- "framework_id": "CONFLICT_YE",
154
- "zone_reference": null,
155
- "effective_from": "2015-03-26",
156
- "effective_to": null
157
- },
158
- {
159
- "id": "ZAPORIZHZHIA_2022",
160
- "country_code": "UA",
161
- "region_code": "UA-23",
162
- "claimed_by": "UA",
163
- "occupied_by": "RU",
164
- "status": "prohibited",
165
- "reason": "Partial occupation, EU sanctions",
166
- "restrictions": "No postal services to occupied areas",
167
- "notes": "Southern Ukraine, partially occupied since 2022",
168
- "entity_type": "occupied_territory",
169
- "framework_id": "EU_SANCTIONS_OCCUPIED_UA",
170
- "effective_from": "2022-02-24",
171
- "effective_to": null,
172
- "effective_partial": true
173
- },
174
- {
175
- "id": "AF_2021_TALIBAN",
176
- "country_code": "AF",
177
- "status": "severely_restricted",
178
- "reason": "Political situation, operational challenges",
179
- "restrictions": "Postal services severely limited or suspended",
180
- "notes": "Service disruptions since Taliban takeover 2021",
181
- "effective_from": "2021-08-15",
182
- "effective_to": null,
183
- "zone_reference": "zone_4_asia",
184
- "entity_type": "country",
185
- "framework_id": "CONFLICT_AF"
186
- },
187
- {
188
- "id": "BY_2022_SANCTIONS",
189
- "country_code": "BY",
190
- "status": "severely_restricted",
191
- "reason": "EU sanctions, support for Russian invasion",
192
- "restrictions": "Parcel services suspended. Limited letter services.",
193
- "notes": "Sanctions due to cooperation with Russia",
194
- "effective_from": "2022-03-01",
195
- "effective_to": null,
196
- "zone_reference": "zone_2_europe",
197
- "entity_type": "country",
198
- "framework_id": "EU_833_2014"
199
- },
200
- {
201
- "id": "IR_SANCTIONS",
202
- "country_code": "IR",
203
- "status": "severely_restricted",
204
- "reason": "International sanctions, nuclear program",
205
- "restrictions": "Severe limitations on all postal services. Payment restrictions.",
206
- "notes": "Long-standing sanctions",
207
- "effective_from": "2006-07-31",
208
- "effective_to": null,
209
- "zone_reference": null,
210
- "entity_type": "country",
211
- "framework_id": "UN_SC_RES_2231"
212
- },
213
- {
214
- "id": "LY_CONFLICT",
215
- "country_code": "LY",
216
- "status": "severely_restricted",
217
- "reason": "Civil conflict, instability",
218
- "restrictions": "Parcel services suspended. Letter services limited.",
219
- "notes": "Ongoing civil conflict",
220
- "effective_from": "2011-02-17",
221
- "effective_to": null,
222
- "zone_reference": "zone_3_africa_middle_east",
223
- "entity_type": "country",
224
- "framework_id": "CONFLICT_LY"
225
- },
226
- {
227
- "id": "RU_2022_SANCTIONS",
228
- "country_code": "RU",
229
- "status": "severely_restricted",
230
- "reason": "EU sanctions following Ukraine invasion",
231
- "restrictions": "Parcel services suspended. Letters may be restricted. Payment services blocked.",
232
- "notes": "Restrictions imposed February 2022 onwards",
233
- "effective_from": "2022-02-24",
234
- "effective_to": null,
235
- "zone_reference": "zone_2_europe",
236
- "entity_type": "country",
237
- "framework_id": "EU_833_2014"
238
- },
239
- {
240
- "id": "SD_2023_CONFLICT",
241
- "country_code": "SD",
242
- "status": "severely_restricted",
243
- "reason": "Political instability, conflict",
244
- "restrictions": "Postal services severely disrupted",
245
- "notes": "Ongoing conflict and humanitarian crisis",
246
- "effective_from": "2023-04-15",
247
- "effective_to": null,
248
- "zone_reference": null,
249
- "entity_type": "country",
250
- "framework_id": "CONFLICT_SD"
251
- },
252
- {
253
- "id": "SS_INFRASTRUCTURE",
254
- "country_code": "SS",
255
- "status": "severely_restricted",
256
- "reason": "Civil conflict, infrastructure challenges",
257
- "restrictions": "Postal services severely limited",
258
- "notes": "Limited infrastructure",
259
- "effective_from": "2013-12-15",
260
- "effective_to": null,
261
- "zone_reference": null,
262
- "entity_type": "country",
263
- "framework_id": "INFRASTRUCTURE_SS"
264
- },
265
- {
266
- "id": "ABKHAZIA_1992",
267
- "country_code": "GE",
268
- "region_code": "GE-AB",
269
- "claimed_by": "GE",
270
- "occupied_by": "RU",
271
- "status": "restricted",
272
- "reason": "Disputed territory, limited recognition",
273
- "restrictions": "Postal services via Georgia may be limited",
274
- "notes": "De facto independent, Russian-backed. Affects Georgia partially.",
275
- "entity_type": "occupied_territory",
276
- "framework_id": "POLICY_RU_OCCUPIED",
277
- "effective_from": "1992-09-01",
278
- "effective_to": null,
279
- "effective_partial": true
280
- },
281
- {
282
- "id": "CF_CONFLICT",
283
- "country_code": "CF",
284
- "status": "restricted",
285
- "reason": "Civil conflict, infrastructure",
286
- "restrictions": "Postal services limited",
287
- "notes": "Ongoing instability",
288
- "effective_from": "2012-12-10",
289
- "effective_to": null,
290
- "zone_reference": null,
291
- "entity_type": "country",
292
- "framework_id": "INFRASTRUCTURE_CF"
293
- },
294
- {
295
- "id": "HT_INSTABILITY",
296
- "country_code": "HT",
297
- "status": "restricted",
298
- "reason": "Political instability, gang violence, infrastructure collapse",
299
- "restrictions": "Postal services severely disrupted",
300
- "notes": "Ongoing security crisis",
301
- "effective_from": "2024-03-01",
302
- "effective_to": null,
303
- "zone_reference": null,
304
- "entity_type": "country",
305
- "framework_id": "INFRASTRUCTURE_HT"
306
- },
307
- {
308
- "id": "NORTH_CYPRUS_1974",
309
- "country_code": "CY",
310
- "claimed_by": "CY",
311
- "occupied_by": "TR",
312
- "status": "restricted",
313
- "reason": "Disputed territory, recognized only by Turkey",
314
- "restrictions": "Postal services via Turkey (separate postal code system)",
315
- "notes": "Divided since 1974, only Turkey recognizes TRNC. Affects Cyprus partially.",
316
- "entity_type": "disputed_territory",
317
- "framework_id": "POLICY_DISPUTED_TERRITORIES",
318
- "effective_from": "1974-07-20",
319
- "effective_to": null,
320
- "effective_partial": true
321
- },
322
- {
323
- "id": "SOUTH_OSSETIA_1991",
324
- "country_code": "GE",
325
- "region_code": "GE-SZ",
326
- "claimed_by": "GE",
327
- "occupied_by": "RU",
328
- "status": "restricted",
329
- "reason": "Disputed territory, limited recognition",
330
- "restrictions": "Postal services via Georgia may be limited",
331
- "notes": "De facto independent, Russian-backed. Affects Georgia partially.",
332
- "entity_type": "occupied_territory",
333
- "framework_id": "POLICY_RU_OCCUPIED",
334
- "effective_from": "1991-11-28",
335
- "effective_to": null,
336
- "effective_partial": true
337
- },
338
- {
339
- "id": "SO_CONFLICT",
340
- "country_code": "SO",
341
- "status": "restricted",
342
- "reason": "Civil conflict, infrastructure challenges",
343
- "restrictions": "Limited postal services",
344
- "notes": "Some areas more accessible than others",
345
- "effective_from": "1991-01-26",
346
- "effective_to": null,
347
- "zone_reference": null,
348
- "entity_type": "country",
349
- "framework_id": "INFRASTRUCTURE_SO"
350
- },
351
- {
352
- "id": "TRANSNISTRIA_1992",
353
- "country_code": "MD",
354
- "region_code": "MD-SN",
355
- "claimed_by": "MD",
356
- "occupied_by": "RU",
357
- "status": "restricted",
358
- "reason": "Unrecognized breakaway state",
359
- "restrictions": "Limited postal services via Moldova",
360
- "notes": "De facto independent since 1992. Affects Moldova partially.",
361
- "entity_type": "occupied_territory",
362
- "framework_id": "POLICY_RU_OCCUPIED",
363
- "effective_from": "1992-03-02",
364
- "effective_to": null,
365
- "effective_partial": true
366
- },
367
- {
368
- "id": "VE_CRISIS",
369
- "country_code": "VE",
370
- "status": "restricted",
371
- "reason": "Economic crisis, sanctions",
372
- "restrictions": "Postal services disrupted, payment issues",
373
- "notes": "US and EU sanctions affect services",
374
- "effective_from": "2019-01-23",
375
- "effective_to": null,
376
- "zone_reference": "zone_5_americas",
377
- "entity_type": "country",
378
- "framework_id": "SANCTIONS_VE"
379
- },
380
- {
381
- "id": "EH_TERRITORY",
382
- "country_code": "EH",
383
- "claimed_by": "MA",
384
- "disputed_by": "Sahrawi_AR",
385
- "status": "limited",
386
- "reason": "Disputed territory",
387
- "restrictions": "Services via Morocco",
388
- "notes": "Postal services through Moroccan system. Territory controlled by Morocco.",
389
- "zone_reference": null,
390
- "entity_type": "disputed_territory",
391
- "framework_id": "POLICY_DISPUTED_TERRITORIES",
392
- "effective_from": "1975-11-14",
393
- "effective_to": null,
394
- "effective_partial": false
395
- },
396
- {
397
- "id": "KM_LIMITED",
398
- "country_code": "KM",
399
- "status": "limited",
400
- "reason": "Limited postal infrastructure",
401
- "notes": "Small island nation with limited postal services",
402
- "effective_from": null,
403
- "effective_to": null,
404
- "zone_reference": null,
405
- "entity_type": "territory",
406
- "framework_id": "INFRASTRUCTURE_LIMITED"
407
- },
408
- {
409
- "id": "MS_LIMITED",
410
- "country_code": "MS",
411
- "status": "limited",
412
- "reason": "Small Caribbean island, limited infrastructure",
413
- "notes": "British overseas territory",
414
- "effective_from": null,
415
- "effective_to": null,
416
- "zone_reference": null,
417
- "entity_type": "territory",
418
- "framework_id": "INFRASTRUCTURE_LIMITED"
419
- },
420
- {
421
- "id": "PS_TERRITORY",
422
- "country_code": "PS",
423
- "status": "limited",
424
- "reason": "Political situation, occupation",
425
- "restrictions": "Services via Israel, limited access to some areas",
426
- "notes": "West Bank and Gaza Strip. Service availability varies by area.",
427
- "areas": {
428
- "west_bank": "Limited service via Israeli postal system",
429
- "gaza": "Severely restricted or unavailable"
430
- },
431
- "zone_reference": null,
432
- "entity_type": "disputed_territory",
433
- "framework_id": "POLICY_DISPUTED_TERRITORIES",
434
- "effective_from": null,
435
- "effective_to": null,
436
- "effective_partial": true
437
- },
438
- {
439
- "id": "TC_LIMITED",
440
- "country_code": "TC",
441
- "status": "limited",
442
- "reason": "Small Caribbean islands",
443
- "notes": "British overseas territory",
444
- "effective_from": null,
445
- "effective_to": null,
446
- "zone_reference": null,
447
- "entity_type": "territory",
448
- "framework_id": "INFRASTRUCTURE_LIMITED"
449
- },
450
- {
451
- "id": "TL_LIMITED",
452
- "country_code": "TL",
453
- "status": "limited",
454
- "reason": "Limited postal infrastructure",
455
- "notes": "Young nation with developing postal system",
456
- "effective_from": null,
457
- "effective_to": null,
458
- "zone_reference": null,
459
- "entity_type": "territory",
460
- "framework_id": "INFRASTRUCTURE_LIMITED"
461
- },
462
- {
463
- "id": "YT_LIMITED",
464
- "country_code": "YT",
465
- "status": "limited",
466
- "reason": "French territory with limited direct services",
467
- "notes": "Services via France",
468
- "effective_from": null,
469
- "effective_to": null,
470
- "zone_reference": null,
471
- "entity_type": "territory",
472
- "framework_id": "INFRASTRUCTURE_LIMITED"
473
- },
474
- {
475
- "id": "TW_TERRITORY",
476
- "country_code": "TW",
477
- "status": "operational",
478
- "reason": "Political sensitivity (China claims sovereignty)",
479
- "restrictions": "Normal service, but political considerations",
480
- "notes": "De facto independent, full postal services available despite PRC claims",
481
- "effective_from": null,
482
- "effective_to": null,
483
- "zone_reference": "zone_4_asia",
484
- "entity_type": "disputed_territory",
485
- "framework_id": "POLICY_TW"
486
- }
487
- ],
488
- "compliance_frameworks": {
489
- "EU_833_2014": {
490
- "id": "EU_833_2014",
491
- "label": "Council Regulation (EU) No 833/2014",
492
- "description": "Comprehensive sanctions restricting trade and postal services with Russia and Belarus",
493
- "type": "eu_sanctions",
494
- "applies_to": [
495
- "RU",
496
- "BY"
497
- ],
498
- "effective_from": "2022-02-24",
499
- "effective_to": null,
500
- "legal_reference": "https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=CELEX:32014R0833",
501
- "jurisdiction": [
502
- "EU"
503
- ]
504
- },
505
- "UN_SC_RES_1718": {
506
- "id": "UN_SC_RES_1718",
507
- "label": "UN Security Council Resolution 1718 (2006)",
508
- "description": "Comprehensive sanctions on Democratic People's Republic of Korea",
509
- "type": "un_sanctions",
510
- "applies_to": [
511
- "KP"
512
- ],
513
- "effective_from": "2006-10-14",
514
- "effective_to": null,
515
- "legal_reference": "https://www.un.org/securitycouncil/sanctions/1718",
516
- "jurisdiction": [
517
- "UN"
518
- ]
519
- },
520
- "UN_SC_RES_2231": {
521
- "id": "UN_SC_RES_2231",
522
- "label": "UN Security Council Resolution 2231 (2015)",
523
- "description": "Restrictions related to Iran nuclear program",
524
- "type": "un_sanctions",
525
- "applies_to": [
526
- "IR"
527
- ],
528
- "effective_from": "2006-07-31",
529
- "effective_to": null,
530
- "legal_reference": "https://www.un.org/securitycouncil/content/2231",
531
- "jurisdiction": [
532
- "UN"
533
- ]
534
- },
535
- "EU_36_2012": {
536
- "id": "EU_36_2012",
537
- "label": "Council Regulation (EU) No 36/2012",
538
- "description": "Restrictive measures against Syria",
539
- "type": "eu_sanctions",
540
- "applies_to": [
541
- "SY"
542
- ],
543
- "effective_from": "2011-05-09",
544
- "effective_to": null,
545
- "legal_reference": "https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=CELEX:32012R0036",
546
- "jurisdiction": [
547
- "EU"
548
- ]
549
- },
550
- "CONFLICT_YE": {
551
- "id": "CONFLICT_YE",
552
- "label": "Yemen Humanitarian Crisis",
553
- "description": "Postal services suspended due to ongoing conflict and humanitarian crisis",
554
- "type": "operational_conflict",
555
- "applies_to": [
556
- "YE"
557
- ],
558
- "effective_from": "2015-03-26",
559
- "effective_to": null,
560
- "jurisdiction": [
561
- "DP"
562
- ]
563
- },
564
- "CONFLICT_AF": {
565
- "id": "CONFLICT_AF",
566
- "label": "Afghanistan Operational Restrictions",
567
- "description": "Service disruptions following Taliban takeover and security situation",
568
- "type": "operational_conflict",
569
- "applies_to": [
570
- "AF"
571
- ],
572
- "effective_from": "2021-08-15",
573
- "effective_to": null,
574
- "jurisdiction": [
575
- "DP"
576
- ]
577
- },
578
- "CONFLICT_LY": {
579
- "id": "CONFLICT_LY",
580
- "label": "Libya Civil Conflict",
581
- "description": "Postal services restricted due to ongoing civil conflict and instability",
582
- "type": "operational_conflict",
583
- "applies_to": [
584
- "LY"
585
- ],
586
- "effective_from": "2011-02-17",
587
- "effective_to": null,
588
- "jurisdiction": [
589
- "DP"
590
- ]
591
- },
592
- "CONFLICT_SD": {
593
- "id": "CONFLICT_SD",
594
- "label": "Sudan Conflict",
595
- "description": "Postal services severely disrupted due to ongoing conflict",
596
- "type": "operational_conflict",
597
- "applies_to": [
598
- "SD"
599
- ],
600
- "effective_from": "2023-04-15",
601
- "effective_to": null,
602
- "jurisdiction": [
603
- "DP"
604
- ]
605
- },
606
- "INFRASTRUCTURE_SS": {
607
- "id": "INFRASTRUCTURE_SS",
608
- "label": "South Sudan Infrastructure Challenges",
609
- "description": "Limited postal infrastructure and ongoing conflict",
610
- "type": "operational_infrastructure",
611
- "applies_to": [
612
- "SS"
613
- ],
614
- "effective_from": "2013-12-15",
615
- "effective_to": null,
616
- "jurisdiction": [
617
- "DP"
618
- ]
619
- },
620
- "INFRASTRUCTURE_HT": {
621
- "id": "INFRASTRUCTURE_HT",
622
- "label": "Haiti Security Crisis",
623
- "description": "Political instability, gang violence, and infrastructure collapse",
624
- "type": "operational_infrastructure",
625
- "applies_to": [
626
- "HT"
627
- ],
628
- "effective_from": "2024-03-01",
629
- "effective_to": null,
630
- "jurisdiction": [
631
- "DP"
632
- ]
633
- },
634
- "INFRASTRUCTURE_SO": {
635
- "id": "INFRASTRUCTURE_SO",
636
- "label": "Somalia Infrastructure Challenges",
637
- "description": "Civil conflict and limited postal infrastructure",
638
- "type": "operational_infrastructure",
639
- "applies_to": [
640
- "SO"
641
- ],
642
- "effective_from": "1991-01-26",
643
- "effective_to": null,
644
- "jurisdiction": [
645
- "DP"
646
- ]
647
- },
648
- "INFRASTRUCTURE_CF": {
649
- "id": "INFRASTRUCTURE_CF",
650
- "label": "Central African Republic Instability",
651
- "description": "Ongoing civil conflict and infrastructure limitations",
652
- "type": "operational_infrastructure",
653
- "applies_to": [
654
- "CF"
655
- ],
656
- "effective_from": "2012-12-10",
657
- "effective_to": null,
658
- "jurisdiction": [
659
- "DP"
660
- ]
661
- },
662
- "SANCTIONS_VE": {
663
- "id": "SANCTIONS_VE",
664
- "label": "Venezuela Sanctions and Economic Crisis",
665
- "description": "US and EU sanctions affecting postal services and payment systems",
666
- "type": "mixed_sanctions",
667
- "applies_to": [
668
- "VE"
669
- ],
670
- "effective_from": "2019-01-23",
671
- "effective_to": null,
672
- "jurisdiction": [
673
- "EU",
674
- "US",
675
- "DP"
676
- ]
677
- },
678
- "EU_SANCTIONS_OCCUPIED_UA": {
679
- "id": "EU_SANCTIONS_OCCUPIED_UA",
680
- "label": "EU Sanctions on Occupied Ukrainian Territories",
681
- "description": "EU restrictive measures prohibit postal and commercial services to Russian-occupied regions of Ukraine. Originally introduced in 2014 for Crimea and extended in 2022 to cover newly occupied areas.",
682
- "type": "eu_sanctions",
683
- "jurisdiction": [
684
- "EU"
685
- ],
686
- "applies_to": [
687
- "UA"
688
- ],
689
- "regions": [
690
- {
691
- "code": "UA-43",
692
- "name": "Crimea and Sevastopol"
693
- },
694
- {
695
- "code": "UA-09",
696
- "name": "Luhansk Oblast"
697
- },
698
- {
699
- "code": "UA-14",
700
- "name": "Donetsk Oblast"
701
- },
702
- {
703
- "code": "UA-23",
704
- "name": "Zaporizhzhia Oblast (occupied parts)"
705
- },
706
- {
707
- "code": "UA-65",
708
- "name": "Kherson Oblast (occupied parts)"
709
- }
710
- ],
711
- "effective_from": "2014-03-18",
712
- "effective_to": null,
713
- "legal_reference": "https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=CELEX:32014D0145"
714
- },
715
- "POLICY_RU_OCCUPIED": {
716
- "id": "POLICY_RU_OCCUPIED",
717
- "label": "Russian-Occupied Post-Soviet Territories",
718
- "description": "Operational restrictions on postal services to Russian-occupied territories in former Soviet states",
719
- "type": "operational_political",
720
- "jurisdiction": [
721
- "DP"
722
- ],
723
- "applies_to": [
724
- "GE",
725
- "MD"
726
- ],
727
- "effective_from": null,
728
- "effective_to": null
729
- },
730
- "POLICY_DISPUTED_TERRITORIES": {
731
- "id": "POLICY_DISPUTED_TERRITORIES",
732
- "label": "Disputed Territory Postal Policies",
733
- "description": "Operational policies for postal services to internationally disputed territories",
734
- "type": "operational_political",
735
- "jurisdiction": [
736
- "DP"
737
- ],
738
- "applies_to": [
739
- "CY",
740
- "EH",
741
- "PS"
742
- ],
743
- "effective_from": null,
744
- "effective_to": null
745
- },
746
- "POLICY_TW": {
747
- "id": "POLICY_TW",
748
- "label": "Taiwan Political Sensitivity",
749
- "description": "Normal postal service available despite political considerations",
750
- "type": "operational_political",
751
- "applies_to": [
752
- "TW"
753
- ],
754
- "effective_from": null,
755
- "effective_to": null,
756
- "operational_note": "Full service available. China claims sovereignty but does not affect operations.",
757
- "jurisdiction": [
758
- "DP"
759
- ]
760
- },
761
- "INFRASTRUCTURE_LIMITED": {
762
- "id": "INFRASTRUCTURE_LIMITED",
763
- "label": "Limited Postal Infrastructure",
764
- "description": "Small territories with limited or developing postal systems",
765
- "type": "operational_infrastructure",
766
- "applies_to": [
767
- "KM",
768
- "MS",
769
- "TL",
770
- "TC",
771
- "YT"
772
- ],
773
- "effective_from": null,
774
- "effective_to": null,
775
- "jurisdiction": [
776
- "DP"
777
- ]
778
- },
779
- "POSTG_8": {
780
- "id": "POSTG_8",
781
- "label": "Postgesetz \u00a78 - Prohibited Items",
782
- "description": "German postal law prohibiting dangerous goods, weapons, and prohibited substances",
783
- "type": "german_law",
784
- "applies_to": [
785
- "ALL"
786
- ],
787
- "effective_from": null,
788
- "effective_to": null,
789
- "legal_reference": "https://www.gesetze-im-internet.de/postg/__8.html",
790
- "jurisdiction": [
791
- "DE"
792
- ]
793
- }
794
- }
795
- }