-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequest_data.h
More file actions
29 lines (26 loc) · 917 Bytes
/
request_data.h
File metadata and controls
29 lines (26 loc) · 917 Bytes
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
// INFO: use the following list to modify the requests
// https://github.com/Fix-MS/backend#flaw-type-list
// Geh-/Radweg, Radverkehr - starke Verschmutzung/Scherben (83)
const char* jsonSendData1 = "{ " \
"\"type\": 83, " \
"\"location\": \"Schlossplatz, Promenade\", "\
"\"firstname\": \"Vortragender\", "\
"\"lastname\": \"Mustermann\", "\
"\"email\": \"fixms@example.com\" "\
"}";
// Beleuchtung - Leuchte an Straße, Geh- oder Radweg defekt (75)
const char* jsonSendData2 = "{ " \
"\"type\": 75, " \
"\"location\": \"Hafenplatz 1\", "\
"\"firstname\": \"Vortragender\", "\
"\"lastname\": \"Mustermann\", "\
"\"email\": \"fixms@example.com\" "\
"}";
// Straße - Schlagloch (92)
const char* jsonSendData3 = "{ " \
"\"type\": 92, " \
"\"location\": \"here\", "\
"\"firstname\": \"Vortragender\", "\
"\"lastname\": \"Mustermann\", "\
"\"email\": \"fixms@example.com\" "\
"}";