-
Notifications
You must be signed in to change notification settings - Fork 16
/
openai.ferryhopper.com.yaml
184 lines (182 loc) · 5.27 KB
/
openai.ferryhopper.com.yaml
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
openapi: 3.0.1
info:
title: Ferryhopper
description: Discover ferry routes, book your tickets and explore budget-friendly island destinations with Ferryhopper.
version: "v1"
servers:
- url: https://openai.ferryhopper.com
paths:
/get-destination/{country}/{destination}:
get:
operationId: getDestination
summary: Returns information about ferry destinations that are bookable through ferryhopper.
parameters:
- in: path
name: country
schema:
type: string
required: true
description: The country name.
- in: path
name: destination
schema:
type: string
required: true
description: The destination.
responses:
"200":
description: OK
content:
application/json:
schema:
$ref: "#/components/schemas/getDestinationResponse"
/get-ferries/{origin}/{destination}/{dateStr}:
get:
operationId: getFerries
summary: Returns a list of ferry trips departing on specific date, including minimum price, duration and a booking url.
parameters:
- in: path
name: origin
schema:
type: string
required: true
description: The origin port name.
- in: path
name: destination
schema:
type: string
required: true
description: The destination port name
- in: path
name: dateStr
schema:
type: string
format: date
required: true
description: The desired trip departure date
responses:
"200":
description: OK
content:
application/json:
schema:
$ref: "#/components/schemas/getFerriesResponse"
components:
schemas:
PortName:
type: string
Ferry:
type: object
properties:
originName:
type: string
destinationName:
type: string
ferryCarrierName:
type: string
format: uri
ferryCarrierLogo:
type: string
format: uri
departureDateTime:
type: string
format: date-time
arrivalDateTime:
type: string
format: date-time
durationInMinutes:
type: integer
minimumPriceInCents:
type: integer
priceCurrency:
type: string
bookingUrl:
type: string
format: uri
openGraphData:
type: object
properties:
title:
type: string
site_name:
type: string
type:
type: string
description:
type: string
url:
type: string
format: uri
image:
type: string
format: uri
required:
- title
- site_name
- type
- description
- url
- image
required:
- originName
- destinationName
- ferryCarrierName
- ferryCarrierLogo
- departureDateTime
- arrivalDateTime
- durationInMinutes
- minimumPriceInCents
- priceCurrency
- bookingUrl
- openGraphData
getFerriesResponse:
type: object
properties:
itineraries:
type: array
items:
$ref: '#/components/schemas/Ferry'
alternativeOrigins:
type: array
items:
$ref: '#/components/schemas/PortName'
alternativeDestinations:
type: array
items:
$ref: '#/components/schemas/PortName'
Destination:
type: object
properties:
destinationName:
type: string
openGraphData:
type: object
properties:
title:
type: string
site_name:
type: string
type:
type: string
description:
type: string
url:
type: string
format: uri
image:
type: string
format: uri
required:
- title
- site_name
- type
- description
- url
- image
required:
- destinationName
- openGraphData
getDestinationResponse:
type: array
items:
$ref: '#/components/schemas/Destination'