-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathopenapi.json
More file actions
398 lines (398 loc) · 14 KB
/
openapi.json
File metadata and controls
398 lines (398 loc) · 14 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
{
"openapi": "3.0.0",
"info": {
"title": "SQL Query API",
"description": "API for executing SQL queries with support for both standard and streaming responses",
"version": "1.0.0"
},
"servers": [
{
"url": "{basePath}",
"variables": { "basePath": { "description": "Base URL of the API" } }
}
],
"paths": {
"/query/raw": {
"post": {
"summary": "Execute SQL queries",
"description": "Execute a single SQL query or multiple queries in a transaction. Returns results in standard or streaming format based on Accept header.",
"security": [
{
"BearerAuth": []
},
{
"BasicAuth": []
}
],
"parameters": [
{
"name": "Accept",
"in": "header",
"description": "Response format (application/json for standard response, application/x-ndjson for streaming)",
"required": false,
"schema": {
"type": "string",
"enum": ["application/json", "application/x-ndjson"],
"default": "application/json"
}
}
],
"requestBody": {
"description": "Query or transaction to execute",
"required": true,
"content": {
"application/json": {
"schema": {
"oneOf": [
{
"type": "object",
"properties": {
"sql": {
"type": "string",
"description": "SQL query to execute"
},
"params": {
"type": "array",
"items": {
"oneOf": [
{ "type": "string" },
{ "type": "number" },
{ "type": "boolean" },
{ "type": "null" }
]
},
"description": "Optional array of parameter values"
}
},
"required": ["sql"]
},
{
"type": "object",
"properties": {
"transaction": {
"type": "array",
"items": {
"type": "object",
"properties": {
"sql": {
"type": "string",
"description": "SQL query to execute"
},
"params": {
"type": "array",
"items": {
"oneOf": [
{ "type": "string" },
{ "type": "number" },
{ "type": "boolean" },
{ "type": "null" }
]
},
"description": "Optional array of parameter values"
}
},
"required": ["sql"]
},
"description": "Array of queries to execute in a transaction"
}
},
"required": ["transaction"]
}
]
},
"examples": {
"singleQuery": {
"value": {
"sql": "SELECT * FROM users WHERE age > ?",
"params": [21]
}
},
"transaction": {
"value": {
"transaction": [
{
"sql": "INSERT INTO users (name, age) VALUES (?, ?)",
"params": ["John Doe", 30]
},
{
"sql": "SELECT * FROM users WHERE name = ?",
"params": ["John Doe"]
}
]
}
}
}
}
}
},
"responses": {
"200": {
"description": "Query executed successfully",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"result": {
"type": "array",
"items": {
"type": "object",
"properties": {
"columns": {
"type": "array",
"items": {
"type": "string"
},
"description": "Array of column names"
},
"rows": {
"type": "array",
"items": {
"type": "array",
"items": {}
},
"description": "Array of rows, where each row is an array of values"
},
"meta": {
"type": "object",
"properties": {
"rows_read": {
"type": "integer",
"description": "Number of rows read by the query"
},
"rows_written": {
"type": "integer",
"description": "Number of rows written by the query"
}
},
"required": ["rows_read", "rows_written"]
}
},
"required": ["columns", "rows", "meta"]
},
"description": "Array of query results (one per query in a transaction, or a single item for a simple query)"
},
"error": {
"type": "string",
"nullable": true,
"description": "Error message if an error occurred, null otherwise"
}
},
"required": ["result"]
},
"example": {
"result": [
{
"columns": ["id", "name", "age"],
"rows": [
[1, "John Doe", 30],
[2, "Jane Smith", 25]
],
"meta": {
"rows_read": 2,
"rows_written": 0
}
}
],
"error": null
}
},
"application/x-ndjson": {
"schema": {
"description": "StreamRecord (new-line delimited JSON strings)",
"oneOf": [
{
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": ["columns"],
"description": "Indicates this record contains column names"
},
"data": {
"type": "array",
"items": {
"type": "string"
},
"description": "Array of column names"
}
},
"required": ["type", "data"]
},
{
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": ["row"],
"description": "Indicates this record contains a single row of data"
},
"data": {
"type": "array",
"items": {},
"description": "Array of values in the row"
}
},
"required": ["type", "data"]
},
{
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": ["meta"],
"description": "Indicates this record contains metadata about the query"
},
"data": {
"type": "object",
"properties": {
"rows_read": {
"type": "integer",
"description": "Number of rows read by the query"
},
"rows_written": {
"type": "integer",
"description": "Number of rows written by the query"
}
},
"required": ["rows_read", "rows_written"]
}
},
"required": ["type", "data"]
},
{
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": ["error"],
"description": "Indicates an error occurred during streaming"
},
"error": {
"type": "string",
"description": "Error message"
}
},
"required": ["type", "error"]
}
]
},
"example": "{\"type\":\"columns\",\"data\":[\"id\",\"name\",\"age\"]}\n{\"type\":\"row\",\"data\":[1,\"John\",30]}\n{\"type\":\"row\",\"data\":[2,\"Alice\",25]}\n{\"type\":\"meta\",\"data\":{\"rows_read\":2,\"rows_written\":0}}"
}
}
},
"400": {
"description": "Bad request due to invalid SQL or parameters",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"result": {
"type": "null",
"description": "Will be null in case of an error"
},
"error": {
"type": "string",
"description": "Error message describing what went wrong"
}
},
"required": ["error"]
}
}
}
},
"401": {
"description": "Unauthorized access",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"result": {
"type": "null"
},
"error": {
"type": "string",
"description": "Error message describing what went wrong"
}
},
"required": ["error"]
}
}
}
},
"500": {
"description": "Server error",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"result": {
"type": "null"
},
"error": {
"type": "string",
"description": "Error message describing what went wrong"
}
},
"required": ["error"]
}
}
}
}
}
},
"options": {
"summary": "CORS preflight request",
"description": "Handles CORS preflight requests for the /query/raw endpoint",
"responses": {
"204": {
"description": "CORS headers returned successfully",
"headers": {
"Access-Control-Allow-Origin": {
"schema": {
"type": "string"
},
"example": "*"
},
"Access-Control-Allow-Methods": {
"schema": {
"type": "string"
},
"example": "GET, POST, OPTIONS"
},
"Access-Control-Allow-Headers": {
"schema": {
"type": "string"
},
"example": "Authorization, Content-Type, Accept, X-Starbase-Source, X-Data-Source"
},
"Access-Control-Max-Age": {
"schema": {
"type": "string"
},
"example": "86400"
}
}
}
}
}
}
},
"components": {
"securitySchemes": {
"BearerAuth": {
"type": "http",
"scheme": "bearer",
"description": "Bearer token authentication using the secret configured in middleware options"
},
"BasicAuth": {
"type": "http",
"scheme": "basic",
"description": "Basic authentication with username and password"
}
}
}
}