-
Notifications
You must be signed in to change notification settings - Fork 16
/
plugin.themeparkhipster.com.yaml
110 lines (109 loc) · 2.73 KB
/
plugin.themeparkhipster.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
openapi: 3.0.1
info:
title: ThemeParkHipster
description: Find theme park waiting times around the world by entering the country name, theme park name, or ride name.
version: 'v1'
servers:
- url: https://plugin.themeparkhipster.com
paths:
/parks:
get:
operationId: getParks
summary: Get the list of parks
responses:
"200":
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/getParksResponse'
/parks/{park_id}/queue_times:
get:
operationId: getQueueTimes
summary: Get the queue times for a specific park
parameters:
- in: path
name: park_id
schema:
type: integer
required: true
description: The ID of the park.
responses:
"200":
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/getQueueTimesResponse'
components:
schemas:
getParksResponse:
type: array
items:
type: object
properties:
id:
type: integer
name:
type: string
parks:
type: array
items:
type: object
properties:
id:
type: integer
name:
type: string
country:
type: string
continent:
type: string
latitude:
type: string
longitude:
type: string
timezone:
type: string
getQueueTimesResponse:
type: object
properties:
lands:
type: array
items:
type: object
properties:
id:
type: integer
name:
type: string
rides:
type: array
items:
type: object
properties:
id:
type: integer
name:
type: string
is_open:
type: boolean
wait_time:
type: integer
last_updated:
type: string
rides:
type: array
items:
type: object
properties:
id:
type: integer
name:
type: string
is_open:
type: boolean
wait_time:
type: integer
last_updated:
type: string