@gruncellka/porto-data 0.1.0
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.
- package/LICENSE +9 -0
- package/README.md +88 -0
- package/package.json +28 -0
- package/porto_data/data/data_links.json +148 -0
- package/porto_data/data/dimensions.json +158 -0
- package/porto_data/data/features.json +66 -0
- package/porto_data/data/prices.json +242 -0
- package/porto_data/data/products.json +84 -0
- package/porto_data/data/restrictions.json +795 -0
- package/porto_data/data/services.json +61 -0
- package/porto_data/data/weight_tiers.json +54 -0
- package/porto_data/data/zones.json +230 -0
- package/porto_data/mappings.json +13 -0
- package/porto_data/metadata.json +131 -0
- package/porto_data/schemas/data_links.schema.json +223 -0
- package/porto_data/schemas/dimensions.schema.json +215 -0
- package/porto_data/schemas/features.schema.json +60 -0
- package/porto_data/schemas/prices.schema.json +180 -0
- package/porto_data/schemas/products.schema.json +122 -0
- package/porto_data/schemas/restrictions.schema.json +369 -0
- package/porto_data/schemas/services.schema.json +77 -0
- package/porto_data/schemas/weight_tiers.schema.json +70 -0
- package/porto_data/schemas/zones.schema.json +79 -0
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/services.schema.json",
|
|
3
|
+
"file_type": "services",
|
|
4
|
+
"services": [
|
|
5
|
+
{
|
|
6
|
+
"id": "registered_mail",
|
|
7
|
+
"name": "Einschreiben",
|
|
8
|
+
"description": "Tracking with proof of mailing",
|
|
9
|
+
"features": [
|
|
10
|
+
"tracking_number",
|
|
11
|
+
"proof_of_mailing",
|
|
12
|
+
"delivery_confirmation"
|
|
13
|
+
]
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"id": "registered_mail_mailbox",
|
|
17
|
+
"name": "Einschreiben Einwurf",
|
|
18
|
+
"description": "Registered delivery into mailbox",
|
|
19
|
+
"features": [
|
|
20
|
+
"tracking_number",
|
|
21
|
+
"mailbox_delivery",
|
|
22
|
+
"photo_proof_delivery"
|
|
23
|
+
]
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"id": "registered_mail_return_receipt",
|
|
27
|
+
"name": "Einschreiben R\u00fcckschein",
|
|
28
|
+
"description": "Registered mail with signature and return receipt",
|
|
29
|
+
"features": [
|
|
30
|
+
"tracking_number",
|
|
31
|
+
"recipient_signature",
|
|
32
|
+
"return_receipt",
|
|
33
|
+
"proof_of_delivery"
|
|
34
|
+
]
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"id": "registered_mail_personal",
|
|
38
|
+
"name": "Einschreiben Eigenh\u00e4ndig",
|
|
39
|
+
"description": "Personal delivery to recipient only",
|
|
40
|
+
"features": [
|
|
41
|
+
"tracking_number",
|
|
42
|
+
"personal_delivery",
|
|
43
|
+
"id_verification",
|
|
44
|
+
"delivery_confirmation"
|
|
45
|
+
]
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"id": "registered_mail_personal_return_receipt",
|
|
49
|
+
"name": "Einschreiben Eigenh\u00e4ndig R\u00fcckschein",
|
|
50
|
+
"name_en": "Registered Mail (Personal) with Return Receipt",
|
|
51
|
+
"description": "Personal delivery with signature and return receipt",
|
|
52
|
+
"features": [
|
|
53
|
+
"tracking_number",
|
|
54
|
+
"personal_delivery",
|
|
55
|
+
"id_verification",
|
|
56
|
+
"recipient_signature",
|
|
57
|
+
"return_receipt"
|
|
58
|
+
]
|
|
59
|
+
}
|
|
60
|
+
]
|
|
61
|
+
}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/weight_tiers.schema.json",
|
|
3
|
+
"file_type": "weight_tiers",
|
|
4
|
+
"unit": {
|
|
5
|
+
"weight": "g"
|
|
6
|
+
},
|
|
7
|
+
"weight_tiers": {
|
|
8
|
+
"W0020": {
|
|
9
|
+
"min": 0,
|
|
10
|
+
"max": 20,
|
|
11
|
+
"label": "Up to 20g"
|
|
12
|
+
},
|
|
13
|
+
"W0050": {
|
|
14
|
+
"min": 21,
|
|
15
|
+
"max": 50,
|
|
16
|
+
"label": "21g to 50g"
|
|
17
|
+
},
|
|
18
|
+
"W0500": {
|
|
19
|
+
"min": 51,
|
|
20
|
+
"max": 500,
|
|
21
|
+
"label": "51g to 500g"
|
|
22
|
+
},
|
|
23
|
+
"W1000": {
|
|
24
|
+
"min": 501,
|
|
25
|
+
"max": 1000,
|
|
26
|
+
"label": "501g to 1000g"
|
|
27
|
+
},
|
|
28
|
+
"W2000": {
|
|
29
|
+
"min": 1001,
|
|
30
|
+
"max": 2000,
|
|
31
|
+
"label": "1001g to 2000g"
|
|
32
|
+
},
|
|
33
|
+
"W5000": {
|
|
34
|
+
"min": 2001,
|
|
35
|
+
"max": 5000,
|
|
36
|
+
"label": "Up to 5000g"
|
|
37
|
+
},
|
|
38
|
+
"W10000": {
|
|
39
|
+
"min": 5001,
|
|
40
|
+
"max": 10000,
|
|
41
|
+
"label": "Up to 10000g"
|
|
42
|
+
},
|
|
43
|
+
"W20000": {
|
|
44
|
+
"min": 10001,
|
|
45
|
+
"max": 20000,
|
|
46
|
+
"label": "Up to 20000g"
|
|
47
|
+
},
|
|
48
|
+
"W31500": {
|
|
49
|
+
"min": 20001,
|
|
50
|
+
"max": 31500,
|
|
51
|
+
"label": "Up to 31500g"
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
}
|
|
@@ -0,0 +1,230 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/zones.schema.json",
|
|
3
|
+
"file_type": "zones",
|
|
4
|
+
"unit": {
|
|
5
|
+
"country_code": "ISO 3166-1 alpha-2"
|
|
6
|
+
},
|
|
7
|
+
"zones": [
|
|
8
|
+
{
|
|
9
|
+
"id": "domestic",
|
|
10
|
+
"name": "Deutschland",
|
|
11
|
+
"description": "Germany",
|
|
12
|
+
"country_codes": [
|
|
13
|
+
"DE"
|
|
14
|
+
]
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"id": "zone_1_eu",
|
|
18
|
+
"name": "Zone 1 - EU",
|
|
19
|
+
"description": "European Union member countries",
|
|
20
|
+
"country_codes": [
|
|
21
|
+
"AT",
|
|
22
|
+
"BE",
|
|
23
|
+
"BG",
|
|
24
|
+
"HR",
|
|
25
|
+
"CY",
|
|
26
|
+
"CZ",
|
|
27
|
+
"DK",
|
|
28
|
+
"EE",
|
|
29
|
+
"FI",
|
|
30
|
+
"FR",
|
|
31
|
+
"GR",
|
|
32
|
+
"HU",
|
|
33
|
+
"IE",
|
|
34
|
+
"IT",
|
|
35
|
+
"LV",
|
|
36
|
+
"LT",
|
|
37
|
+
"LU",
|
|
38
|
+
"MT",
|
|
39
|
+
"NL",
|
|
40
|
+
"PL",
|
|
41
|
+
"PT",
|
|
42
|
+
"RO",
|
|
43
|
+
"SK",
|
|
44
|
+
"SI",
|
|
45
|
+
"ES",
|
|
46
|
+
"SE"
|
|
47
|
+
]
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"id": "zone_2_europe",
|
|
51
|
+
"name": "Zone 2 - Europa",
|
|
52
|
+
"description": "European countries outside EU (CH, NO, GB, etc.)",
|
|
53
|
+
"country_codes": [
|
|
54
|
+
"AL",
|
|
55
|
+
"AD",
|
|
56
|
+
"BY",
|
|
57
|
+
"BA",
|
|
58
|
+
"FO",
|
|
59
|
+
"GI",
|
|
60
|
+
"GL",
|
|
61
|
+
"IS",
|
|
62
|
+
"XK",
|
|
63
|
+
"LI",
|
|
64
|
+
"MD",
|
|
65
|
+
"MC",
|
|
66
|
+
"ME",
|
|
67
|
+
"MK",
|
|
68
|
+
"NO",
|
|
69
|
+
"RU",
|
|
70
|
+
"SM",
|
|
71
|
+
"RS",
|
|
72
|
+
"CH",
|
|
73
|
+
"TR",
|
|
74
|
+
"UA",
|
|
75
|
+
"GB",
|
|
76
|
+
"VA"
|
|
77
|
+
]
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"id": "world",
|
|
81
|
+
"name": "Welt",
|
|
82
|
+
"description": "All countries outside Europe (international mail)",
|
|
83
|
+
"country_codes": [
|
|
84
|
+
"AF",
|
|
85
|
+
"DZ",
|
|
86
|
+
"AO",
|
|
87
|
+
"AR",
|
|
88
|
+
"AM",
|
|
89
|
+
"AU",
|
|
90
|
+
"AZ",
|
|
91
|
+
"BH",
|
|
92
|
+
"BD",
|
|
93
|
+
"BB",
|
|
94
|
+
"BZ",
|
|
95
|
+
"BJ",
|
|
96
|
+
"BT",
|
|
97
|
+
"BO",
|
|
98
|
+
"BW",
|
|
99
|
+
"BR",
|
|
100
|
+
"BN",
|
|
101
|
+
"BF",
|
|
102
|
+
"BI",
|
|
103
|
+
"KH",
|
|
104
|
+
"CM",
|
|
105
|
+
"CA",
|
|
106
|
+
"CV",
|
|
107
|
+
"CF",
|
|
108
|
+
"TD",
|
|
109
|
+
"CL",
|
|
110
|
+
"CN",
|
|
111
|
+
"CO",
|
|
112
|
+
"KM",
|
|
113
|
+
"CG",
|
|
114
|
+
"CD",
|
|
115
|
+
"CR",
|
|
116
|
+
"CI",
|
|
117
|
+
"CU",
|
|
118
|
+
"DJ",
|
|
119
|
+
"DM",
|
|
120
|
+
"DO",
|
|
121
|
+
"EC",
|
|
122
|
+
"EG",
|
|
123
|
+
"SV",
|
|
124
|
+
"GQ",
|
|
125
|
+
"ER",
|
|
126
|
+
"ET",
|
|
127
|
+
"FJ",
|
|
128
|
+
"GA",
|
|
129
|
+
"GM",
|
|
130
|
+
"GE",
|
|
131
|
+
"GH",
|
|
132
|
+
"GD",
|
|
133
|
+
"GT",
|
|
134
|
+
"GN",
|
|
135
|
+
"GW",
|
|
136
|
+
"GY",
|
|
137
|
+
"HT",
|
|
138
|
+
"HN",
|
|
139
|
+
"IN",
|
|
140
|
+
"ID",
|
|
141
|
+
"IR",
|
|
142
|
+
"IQ",
|
|
143
|
+
"IL",
|
|
144
|
+
"JM",
|
|
145
|
+
"JP",
|
|
146
|
+
"JO",
|
|
147
|
+
"KZ",
|
|
148
|
+
"KE",
|
|
149
|
+
"KI",
|
|
150
|
+
"KP",
|
|
151
|
+
"KR",
|
|
152
|
+
"KW",
|
|
153
|
+
"KG",
|
|
154
|
+
"LA",
|
|
155
|
+
"LB",
|
|
156
|
+
"LS",
|
|
157
|
+
"LR",
|
|
158
|
+
"LY",
|
|
159
|
+
"MG",
|
|
160
|
+
"MW",
|
|
161
|
+
"MY",
|
|
162
|
+
"MV",
|
|
163
|
+
"ML",
|
|
164
|
+
"MH",
|
|
165
|
+
"MR",
|
|
166
|
+
"MU",
|
|
167
|
+
"MX",
|
|
168
|
+
"FM",
|
|
169
|
+
"MN",
|
|
170
|
+
"MA",
|
|
171
|
+
"MZ",
|
|
172
|
+
"MM",
|
|
173
|
+
"NA",
|
|
174
|
+
"NR",
|
|
175
|
+
"NP",
|
|
176
|
+
"NZ",
|
|
177
|
+
"NI",
|
|
178
|
+
"NE",
|
|
179
|
+
"NG",
|
|
180
|
+
"OM",
|
|
181
|
+
"PK",
|
|
182
|
+
"PW",
|
|
183
|
+
"PA",
|
|
184
|
+
"PG",
|
|
185
|
+
"PY",
|
|
186
|
+
"PE",
|
|
187
|
+
"PH",
|
|
188
|
+
"QA",
|
|
189
|
+
"RW",
|
|
190
|
+
"WS",
|
|
191
|
+
"ST",
|
|
192
|
+
"SA",
|
|
193
|
+
"SN",
|
|
194
|
+
"SC",
|
|
195
|
+
"SL",
|
|
196
|
+
"SG",
|
|
197
|
+
"SB",
|
|
198
|
+
"SO",
|
|
199
|
+
"ZA",
|
|
200
|
+
"LK",
|
|
201
|
+
"SD",
|
|
202
|
+
"SR",
|
|
203
|
+
"SZ",
|
|
204
|
+
"SY",
|
|
205
|
+
"TW",
|
|
206
|
+
"TJ",
|
|
207
|
+
"TZ",
|
|
208
|
+
"TH",
|
|
209
|
+
"TL",
|
|
210
|
+
"TG",
|
|
211
|
+
"TO",
|
|
212
|
+
"TT",
|
|
213
|
+
"TN",
|
|
214
|
+
"TM",
|
|
215
|
+
"TV",
|
|
216
|
+
"UG",
|
|
217
|
+
"AE",
|
|
218
|
+
"US",
|
|
219
|
+
"UY",
|
|
220
|
+
"UZ",
|
|
221
|
+
"VU",
|
|
222
|
+
"VE",
|
|
223
|
+
"VN",
|
|
224
|
+
"YE",
|
|
225
|
+
"ZM",
|
|
226
|
+
"ZW"
|
|
227
|
+
]
|
|
228
|
+
}
|
|
229
|
+
]
|
|
230
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"mappings": {
|
|
3
|
+
"schemas/products.schema.json": "data/products.json",
|
|
4
|
+
"schemas/services.schema.json": "data/services.json",
|
|
5
|
+
"schemas/prices.schema.json": "data/prices.json",
|
|
6
|
+
"schemas/zones.schema.json": "data/zones.json",
|
|
7
|
+
"schemas/weight_tiers.schema.json": "data/weight_tiers.json",
|
|
8
|
+
"schemas/dimensions.schema.json": "data/dimensions.json",
|
|
9
|
+
"schemas/features.schema.json": "data/features.json",
|
|
10
|
+
"schemas/restrictions.schema.json": "data/restrictions.json",
|
|
11
|
+
"schemas/data_links.schema.json": "data/data_links.json"
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
{
|
|
2
|
+
"project": {
|
|
3
|
+
"name": "gruncellka-porto-data",
|
|
4
|
+
"version": "0.1.0",
|
|
5
|
+
"description": "Deutsche Post pricing and rules data with schema validation"
|
|
6
|
+
},
|
|
7
|
+
"generated_at": "2026-02-28T16:19:36.359977Z",
|
|
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
|
+
}
|
|
125
|
+
}
|
|
126
|
+
},
|
|
127
|
+
"checksums": {
|
|
128
|
+
"algorithm": "SHA-256",
|
|
129
|
+
"note": "Use checksums to verify data integrity and detect changes"
|
|
130
|
+
}
|
|
131
|
+
}
|