@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
package/LICENSE
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 gruncellka
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
6
|
+
|
|
7
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
8
|
+
|
|
9
|
+
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
# Porto Data
|
|
2
|
+
|
|
3
|
+
[](https://github.com/gruncellka/porto-data/actions/workflows/validation.yml)
|
|
4
|
+
[](https://codecov.io/gh/gruncellka/porto-data)
|
|
5
|
+
|
|
6
|
+
**Structured JSON data for Deutsche Post shipping services**
|
|
7
|
+
|
|
8
|
+
A comprehensive, schema-validated dataset containing Deutsche Post pricing, restrictions, zones, features, services, and compliance frameworks for international postal services. All data is validated against JSON schemas and published as a self-contained package on **npm** and **PyPI**.
|
|
9
|
+
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
## Install
|
|
13
|
+
|
|
14
|
+
**npm** (scope: `@gruncellka`)
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
npm install @gruncellka/porto-data
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
**PyPI (Python)**
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
pip install gruncellka-porto-data
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
The package includes `data/`, `schemas/`, `mappings.json`, and `metadata.json` so you can validate and use the data offline. Data files reference canonical schema URLs (GitHub); schemas are shipped in the package for local validation.
|
|
27
|
+
|
|
28
|
+
- **PyPI**: After `pip install`, use the `porto` CLI or import the `porto_data` package; paths are resolved automatically.
|
|
29
|
+
- **npm**: Data lives under `porto_data/` (e.g. `porto_data/data/products.json`, `porto_data/schemas/`, `porto_data/mappings.json`, `porto_data/metadata.json`). Same layout in both ecosystems; the `porto_data` folder exists so the wheel includes the files correctly.
|
|
30
|
+
|
|
31
|
+
---
|
|
32
|
+
|
|
33
|
+
## Use cases
|
|
34
|
+
|
|
35
|
+
E-commerce and logistics (shipping costs, restrictions), compliance (sanctions, frameworks), research and education.
|
|
36
|
+
|
|
37
|
+
---
|
|
38
|
+
|
|
39
|
+
## Data statistics
|
|
40
|
+
|
|
41
|
+
9 JSON files, 9 schemas; 190+ countries in zones; 5 product types; 5 service types (e.g. registered mail); 31 restrictions across 18 compliance frameworks.
|
|
42
|
+
|
|
43
|
+
---
|
|
44
|
+
|
|
45
|
+
## Data overview and structure
|
|
46
|
+
|
|
47
|
+
| File | Description |
|
|
48
|
+
| ------------------- | ------------------------------------------------------- |
|
|
49
|
+
| `products.json` | Shipping products (letters, parcels, packages) |
|
|
50
|
+
| `services.json` | Additional services (registered mail, etc.) |
|
|
51
|
+
| `prices.json` | Pricing by product, zone, and weight (effective dates) |
|
|
52
|
+
| `zones.json` | Geographic zones and country mappings |
|
|
53
|
+
| `weight_tiers.json` | Weight brackets for pricing |
|
|
54
|
+
| `dimensions.json` | Size limits and specifications |
|
|
55
|
+
| `features.json` | Service features and capabilities |
|
|
56
|
+
| `restrictions.json` | Shipping restrictions, sanctions, compliance frameworks |
|
|
57
|
+
| `data_links.json` | Cross-references between data files |
|
|
58
|
+
|
|
59
|
+
All data is validated against JSON schemas in `schemas/`; `mappings.json` maps schemas to files; `metadata.json` has checksums and canonical URLs. **Structure:** Products → Prices → Zones (dimensions, weight tiers, effective dates); Services → Features; Restrictions → Frameworks (e.g. EU sanctions, UN resolutions). One-directional; no circular dependencies. `data_links.json` describes dependencies and lookup rules.
|
|
60
|
+
|
|
61
|
+
---
|
|
62
|
+
|
|
63
|
+
## Standards
|
|
64
|
+
|
|
65
|
+
- **Country codes**: ISO 3166-1 alpha-2 (`DE`, `US`, `FR`, `YE`)
|
|
66
|
+
- **Region codes**: ISO 3166-2 (`DE-BY`, `US-CA`, `FR-75`)
|
|
67
|
+
- **Dates**: ISO 8601 (`2024-01-15`, `2023-06-01`)
|
|
68
|
+
- **Jurisdiction**: `EU` (European Union), `UN` (United Nations), `DE` (Germany), `DP` (Deutsche Post operational)
|
|
69
|
+
|
|
70
|
+
**Restrictions:** Tracks occupied/disputed territories, links to legal frameworks (EU sanctions, UN resolutions), supports partial territory restrictions (`effective_partial`) and historical dates (`effective_from`, `effective_to`).
|
|
71
|
+
|
|
72
|
+
---
|
|
73
|
+
|
|
74
|
+
## Disclaimer
|
|
75
|
+
|
|
76
|
+
This is **reference data** for Deutsche Post services. Always verify current restrictions, pricing, and service availability with Deutsche Post before shipping. Data accuracy is best-effort. Official information: [Deutsche Post](https://www.deutschepost.de).
|
|
77
|
+
|
|
78
|
+
---
|
|
79
|
+
|
|
80
|
+
## Related resources
|
|
81
|
+
|
|
82
|
+
- [Deutsche Post](https://www.deutschepost.de)
|
|
83
|
+
- [EU Sanctions Map](https://www.sanctionsmap.eu/)
|
|
84
|
+
- [ISO 3166 Country Codes](https://www.iso.org/iso-3166-country-codes.html)
|
|
85
|
+
|
|
86
|
+
---
|
|
87
|
+
|
|
88
|
+
🔳 gruncellka
|
package/package.json
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@gruncellka/porto-data",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Deutsche Post pricing and rules data with schema validation",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/gruncellka/porto-data.git"
|
|
9
|
+
},
|
|
10
|
+
"keywords": [
|
|
11
|
+
"deutsche-post",
|
|
12
|
+
"shipping",
|
|
13
|
+
"postal",
|
|
14
|
+
"pricing",
|
|
15
|
+
"zones",
|
|
16
|
+
"restrictions",
|
|
17
|
+
"json",
|
|
18
|
+
"schema"
|
|
19
|
+
],
|
|
20
|
+
"files": [
|
|
21
|
+
"porto_data/data",
|
|
22
|
+
"porto_data/schemas",
|
|
23
|
+
"porto_data/mappings.json",
|
|
24
|
+
"porto_data/metadata.json",
|
|
25
|
+
"README.md",
|
|
26
|
+
"LICENSE"
|
|
27
|
+
]
|
|
28
|
+
}
|
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/data_links.schema.json",
|
|
3
|
+
"file_type": "data_links",
|
|
4
|
+
"schema_version": "1.0",
|
|
5
|
+
"unit": {
|
|
6
|
+
"weight": "g",
|
|
7
|
+
"dimension": "mm",
|
|
8
|
+
"price": "cents",
|
|
9
|
+
"currency": "EUR"
|
|
10
|
+
},
|
|
11
|
+
"dependencies": {
|
|
12
|
+
"products": {
|
|
13
|
+
"file": "products.json",
|
|
14
|
+
"depends_on": [
|
|
15
|
+
"zones.json",
|
|
16
|
+
"weight_tiers.json",
|
|
17
|
+
"dimensions.json",
|
|
18
|
+
"services.json",
|
|
19
|
+
"features.json"
|
|
20
|
+
],
|
|
21
|
+
"description": "Products require zones, weight tiers, dimensions, services and features"
|
|
22
|
+
},
|
|
23
|
+
"services": {
|
|
24
|
+
"file": "services.json",
|
|
25
|
+
"depends_on": [
|
|
26
|
+
"features.json"
|
|
27
|
+
],
|
|
28
|
+
"description": "Services require features and price information"
|
|
29
|
+
},
|
|
30
|
+
"prices": {
|
|
31
|
+
"file": "prices.json",
|
|
32
|
+
"depends_on": [
|
|
33
|
+
"products.json",
|
|
34
|
+
"services.json",
|
|
35
|
+
"zones.json",
|
|
36
|
+
"weight_tiers.json"
|
|
37
|
+
],
|
|
38
|
+
"description": "Prices reference products, services, zones, and weight tiers"
|
|
39
|
+
},
|
|
40
|
+
"zones": {
|
|
41
|
+
"file": "zones.json",
|
|
42
|
+
"depends_on": [
|
|
43
|
+
"restrictions.json"
|
|
44
|
+
],
|
|
45
|
+
"description": "Zones may have restricted destinations"
|
|
46
|
+
},
|
|
47
|
+
"weight_tiers": {
|
|
48
|
+
"file": "weight_tiers.json",
|
|
49
|
+
"depends_on": [],
|
|
50
|
+
"description": "Weight tiers are standalone definitions"
|
|
51
|
+
},
|
|
52
|
+
"dimensions": {
|
|
53
|
+
"file": "dimensions.json",
|
|
54
|
+
"depends_on": [],
|
|
55
|
+
"description": "Dimensions are standalone definitions"
|
|
56
|
+
},
|
|
57
|
+
"restrictions": {
|
|
58
|
+
"file": "restrictions.json",
|
|
59
|
+
"depends_on": [
|
|
60
|
+
"zones.json",
|
|
61
|
+
"products.json"
|
|
62
|
+
],
|
|
63
|
+
"description": "Restrictions reference zones, products, and compliance frameworks"
|
|
64
|
+
},
|
|
65
|
+
"features": {
|
|
66
|
+
"file": "features.json",
|
|
67
|
+
"depends_on": [],
|
|
68
|
+
"description": "Features are standalone definitions referenced by services"
|
|
69
|
+
}
|
|
70
|
+
},
|
|
71
|
+
"links": {
|
|
72
|
+
"letter_standard": {
|
|
73
|
+
"zones": [
|
|
74
|
+
"domestic",
|
|
75
|
+
"zone_1_eu",
|
|
76
|
+
"world"
|
|
77
|
+
],
|
|
78
|
+
"weight_tiers": [
|
|
79
|
+
"W0020"
|
|
80
|
+
]
|
|
81
|
+
},
|
|
82
|
+
"letter_compact": {
|
|
83
|
+
"zones": [
|
|
84
|
+
"domestic",
|
|
85
|
+
"zone_1_eu",
|
|
86
|
+
"world"
|
|
87
|
+
],
|
|
88
|
+
"weight_tiers": [
|
|
89
|
+
"W0050"
|
|
90
|
+
]
|
|
91
|
+
},
|
|
92
|
+
"letter_large": {
|
|
93
|
+
"zones": [
|
|
94
|
+
"domestic",
|
|
95
|
+
"zone_1_eu",
|
|
96
|
+
"world"
|
|
97
|
+
],
|
|
98
|
+
"weight_tiers": [
|
|
99
|
+
"W0500"
|
|
100
|
+
]
|
|
101
|
+
},
|
|
102
|
+
"letter_maxi": {
|
|
103
|
+
"zones": [
|
|
104
|
+
"domestic",
|
|
105
|
+
"zone_1_eu",
|
|
106
|
+
"world"
|
|
107
|
+
],
|
|
108
|
+
"weight_tiers": [
|
|
109
|
+
"W1000"
|
|
110
|
+
]
|
|
111
|
+
},
|
|
112
|
+
"merchandise": {
|
|
113
|
+
"zones": [
|
|
114
|
+
"domestic"
|
|
115
|
+
],
|
|
116
|
+
"weight_tiers": [
|
|
117
|
+
"W1000",
|
|
118
|
+
"W2000"
|
|
119
|
+
]
|
|
120
|
+
}
|
|
121
|
+
},
|
|
122
|
+
"lookup_rules": {
|
|
123
|
+
"price_lookup": "Find price in prices.json where product_id + zone + weight_tier match",
|
|
124
|
+
"service_lookup": "Find service in services.json by id",
|
|
125
|
+
"weight_resolution": "Find weight_tier in weight_tiers.json where min <= weight <= max",
|
|
126
|
+
"zone_validation": "Check if zone is in product's zones array"
|
|
127
|
+
},
|
|
128
|
+
"global_settings": {
|
|
129
|
+
"price_source": "prices.json",
|
|
130
|
+
"lookup_method": {
|
|
131
|
+
"file": "prices.json",
|
|
132
|
+
"array": "prices.product_prices",
|
|
133
|
+
"match": {
|
|
134
|
+
"product_id": "from product id",
|
|
135
|
+
"zone": "from zones array",
|
|
136
|
+
"weight_tier": "from weight_tiers array"
|
|
137
|
+
},
|
|
138
|
+
"description": "Find prices by matching product_id, zone, and weight_tier"
|
|
139
|
+
},
|
|
140
|
+
"available_services": [
|
|
141
|
+
"registered_mail",
|
|
142
|
+
"registered_mail_mailbox",
|
|
143
|
+
"registered_mail_return_receipt",
|
|
144
|
+
"registered_mail_personal",
|
|
145
|
+
"registered_mail_personal_return_receipt"
|
|
146
|
+
]
|
|
147
|
+
}
|
|
148
|
+
}
|
|
@@ -0,0 +1,158 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/dimensions.schema.json",
|
|
3
|
+
"file_type": "dimensions",
|
|
4
|
+
"unit": {
|
|
5
|
+
"dimension": "mm"
|
|
6
|
+
},
|
|
7
|
+
"dimensions": [
|
|
8
|
+
{
|
|
9
|
+
"id": "DL",
|
|
10
|
+
"label": "DIN Lang",
|
|
11
|
+
"standard": "DIN 678",
|
|
12
|
+
"size": {
|
|
13
|
+
"width": 220,
|
|
14
|
+
"height": 110,
|
|
15
|
+
"thickness": 5
|
|
16
|
+
},
|
|
17
|
+
"print_area": {
|
|
18
|
+
"x": 10,
|
|
19
|
+
"y": 45,
|
|
20
|
+
"width": 200,
|
|
21
|
+
"height": 60
|
|
22
|
+
},
|
|
23
|
+
"stamp_area": {
|
|
24
|
+
"x": 160,
|
|
25
|
+
"y": 10,
|
|
26
|
+
"width": 40,
|
|
27
|
+
"height": 40
|
|
28
|
+
},
|
|
29
|
+
"window_supported": true,
|
|
30
|
+
"window_area": {
|
|
31
|
+
"x": 20,
|
|
32
|
+
"y": 50,
|
|
33
|
+
"width": 90,
|
|
34
|
+
"height": 40
|
|
35
|
+
},
|
|
36
|
+
"orientation": "landscape",
|
|
37
|
+
"weight_tier": "W0020"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"id": "C6",
|
|
41
|
+
"label": "C6 Envelope",
|
|
42
|
+
"standard": "DIN 678",
|
|
43
|
+
"size": {
|
|
44
|
+
"width": 162,
|
|
45
|
+
"height": 114,
|
|
46
|
+
"thickness": 5
|
|
47
|
+
},
|
|
48
|
+
"print_area": {
|
|
49
|
+
"x": 10,
|
|
50
|
+
"y": 45,
|
|
51
|
+
"width": 140,
|
|
52
|
+
"height": 60
|
|
53
|
+
},
|
|
54
|
+
"stamp_area": {
|
|
55
|
+
"x": 110,
|
|
56
|
+
"y": 10,
|
|
57
|
+
"width": 40,
|
|
58
|
+
"height": 40
|
|
59
|
+
},
|
|
60
|
+
"window_supported": true,
|
|
61
|
+
"window_area": {
|
|
62
|
+
"x": 20,
|
|
63
|
+
"y": 50,
|
|
64
|
+
"width": 90,
|
|
65
|
+
"height": 40
|
|
66
|
+
},
|
|
67
|
+
"orientation": "landscape",
|
|
68
|
+
"weight_tier": "W0020"
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"id": "C5",
|
|
72
|
+
"label": "C5 Envelope",
|
|
73
|
+
"standard": "DIN 678",
|
|
74
|
+
"size": {
|
|
75
|
+
"width": 229,
|
|
76
|
+
"height": 162,
|
|
77
|
+
"thickness": 10
|
|
78
|
+
},
|
|
79
|
+
"print_area": {
|
|
80
|
+
"x": 15,
|
|
81
|
+
"y": 50,
|
|
82
|
+
"width": 200,
|
|
83
|
+
"height": 90
|
|
84
|
+
},
|
|
85
|
+
"stamp_area": {
|
|
86
|
+
"x": 180,
|
|
87
|
+
"y": 15,
|
|
88
|
+
"width": 40,
|
|
89
|
+
"height": 40
|
|
90
|
+
},
|
|
91
|
+
"window_supported": true,
|
|
92
|
+
"window_area": {
|
|
93
|
+
"x": 20,
|
|
94
|
+
"y": 60,
|
|
95
|
+
"width": 90,
|
|
96
|
+
"height": 45
|
|
97
|
+
},
|
|
98
|
+
"orientation": "landscape",
|
|
99
|
+
"weight_tier": "W0050"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"id": "C4",
|
|
103
|
+
"label": "C4 Envelope",
|
|
104
|
+
"standard": "DIN 678",
|
|
105
|
+
"size": {
|
|
106
|
+
"width": 324,
|
|
107
|
+
"height": 229,
|
|
108
|
+
"thickness": 20
|
|
109
|
+
},
|
|
110
|
+
"print_area": {
|
|
111
|
+
"x": 15,
|
|
112
|
+
"y": 60,
|
|
113
|
+
"width": 295,
|
|
114
|
+
"height": 150
|
|
115
|
+
},
|
|
116
|
+
"stamp_area": {
|
|
117
|
+
"x": 270,
|
|
118
|
+
"y": 15,
|
|
119
|
+
"width": 40,
|
|
120
|
+
"height": 40
|
|
121
|
+
},
|
|
122
|
+
"window_supported": true,
|
|
123
|
+
"window_area": {
|
|
124
|
+
"x": 20,
|
|
125
|
+
"y": 70,
|
|
126
|
+
"width": 90,
|
|
127
|
+
"height": 45
|
|
128
|
+
},
|
|
129
|
+
"orientation": "landscape",
|
|
130
|
+
"weight_tier": "W0500"
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"id": "B4",
|
|
134
|
+
"label": "B4 Envelope",
|
|
135
|
+
"standard": "DIN 678",
|
|
136
|
+
"size": {
|
|
137
|
+
"width": 353,
|
|
138
|
+
"height": 250,
|
|
139
|
+
"thickness": 50
|
|
140
|
+
},
|
|
141
|
+
"print_area": {
|
|
142
|
+
"x": 15,
|
|
143
|
+
"y": 70,
|
|
144
|
+
"width": 320,
|
|
145
|
+
"height": 170
|
|
146
|
+
},
|
|
147
|
+
"stamp_area": {
|
|
148
|
+
"x": 300,
|
|
149
|
+
"y": 15,
|
|
150
|
+
"width": 40,
|
|
151
|
+
"height": 40
|
|
152
|
+
},
|
|
153
|
+
"supports_window": false,
|
|
154
|
+
"orientation": "landscape",
|
|
155
|
+
"weight_tier": "W1000"
|
|
156
|
+
}
|
|
157
|
+
]
|
|
158
|
+
}
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/gruncellka/porto-data/refs/heads/main/porto_data/schemas/features.schema.json",
|
|
3
|
+
"file_type": "features",
|
|
4
|
+
"features": [
|
|
5
|
+
{
|
|
6
|
+
"id": "tracking_number",
|
|
7
|
+
"name": "Sendungsverfolgung",
|
|
8
|
+
"label": "Tracking number",
|
|
9
|
+
"description": "Unique tracking number for package monitoring"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"id": "proof_of_mailing",
|
|
13
|
+
"name": "Einlieferungsbeleg",
|
|
14
|
+
"label": "Proof of mailing",
|
|
15
|
+
"description": "Documentation that item was mailed"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"id": "delivery_confirmation",
|
|
19
|
+
"name": "Zustellbest\u00e4tigung",
|
|
20
|
+
"label": "Delivery confirmation",
|
|
21
|
+
"description": "Confirmation that item was delivered"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"id": "mailbox_delivery",
|
|
25
|
+
"name": "Briefkastenzustellung",
|
|
26
|
+
"label": "Mailbox delivery",
|
|
27
|
+
"description": "Item delivered directly to recipient's mailbox"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"id": "photo_proof_delivery",
|
|
31
|
+
"name": "Foto-Zustellnachweis",
|
|
32
|
+
"label": "Photo proof of delivery",
|
|
33
|
+
"description": "Photographic evidence of delivery"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"id": "recipient_signature",
|
|
37
|
+
"name": "Empf\u00e4ngerunterschrift",
|
|
38
|
+
"label": "Recipient signature required",
|
|
39
|
+
"description": "Recipient must sign upon delivery"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"id": "return_receipt",
|
|
43
|
+
"name": "R\u00fcckschein",
|
|
44
|
+
"label": "Return receipt to sender",
|
|
45
|
+
"description": "Receipt returned to sender as proof of delivery"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"id": "proof_of_delivery",
|
|
49
|
+
"name": "Zustellnachweis",
|
|
50
|
+
"label": "Proof of delivery",
|
|
51
|
+
"description": "Documentation proving successful delivery"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"id": "personal_delivery",
|
|
55
|
+
"name": "Eigenh\u00e4ndige Zustellung",
|
|
56
|
+
"label": "Personal delivery to recipient only",
|
|
57
|
+
"description": "Item delivered only to the named recipient"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"id": "id_verification",
|
|
61
|
+
"name": "Ausweiskontrolle",
|
|
62
|
+
"label": "ID verification",
|
|
63
|
+
"description": "Recipient must show identification"
|
|
64
|
+
}
|
|
65
|
+
]
|
|
66
|
+
}
|