-
Notifications
You must be signed in to change notification settings - Fork 0
/
reservations-search.html
44 lines (44 loc) · 1.38 KB
/
reservations-search.html
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
{
"@context": "http://localhost:8080/static/context.jsonld",
"@type": "ItemList",
"itemListElement": [{
"@type": "FoodEstablishmentReservation",
"@id": "https://service.com/restaurants/123/reservations/9827995791",
"startTime": "6:00pm",
"partySize": "2",
"reservationStatus": "ResevationAvailable",
"reservationFor": {
"@type": "Restaurant",
"@id": "https://service.com/restaurants/123"
},
"operation": [{
"@type": "ReserveAction",
"actionStatus": "proposed",
"actionHandler": [{
"@type": "HttpHandler",
"httpMethod": "post",
"http://schema.org/url": "http://localhost:8080/example/json/reservations-hold.html"
}]
}]
},
{
"@type": "FoodEstablishmentReservation",
"@id": "https://service.com/restaurants/123/reservations/0901743307",
"startTime": "7:00pm",
"partySize": "2",
"reservationStatus": "ResevationAvailable",
"reservationFor": {
"@type": "Restaurant",
"@id": "https://service.com/restaurants/123"
},
"operation": {
"@type": "ReserveAction",
"actionStatus": "proposed",
"actionHandler": [{
"@type": "HttpHandler",
"httpMethod": "post",
"http://schema.org/url": "http://localhost:8080/example/json/reserve"
}]
}
}]
}