@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,947 @@
1
+ {
2
+ "provider": "laposte",
3
+ "unit": {
4
+ "price": "cents",
5
+ "currency": "EUR"
6
+ },
7
+ "$schema": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/product_prices.schema.json",
8
+ "file_type": "product_prices",
9
+ "product_prices": [
10
+ {
11
+ "product_id": "lettre_verte",
12
+ "zone": "domestic",
13
+ "weight_tier": "W0020",
14
+ "price": [
15
+ {
16
+ "amount": 152,
17
+ "effective_from": "2026-01-01",
18
+ "effective_to": null
19
+ }
20
+ ]
21
+ },
22
+ {
23
+ "product_id": "lettre_verte",
24
+ "zone": "domestic",
25
+ "weight_tier": "W0100",
26
+ "price": [
27
+ {
28
+ "amount": 310,
29
+ "effective_from": "2026-01-01",
30
+ "effective_to": null
31
+ }
32
+ ]
33
+ },
34
+ {
35
+ "product_id": "lettre_verte",
36
+ "zone": "domestic",
37
+ "weight_tier": "W0250",
38
+ "price": [
39
+ {
40
+ "amount": 524,
41
+ "effective_from": "2026-01-01",
42
+ "effective_to": null
43
+ }
44
+ ]
45
+ },
46
+ {
47
+ "product_id": "lettre_verte",
48
+ "zone": "domestic",
49
+ "weight_tier": "W0500",
50
+ "price": [
51
+ {
52
+ "amount": 741,
53
+ "effective_from": "2026-01-01",
54
+ "effective_to": null
55
+ }
56
+ ]
57
+ },
58
+ {
59
+ "product_id": "lettre_verte",
60
+ "zone": "domestic",
61
+ "weight_tier": "W1000",
62
+ "price": [
63
+ {
64
+ "amount": 929,
65
+ "effective_from": "2026-01-01",
66
+ "effective_to": null
67
+ }
68
+ ]
69
+ },
70
+ {
71
+ "product_id": "lettre_verte",
72
+ "zone": "domestic",
73
+ "weight_tier": "W2000",
74
+ "price": [
75
+ {
76
+ "amount": 1114,
77
+ "effective_from": "2026-01-01",
78
+ "effective_to": null
79
+ }
80
+ ]
81
+ },
82
+ {
83
+ "product_id": "lettre_verte_suivie",
84
+ "zone": "domestic",
85
+ "weight_tier": "W0020",
86
+ "price": [
87
+ {
88
+ "amount": 202,
89
+ "effective_from": "2026-01-01",
90
+ "effective_to": null
91
+ }
92
+ ]
93
+ },
94
+ {
95
+ "product_id": "lettre_verte_suivie",
96
+ "zone": "zone_1_eu",
97
+ "weight_tier": "W0020",
98
+ "price": [
99
+ {
100
+ "amount": 505,
101
+ "effective_from": "2026-01-01",
102
+ "effective_to": null
103
+ }
104
+ ]
105
+ },
106
+ {
107
+ "product_id": "lettre_verte_suivie",
108
+ "zone": "zone_2_europe",
109
+ "weight_tier": "W0020",
110
+ "price": [
111
+ {
112
+ "amount": 505,
113
+ "effective_from": "2026-01-01",
114
+ "effective_to": null
115
+ }
116
+ ]
117
+ },
118
+ {
119
+ "product_id": "lettre_verte_suivie",
120
+ "zone": "world",
121
+ "weight_tier": "W0020",
122
+ "price": [
123
+ {
124
+ "amount": 505,
125
+ "effective_from": "2026-01-01",
126
+ "effective_to": null
127
+ }
128
+ ]
129
+ },
130
+ {
131
+ "product_id": "lettre_verte_suivie",
132
+ "zone": "domestic",
133
+ "weight_tier": "W0100",
134
+ "price": [
135
+ {
136
+ "amount": 360,
137
+ "effective_from": "2026-01-01",
138
+ "effective_to": null
139
+ }
140
+ ]
141
+ },
142
+ {
143
+ "product_id": "lettre_verte_suivie",
144
+ "zone": "zone_1_eu",
145
+ "weight_tier": "W0100",
146
+ "price": [
147
+ {
148
+ "amount": 765,
149
+ "effective_from": "2026-01-01",
150
+ "effective_to": null
151
+ }
152
+ ]
153
+ },
154
+ {
155
+ "product_id": "lettre_verte_suivie",
156
+ "zone": "zone_2_europe",
157
+ "weight_tier": "W0100",
158
+ "price": [
159
+ {
160
+ "amount": 765,
161
+ "effective_from": "2026-01-01",
162
+ "effective_to": null
163
+ }
164
+ ]
165
+ },
166
+ {
167
+ "product_id": "lettre_verte_suivie",
168
+ "zone": "world",
169
+ "weight_tier": "W0100",
170
+ "price": [
171
+ {
172
+ "amount": 765,
173
+ "effective_from": "2026-01-01",
174
+ "effective_to": null
175
+ }
176
+ ]
177
+ },
178
+ {
179
+ "product_id": "lettre_verte_suivie",
180
+ "zone": "domestic",
181
+ "weight_tier": "W0250",
182
+ "price": [
183
+ {
184
+ "amount": 574,
185
+ "effective_from": "2026-01-01",
186
+ "effective_to": null
187
+ }
188
+ ]
189
+ },
190
+ {
191
+ "product_id": "lettre_verte_suivie",
192
+ "zone": "zone_1_eu",
193
+ "weight_tier": "W0250",
194
+ "price": [
195
+ {
196
+ "amount": 1445,
197
+ "effective_from": "2026-01-01",
198
+ "effective_to": null
199
+ }
200
+ ]
201
+ },
202
+ {
203
+ "product_id": "lettre_verte_suivie",
204
+ "zone": "zone_2_europe",
205
+ "weight_tier": "W0250",
206
+ "price": [
207
+ {
208
+ "amount": 1445,
209
+ "effective_from": "2026-01-01",
210
+ "effective_to": null
211
+ }
212
+ ]
213
+ },
214
+ {
215
+ "product_id": "lettre_verte_suivie",
216
+ "zone": "world",
217
+ "weight_tier": "W0250",
218
+ "price": [
219
+ {
220
+ "amount": 1445,
221
+ "effective_from": "2026-01-01",
222
+ "effective_to": null
223
+ }
224
+ ]
225
+ },
226
+ {
227
+ "product_id": "lettre_verte_suivie",
228
+ "zone": "domestic",
229
+ "weight_tier": "W0500",
230
+ "price": [
231
+ {
232
+ "amount": 791,
233
+ "effective_from": "2026-01-01",
234
+ "effective_to": null
235
+ }
236
+ ]
237
+ },
238
+ {
239
+ "product_id": "lettre_verte_suivie",
240
+ "zone": "zone_1_eu",
241
+ "weight_tier": "W0500",
242
+ "price": [
243
+ {
244
+ "amount": 1940,
245
+ "effective_from": "2026-01-01",
246
+ "effective_to": null
247
+ }
248
+ ]
249
+ },
250
+ {
251
+ "product_id": "lettre_verte_suivie",
252
+ "zone": "zone_2_europe",
253
+ "weight_tier": "W0500",
254
+ "price": [
255
+ {
256
+ "amount": 1940,
257
+ "effective_from": "2026-01-01",
258
+ "effective_to": null
259
+ }
260
+ ]
261
+ },
262
+ {
263
+ "product_id": "lettre_verte_suivie",
264
+ "zone": "world",
265
+ "weight_tier": "W0500",
266
+ "price": [
267
+ {
268
+ "amount": 1940,
269
+ "effective_from": "2026-01-01",
270
+ "effective_to": null
271
+ }
272
+ ]
273
+ },
274
+ {
275
+ "product_id": "lettre_verte_suivie",
276
+ "zone": "domestic",
277
+ "weight_tier": "W1000",
278
+ "price": [
279
+ {
280
+ "amount": 979,
281
+ "effective_from": "2026-01-01",
282
+ "effective_to": null
283
+ }
284
+ ]
285
+ },
286
+ {
287
+ "product_id": "lettre_verte_suivie",
288
+ "zone": "zone_1_eu",
289
+ "weight_tier": "W1000",
290
+ "price": [
291
+ {
292
+ "amount": 3450,
293
+ "effective_from": "2026-01-01",
294
+ "effective_to": null
295
+ }
296
+ ]
297
+ },
298
+ {
299
+ "product_id": "lettre_verte_suivie",
300
+ "zone": "zone_2_europe",
301
+ "weight_tier": "W1000",
302
+ "price": [
303
+ {
304
+ "amount": 3450,
305
+ "effective_from": "2026-01-01",
306
+ "effective_to": null
307
+ }
308
+ ]
309
+ },
310
+ {
311
+ "product_id": "lettre_verte_suivie",
312
+ "zone": "world",
313
+ "weight_tier": "W1000",
314
+ "price": [
315
+ {
316
+ "amount": 3450,
317
+ "effective_from": "2026-01-01",
318
+ "effective_to": null
319
+ }
320
+ ]
321
+ },
322
+ {
323
+ "product_id": "lettre_verte_suivie",
324
+ "zone": "domestic",
325
+ "weight_tier": "W2000",
326
+ "price": [
327
+ {
328
+ "amount": 1164,
329
+ "effective_from": "2026-01-01",
330
+ "effective_to": null
331
+ }
332
+ ]
333
+ },
334
+ {
335
+ "product_id": "lettre_verte_suivie",
336
+ "zone": "zone_1_eu",
337
+ "weight_tier": "W2000",
338
+ "price": [
339
+ {
340
+ "amount": 3450,
341
+ "effective_from": "2026-01-01",
342
+ "effective_to": null
343
+ }
344
+ ]
345
+ },
346
+ {
347
+ "product_id": "lettre_verte_suivie",
348
+ "zone": "zone_2_europe",
349
+ "weight_tier": "W2000",
350
+ "price": [
351
+ {
352
+ "amount": 3450,
353
+ "effective_from": "2026-01-01",
354
+ "effective_to": null
355
+ }
356
+ ]
357
+ },
358
+ {
359
+ "product_id": "lettre_verte_suivie",
360
+ "zone": "world",
361
+ "weight_tier": "W2000",
362
+ "price": [
363
+ {
364
+ "amount": 3450,
365
+ "effective_from": "2026-01-01",
366
+ "effective_to": null
367
+ }
368
+ ]
369
+ },
370
+ {
371
+ "product_id": "lettre_services_plus",
372
+ "zone": "domestic",
373
+ "weight_tier": "W0020",
374
+ "price": [
375
+ {
376
+ "amount": 347,
377
+ "effective_from": "2026-01-01",
378
+ "effective_to": null
379
+ }
380
+ ]
381
+ },
382
+ {
383
+ "product_id": "lettre_services_plus",
384
+ "zone": "domestic",
385
+ "weight_tier": "W0100",
386
+ "price": [
387
+ {
388
+ "amount": 457,
389
+ "effective_from": "2026-01-01",
390
+ "effective_to": null
391
+ }
392
+ ]
393
+ },
394
+ {
395
+ "product_id": "lettre_services_plus",
396
+ "zone": "domestic",
397
+ "weight_tier": "W0250",
398
+ "price": [
399
+ {
400
+ "amount": 578,
401
+ "effective_from": "2026-01-01",
402
+ "effective_to": null
403
+ }
404
+ ]
405
+ },
406
+ {
407
+ "product_id": "lettre_services_plus",
408
+ "zone": "domestic",
409
+ "weight_tier": "W0500",
410
+ "price": [
411
+ {
412
+ "amount": 810,
413
+ "effective_from": "2026-01-01",
414
+ "effective_to": null
415
+ }
416
+ ]
417
+ },
418
+ {
419
+ "product_id": "lettre_services_plus",
420
+ "zone": "domestic",
421
+ "weight_tier": "W1000",
422
+ "price": [
423
+ {
424
+ "amount": 1035,
425
+ "effective_from": "2026-01-01",
426
+ "effective_to": null
427
+ }
428
+ ]
429
+ },
430
+ {
431
+ "product_id": "lettre_services_plus",
432
+ "zone": "domestic",
433
+ "weight_tier": "W2000",
434
+ "price": [
435
+ {
436
+ "amount": 1201,
437
+ "effective_from": "2026-01-01",
438
+ "effective_to": null
439
+ }
440
+ ]
441
+ },
442
+ {
443
+ "product_id": "lettre_recommandee_r_un",
444
+ "zone": "domestic",
445
+ "weight_tier": "W0020",
446
+ "price": [
447
+ {
448
+ "amount": 611,
449
+ "effective_from": "2026-01-01",
450
+ "effective_to": null
451
+ }
452
+ ]
453
+ },
454
+ {
455
+ "product_id": "lettre_recommandee_r_un",
456
+ "zone": "domestic",
457
+ "weight_tier": "W0050",
458
+ "price": [
459
+ {
460
+ "amount": 698,
461
+ "effective_from": "2026-01-01",
462
+ "effective_to": null
463
+ }
464
+ ]
465
+ },
466
+ {
467
+ "product_id": "lettre_recommandee_r_un",
468
+ "zone": "domestic",
469
+ "weight_tier": "W0100",
470
+ "price": [
471
+ {
472
+ "amount": 788,
473
+ "effective_from": "2026-01-01",
474
+ "effective_to": null
475
+ }
476
+ ]
477
+ },
478
+ {
479
+ "product_id": "lettre_recommandee_r_un",
480
+ "zone": "domestic",
481
+ "weight_tier": "W0250",
482
+ "price": [
483
+ {
484
+ "amount": 963,
485
+ "effective_from": "2026-01-01",
486
+ "effective_to": null
487
+ }
488
+ ]
489
+ },
490
+ {
491
+ "product_id": "lettre_recommandee_r_un",
492
+ "zone": "domestic",
493
+ "weight_tier": "W0500",
494
+ "price": [
495
+ {
496
+ "amount": 1132,
497
+ "effective_from": "2026-01-01",
498
+ "effective_to": null
499
+ }
500
+ ]
501
+ },
502
+ {
503
+ "product_id": "lettre_recommandee_r_un",
504
+ "zone": "domestic",
505
+ "weight_tier": "W1000",
506
+ "price": [
507
+ {
508
+ "amount": 1302,
509
+ "effective_from": "2026-01-01",
510
+ "effective_to": null
511
+ }
512
+ ]
513
+ },
514
+ {
515
+ "product_id": "lettre_recommandee_r_un",
516
+ "zone": "domestic",
517
+ "weight_tier": "W2000",
518
+ "price": [
519
+ {
520
+ "amount": 1542,
521
+ "effective_from": "2026-01-01",
522
+ "effective_to": null
523
+ }
524
+ ]
525
+ },
526
+ {
527
+ "product_id": "lettre_recommandee_r_deux",
528
+ "zone": "domestic",
529
+ "weight_tier": "W0020",
530
+ "price": [
531
+ {
532
+ "amount": 729,
533
+ "effective_from": "2026-01-01",
534
+ "effective_to": null
535
+ }
536
+ ]
537
+ },
538
+ {
539
+ "product_id": "lettre_recommandee_r_deux",
540
+ "zone": "domestic",
541
+ "weight_tier": "W0050",
542
+ "price": [
543
+ {
544
+ "amount": 807,
545
+ "effective_from": "2026-01-01",
546
+ "effective_to": null
547
+ }
548
+ ]
549
+ },
550
+ {
551
+ "product_id": "lettre_recommandee_r_deux",
552
+ "zone": "domestic",
553
+ "weight_tier": "W0100",
554
+ "price": [
555
+ {
556
+ "amount": 897,
557
+ "effective_from": "2026-01-01",
558
+ "effective_to": null
559
+ }
560
+ ]
561
+ },
562
+ {
563
+ "product_id": "lettre_recommandee_r_deux",
564
+ "zone": "domestic",
565
+ "weight_tier": "W0250",
566
+ "price": [
567
+ {
568
+ "amount": 1073,
569
+ "effective_from": "2026-01-01",
570
+ "effective_to": null
571
+ }
572
+ ]
573
+ },
574
+ {
575
+ "product_id": "lettre_recommandee_r_deux",
576
+ "zone": "domestic",
577
+ "weight_tier": "W0500",
578
+ "price": [
579
+ {
580
+ "amount": 1235,
581
+ "effective_from": "2026-01-01",
582
+ "effective_to": null
583
+ }
584
+ ]
585
+ },
586
+ {
587
+ "product_id": "lettre_recommandee_r_deux",
588
+ "zone": "domestic",
589
+ "weight_tier": "W1000",
590
+ "price": [
591
+ {
592
+ "amount": 1411,
593
+ "effective_from": "2026-01-01",
594
+ "effective_to": null
595
+ }
596
+ ]
597
+ },
598
+ {
599
+ "product_id": "lettre_recommandee_r_deux",
600
+ "zone": "domestic",
601
+ "weight_tier": "W2000",
602
+ "price": [
603
+ {
604
+ "amount": 1648,
605
+ "effective_from": "2026-01-01",
606
+ "effective_to": null
607
+ }
608
+ ]
609
+ },
610
+ {
611
+ "product_id": "lettre_recommandee_r_trois",
612
+ "zone": "domestic",
613
+ "weight_tier": "W0020",
614
+ "price": [
615
+ {
616
+ "amount": 897,
617
+ "effective_from": "2026-01-01",
618
+ "effective_to": null
619
+ }
620
+ ]
621
+ },
622
+ {
623
+ "product_id": "lettre_recommandee_r_trois",
624
+ "zone": "domestic",
625
+ "weight_tier": "W0050",
626
+ "price": [
627
+ {
628
+ "amount": 967,
629
+ "effective_from": "2026-01-01",
630
+ "effective_to": null
631
+ }
632
+ ]
633
+ },
634
+ {
635
+ "product_id": "lettre_recommandee_r_trois",
636
+ "zone": "domestic",
637
+ "weight_tier": "W0100",
638
+ "price": [
639
+ {
640
+ "amount": 1054,
641
+ "effective_from": "2026-01-01",
642
+ "effective_to": null
643
+ }
644
+ ]
645
+ },
646
+ {
647
+ "product_id": "lettre_recommandee_r_trois",
648
+ "zone": "domestic",
649
+ "weight_tier": "W0250",
650
+ "price": [
651
+ {
652
+ "amount": 1242,
653
+ "effective_from": "2026-01-01",
654
+ "effective_to": null
655
+ }
656
+ ]
657
+ },
658
+ {
659
+ "product_id": "lettre_recommandee_r_trois",
660
+ "zone": "domestic",
661
+ "weight_tier": "W0500",
662
+ "price": [
663
+ {
664
+ "amount": 1390,
665
+ "effective_from": "2026-01-01",
666
+ "effective_to": null
667
+ }
668
+ ]
669
+ },
670
+ {
671
+ "product_id": "lettre_recommandee_r_trois",
672
+ "zone": "domestic",
673
+ "weight_tier": "W1000",
674
+ "price": [
675
+ {
676
+ "amount": 1565,
677
+ "effective_from": "2026-01-01",
678
+ "effective_to": null
679
+ }
680
+ ]
681
+ },
682
+ {
683
+ "product_id": "lettre_recommandee_r_trois",
684
+ "zone": "domestic",
685
+ "weight_tier": "W2000",
686
+ "price": [
687
+ {
688
+ "amount": 1818,
689
+ "effective_from": "2026-01-01",
690
+ "effective_to": null
691
+ }
692
+ ]
693
+ },
694
+ {
695
+ "product_id": "lettre_recommandee_inter_r_un",
696
+ "zone": "zone_1_eu",
697
+ "weight_tier": "W0020",
698
+ "price": [
699
+ {
700
+ "amount": 720,
701
+ "effective_from": "2026-01-01",
702
+ "effective_to": null
703
+ }
704
+ ]
705
+ },
706
+ {
707
+ "product_id": "lettre_recommandee_inter_r_un",
708
+ "zone": "zone_2_europe",
709
+ "weight_tier": "W0020",
710
+ "price": [
711
+ {
712
+ "amount": 720,
713
+ "effective_from": "2026-01-01",
714
+ "effective_to": null
715
+ }
716
+ ]
717
+ },
718
+ {
719
+ "product_id": "lettre_recommandee_inter_r_un",
720
+ "zone": "world",
721
+ "weight_tier": "W0020",
722
+ "price": [
723
+ {
724
+ "amount": 720,
725
+ "effective_from": "2026-01-01",
726
+ "effective_to": null
727
+ }
728
+ ]
729
+ },
730
+ {
731
+ "product_id": "lettre_recommandee_inter_r_un",
732
+ "zone": "zone_1_eu",
733
+ "weight_tier": "W0050",
734
+ "price": [
735
+ {
736
+ "amount": 980,
737
+ "effective_from": "2026-01-01",
738
+ "effective_to": null
739
+ }
740
+ ]
741
+ },
742
+ {
743
+ "product_id": "lettre_recommandee_inter_r_un",
744
+ "zone": "zone_2_europe",
745
+ "weight_tier": "W0050",
746
+ "price": [
747
+ {
748
+ "amount": 980,
749
+ "effective_from": "2026-01-01",
750
+ "effective_to": null
751
+ }
752
+ ]
753
+ },
754
+ {
755
+ "product_id": "lettre_recommandee_inter_r_un",
756
+ "zone": "world",
757
+ "weight_tier": "W0050",
758
+ "price": [
759
+ {
760
+ "amount": 980,
761
+ "effective_from": "2026-01-01",
762
+ "effective_to": null
763
+ }
764
+ ]
765
+ },
766
+ {
767
+ "product_id": "lettre_recommandee_inter_r_un",
768
+ "zone": "zone_1_eu",
769
+ "weight_tier": "W0100",
770
+ "price": [
771
+ {
772
+ "amount": 980,
773
+ "effective_from": "2026-01-01",
774
+ "effective_to": null
775
+ }
776
+ ]
777
+ },
778
+ {
779
+ "product_id": "lettre_recommandee_inter_r_un",
780
+ "zone": "zone_2_europe",
781
+ "weight_tier": "W0100",
782
+ "price": [
783
+ {
784
+ "amount": 980,
785
+ "effective_from": "2026-01-01",
786
+ "effective_to": null
787
+ }
788
+ ]
789
+ },
790
+ {
791
+ "product_id": "lettre_recommandee_inter_r_un",
792
+ "zone": "world",
793
+ "weight_tier": "W0100",
794
+ "price": [
795
+ {
796
+ "amount": 980,
797
+ "effective_from": "2026-01-01",
798
+ "effective_to": null
799
+ }
800
+ ]
801
+ },
802
+ {
803
+ "product_id": "lettre_recommandee_inter_r_un",
804
+ "zone": "zone_1_eu",
805
+ "weight_tier": "W0250",
806
+ "price": [
807
+ {
808
+ "amount": 1660,
809
+ "effective_from": "2026-01-01",
810
+ "effective_to": null
811
+ }
812
+ ]
813
+ },
814
+ {
815
+ "product_id": "lettre_recommandee_inter_r_un",
816
+ "zone": "zone_2_europe",
817
+ "weight_tier": "W0250",
818
+ "price": [
819
+ {
820
+ "amount": 1660,
821
+ "effective_from": "2026-01-01",
822
+ "effective_to": null
823
+ }
824
+ ]
825
+ },
826
+ {
827
+ "product_id": "lettre_recommandee_inter_r_un",
828
+ "zone": "world",
829
+ "weight_tier": "W0250",
830
+ "price": [
831
+ {
832
+ "amount": 1660,
833
+ "effective_from": "2026-01-01",
834
+ "effective_to": null
835
+ }
836
+ ]
837
+ },
838
+ {
839
+ "product_id": "lettre_recommandee_inter_r_un",
840
+ "zone": "zone_1_eu",
841
+ "weight_tier": "W0500",
842
+ "price": [
843
+ {
844
+ "amount": 2155,
845
+ "effective_from": "2026-01-01",
846
+ "effective_to": null
847
+ }
848
+ ]
849
+ },
850
+ {
851
+ "product_id": "lettre_recommandee_inter_r_un",
852
+ "zone": "zone_2_europe",
853
+ "weight_tier": "W0500",
854
+ "price": [
855
+ {
856
+ "amount": 2155,
857
+ "effective_from": "2026-01-01",
858
+ "effective_to": null
859
+ }
860
+ ]
861
+ },
862
+ {
863
+ "product_id": "lettre_recommandee_inter_r_un",
864
+ "zone": "world",
865
+ "weight_tier": "W0500",
866
+ "price": [
867
+ {
868
+ "amount": 2155,
869
+ "effective_from": "2026-01-01",
870
+ "effective_to": null
871
+ }
872
+ ]
873
+ },
874
+ {
875
+ "product_id": "lettre_recommandee_inter_r_un",
876
+ "zone": "zone_1_eu",
877
+ "weight_tier": "W1000",
878
+ "price": [
879
+ {
880
+ "amount": 3665,
881
+ "effective_from": "2026-01-01",
882
+ "effective_to": null
883
+ }
884
+ ]
885
+ },
886
+ {
887
+ "product_id": "lettre_recommandee_inter_r_un",
888
+ "zone": "zone_2_europe",
889
+ "weight_tier": "W1000",
890
+ "price": [
891
+ {
892
+ "amount": 3665,
893
+ "effective_from": "2026-01-01",
894
+ "effective_to": null
895
+ }
896
+ ]
897
+ },
898
+ {
899
+ "product_id": "lettre_recommandee_inter_r_un",
900
+ "zone": "world",
901
+ "weight_tier": "W1000",
902
+ "price": [
903
+ {
904
+ "amount": 3665,
905
+ "effective_from": "2026-01-01",
906
+ "effective_to": null
907
+ }
908
+ ]
909
+ },
910
+ {
911
+ "product_id": "lettre_recommandee_inter_r_un",
912
+ "zone": "zone_1_eu",
913
+ "weight_tier": "W2000",
914
+ "price": [
915
+ {
916
+ "amount": 3665,
917
+ "effective_from": "2026-01-01",
918
+ "effective_to": null
919
+ }
920
+ ]
921
+ },
922
+ {
923
+ "product_id": "lettre_recommandee_inter_r_un",
924
+ "zone": "zone_2_europe",
925
+ "weight_tier": "W2000",
926
+ "price": [
927
+ {
928
+ "amount": 3665,
929
+ "effective_from": "2026-01-01",
930
+ "effective_to": null
931
+ }
932
+ ]
933
+ },
934
+ {
935
+ "product_id": "lettre_recommandee_inter_r_un",
936
+ "zone": "world",
937
+ "weight_tier": "W2000",
938
+ "price": [
939
+ {
940
+ "amount": 3665,
941
+ "effective_from": "2026-01-01",
942
+ "effective_to": null
943
+ }
944
+ ]
945
+ }
946
+ ]
947
+ }