-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathopenapi.json
More file actions
421 lines (421 loc) · 12.8 KB
/
openapi.json
File metadata and controls
421 lines (421 loc) · 12.8 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
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
{
"openapi": "3.0.0",
"info": {
"title": "QuoteSlate API",
"version": "1.0.0",
"description": "A robust, developer-friendly API for serving inspirational and thought-provoking quotes with powerful filtering capabilities. Access 2,600+ curated quotes from various authors and categories.",
"contact": {
"name": "Musheer360",
"url": "https://github.com/Musheer360/QuoteSlate"
},
"license": {
"name": "MIT",
"url": "https://github.com/Musheer360/QuoteSlate/blob/main/LICENSE"
}
},
"servers": [
{
"url": "https://quoteslate.vercel.app",
"description": "Production server"
},
{
"url": "http://localhost:3000",
"description": "Local development server"
}
],
"paths": {
"/api/quotes/random": {
"get": {
"summary": "Retrieve random quotes",
"description": "Fetch one or more random quotes with optional filtering by author, tags, and length. All parameters are optional and can be combined.",
"operationId": "getRandomQuotes",
"tags": ["Quotes"],
"parameters": [
{
"name": "count",
"in": "query",
"description": "Number of quotes to return (1-50)",
"required": false,
"schema": {
"type": "integer",
"minimum": 1,
"maximum": 50,
"default": 1
},
"example": 5
},
{
"name": "authors",
"in": "query",
"description": "Comma-separated list of author names (case-insensitive, max 20)",
"required": false,
"schema": {
"type": "string"
},
"example": "Babe Ruth,Maya Angelou"
},
{
"name": "tags",
"in": "query",
"description": "Comma-separated list of tags (case-insensitive, max 20)",
"required": false,
"schema": {
"type": "string"
},
"example": "motivation,wisdom"
},
{
"name": "minLength",
"in": "query",
"description": "Minimum character length of quotes",
"required": false,
"schema": {
"type": "integer",
"minimum": 1
},
"example": 50
},
{
"name": "maxLength",
"in": "query",
"description": "Maximum character length of quotes",
"required": false,
"schema": {
"type": "integer",
"minimum": 1
},
"example": 150
}
],
"responses": {
"200": {
"description": "Successful response - returns a single quote object when count=1, or an array of quote objects when count>1",
"content": {
"application/json": {
"schema": {
"oneOf": [
{
"$ref": "#/components/schemas/Quote"
},
{
"type": "array",
"items": {
"$ref": "#/components/schemas/Quote"
}
}
]
},
"examples": {
"singleQuote": {
"summary": "Single quote response",
"value": {
"id": 498,
"quote": "Every strike brings me closer to the next home run.",
"author": "Babe Ruth",
"length": 51,
"tags": ["wisdom"]
}
},
"multipleQuotes": {
"summary": "Multiple quotes response",
"value": [
{
"id": 498,
"quote": "Every strike brings me closer to the next home run.",
"author": "Babe Ruth",
"length": 51,
"tags": ["wisdom"]
},
{
"id": 120,
"quote": "All great achievements require time.",
"author": "Maya Angelou",
"length": 36,
"tags": ["motivation"]
}
]
}
}
}
}
},
"400": {
"description": "Bad request - invalid parameters",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Error"
},
"examples": {
"invalidAuthor": {
"summary": "Invalid author name",
"value": {
"error": "Invalid author(s): Unknown Author"
}
},
"invalidTag": {
"summary": "Invalid tag",
"value": {
"error": "Invalid tag(s): invalid1, invalid2"
}
},
"countOutOfRange": {
"summary": "Count out of range",
"value": {
"error": "count must be less than or equal to 50."
}
},
"tooManyTags": {
"summary": "Too many tags",
"value": {
"error": "Maximum 20 tags allowed."
}
},
"lengthMismatch": {
"summary": "minLength > maxLength",
"value": {
"error": "minLength must be less than or equal to maxLength."
}
}
}
}
}
},
"404": {
"description": "No quotes found matching the criteria",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Error"
},
"example": {
"error": "No quotes found matching the criteria."
}
}
}
},
"405": {
"description": "Method not allowed - only GET requests are supported",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Error"
},
"example": {
"error": "Method POST not allowed for this endpoint."
}
}
}
},
"429": {
"description": "Rate limit exceeded - too many requests",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Error"
},
"example": {
"error": "Too many requests, please try again later."
}
}
}
},
"500": {
"description": "Internal server error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Error"
},
"example": {
"error": "Internal server error."
}
}
}
}
}
}
},
"/api/authors": {
"get": {
"summary": "List available authors",
"description": "Retrieve a complete list of all authors in the database along with their quote counts",
"operationId": "getAuthors",
"tags": ["Metadata"],
"responses": {
"200": {
"description": "Successful response - returns an object mapping author names to their quote counts",
"content": {
"application/json": {
"schema": {
"type": "object",
"additionalProperties": {
"type": "integer"
}
},
"example": {
"Avery Brooks": 1,
"Ayn Rand": 3,
"Babe Ruth": 4,
"Maya Angelou": 7
}
}
}
},
"405": {
"description": "Method not allowed - only GET requests are supported",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Error"
},
"example": {
"error": "Method POST not allowed for this endpoint."
}
}
}
}
}
}
},
"/api/tags": {
"get": {
"summary": "List available tags",
"description": "Retrieve a complete list of all tags available for filtering quotes",
"operationId": "getTags",
"tags": ["Metadata"],
"responses": {
"200": {
"description": "Successful response - returns an array of tag strings",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"type": "string"
}
},
"example": [
"motivation",
"inspiration",
"life",
"wisdom",
"love",
"success"
]
}
}
},
"405": {
"description": "Method not allowed - only GET requests are supported",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Error"
},
"example": {
"error": "Method POST not allowed for this endpoint."
}
}
}
}
}
}
},
"/api/openapi.json": {
"get": {
"summary": "Get OpenAPI specification",
"description": "Retrieve the OpenAPI 3.0 specification for this API",
"operationId": "getOpenAPISpec",
"tags": ["Documentation"],
"responses": {
"200": {
"description": "OpenAPI specification document",
"content": {
"application/json": {
"schema": {
"type": "object"
}
}
}
},
"405": {
"description": "Method not allowed - only GET requests are supported",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Error"
}
}
}
}
}
}
}
},
"components": {
"schemas": {
"Quote": {
"type": "object",
"description": "A quote object containing the quote text, author, and metadata",
"required": ["id", "quote", "author", "length", "tags"],
"properties": {
"id": {
"type": "integer",
"description": "Unique identifier for the quote",
"example": 498
},
"quote": {
"type": "string",
"description": "The quote text",
"example": "Every strike brings me closer to the next home run."
},
"author": {
"type": "string",
"description": "The author of the quote",
"example": "Babe Ruth"
},
"length": {
"type": "integer",
"description": "Character length of the quote",
"example": 51
},
"tags": {
"type": "array",
"description": "Array of tags associated with the quote",
"items": {
"type": "string"
},
"example": ["wisdom", "motivation"]
}
}
},
"Error": {
"type": "object",
"description": "Error response object",
"required": ["error"],
"properties": {
"error": {
"type": "string",
"description": "Error message describing what went wrong",
"example": "Invalid author(s): Unknown Author"
}
}
}
}
},
"tags": [
{
"name": "Quotes",
"description": "Operations for retrieving quotes"
},
{
"name": "Metadata",
"description": "Operations for retrieving metadata (authors, tags)"
},
{
"name": "Documentation",
"description": "API documentation endpoints"
}
]
}