-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapiary.apib
More file actions
90 lines (79 loc) · 3.78 KB
/
apiary.apib
File metadata and controls
90 lines (79 loc) · 3.78 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
FORMAT: 1A
# ChatBotTest Backend API
Design for Chatbot backend for demo session for Oracle Code. The chatbot allows to book tickets for football games and list the selection of beers available at the event.
## Seats Collection [/seats]
Game seats
### List All Seats [GET]
Lists all seats and availability
+ Response 200 (application/json)
[
{
"section": "Section 115",
"row": "3",
"available": true,
"price": 299,
"link": {
"rel": "image",
"href": "https://publicdocs-corp.documents.us2.oraclecloud.com/documents/link/LF7206C60A9212DA72124CA9F6C3FF17C1177E4725F3/file/D2BA28E8C506DC0CDA4F9C14F6C3FF17C1177E4725F3?allowInterrupt=1"
}
},
{
"section": "Section 216",
"row": "7",
"available": true,
"price": 219,
"link": {
"rel": "image",
"href": "https://publicdocs-corp.documents.us2.oraclecloud.com/documents/link/LF7206C60A9212DA72124CA9F6C3FF17C1177E4725F3/file/D2BA28E8C506DC0CDA4F9C14F6C3FF17C1177E4725F3?allowInterrupt=1"
}
},
{
"section": "Section 229",
"row": "12",
"available": true,
"price": 146,
"link": {
"rel": "image",
"href": "https://publicdocs-corp.documents.us2.oraclecloud.com/documents/link/LF7206C60A9212DA72124CA9F6C3FF17C1177E4725F3/file/DF03AD812F69F02A82C04FC2F6C3FF17C1177E4725F3?allowInterrupt=1"
}
}
]
## Beers Collection [/beers]
Available beers
### List All Beers [GET]
Lists all available beers on offer
+ Response 200 (application/json)
[
{
"name": "Guiness",
"description": "No preservatives or additives. 100% natural, ingredients create a unique flavour",
"link": {
"rel": "image",
"href": "https://publicdocs-corp.documents.us2.oraclecloud.com/documents/link/LF7206C60A9212DA72124CA9F6C3FF17C1177E4725F3/file/D2680B911AEB03B8C3B6EF22F6C3FF17C1177E4725F3?RevLabel=LATEST&allowInterrupt=1"
}
},
{
"name": "Pilsner Urquell",
"description": "World's first pilsner. Grainy malt center with a light touch of butter flavor",
"link": {
"rel": "image",
"href": "https://publicdocs-corp.documents.us2.oraclecloud.com/documents/link/LF7206C60A9212DA72124CA9F6C3FF17C1177E4725F3/file/D38CC50D762E50731F505711F6C3FF17C1177E4725F3?RevLabel=LATEST&allowInterrupt=1"
}
},
{
"name": "Schlappe-Seppel",
"description": "Smooth bitter, tangy, fruity, full-bodied - more than a beer, it's an attitude",
"link": {
"rel": "image",
"href": "https://publicdocs-corp.documents.us2.oraclecloud.com/documents/link/LF7206C60A9212DA72124CA9F6C3FF17C1177E4725F3/file/DFE12285193404897A6331F4F6C3FF17C1177E4725F3?RevLabel=LATEST?allowInterrupt=1"
}
},
{
"name": "Heineken",
"description": "Crisp, clean and refreshing, this popular beer is a classic European style Lager",
"link": {
"rel": "image",
"href": "https://publicdocs-corp.documents.us2.oraclecloud.com/documents/link/LF7206C60A9212DA72124CA9F6C3FF17C1177E4725F3/file/DE79A523EC91B0687D5AA852F6C3FF17C1177E4725F3?dRevLabel=LATEST&allowInterrupt=1"
}
}
]