-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtimezones.openapi.yaml
More file actions
386 lines (386 loc) · 13.6 KB
/
Copy pathtimezones.openapi.yaml
File metadata and controls
386 lines (386 loc) · 13.6 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
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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
openapi: 3.0.3
info:
title: Abstract Timezone API
description: 'Look up the current time, date, and timezone for any location, and
convert a time and date between two locations. A location may be given as a
place name, latitude/longitude coordinates, or an IP address. Authenticate with
your API key as the `api_key` query parameter, or as an `Authorization: Bearer
<key>` header. GET and POST (form-encoded or JSON) are both supported.'
version: 1.0.0
termsOfService: https://www.abstractapi.com/legal/legal
contact:
name: Abstract API
url: https://www.abstractapi.com/api/time-date-timezone-api
license:
name: Commercial — see Terms of Service
url: https://www.abstractapi.com/legal/legal
externalDocs:
description: Official documentation
url: https://docs.abstractapi.com/api/timezones
servers:
- url: https://timezone.abstractapi.com/v1
security:
- ApiKeyQuery: []
- BearerAuth: []
paths:
/current_time:
get:
operationId: getCurrentTime
summary: Get the current time and timezone for a location
parameters:
- name: location
in: query
required: true
description: The location to look up. Accepts a place name, latitude/longitude
coordinates, or an IP address.
schema:
type: string
example: Oxford, United Kingdom
responses:
'200':
description: Current time, date, and timezone details for the location.
content:
application/json:
schema:
$ref: '#/components/schemas/CurrentTime'
example:
datetime: '2023-06-21 19:40:49'
timezone_name: British Summer Time
timezone_location: Europe/London
timezone_abbreviation: BST
gmt_offset: 1
is_dst: true
requested_location: Oxford,United Kingdom
latitude: 51.7520131
longitude: -1.2578499
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'422':
$ref: '#/components/responses/QuotaReached'
'429':
$ref: '#/components/responses/TooManyRequests'
'500':
$ref: '#/components/responses/ServerError'
post:
operationId: postCurrentTime
summary: Get the current time and timezone for a location
description: 'Same as the GET operation. The API key may be supplied in the
request body, as the `api_key` query parameter, or as an `Authorization:
Bearer <key>` header.'
requestBody:
required: true
content:
application/x-www-form-urlencoded:
schema:
$ref: '#/components/schemas/CurrentTimeRequest'
application/json:
schema:
$ref: '#/components/schemas/CurrentTimeRequest'
responses:
'200':
description: Current time, date, and timezone details for the location.
content:
application/json:
schema:
$ref: '#/components/schemas/CurrentTime'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'422':
$ref: '#/components/responses/QuotaReached'
'429':
$ref: '#/components/responses/TooManyRequests'
'500':
$ref: '#/components/responses/ServerError'
/convert_time:
get:
operationId: getConvertTime
summary: Convert a time and date between two locations
description: Converts the time and date of a base location to the time and date
of a target location. By default the current time is converted; supply
`base_datetime` to convert a specific past or future time.
parameters:
- name: base_location
in: query
required: true
description: The location the supplied time belongs to. Accepts a place name,
latitude/longitude coordinates, or an IP address.
schema:
type: string
example: Los Angeles, CA
- name: target_location
in: query
required: true
description: The location to convert the time into. Accepts a place name,
latitude/longitude coordinates, or an IP address.
schema:
type: string
example: Oxford, United Kingdom
- name: base_datetime
in: query
required: false
description: The date and time to convert, in `YYYY-MM-DD HH:MM:SS` format.
Defaults to the current time at the base location when omitted.
schema:
type: string
example: '2020-05-01 07:00:00'
responses:
'200':
description: The supplied time expressed in both the base and target locations.
content:
application/json:
schema:
$ref: '#/components/schemas/ConvertTime'
example:
base_location:
datetime: '2020-05-01 07:00:00'
timezone_name: PDT
timezone_location: America/Los_Angeles
timezone_abbreviation: Pacific Daylight Time
gmt_offset: -7
is_dst: true
requested_location: Los Angeles,CA
latitude: 34.0536909
longitude: -118.242766
target_location:
datetime: '2020-05-01 15:00:00'
timezone_name: BST
timezone_location: Europe/London
timezone_abbreviation: British Summer Time
gmt_offset: 1
is_dst: true
requested_location: Oxford,United Kingdom
latitude: 51.7520131
longitude: -1.2578499
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'422':
$ref: '#/components/responses/QuotaReached'
'429':
$ref: '#/components/responses/TooManyRequests'
'500':
$ref: '#/components/responses/ServerError'
post:
operationId: postConvertTime
summary: Convert a time and date between two locations
description: 'Same as the GET operation. The API key may be supplied in the
request body, as the `api_key` query parameter, or as an `Authorization:
Bearer <key>` header.'
requestBody:
required: true
content:
application/x-www-form-urlencoded:
schema:
$ref: '#/components/schemas/ConvertTimeRequest'
application/json:
schema:
$ref: '#/components/schemas/ConvertTimeRequest'
responses:
'200':
description: The supplied time expressed in both the base and target locations.
content:
application/json:
schema:
$ref: '#/components/schemas/ConvertTime'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'422':
$ref: '#/components/responses/QuotaReached'
'429':
$ref: '#/components/responses/TooManyRequests'
'500':
$ref: '#/components/responses/ServerError'
components:
securitySchemes:
ApiKeyQuery:
type: apiKey
in: query
name: api_key
description: Your unique Timezone API key.
BearerAuth:
type: http
scheme: bearer
description: Send your API key as a Bearer token; omit `api_key` from the query
string.
responses:
BadRequest:
description: Bad request — a required parameter is missing or failed validation.
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
example:
error:
message: A validation error occurred.
code: validation_error
details:
location:
- This is a required argument.
Unauthorized:
description: Unauthorized — missing or invalid API key.
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
example:
error:
message: Invalid API key provided.
code: unauthorized
details: null
QuotaReached:
description: Unprocessable — monthly quota reached or insufficient API credits.
The body follows the standard error envelope.
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
TooManyRequests:
description: Too Many Requests — rate limit exceeded. The body follows the standard
error envelope.
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
ServerError:
description: Internal server error. The body follows the standard error envelope.
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
schemas:
CurrentTimeRequest:
type: object
required:
- location
properties:
location:
type: string
description: The location to look up. Accepts a place name, latitude/longitude
coordinates, or an IP address.
example: Oxford, United Kingdom
api_key:
type: string
description: 'Your API key. Optional here if supplied as the `api_key` query
parameter or an `Authorization: Bearer <key>` header.'
ConvertTimeRequest:
type: object
required:
- base_location
- target_location
properties:
base_location:
type: string
description: The location the supplied time belongs to. Accepts a place
name, latitude/longitude coordinates, or an IP address.
example: Los Angeles, CA
target_location:
type: string
description: The location to convert the time into. Accepts a place name,
latitude/longitude coordinates, or an IP address.
example: Oxford, United Kingdom
base_datetime:
type: string
description: The date and time to convert, in `YYYY-MM-DD HH:MM:SS` format.
Defaults to the current time at the base location when omitted.
example: '2020-05-01 07:00:00'
api_key:
type: string
description: 'Your API key. Optional here if supplied as the `api_key` query
parameter or an `Authorization: Bearer <key>` header.'
Error:
type: object
required:
- error
properties:
error:
type: object
required:
- message
- code
properties:
message:
type: string
description: Human-readable description of the error.
example: A validation error occurred.
code:
type: string
description: Machine-readable error code, e.g. validation_error or unauthorized.
example: validation_error
details:
type: object
nullable: true
description: Field-keyed validation messages for validation_error responses;
null for other error types.
additionalProperties:
type: array
items:
type: string
TimeLocation:
type: object
description: Time, date, and timezone details for a single resolved location.
properties:
datetime:
type: string
nullable: true
description: Date and time at the location, in `YYYY-MM-DD HH:MM:SS` format.
example: '2023-06-21 19:40:49'
timezone_name:
type: string
nullable: true
description: Name of the timezone, drawn from the IANA Time Zone Database.
example: British Summer Time
timezone_location:
type: string
nullable: true
description: IANA Time Zone Database location identifier.
example: Europe/London
timezone_abbreviation:
type: string
nullable: true
description: Timezone abbreviation, drawn from the IANA Time Zone Database.
example: BST
gmt_offset:
type: integer
nullable: true
description: Offset from Greenwich Mean Time, in hours.
example: 1
is_dst:
type: boolean
nullable: true
description: Whether Daylight Saving Time is in effect at the location.
example: true
requested_location:
type: string
description: The location string echoed back from the request.
example: Oxford,United Kingdom
latitude:
type: number
format: float
nullable: true
description: Decimal latitude of the resolved location.
example: 51.7520131
longitude:
type: number
format: float
nullable: true
description: Decimal longitude of the resolved location.
example: -1.2578499
CurrentTime:
allOf:
- $ref: '#/components/schemas/TimeLocation'
description: Current time, date, and timezone details for the requested location.
ConvertTime:
type: object
description: The supplied time expressed in both the base and target locations.
properties:
base_location:
$ref: '#/components/schemas/TimeLocation'
target_location:
$ref: '#/components/schemas/TimeLocation'