-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathVehicleCapacityProfilePageConfigV5.dtd
67 lines (67 loc) · 1.76 KB
/
VehicleCapacityProfilePageConfigV5.dtd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "https://github.com/route4me/route4me-json-schemas/blob/master/VehicleCapacityProfilePageConfigV5.dtd",
"title": "Vehicle Capacity Profile Page Configuration V5",
"type": "object",
"description": "Configuration of the vehicle capacity profile page (unit user-friendly formats). Endpoint: https://wh.route4me.com/modules/api/v5.0/vehicle-capacity-profiles/page/config",
"properties": {
"units": {
"type": "object",
"title": "Units",
"description": "User-friendly format of the units.",
"properties": {
"volume": {
"type": "object",
"title": "Volume",
"description": "User-friendly format of volume.",
"properties": {
"id": {
"type": "string",
"title": "ID",
"description": "A unique ID of the unit"
},
"label": {
"type": "string",
"title": "Label",
"description": "User-friendly label of the unit"
}
}
},
"revenue": {
"type": "object",
"title": "Revenue",
"description": "User-friendly format of revenue.",
"properties": {
"id": {
"type": "string",
"title": "ID",
"description": "A unique ID of the unit"
},
"label": {
"type": "string",
"title": "Label",
"description": "User-friendly label of the unit"
}
}
},
"weight": {
"type": "object",
"title": "Weight",
"description": "User-friendly format of weight.",
"properties": {
"id": {
"type": "string",
"title": "ID",
"description": "A unique ID of the unit"
},
"label": {
"type": "string",
"title": "Label",
"description": "User-friendly label of the unit"
}
}
}
}
}
}
}