-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathRoute_duplicate_request.dtd
44 lines (44 loc) · 1.03 KB
/
Route_duplicate_request.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
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "https://github.com/route4me/route4me-json-schemas/blob/master/Route_duplicate_request.dtd",
"type": "object",
"description": "For duplicating of an route. GET parameters. url: https://www.route4me.com/actions/duplicate_route.php",
"required": [
"api_key",
"route_id"
],
"title": "Route Duplicate Request",
"properties": {
"api_key": {
"type": "string",
"title": "API key",
"description": "API key of the user"
},
"device_id": {
"type": "string",
"title": "Device ID",
"description": "The ID of the device that was used to plan this route."
},
"route_id": {
"type": "string",
"title": "Route ID",
"description": "Route Unique Identifier"
},
"to": {
"type": "string",
"enum": [
"routes",
"editor",
"none"
],
"default": "routes",
"title": "To",
"description": "Redirect to page or return json for none"
},
"__member_id": {
"type": "integer",
"title": "Member ID",
"description": "Member ID"
}
}
}