@gruncellka/porto-data 0.3.0 → 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 +215 -0
  2. package/LICENSE +199 -5
  3. package/README.md +53 -34
  4. package/index.d.ts +35 -18
  5. package/index.js +2 -1
  6. package/package.json +28 -8
  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,131 +1,668 @@
1
1
  {
2
- "project": {
3
- "name": "gruncellka-porto-data",
4
- "version": "0.3.0",
5
- "description": "Deutsche Post pricing and rules data with schema validation"
2
+ "$schema": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/metadata.schema.json",
3
+ "project": {
4
+ "name": "gruncellka-porto-data",
5
+ "version": "0.4.1",
6
+ "description": "Multi-provider postal JSON: operator catalogs, pricing, shared policy (markets, restrictions), and schemas"
7
+ },
8
+ "generated_at": "2026-07-05T18:43:07.999139Z",
9
+ "policy": {
10
+ "jurisdictions": {
11
+ "data": {
12
+ "path": "policy/jurisdictions.json",
13
+ "checksum": "3180374274ef15804c248de50e2b2a52f077a91f8dfc8133ac27d55416ea6adb",
14
+ "size": 14723
15
+ },
16
+ "schema": {
17
+ "path": "schemas/jurisdictions.schema.json",
18
+ "checksum": "b7a99c97bb5b24397c5081664f598d175678e9b5dd9d416ca59cb235aa3e35b5",
19
+ "size": 3457,
20
+ "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/jurisdictions.schema.json"
21
+ }
6
22
  },
7
- "generated_at": "2026-03-06T21:31:50.292940Z",
8
- "entities": {
9
- "products": {
10
- "data": {
11
- "path": "data/products.json",
12
- "checksum": "8da8c25b5f7a47214c4545d697a952e9b99a35d0f72bcf50eeaab92bad67c7c7",
13
- "size": 2187
14
- },
15
- "schema": {
16
- "path": "schemas/products.schema.json",
17
- "checksum": "f51df51b3cefaea78128d5be5d4e9b46013ae84a4a725770d9b63b23034ede22",
18
- "size": 4142,
19
- "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/products.schema.json"
20
- }
21
- },
22
- "services": {
23
- "data": {
24
- "path": "data/services.json",
25
- "checksum": "465e8bdcae160ad42698e17fb900fed02c98cc9c10a262a318e5b2ded945c29e",
26
- "size": 2102
27
- },
28
- "schema": {
29
- "path": "schemas/services.schema.json",
30
- "checksum": "719b066bd97be2ac1db151cf4632d72ecdee7f6bcee84b129dd11caa1f9f8644",
31
- "size": 2749,
32
- "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/services.schema.json"
33
- }
34
- },
35
- "prices": {
36
- "data": {
37
- "path": "data/prices.json",
38
- "checksum": "d1b35264b0b83f18d18c4d50a07400d9c08e1fabae519f21e6e2814292cbdb9f",
39
- "size": 7377
40
- },
41
- "schema": {
42
- "path": "schemas/prices.schema.json",
43
- "checksum": "832b0b21de5ee78c2ec48642a7adadff076f866778d51d1b44f784c98f22fb8b",
44
- "size": 7646,
45
- "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/prices.schema.json"
46
- }
47
- },
48
- "zones": {
49
- "data": {
50
- "path": "data/zones.json",
51
- "checksum": "2e0234e1b10bf0274e0df6195e02b9b466b1575d1517a06cf9fc1589567b4863",
52
- "size": 5268
53
- },
54
- "schema": {
55
- "path": "schemas/zones.schema.json",
56
- "checksum": "f3bac4fe0bf3e7f1f1771ca23b5f49c56ec5eb56e9336710fc50afe6df9dcf59",
57
- "size": 2542,
58
- "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/zones.schema.json"
59
- }
60
- },
61
- "weight_tiers": {
62
- "data": {
63
- "path": "data/weight_tiers.json",
64
- "checksum": "0dcfee346b70620a2a894828bb1e55fb4ad7981726380741aa8540d22c2a3b74",
65
- "size": 1276
66
- },
67
- "schema": {
68
- "path": "schemas/weight_tiers.schema.json",
69
- "checksum": "6eef72c89cabf9110c7ed4c918af4b87cb697883483a713ffaf8570011390135",
70
- "size": 2247,
71
- "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/weight_tiers.schema.json"
72
- }
73
- },
74
- "dimensions": {
75
- "data": {
76
- "path": "data/dimensions.json",
77
- "checksum": "be93d09616265832e22cc1d04809b7ce70f55ef20d540bf9244cc8d6cc9ab644",
78
- "size": 4159
79
- },
80
- "schema": {
81
- "path": "schemas/dimensions.schema.json",
82
- "checksum": "895f48dbddead69d50b7c43b60a7fb43f71bb065580e0a458e4ec2e023ac4d51",
83
- "size": 8365,
84
- "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/dimensions.schema.json"
85
- }
86
- },
87
- "features": {
88
- "data": {
89
- "path": "data/features.json",
90
- "checksum": "daccdb0bc22ed96106f2eb62fbd5ca4de1cc4ced0812754cb099e3cbf95434ee",
91
- "size": 2377
92
- },
93
- "schema": {
94
- "path": "schemas/features.schema.json",
95
- "checksum": "b9df09aa5b3dbc4173e708e5bfef438978ba7b505bc670c08bbb10669ba27cf0",
96
- "size": 1935,
97
- "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/features.schema.json"
98
- }
99
- },
100
- "restrictions": {
101
- "data": {
102
- "path": "data/restrictions.json",
103
- "checksum": "525692444b4a7a0b1642be0c13dd6aba54885426451bae2eb7dbb2d9c751c44b",
104
- "size": 31194
105
- },
106
- "schema": {
107
- "path": "schemas/restrictions.schema.json",
108
- "checksum": "c2c873c1f0c0c973e5201772ef9c7831d59d0c0d150e3369c340a242352f7e0c",
109
- "size": 12671,
110
- "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/restrictions.schema.json"
111
- }
112
- },
113
- "data_links": {
114
- "data": {
115
- "path": "data/data_links.json",
116
- "checksum": "b9287b2b640bfabeaeb6139f3046aea31066e85a6d617d0139acf4e475cdc618",
117
- "size": 4496
118
- },
119
- "schema": {
120
- "path": "schemas/data_links.schema.json",
121
- "checksum": "ef1c64da2df95756f01ead6b6d421aa2ea1c10162890ab5392a94de1b88fe171",
122
- "size": 7686,
123
- "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/data_links.schema.json"
124
- }
23
+ "markets": {
24
+ "data": {
25
+ "path": "policy/markets.json",
26
+ "checksum": "b2ae680fafac5688fbd240f5e6fe7273c7bfab4ecbc68a8afe686784df42fbdd",
27
+ "size": 1717
28
+ },
29
+ "schema": {
30
+ "path": "schemas/markets.schema.json",
31
+ "checksum": "60249bfe0bd22d1d20ac2b8ed25eadb363338e950ecee25ad14a4eabeb92542a",
32
+ "size": 5156,
33
+ "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/markets.schema.json"
34
+ }
35
+ },
36
+ "restrictions": {
37
+ "data": {
38
+ "path": "policy/restrictions.json",
39
+ "checksum": "fb71f2b747696d486b11646e439cc36c00ebda51d50c8a449f9e5bafa83871d0",
40
+ "size": 26485
41
+ },
42
+ "schema": {
43
+ "path": "schemas/restrictions.schema.json",
44
+ "checksum": "6e27fb1df1d018e4f9debc0724e41c276441d9bc68737d47bca2e23529ca458b",
45
+ "size": 5351,
46
+ "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/restrictions.schema.json"
47
+ }
48
+ }
49
+ },
50
+ "formats": {
51
+ "envelopes": {
52
+ "data": {
53
+ "path": "formats/envelopes.json",
54
+ "checksum": "95a3f6fb36c1aafc23eb268f0e90b8679fc90afbfd31b8fcb4a0ee3fc05f3bb2",
55
+ "size": 2687
56
+ },
57
+ "schema": {
58
+ "path": "schemas/envelopes.schema.json",
59
+ "checksum": "a3b6c2e1d84fccd4288f049ca2061e33628dd557e89c8f6d70723f0c579fb1f1",
60
+ "size": 3354,
61
+ "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/envelopes.schema.json"
62
+ }
63
+ },
64
+ "layouts": {
65
+ "data": {
66
+ "path": "formats/layouts.json",
67
+ "checksum": "eaacc7486f2924113780eec2870301da6f172a66a31ce428de2c981241487785",
68
+ "size": 6507
69
+ },
70
+ "schema": {
71
+ "path": "schemas/layouts.schema.json",
72
+ "checksum": "63c869b4400d63b65bda23f2bd9ffe24cb15ee56f3538a6b55475ff194e8ed1f",
73
+ "size": 3511,
74
+ "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/layouts.schema.json"
75
+ }
76
+ }
77
+ },
78
+ "registry": {
79
+ "providers": {
80
+ "data": {
81
+ "path": "providers.json",
82
+ "checksum": "3a917d301079717518bf4d9eeeb399f5a6b23a7524e4ebb47f3b7cfac209a4a0",
83
+ "size": 790
84
+ },
85
+ "schema": {
86
+ "path": "schemas/providers.schema.json",
87
+ "checksum": "9d7625c035a403df4ab3afdbdafe689ad609ac855d264fc9bf3f0f7a8562f820",
88
+ "size": 2405,
89
+ "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/providers.schema.json"
90
+ }
91
+ }
92
+ },
93
+ "providers": {
94
+ "deutschepost": {
95
+ "marks": {
96
+ "data": {
97
+ "path": "providers/deutschepost/marks.json",
98
+ "checksum": "0cd5cdece2b5017432a2cdd2c364a8c2f01713f2bb39a103c36c372f0098e3a8",
99
+ "size": 2278
100
+ },
101
+ "schema": {
102
+ "path": "schemas/marks.schema.json",
103
+ "checksum": "1ffed7cde98211b4277ea88f8c83e217931254b571dc493bf2c3d2075b19859f",
104
+ "size": 3752,
105
+ "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/marks.schema.json"
106
+ }
107
+ },
108
+ "products": {
109
+ "data": {
110
+ "path": "providers/deutschepost/products.json",
111
+ "checksum": "1728927b2886b653ac96172754fe3acd7b95928c671cbe5ffdc63cf43e01a99c",
112
+ "size": 4138
113
+ },
114
+ "schema": {
115
+ "path": "schemas/products.schema.json",
116
+ "checksum": "0add633b9b85b872f451f21303598fae25d7d913f8b1c22dc52a5e57ea5e270c",
117
+ "size": 10057,
118
+ "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/products.schema.json"
119
+ }
120
+ },
121
+ "features": {
122
+ "data": {
123
+ "path": "providers/deutschepost/features.json",
124
+ "checksum": "a4f4b8ea32bb0a80ed31bd12f79ec298e8605c6c9a8d481c7da3bf3c0dd68af6",
125
+ "size": 1325
126
+ },
127
+ "schema": {
128
+ "path": "schemas/features.schema.json",
129
+ "checksum": "0251e0a296b063ec72128f333e104516a595c9964137bd1f20578f945b0b9509",
130
+ "size": 2359,
131
+ "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/features.schema.json"
132
+ }
133
+ },
134
+ "services": {
135
+ "data": {
136
+ "path": "providers/deutschepost/services.json",
137
+ "checksum": "3dffce1415f2ece88c42c0483c4963f8028e61d2c7215846b75c287d59e52a3d",
138
+ "size": 2380
139
+ },
140
+ "schema": {
141
+ "path": "schemas/services.schema.json",
142
+ "checksum": "168f406acb6012d72f5c16305aa5048ef7ae4a5d8d092b9c723483f7735252c4",
143
+ "size": 4525,
144
+ "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/services.schema.json"
145
+ }
146
+ },
147
+ "product_prices": {
148
+ "data": {
149
+ "path": "providers/deutschepost/prices/products.json",
150
+ "checksum": "d312f0bc6395216a2518e2756aae5f6ffac8e3e06843283c9aaf359d1665caad",
151
+ "size": 5051
152
+ },
153
+ "schema": {
154
+ "path": "schemas/product_prices.schema.json",
155
+ "checksum": "6fa749dba54953ce5859c793454f65e92781b16d1a158462b3db6f4838d06db8",
156
+ "size": 3689,
157
+ "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/product_prices.schema.json"
158
+ }
159
+ },
160
+ "service_prices": {
161
+ "data": {
162
+ "path": "providers/deutschepost/prices/services.json",
163
+ "checksum": "d423600f5fb57e868a2916e6cfbc39ef12b213177c64a0173c0c792df4fc8d6c",
164
+ "size": 1081
165
+ },
166
+ "schema": {
167
+ "path": "schemas/service_prices.schema.json",
168
+ "checksum": "f04d7fd5ac1d6d75c75d0031f5507e4c9b2c11af0f4921ba21e7f7a7dc9c1c72",
169
+ "size": 3430,
170
+ "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/service_prices.schema.json"
171
+ }
172
+ },
173
+ "zones": {
174
+ "data": {
175
+ "path": "providers/deutschepost/zones.json",
176
+ "checksum": "b37204d231402a12d3723d4c7b24923b5eb93dbb406964dd485a25bc4b554255",
177
+ "size": 3586
178
+ },
179
+ "schema": {
180
+ "path": "schemas/zones.schema.json",
181
+ "checksum": "9c885e33205eb86059541df31df527f6b13c220d4b971d32e0f86400d2661caa",
182
+ "size": 2149,
183
+ "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/zones.schema.json"
184
+ }
185
+ },
186
+ "weights": {
187
+ "data": {
188
+ "path": "providers/deutschepost/weights.json",
189
+ "checksum": "71e39a8d185f42273e7920d97805d3ddcf8bb5c3e743a38843b741ef35ef3bbe",
190
+ "size": 766
191
+ },
192
+ "schema": {
193
+ "path": "schemas/weights.schema.json",
194
+ "checksum": "0140382d9e7f7ff99479bb9f9847f8ea9706a1ebe3d9474574dd14294821dc08",
195
+ "size": 1757,
196
+ "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/weights.schema.json"
197
+ }
198
+ },
199
+ "limits": {
200
+ "data": {
201
+ "path": "providers/deutschepost/limits.json",
202
+ "checksum": "54a951708c994a980edc1e8ab8b96a185ed58d66ae578b14d05d752940799ac8",
203
+ "size": 778
204
+ },
205
+ "schema": {
206
+ "path": "schemas/limits.schema.json",
207
+ "checksum": "9b1d8fc03ca17d6322846b4d20e3aa80de3ec7351748fa0e700c6e3fca347360",
208
+ "size": 7167,
209
+ "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/limits.schema.json"
210
+ }
211
+ },
212
+ "graph": {
213
+ "data": {
214
+ "path": "providers/deutschepost/graph.json",
215
+ "checksum": "409034b77684db44f101d2631b92f4748d0d5849f69935c82b682ab352b9e46a",
216
+ "size": 5449
217
+ },
218
+ "schema": {
219
+ "path": "schemas/graph.schema.json",
220
+ "checksum": "306e71a3ae4dcfb6cfc77c781a14358738906c83b39f4bdef9e73e88d1866cf7",
221
+ "size": 5739,
222
+ "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/graph.schema.json"
223
+ }
224
+ }
225
+ },
226
+ "ukrposhta": {
227
+ "marks": {
228
+ "data": {
229
+ "path": "providers/ukrposhta/marks.json",
230
+ "checksum": "7a39bd9e2a7533a32511dc45f008eeab707054fa755044c1963f32d03d57dc43",
231
+ "size": 688
232
+ },
233
+ "schema": {
234
+ "path": "schemas/marks.schema.json",
235
+ "checksum": "1ffed7cde98211b4277ea88f8c83e217931254b571dc493bf2c3d2075b19859f",
236
+ "size": 3752,
237
+ "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/marks.schema.json"
238
+ }
239
+ },
240
+ "products": {
241
+ "data": {
242
+ "path": "providers/ukrposhta/products.json",
243
+ "checksum": "f37f86cf919032de2c10fbb45b1ad24d1c70ec3bd846a834603ded9c2fc83554",
244
+ "size": 1543
245
+ },
246
+ "schema": {
247
+ "path": "schemas/products.schema.json",
248
+ "checksum": "0add633b9b85b872f451f21303598fae25d7d913f8b1c22dc52a5e57ea5e270c",
249
+ "size": 10057,
250
+ "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/products.schema.json"
251
+ }
252
+ },
253
+ "features": {
254
+ "data": {
255
+ "path": "providers/ukrposhta/features.json",
256
+ "checksum": "3472f8a883354cea9e65a042050c22bd20107944a4421bec78d840dea8a13edd",
257
+ "size": 1029
258
+ },
259
+ "schema": {
260
+ "path": "schemas/features.schema.json",
261
+ "checksum": "0251e0a296b063ec72128f333e104516a595c9964137bd1f20578f945b0b9509",
262
+ "size": 2359,
263
+ "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/features.schema.json"
264
+ }
265
+ },
266
+ "services": {
267
+ "data": {
268
+ "path": "providers/ukrposhta/services.json",
269
+ "checksum": "3721d95ae18028566432db1337b7b2184d691549f885e0fc35dc88c46f78f05d",
270
+ "size": 1340
271
+ },
272
+ "schema": {
273
+ "path": "schemas/services.schema.json",
274
+ "checksum": "168f406acb6012d72f5c16305aa5048ef7ae4a5d8d092b9c723483f7735252c4",
275
+ "size": 4525,
276
+ "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/services.schema.json"
277
+ }
278
+ },
279
+ "product_prices": {
280
+ "data": {
281
+ "path": "providers/ukrposhta/prices/products.json",
282
+ "checksum": "ae8f722099f131367af892686ba2a4ebe04343b3767aac93a964e9da34f51ce8",
283
+ "size": 2639
284
+ },
285
+ "schema": {
286
+ "path": "schemas/product_prices.schema.json",
287
+ "checksum": "6fa749dba54953ce5859c793454f65e92781b16d1a158462b3db6f4838d06db8",
288
+ "size": 3689,
289
+ "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/product_prices.schema.json"
290
+ }
291
+ },
292
+ "service_prices": {
293
+ "data": {
294
+ "path": "providers/ukrposhta/prices/services.json",
295
+ "checksum": "15c526c40f615d94033323f974200d2f04bfe6e40b4a91c8fb41a12e68c1601f",
296
+ "size": 921
297
+ },
298
+ "schema": {
299
+ "path": "schemas/service_prices.schema.json",
300
+ "checksum": "f04d7fd5ac1d6d75c75d0031f5507e4c9b2c11af0f4921ba21e7f7a7dc9c1c72",
301
+ "size": 3430,
302
+ "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/service_prices.schema.json"
303
+ }
304
+ },
305
+ "zones": {
306
+ "data": {
307
+ "path": "providers/ukrposhta/zones.json",
308
+ "checksum": "2868f63b5c1ffd426cbc93ff087870278c73576e9e9096907bd3efc69e2a4cb2",
309
+ "size": 3414
310
+ },
311
+ "schema": {
312
+ "path": "schemas/zones.schema.json",
313
+ "checksum": "9c885e33205eb86059541df31df527f6b13c220d4b971d32e0f86400d2661caa",
314
+ "size": 2149,
315
+ "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/zones.schema.json"
316
+ }
317
+ },
318
+ "weights": {
319
+ "data": {
320
+ "path": "providers/ukrposhta/weights.json",
321
+ "checksum": "be7a6399eb9bc2aea4df8906f0463b7a465f7675daefa61ffbc40178a389269f",
322
+ "size": 464
323
+ },
324
+ "schema": {
325
+ "path": "schemas/weights.schema.json",
326
+ "checksum": "0140382d9e7f7ff99479bb9f9847f8ea9706a1ebe3d9474574dd14294821dc08",
327
+ "size": 1757,
328
+ "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/weights.schema.json"
329
+ }
330
+ },
331
+ "limits": {
332
+ "data": {
333
+ "path": "providers/ukrposhta/limits.json",
334
+ "checksum": "4f70d5281c197c21cd1529a1fd98af04944cb71bb7e0e4420e85cfa1d31adc55",
335
+ "size": 591
336
+ },
337
+ "schema": {
338
+ "path": "schemas/limits.schema.json",
339
+ "checksum": "9b1d8fc03ca17d6322846b4d20e3aa80de3ec7351748fa0e700c6e3fca347360",
340
+ "size": 7167,
341
+ "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/limits.schema.json"
342
+ }
343
+ },
344
+ "graph": {
345
+ "data": {
346
+ "path": "providers/ukrposhta/graph.json",
347
+ "checksum": "08c98f1427ee9e409844884a29765644fe8ab37ca20d932897f1c75d1b5d9d70",
348
+ "size": 3794
349
+ },
350
+ "schema": {
351
+ "path": "schemas/graph.schema.json",
352
+ "checksum": "306e71a3ae4dcfb6cfc77c781a14358738906c83b39f4bdef9e73e88d1866cf7",
353
+ "size": 5739,
354
+ "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/graph.schema.json"
125
355
  }
356
+ }
357
+ },
358
+ "laposte": {
359
+ "marks": {
360
+ "data": {
361
+ "path": "providers/laposte/marks.json",
362
+ "checksum": "9395af099672eafd64c886dd6b06953563c33a91724b80eda44d528d99f6cbb5",
363
+ "size": 1151
364
+ },
365
+ "schema": {
366
+ "path": "schemas/marks.schema.json",
367
+ "checksum": "1ffed7cde98211b4277ea88f8c83e217931254b571dc493bf2c3d2075b19859f",
368
+ "size": 3752,
369
+ "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/marks.schema.json"
370
+ }
371
+ },
372
+ "products": {
373
+ "data": {
374
+ "path": "providers/laposte/products.json",
375
+ "checksum": "c8bae0342e455055e6614fceb19bb57fd2c3269de21bd2a3792338095c71bf47",
376
+ "size": 5553
377
+ },
378
+ "schema": {
379
+ "path": "schemas/products.schema.json",
380
+ "checksum": "0add633b9b85b872f451f21303598fae25d7d913f8b1c22dc52a5e57ea5e270c",
381
+ "size": 10057,
382
+ "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/products.schema.json"
383
+ }
384
+ },
385
+ "features": {
386
+ "data": {
387
+ "path": "providers/laposte/features.json",
388
+ "checksum": "9951a330bcbb926d04a3cb294facc3c34090ddad3750934cb3f1a404a96071bb",
389
+ "size": 1408
390
+ },
391
+ "schema": {
392
+ "path": "schemas/features.schema.json",
393
+ "checksum": "0251e0a296b063ec72128f333e104516a595c9964137bd1f20578f945b0b9509",
394
+ "size": 2359,
395
+ "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/features.schema.json"
396
+ }
397
+ },
398
+ "services": {
399
+ "data": {
400
+ "path": "providers/laposte/services.json",
401
+ "checksum": "cd882e69dc1de0fbc9dc7a96ae40fcb1ee6c929addb3a7ae5fbf61cc743fc7ea",
402
+ "size": 2043
403
+ },
404
+ "schema": {
405
+ "path": "schemas/services.schema.json",
406
+ "checksum": "168f406acb6012d72f5c16305aa5048ef7ae4a5d8d092b9c723483f7735252c4",
407
+ "size": 4525,
408
+ "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/services.schema.json"
409
+ }
410
+ },
411
+ "product_prices": {
412
+ "data": {
413
+ "path": "providers/laposte/prices/products.json",
414
+ "checksum": "676005a2a864067ad735746c0c8a8853a012402847308e4e890cfa4baa5e621c",
415
+ "size": 20544
416
+ },
417
+ "schema": {
418
+ "path": "schemas/product_prices.schema.json",
419
+ "checksum": "6fa749dba54953ce5859c793454f65e92781b16d1a158462b3db6f4838d06db8",
420
+ "size": 3689,
421
+ "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/product_prices.schema.json"
422
+ }
423
+ },
424
+ "service_prices": {
425
+ "data": {
426
+ "path": "providers/laposte/prices/services.json",
427
+ "checksum": "668a5cbdaf024a5d35b9aae29a1467f4b665952504bf1eef6cb49441fca47463",
428
+ "size": 890
429
+ },
430
+ "schema": {
431
+ "path": "schemas/service_prices.schema.json",
432
+ "checksum": "f04d7fd5ac1d6d75c75d0031f5507e4c9b2c11af0f4921ba21e7f7a7dc9c1c72",
433
+ "size": 3430,
434
+ "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/service_prices.schema.json"
435
+ }
436
+ },
437
+ "zones": {
438
+ "data": {
439
+ "path": "providers/laposte/zones.json",
440
+ "checksum": "fb8bfc89f4c46641fdb60d77060e45a6dcd9942077db4fd80ae4eea838a7edd9",
441
+ "size": 3763
442
+ },
443
+ "schema": {
444
+ "path": "schemas/zones.schema.json",
445
+ "checksum": "9c885e33205eb86059541df31df527f6b13c220d4b971d32e0f86400d2661caa",
446
+ "size": 2149,
447
+ "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/zones.schema.json"
448
+ }
449
+ },
450
+ "weights": {
451
+ "data": {
452
+ "path": "providers/laposte/weights.json",
453
+ "checksum": "e5514d679be16ac71383e94a59a72580f0184b4d62b6923e1a8b26ed65bda3ec",
454
+ "size": 631
455
+ },
456
+ "schema": {
457
+ "path": "schemas/weights.schema.json",
458
+ "checksum": "0140382d9e7f7ff99479bb9f9847f8ea9706a1ebe3d9474574dd14294821dc08",
459
+ "size": 1757,
460
+ "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/weights.schema.json"
461
+ }
462
+ },
463
+ "limits": {
464
+ "data": {
465
+ "path": "providers/laposte/limits.json",
466
+ "checksum": "eb7144d1ad35958190b4461a43c08e98f6bba62bc68217bb34fcc4e676769b16",
467
+ "size": 715
468
+ },
469
+ "schema": {
470
+ "path": "schemas/limits.schema.json",
471
+ "checksum": "9b1d8fc03ca17d6322846b4d20e3aa80de3ec7351748fa0e700c6e3fca347360",
472
+ "size": 7167,
473
+ "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/limits.schema.json"
474
+ }
475
+ },
476
+ "graph": {
477
+ "data": {
478
+ "path": "providers/laposte/graph.json",
479
+ "checksum": "f8bc6bb9bd15e8d0ceb7e5e06e6e888583d4044dd355bba26007096bf3997713",
480
+ "size": 5775
481
+ },
482
+ "schema": {
483
+ "path": "schemas/graph.schema.json",
484
+ "checksum": "306e71a3ae4dcfb6cfc77c781a14358738906c83b39f4bdef9e73e88d1866cf7",
485
+ "size": 5739,
486
+ "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/graph.schema.json"
487
+ }
488
+ }
489
+ },
490
+ "swisspost": {
491
+ "marks": {
492
+ "data": {
493
+ "path": "providers/swisspost/marks.json",
494
+ "checksum": "39591b83edbdef41ecb288ff73d34005ab0ab76c826e0131fdc3e4e97ed57cb2",
495
+ "size": 1111
496
+ },
497
+ "schema": {
498
+ "path": "schemas/marks.schema.json",
499
+ "checksum": "1ffed7cde98211b4277ea88f8c83e217931254b571dc493bf2c3d2075b19859f",
500
+ "size": 3752,
501
+ "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/marks.schema.json"
502
+ }
503
+ },
504
+ "rules": {
505
+ "data": {
506
+ "path": "providers/swisspost/rules.json",
507
+ "checksum": "2008b0367d8bc962a856007fda8390787cb85186e9b85c3b5b615ba8b8970e45",
508
+ "size": 842
509
+ },
510
+ "schema": {
511
+ "path": "schemas/rules.schema.json",
512
+ "checksum": "17cc63648012f32b17f94f9e4f18d9643f3faaccfd44a7efb7b7174c1c99bbe3",
513
+ "size": 3374,
514
+ "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/rules.schema.json"
515
+ }
516
+ },
517
+ "products": {
518
+ "data": {
519
+ "path": "providers/swisspost/products.json",
520
+ "checksum": "a2fd15caede7298c7640100088c5e274e6a5ba4ce6e37b7ab4c2f3284a0e26c0",
521
+ "size": 4003
522
+ },
523
+ "schema": {
524
+ "path": "schemas/products.schema.json",
525
+ "checksum": "0add633b9b85b872f451f21303598fae25d7d913f8b1c22dc52a5e57ea5e270c",
526
+ "size": 10057,
527
+ "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/products.schema.json"
528
+ }
529
+ },
530
+ "features": {
531
+ "data": {
532
+ "path": "providers/swisspost/features.json",
533
+ "checksum": "9325238d028435a9f20a61cd24fc1adccfb4836428824bb72a955b3447894a67",
534
+ "size": 794
535
+ },
536
+ "schema": {
537
+ "path": "schemas/features.schema.json",
538
+ "checksum": "0251e0a296b063ec72128f333e104516a595c9964137bd1f20578f945b0b9509",
539
+ "size": 2359,
540
+ "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/features.schema.json"
541
+ }
542
+ },
543
+ "services": {
544
+ "data": {
545
+ "path": "providers/swisspost/services.json",
546
+ "checksum": "ef177e61d492ad4cb5ab47d8b0f225007ec2a528557f783c9d065d5eb72508c7",
547
+ "size": 1370
548
+ },
549
+ "schema": {
550
+ "path": "schemas/services.schema.json",
551
+ "checksum": "168f406acb6012d72f5c16305aa5048ef7ae4a5d8d092b9c723483f7735252c4",
552
+ "size": 4525,
553
+ "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/services.schema.json"
554
+ }
555
+ },
556
+ "product_prices": {
557
+ "data": {
558
+ "path": "providers/swisspost/prices/products.json",
559
+ "checksum": "7ce223fc4574f01a518be7ff7530cec8c4e8f90e6bcdf1ca7f36b970b71c412e",
560
+ "size": 7502
561
+ },
562
+ "schema": {
563
+ "path": "schemas/product_prices.schema.json",
564
+ "checksum": "6fa749dba54953ce5859c793454f65e92781b16d1a158462b3db6f4838d06db8",
565
+ "size": 3689,
566
+ "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/product_prices.schema.json"
567
+ }
568
+ },
569
+ "service_prices": {
570
+ "data": {
571
+ "path": "providers/swisspost/prices/services.json",
572
+ "checksum": "eda78820f3ff204c482983f85964bcf512a31addf83c51251e20bf0d047c4845",
573
+ "size": 675
574
+ },
575
+ "schema": {
576
+ "path": "schemas/service_prices.schema.json",
577
+ "checksum": "f04d7fd5ac1d6d75c75d0031f5507e4c9b2c11af0f4921ba21e7f7a7dc9c1c72",
578
+ "size": 3430,
579
+ "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/service_prices.schema.json"
580
+ }
581
+ },
582
+ "zones": {
583
+ "data": {
584
+ "path": "providers/swisspost/zones.json",
585
+ "checksum": "e1b6a6a21e4b8ac13244aa91cf1df3b9a02541024fcc97cdf272a90003ed113e",
586
+ "size": 3628
587
+ },
588
+ "schema": {
589
+ "path": "schemas/zones.schema.json",
590
+ "checksum": "9c885e33205eb86059541df31df527f6b13c220d4b971d32e0f86400d2661caa",
591
+ "size": 2149,
592
+ "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/zones.schema.json"
593
+ }
594
+ },
595
+ "weights": {
596
+ "data": {
597
+ "path": "providers/swisspost/weights.json",
598
+ "checksum": "9b555faaea8bdb1368f01069bd6786960f387510c41217b5bb54f4a0a93c0650",
599
+ "size": 633
600
+ },
601
+ "schema": {
602
+ "path": "schemas/weights.schema.json",
603
+ "checksum": "0140382d9e7f7ff99479bb9f9847f8ea9706a1ebe3d9474574dd14294821dc08",
604
+ "size": 1757,
605
+ "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/weights.schema.json"
606
+ }
607
+ },
608
+ "limits": {
609
+ "data": {
610
+ "path": "providers/swisspost/limits.json",
611
+ "checksum": "f4abbd802a81e8c81bd7ce7af1621c77287b21f486ffa368d5f186e065326ecb",
612
+ "size": 790
613
+ },
614
+ "schema": {
615
+ "path": "schemas/limits.schema.json",
616
+ "checksum": "9b1d8fc03ca17d6322846b4d20e3aa80de3ec7351748fa0e700c6e3fca347360",
617
+ "size": 7167,
618
+ "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/limits.schema.json"
619
+ }
620
+ },
621
+ "graph": {
622
+ "data": {
623
+ "path": "providers/swisspost/graph.json",
624
+ "checksum": "2e6fd1354fa5b386b370b10ca88e24561ff7249635c075df7c6327c356240075",
625
+ "size": 5399
626
+ },
627
+ "schema": {
628
+ "path": "schemas/graph.schema.json",
629
+ "checksum": "306e71a3ae4dcfb6cfc77c781a14358738906c83b39f4bdef9e73e88d1866cf7",
630
+ "size": 5739,
631
+ "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/graph.schema.json"
632
+ }
633
+ }
634
+ }
635
+ },
636
+ "checksums": {
637
+ "algorithm": "SHA-256",
638
+ "note": "Use checksums to verify data integrity and detect changes"
639
+ },
640
+ "bundle": {
641
+ "mappings": {
642
+ "data": {
643
+ "path": "mappings.json",
644
+ "checksum": "56b20983f12be2fa1d4cfc0ee779634000c78bc88a983507113eed3e684ad053",
645
+ "size": 3916
646
+ },
647
+ "schema": {
648
+ "path": "schemas/mappings.schema.json",
649
+ "checksum": "786042addb33cf4c694ca2a7c074f228537dadb72e03058ef2d925e407c10512",
650
+ "size": 2460,
651
+ "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/mappings.schema.json"
652
+ }
126
653
  },
127
- "checksums": {
128
- "algorithm": "SHA-256",
129
- "note": "Use checksums to verify data integrity and detect changes"
654
+ "providers_registry": {
655
+ "data": {
656
+ "path": "providers.json",
657
+ "checksum": "3a917d301079717518bf4d9eeeb399f5a6b23a7524e4ebb47f3b7cfac209a4a0",
658
+ "size": 790
659
+ },
660
+ "schema": {
661
+ "path": "schemas/providers.schema.json",
662
+ "checksum": "9d7625c035a403df4ab3afdbdafe689ad609ac855d264fc9bf3f0f7a8562f820",
663
+ "size": 2405,
664
+ "url": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/providers.schema.json"
665
+ }
130
666
  }
667
+ }
131
668
  }