@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
@@ -0,0 +1,668 @@
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
+ "sources": [
9
+ "EU Sanctions Map",
10
+ "USPS International Mail Manual (reference)",
11
+ "Norway Posten country restrictions (reference)",
12
+ "Public information on international sanctions"
13
+ ],
14
+ "disclaimer": "This information is for reference only. Restrictions change frequently. Verify current rules with your postal operator and counsel before shipping. Data is grouped by ISO alpha-2 country under destinations[].country_code. Per country, destinations[].restrictions includes only non-empty EU, UN, and/or CH arrays; each item is country-wide or regional (optional region_code, ISO 3166-2) with status, reference (URL or null), effective_from / effective_to. Sender blocs: policy/jurisdictions.json. Operator overlays: providers/<id>/limits.json.",
15
+ "destinations": [
16
+ {
17
+ "restrictions": {
18
+ "UN": [
19
+ {
20
+ "id": "AF_2021_TALIBAN",
21
+ "reason": "Conflict-related disruption",
22
+ "description": "Postal services may be severely limited or suspended",
23
+ "notes": "Verify current operator acceptance and security situation",
24
+ "entity_type": "country",
25
+ "status": "severe",
26
+ "reference": "https://www.un.org/securitycouncil/sanctions/1988",
27
+ "effective_from": "2021-08-15",
28
+ "effective_to": null
29
+ }
30
+ ]
31
+ },
32
+ "country_code": "AF"
33
+ },
34
+ {
35
+ "restrictions": {
36
+ "EU": [
37
+ {
38
+ "id": "BY_SANCTIONS_2022",
39
+ "reason": "EU restrictive measures",
40
+ "description": "Parcel services may be suspended; letter services may be limited",
41
+ "notes": "Verify current EUR-Lex and carrier rules",
42
+ "entity_type": "country",
43
+ "status": "severe",
44
+ "reference": "https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=CELEX:32014R0833",
45
+ "effective_from": "2022-03-01",
46
+ "effective_to": null
47
+ }
48
+ ]
49
+ },
50
+ "country_code": "BY"
51
+ },
52
+ {
53
+ "restrictions": {
54
+ "UN": [
55
+ {
56
+ "id": "CF_CONFLICT",
57
+ "reason": "Conflict-related disruption",
58
+ "description": "Postal services may be limited",
59
+ "notes": "Verify current operator acceptance",
60
+ "entity_type": "country",
61
+ "status": "restricted",
62
+ "reference": "https://www.un.org/securitycouncil/sanctions/2127",
63
+ "effective_from": "2012-12-10",
64
+ "effective_to": null
65
+ }
66
+ ]
67
+ },
68
+ "country_code": "CF"
69
+ },
70
+ {
71
+ "restrictions": {
72
+ "UN": [
73
+ {
74
+ "id": "CY_NORTH_1974",
75
+ "reason": "Recognition and routing constraints",
76
+ "description": "Routing may use Turkish postal conventions; addressing may differ from the Republic of Cyprus",
77
+ "notes": "Verify current operator rules and addressing for this corridor",
78
+ "entity_type": "disputed",
79
+ "partial": true,
80
+ "status": "restricted",
81
+ "reference": "https://peacekeeping.un.org/en/mission/unficyp",
82
+ "effective_from": "1974-07-20",
83
+ "effective_to": null
84
+ }
85
+ ]
86
+ },
87
+ "country_code": "CY"
88
+ },
89
+ {
90
+ "restrictions": {
91
+ "UN": [
92
+ {
93
+ "id": "EH_TERRITORY",
94
+ "reason": "Recognition and routing constraints",
95
+ "description": "Services may be routed via the Moroccan postal system",
96
+ "notes": "Verify current addressing and operator acceptance",
97
+ "entity_type": "disputed",
98
+ "partial": false,
99
+ "status": "limited",
100
+ "reference": "https://www.un.org/dppa/decolonization/en/nsgt/western-sahara",
101
+ "effective_from": "1975-11-14",
102
+ "effective_to": null
103
+ }
104
+ ]
105
+ },
106
+ "country_code": "EH"
107
+ },
108
+ {
109
+ "restrictions": {
110
+ "EU": [
111
+ {
112
+ "id": "GE_ABKHAZIA",
113
+ "reason": "Recognition and routing constraints",
114
+ "description": "Postal routing via the internationally recognised postal administration may be limited",
115
+ "notes": "Addressing conventions may vary; verify current operator acceptance",
116
+ "entity_type": "territory",
117
+ "partial": true,
118
+ "status": "restricted",
119
+ "reference": "https://www.sanctionsmap.eu/",
120
+ "effective_from": "1992-09-01",
121
+ "effective_to": null,
122
+ "region_code": "GE-AB"
123
+ },
124
+ {
125
+ "id": "GE_SOUTH_OSSETIA",
126
+ "reason": "Recognition and routing constraints",
127
+ "description": "Postal routing via the internationally recognised postal administration may be limited",
128
+ "notes": "Addressing conventions may vary; verify current operator acceptance",
129
+ "entity_type": "territory",
130
+ "partial": true,
131
+ "status": "restricted",
132
+ "reference": "https://www.sanctionsmap.eu/",
133
+ "effective_from": "1991-11-28",
134
+ "effective_to": null,
135
+ "region_code": "GE-SZ"
136
+ }
137
+ ],
138
+ "CH": [
139
+ {
140
+ "id": "GE_ABKHAZIA",
141
+ "reason": "Recognition and routing constraints",
142
+ "description": "Postal routing via the internationally recognised postal administration may be limited",
143
+ "notes": "Addressing conventions may vary; verify current operator acceptance",
144
+ "entity_type": "territory",
145
+ "partial": true,
146
+ "status": "restricted",
147
+ "reference": "https://www.seco.admin.ch/seco/en/home/Aussenwirtschaftspolitik_Wirtschaftliche_Zusammenarbeit/Wirtschaftsbeziehungen/exportkontrollen-und-sanktionen/sanktionen-embargos.html",
148
+ "effective_from": "1992-09-01",
149
+ "effective_to": null,
150
+ "region_code": "GE-AB"
151
+ },
152
+ {
153
+ "id": "GE_SOUTH_OSSETIA",
154
+ "reason": "Recognition and routing constraints",
155
+ "description": "Postal routing via the internationally recognised postal administration may be limited",
156
+ "notes": "Addressing conventions may vary; verify current operator acceptance",
157
+ "entity_type": "territory",
158
+ "partial": true,
159
+ "status": "restricted",
160
+ "reference": "https://www.seco.admin.ch/seco/en/home/Aussenwirtschaftspolitik_Wirtschaftliche_Zusammenarbeit/Wirtschaftsbeziehungen/exportkontrollen-und-sanktionen/sanktionen-embargos.html",
161
+ "effective_from": "1991-11-28",
162
+ "effective_to": null,
163
+ "region_code": "GE-SZ"
164
+ }
165
+ ]
166
+ },
167
+ "country_code": "GE"
168
+ },
169
+ {
170
+ "restrictions": {
171
+ "UN": [
172
+ {
173
+ "id": "HT_INSTABILITY",
174
+ "reason": "Operational limitations",
175
+ "description": "Postal services may be severely disrupted",
176
+ "notes": "Verify current operator acceptance and security situation",
177
+ "entity_type": "country",
178
+ "status": "restricted",
179
+ "reference": "https://www.un.org/securitycouncil/sanctions/2653",
180
+ "effective_from": "2024-03-01",
181
+ "effective_to": null
182
+ }
183
+ ]
184
+ },
185
+ "country_code": "HT"
186
+ },
187
+ {
188
+ "restrictions": {
189
+ "UN": [
190
+ {
191
+ "id": "IR_SANCTIONS_2006",
192
+ "reason": "UN and related restrictive measures",
193
+ "description": "Severe limitations on postal services and payments may apply",
194
+ "notes": "Verify current UN and national implementation",
195
+ "entity_type": "country",
196
+ "status": "severe",
197
+ "reference": "https://main.un.org/securitycouncil/en/content/2231/background",
198
+ "effective_from": "2006-07-31",
199
+ "effective_to": null
200
+ }
201
+ ]
202
+ },
203
+ "country_code": "IR"
204
+ },
205
+ {
206
+ "restrictions": {
207
+ "UN": [
208
+ {
209
+ "id": "KM_LIMITED",
210
+ "reason": "Limited postal infrastructure",
211
+ "notes": "Small island nation with limited postal services",
212
+ "entity_type": "territory",
213
+ "status": "limited",
214
+ "reference": null,
215
+ "effective_from": null,
216
+ "effective_to": null
217
+ }
218
+ ]
219
+ },
220
+ "country_code": "KM"
221
+ },
222
+ {
223
+ "restrictions": {
224
+ "UN": [
225
+ {
226
+ "id": "KP_SANCTIONS_2006",
227
+ "reason": "UN and applicable national restrictive measures",
228
+ "description": "Merchandise often prohibited; letters and postcards may face severe limitations",
229
+ "notes": "Verify current operator rules and sanctions lists",
230
+ "entity_type": "country",
231
+ "status": "prohibited",
232
+ "reference": "https://www.un.org/securitycouncil/sanctions/1718",
233
+ "effective_from": "2006-10-09",
234
+ "effective_to": null
235
+ }
236
+ ]
237
+ },
238
+ "country_code": "KP"
239
+ },
240
+ {
241
+ "restrictions": {
242
+ "UN": [
243
+ {
244
+ "id": "LY_CONFLICT",
245
+ "reason": "Conflict-related disruption",
246
+ "description": "Parcel services may be suspended; letter services may be limited",
247
+ "notes": "Verify current operator acceptance",
248
+ "entity_type": "country",
249
+ "status": "severe",
250
+ "reference": "https://www.un.org/securitycouncil/sanctions/1970",
251
+ "effective_from": "2011-02-17",
252
+ "effective_to": null
253
+ }
254
+ ]
255
+ },
256
+ "country_code": "LY"
257
+ },
258
+ {
259
+ "restrictions": {
260
+ "EU": [
261
+ {
262
+ "id": "MD_TRANSNISTRIA",
263
+ "reason": "Recognition and routing constraints",
264
+ "description": "Postal routing via the internationally recognised postal administration may be limited",
265
+ "notes": "Addressing conventions may vary; verify current operator acceptance",
266
+ "entity_type": "territory",
267
+ "partial": true,
268
+ "status": "restricted",
269
+ "reference": "https://www.sanctionsmap.eu/",
270
+ "effective_from": "1992-03-02",
271
+ "effective_to": null,
272
+ "region_code": "MD-SN"
273
+ }
274
+ ],
275
+ "CH": [
276
+ {
277
+ "id": "MD_TRANSNISTRIA",
278
+ "reason": "Recognition and routing constraints",
279
+ "description": "Postal routing via the internationally recognised postal administration may be limited",
280
+ "notes": "Addressing conventions may vary; verify current operator acceptance",
281
+ "entity_type": "territory",
282
+ "partial": true,
283
+ "status": "restricted",
284
+ "reference": "https://www.seco.admin.ch/seco/en/home/Aussenwirtschaftspolitik_Wirtschaftliche_Zusammenarbeit/Wirtschaftsbeziehungen/exportkontrollen-und-sanktionen/sanktionen-embargos.html",
285
+ "effective_from": "1992-03-02",
286
+ "effective_to": null,
287
+ "region_code": "MD-SN"
288
+ }
289
+ ]
290
+ },
291
+ "country_code": "MD"
292
+ },
293
+ {
294
+ "restrictions": {
295
+ "UN": [
296
+ {
297
+ "id": "MS_LIMITED",
298
+ "reason": "Small Caribbean island, limited infrastructure",
299
+ "notes": "British overseas territory",
300
+ "entity_type": "territory",
301
+ "status": "limited",
302
+ "reference": null,
303
+ "effective_from": null,
304
+ "effective_to": null
305
+ }
306
+ ]
307
+ },
308
+ "country_code": "MS"
309
+ },
310
+ {
311
+ "restrictions": {
312
+ "UN": [
313
+ {
314
+ "id": "PS_TERRITORY",
315
+ "reason": "Operational limitations",
316
+ "description": "Routing may be via Israeli postal channels; access may vary by area",
317
+ "notes": "Addressing conventions may vary; verify current operator acceptance",
318
+ "areas": {
319
+ "west_bank": "Limited or routed via Israeli postal channels; verify operator",
320
+ "gaza": "May be severely limited or unavailable; verify operator"
321
+ },
322
+ "entity_type": "disputed",
323
+ "partial": true,
324
+ "status": "limited",
325
+ "reference": null,
326
+ "effective_from": null,
327
+ "effective_to": null
328
+ }
329
+ ]
330
+ },
331
+ "country_code": "PS"
332
+ },
333
+ {
334
+ "restrictions": {
335
+ "EU": [
336
+ {
337
+ "id": "RU_SANCTIONS_2022",
338
+ "reason": "EU restrictive measures",
339
+ "description": "Parcel services may be suspended; letters and payment channels may be restricted",
340
+ "notes": "Verify current EUR-Lex and operator acceptance from your jurisdiction",
341
+ "entity_type": "country",
342
+ "status": "severe",
343
+ "reference": "https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=CELEX:32014R0833",
344
+ "effective_from": "2022-02-24",
345
+ "effective_to": null
346
+ }
347
+ ]
348
+ },
349
+ "country_code": "RU"
350
+ },
351
+ {
352
+ "restrictions": {
353
+ "UN": [
354
+ {
355
+ "id": "SD_2023_CONFLICT",
356
+ "reason": "Conflict-related disruption",
357
+ "description": "Postal services may be severely disrupted",
358
+ "notes": "Verify current operator acceptance",
359
+ "entity_type": "country",
360
+ "status": "severe",
361
+ "reference": "https://www.un.org/securitycouncil/sanctions/1591",
362
+ "effective_from": "2023-04-15",
363
+ "effective_to": null
364
+ }
365
+ ]
366
+ },
367
+ "country_code": "SD"
368
+ },
369
+ {
370
+ "restrictions": {
371
+ "UN": [
372
+ {
373
+ "id": "SO_CONFLICT",
374
+ "reason": "Conflict-related disruption and infrastructure limitations",
375
+ "description": "Postal services may be limited",
376
+ "notes": "Coverage may vary by area; verify operator",
377
+ "entity_type": "country",
378
+ "status": "restricted",
379
+ "reference": "https://www.un.org/securitycouncil/sanctions/751",
380
+ "effective_from": "1991-01-26",
381
+ "effective_to": null
382
+ }
383
+ ]
384
+ },
385
+ "country_code": "SO"
386
+ },
387
+ {
388
+ "restrictions": {
389
+ "UN": [
390
+ {
391
+ "id": "SS_INFRASTRUCTURE",
392
+ "reason": "Conflict-related disruption and infrastructure limitations",
393
+ "description": "Postal services may be severely limited",
394
+ "notes": "Verify current operator acceptance",
395
+ "entity_type": "country",
396
+ "status": "severe",
397
+ "reference": "https://www.un.org/securitycouncil/sanctions/2206",
398
+ "effective_from": "2013-12-15",
399
+ "effective_to": null
400
+ }
401
+ ]
402
+ },
403
+ "country_code": "SS"
404
+ },
405
+ {
406
+ "restrictions": {
407
+ "EU": [
408
+ {
409
+ "id": "SY_SANCTIONS_2011",
410
+ "reason": "Conflict-related disruption and EU restrictive measures",
411
+ "description": "Most postal services may be suspended or limited",
412
+ "notes": "Verify current legal and operator rules",
413
+ "entity_type": "country",
414
+ "status": "prohibited",
415
+ "reference": "https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=CELEX:32012R0036",
416
+ "effective_from": "2011-05-09",
417
+ "effective_to": null
418
+ }
419
+ ]
420
+ },
421
+ "country_code": "SY"
422
+ },
423
+ {
424
+ "restrictions": {
425
+ "UN": [
426
+ {
427
+ "id": "TC_LIMITED",
428
+ "reason": "Small Caribbean islands",
429
+ "notes": "British overseas territory",
430
+ "entity_type": "territory",
431
+ "status": "limited",
432
+ "reference": null,
433
+ "effective_from": null,
434
+ "effective_to": null
435
+ }
436
+ ]
437
+ },
438
+ "country_code": "TC"
439
+ },
440
+ {
441
+ "restrictions": {
442
+ "UN": [
443
+ {
444
+ "id": "TL_LIMITED",
445
+ "reason": "Limited postal infrastructure",
446
+ "notes": "Young nation with developing postal system",
447
+ "entity_type": "territory",
448
+ "status": "limited",
449
+ "reference": null,
450
+ "effective_from": null,
451
+ "effective_to": null
452
+ }
453
+ ]
454
+ },
455
+ "country_code": "TL"
456
+ },
457
+ {
458
+ "restrictions": {
459
+ "UN": [
460
+ {
461
+ "id": "TW_TERRITORY",
462
+ "reason": "Politically sensitive routing and addressing context",
463
+ "description": "Postal services are often operational; verify product and addressing requirements",
464
+ "notes": "Addressing and designation rules may differ by carrier and corridor",
465
+ "entity_type": "disputed",
466
+ "status": "operational",
467
+ "reference": null,
468
+ "effective_from": null,
469
+ "effective_to": null
470
+ }
471
+ ]
472
+ },
473
+ "country_code": "TW"
474
+ },
475
+ {
476
+ "restrictions": {
477
+ "EU": [
478
+ {
479
+ "id": "UA_LUHANSK_2014",
480
+ "reason": "EU restrictive measures under listed frameworks may apply to this region",
481
+ "description": "Postal acceptance or routing may be prohibited for senders subject to this framework",
482
+ "notes": "Verify current legal and operator rules for this territory and sender jurisdiction",
483
+ "entity_type": "territory",
484
+ "partial": true,
485
+ "status": "prohibited",
486
+ "reference": "https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=CELEX:32022R1903",
487
+ "effective_from": "2014-04-27",
488
+ "effective_to": null,
489
+ "region_code": "UA-09"
490
+ },
491
+ {
492
+ "id": "UA_DONETSK_2014",
493
+ "reason": "EU restrictive measures under listed frameworks may apply to this region",
494
+ "description": "Postal acceptance or routing may be prohibited for senders subject to this framework",
495
+ "notes": "Verify current legal and operator rules for this territory and sender jurisdiction",
496
+ "entity_type": "territory",
497
+ "partial": true,
498
+ "status": "prohibited",
499
+ "reference": "https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=CELEX:32022R1903",
500
+ "effective_from": "2014-04-07",
501
+ "effective_to": null,
502
+ "region_code": "UA-14"
503
+ },
504
+ {
505
+ "id": "UA_ZAPORIZHZHIA_2022",
506
+ "reason": "EU restrictive measures under listed frameworks may apply to this region",
507
+ "description": "Postal acceptance or routing may be prohibited for senders subject to this framework",
508
+ "notes": "Operational coverage may vary by sub-area; verify current operator acceptance and addressing",
509
+ "entity_type": "territory",
510
+ "partial": true,
511
+ "status": "prohibited",
512
+ "reference": "https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=CELEX:32022R1903",
513
+ "effective_from": "2022-02-24",
514
+ "effective_to": null,
515
+ "region_code": "UA-23"
516
+ },
517
+ {
518
+ "id": "UA_CRIMEA_2014",
519
+ "reason": "EU restrictive measures under listed frameworks may apply to this region",
520
+ "description": "Postal acceptance or routing may be prohibited for senders subject to this framework",
521
+ "notes": "Verify current legal and operator rules for this territory and sender jurisdiction",
522
+ "entity_type": "territory",
523
+ "partial": false,
524
+ "status": "prohibited",
525
+ "reference": "https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=CELEX:32022R1903",
526
+ "effective_from": "2014-03-18",
527
+ "effective_to": null,
528
+ "region_code": "UA-43"
529
+ },
530
+ {
531
+ "id": "UA_KHERSON_2022",
532
+ "reason": "EU restrictive measures under listed frameworks may apply to this region",
533
+ "description": "Postal acceptance or routing may be prohibited for senders subject to this framework",
534
+ "notes": "Operational coverage may vary by sub-area; verify current operator acceptance and addressing",
535
+ "entity_type": "territory",
536
+ "partial": true,
537
+ "status": "prohibited",
538
+ "reference": "https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=CELEX:32022R1903",
539
+ "effective_from": "2022-02-24",
540
+ "effective_to": null,
541
+ "region_code": "UA-65"
542
+ }
543
+ ],
544
+ "CH": [
545
+ {
546
+ "id": "UA_LUHANSK_2014",
547
+ "reason": "EU restrictive measures under listed frameworks may apply to this region",
548
+ "description": "Postal acceptance or routing may be prohibited for senders subject to this framework",
549
+ "notes": "Verify current legal and operator rules for this territory and sender jurisdiction",
550
+ "entity_type": "territory",
551
+ "partial": true,
552
+ "status": "prohibited",
553
+ "reference": "https://www.seco.admin.ch/seco/en/home/Aussenwirtschaftspolitik_Wirtschaftliche_Zusammenarbeit/Wirtschaftsbeziehungen/exportkontrollen-und-sanktionen/sanktionen-embargos.html",
554
+ "effective_from": "2014-04-27",
555
+ "effective_to": null,
556
+ "region_code": "UA-09"
557
+ },
558
+ {
559
+ "id": "UA_DONETSK_2014",
560
+ "reason": "EU restrictive measures under listed frameworks may apply to this region",
561
+ "description": "Postal acceptance or routing may be prohibited for senders subject to this framework",
562
+ "notes": "Verify current legal and operator rules for this territory and sender jurisdiction",
563
+ "entity_type": "territory",
564
+ "partial": true,
565
+ "status": "prohibited",
566
+ "reference": "https://www.seco.admin.ch/seco/en/home/Aussenwirtschaftspolitik_Wirtschaftliche_Zusammenarbeit/Wirtschaftsbeziehungen/exportkontrollen-und-sanktionen/sanktionen-embargos.html",
567
+ "effective_from": "2014-04-07",
568
+ "effective_to": null,
569
+ "region_code": "UA-14"
570
+ },
571
+ {
572
+ "id": "UA_ZAPORIZHZHIA_2022",
573
+ "reason": "EU restrictive measures under listed frameworks may apply to this region",
574
+ "description": "Postal acceptance or routing may be prohibited for senders subject to this framework",
575
+ "notes": "Operational coverage may vary by sub-area; verify current operator acceptance and addressing",
576
+ "entity_type": "territory",
577
+ "partial": true,
578
+ "status": "prohibited",
579
+ "reference": "https://www.seco.admin.ch/seco/en/home/Aussenwirtschaftspolitik_Wirtschaftliche_Zusammenarbeit/Wirtschaftsbeziehungen/exportkontrollen-und-sanktionen/sanktionen-embargos.html",
580
+ "effective_from": "2022-02-24",
581
+ "effective_to": null,
582
+ "region_code": "UA-23"
583
+ },
584
+ {
585
+ "id": "UA_CRIMEA_2014",
586
+ "reason": "EU restrictive measures under listed frameworks may apply to this region",
587
+ "description": "Postal acceptance or routing may be prohibited for senders subject to this framework",
588
+ "notes": "Verify current legal and operator rules for this territory and sender jurisdiction",
589
+ "entity_type": "territory",
590
+ "partial": false,
591
+ "status": "prohibited",
592
+ "reference": "https://www.seco.admin.ch/seco/en/home/Aussenwirtschaftspolitik_Wirtschaftliche_Zusammenarbeit/Wirtschaftsbeziehungen/exportkontrollen-und-sanktionen/sanktionen-embargos.html",
593
+ "effective_from": "2014-03-18",
594
+ "effective_to": null,
595
+ "region_code": "UA-43"
596
+ },
597
+ {
598
+ "id": "UA_KHERSON_2022",
599
+ "reason": "EU restrictive measures under listed frameworks may apply to this region",
600
+ "description": "Postal acceptance or routing may be prohibited for senders subject to this framework",
601
+ "notes": "Operational coverage may vary by sub-area; verify current operator acceptance and addressing",
602
+ "entity_type": "territory",
603
+ "partial": true,
604
+ "status": "prohibited",
605
+ "reference": "https://www.seco.admin.ch/seco/en/home/Aussenwirtschaftspolitik_Wirtschaftliche_Zusammenarbeit/Wirtschaftsbeziehungen/exportkontrollen-und-sanktionen/sanktionen-embargos.html",
606
+ "effective_from": "2022-02-24",
607
+ "effective_to": null,
608
+ "region_code": "UA-65"
609
+ }
610
+ ]
611
+ },
612
+ "country_code": "UA"
613
+ },
614
+ {
615
+ "restrictions": {
616
+ "EU": [
617
+ {
618
+ "id": "VE_CRISIS",
619
+ "reason": "EU restrictive measures and economic stress",
620
+ "description": "Postal services and payment channels may be disrupted",
621
+ "notes": "Verify current legal and operator rules for your sender jurisdiction",
622
+ "entity_type": "country",
623
+ "status": "restricted",
624
+ "reference": "https://www.sanctionsmap.eu/",
625
+ "effective_from": "2019-01-23",
626
+ "effective_to": null
627
+ }
628
+ ]
629
+ },
630
+ "country_code": "VE"
631
+ },
632
+ {
633
+ "restrictions": {
634
+ "UN": [
635
+ {
636
+ "id": "YE_CONFLICT",
637
+ "reason": "Conflict-related disruption",
638
+ "description": "Postal services may be severely limited or suspended",
639
+ "notes": "Verify current operator acceptance",
640
+ "entity_type": "country",
641
+ "status": "prohibited",
642
+ "reference": "https://www.un.org/securitycouncil/sanctions/2140",
643
+ "effective_from": "2015-03-26",
644
+ "effective_to": null
645
+ }
646
+ ]
647
+ },
648
+ "country_code": "YE"
649
+ },
650
+ {
651
+ "restrictions": {
652
+ "UN": [
653
+ {
654
+ "id": "YT_LIMITED",
655
+ "reason": "French territory with limited direct services",
656
+ "notes": "Services via France",
657
+ "entity_type": "territory",
658
+ "status": "limited",
659
+ "reference": null,
660
+ "effective_from": null,
661
+ "effective_to": null
662
+ }
663
+ ]
664
+ },
665
+ "country_code": "YT"
666
+ }
667
+ ]
668
+ }