forked from nightscout/cgm-remote-monitor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
swagger.yaml
637 lines (605 loc) · 18.7 KB
/
swagger.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
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
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
swagger: '2.0'
info:
title: Nightscout API
description: Own your DData with the Nightscout API
version: "0.8.0"
license:
name: AGPL 3
url: https://www.gnu.org/licenses/agpl.txt
basePath: /api/v1
produces:
- application/json
security:
- api_secret: []
paths:
/entries/{spec}:
get:
summary: All Entries matching query
description: |
The Entries endpoint returns information about the
Nightscout entries.
parameters:
- name: spec
in: path
type: string
description: |
entry id, such as `55cf81bc436037528ec75fa5` or a type filter such
as `sgv`, `mbg`, etc.
default: sgv
required: true
- name: find
in: query
description: |
The query used to find entries, support nested query syntax, for
example `find[dateString][$gte]=2015-08-27`. All find parameters
are interpreted as strings.
required: false
type: string
- name: count
in: query
description: Number of entries to return.
required: false
type: number
tags:
- Entries
responses:
"200":
description: An array of entries
schema:
$ref: '#/definitions/Entries'
default:
description: Entries
schema:
$ref: '#/definitions/Entries'
/slice/{storage}/{field}/{type}/{prefix}/{regex}:
get:
summary: All Entries matching query
description: The Entries endpoint returns information about the Nightscout entries.
parameters:
- name: storage
in: path
type: string
description: Prefix to use in constructing a prefix-based regex, default is `entries`.
required: true
default: entries
- name: field
in: path
type: string
description: Name of the field to use Regex against in query object, default is `dateString`.
default: dateString
required: true
- name: type
in: path
type: string
description: The type field to search against, default is sgv.
required: true
default: sgv
- name: prefix
in: path
type: string
description: Prefix to use in constructing a prefix-based regex.
required: true
default: '2015'
- name: regex
in: path
type: string
description: |
Tail part of regexp to use in expanding/construccting a query object.
Regexp also has bash-style brace and glob expansion applied to it,
creating ways to search for modal times of day, perhaps using
something like this syntax: `T{15..17}:.*`, this would search for
all records from 3pm to 5pm.
required: true
default: .*
- name: find
in: query
description: |
The query used to find entries, support nested query syntax, for
example `find[dateString][$gte]=2015-08-27`. All find parameters
are interpreted as strings.
required: false
type: string
- name: count
in: query
description: Number of entries to return.
required: false
type: number
tags:
- Entries
responses:
"200":
description: An array of entries
schema:
$ref: '#/definitions/Entries'
default:
description: Unexpected error
schema:
$ref: '#/definitions/Error'
/echo/{storage}/{spec}:
get:
summary: View generated Mongo Query object
description: |
Information about the mongo query object created by the query.
parameters:
- name: storage
in: path
type: string
description: |
`entries`, or `treatments` to select the storage layer.
default: sgv
required: true
- name: spec
in: path
type: string
description: |
entry id, such as `55cf81bc436037528ec75fa5` or a type filter such
as `sgv`, `mbg`, etc.
This parameter is optional.
default: sgv
required: true
- name: find
in: query
description: |
The query used to find entries, support nested query syntax, for
example `find[dateString][$gte]=2015-08-27`. All find parameters
are interpreted as strings.
required: false
type: string
- name: count
in: query
description: Number of entries to return.
required: false
type: number
tags:
- Entries
- Debug
responses:
"200":
description: An array of entries
schema:
$ref: '#/definitions/MongoQuery'
/times/echo/{prefix}/{regex}:
get:
summary: Echo the query object to be used.
description: Echo debug information about the query object constructed.
parameters:
- name: prefix
in: path
type: string
description: Prefix to use in constructing a prefix-based regex.
required: true
- name: regex
in: path
type: string
description: |
Tail part of regexp to use in expanding/construccting a query object.
Regexp also has bash-style brace and glob expansion applied to it,
creating ways to search for modal times of day, perhaps using
something like this syntax: `T{15..17}:.*`, this would search for
all records from 3pm to 5pm.
required: true
- name: find
in: query
description: The query used to find entries, support nested query syntax, for example `find[dateString][$gte]=2015-08-27`. All find parameters are interpreted as strings.
required: false
type: string
- name: count
in: query
description: Number of entries to return.
required: false
type: number
tags:
- Entries
- Debug
responses:
"200":
description: An array of entries
schema:
$ref: '#/definitions/MongoQuery'
default:
description: Unexpected error
schema:
$ref: '#/definitions/Error'
/times/{prefix}/{regex}:
get:
summary: All Entries matching query
description: The Entries endpoint returns information about the Nightscout entries.
parameters:
- name: prefix
in: path
type: string
description: Prefix to use in constructing a prefix-based regex.
required: true
- name: regex
in: path
type: string
description: |
Tail part of regexp to use in expanding/construccting a query object.
Regexp also has bash-style brace and glob expansion applied to it,
creating ways to search for modal times of day, perhaps using
something like this syntax: `T{15..17}:.*`, this would search for
all records from 3pm to 5pm.
required: true
- name: find
in: query
description: The query used to find entries, support nested query syntax, for example `find[dateString][$gte]=2015-08-27`. All find parameters are interpreted as strings.
required: false
type: string
- name: count
in: query
description: Number of entries to return.
required: false
type: number
tags:
- Entries
responses:
"200":
description: An array of entries
schema:
$ref: '#/definitions/Entries'
default:
description: Unexpected error
schema:
$ref: '#/definitions/Error'
/entries:
get:
summary: All Entries matching query
description: The Entries endpoint returns information about the Nightscout entries.
parameters:
- name: find
in: query
description: The query used to find entries, support nested query syntax, for example `find[dateString][$gte]=2015-08-27`. All find parameters are interpreted as strings.
required: false
type: string
- name: count
in: query
description: Number of entries to return.
required: false
type: number
tags:
- Entries
responses:
"200":
description: An array of entries
schema:
$ref: '#/definitions/Entries'
default:
description: Unexpected error
schema:
$ref: '#/definitions/Error'
post:
tags:
- Entries
summary: Add new entries.
description: ""
operationId: addEntries
consumes:
- application/json
- text/plain
produces:
- application/json
- text/plain
parameters:
- in: body
name: body
description: Entries to be uploaded.
required: true
schema:
$ref: "#/definitions/Entries"
responses:
"405":
description: Invalid input
"200":
description: Rejected list of entries. Empty list is success.
delete:
tags:
- Entries
summary: Delete entries matching query.
description: "Remove entries, same search syntax as GET."
operationId: remove
parameters:
- name: find
in: query
description: The query used to find entries, support nested query syntax, for example `find[dateString][$gte]=2015-08-27`. All find parameters are interpreted as strings.
required: false
type: string
- name: count
in: query
description: Number of entries to return.
required: false
type: number
responses:
"200":
description: Empty list is success.
/treatments:
get:
summary: Treatments
description: The Treatments endpoint returns information about the Nightscout treatments.
tags:
- Treatments
parameters:
- name: find
in: query
description:
The query used to find entries, supports nested query syntax. Examples
`find[insulin][$gte]=3`
`find[carb][$gte]=100`
`find[eventType]=Correction+Bolus`
All find parameters are interpreted as strings.
required: false
type: string
- name: count
in: query
description: Number of entries to return.
required: false
type: number
responses:
"200":
description: An array of treatments
schema:
$ref: '#/definitions/Treatments'
default:
description: Unexpected error
schema:
$ref: '#/definitions/Error'
post:
tags:
- Treatments
summary: Add new treatments.
description: ""
operationId: addTreatments
consumes:
- application/json
produces:
- application/json
parameters:
- in: body
name: body
description: Treatments to be uploaded.
required: true
schema:
$ref: "#/definitions/Treatments"
responses:
"405":
description: Invalid input
"200":
description: Rejected list of treatments. Empty list is success.
/profile:
get:
summary: Profile
description: The Profile endpoint returns information about the Nightscout Treatment Profiles.
tags:
- Profile
responses:
"200":
description: An array of treatments
schema:
$ref: '#/definitions/Profile'
default:
description: Unexpected error
schema:
$ref: '#/definitions/Error'
/status:
get:
summary: Status
description: Server side status, default settings and capabilities.
tags:
- Status
responses:
"200":
description: Server capabilities and status.
schema:
$ref: '#/definitions/Status'
default:
description: Unexpected error
schema:
$ref: '#/definitions/Error'
securityDefinitions:
api_secret:
type: apiKey
name: api_secret
in: header
description: The hash of the API_SECRET env var
definitions:
Entry:
properties:
type:
type: string
description: "sgv, mbg, cal, etc"
dateString:
type: string
description: dateString, prefer ISO `8601`
date:
type: number
description: Epoch
sgv:
type: number
description: The glucose reading. (only available for sgv types)
direction:
type: string
description: Direction of glucose trend reported by CGM. (only available for sgv types)
noise:
type: number
description: Noise level at time of reading. (only available for sgv types)
filtered:
type: number
description: The raw filtered value directly from CGM transmitter. (only available for sgv types)
unfiltered:
type: number
description: The raw unfiltered value directly from CGM transmitter. (only available for sgv types)
rssi:
type: number
description: The signal strength from CGM transmitter. (only available for sgv types)
Entries:
type: array
items:
$ref: '#/definitions/Entry'
Treatment:
properties:
_id:
type: string
description: Internally assigned id.
eventType:
type: string
description: The type of treatment event.
created_at:
type: string
description: The date of the event, might be set retroactively .
glucose:
type: string
description: Current glucose.
glucoseType:
type: string
description: Method used to obtain glucose, Finger or Sensor.
carbs:
type: number
description: Number of carbs.
insulin:
type: number
description: Amount of insulin, if any.
units:
type: string
description: The units for the glucose value, mg/dl or mmol.
notes:
type: string
description: Description/notes of treatment.
enteredBy:
type: string
description: Who entered the treatment.
Treatments:
type: array
items:
$ref: '#/definitions/Treatment'
Profile:
properties:
sens:
type: integer
description: 'Internally assigned id'
dia:
type: integer
description: 'Internally assigned id'
carbratio:
type: integer
description: 'Internally assigned id'
carbs_hr:
type: integer
description: 'Internally assigned id'
_id:
type: string
description: 'Internally assigned id'
Status:
properties:
apiEnabled:
type: boolean
description: 'Whether or not the REST API is enabled.'
careportalEnabled:
type: boolean
description: 'Whether or not the careportal is enabled in the API.'
head:
type: string
description: 'The git identifier for the running instance of the app.'
name:
type: string
description: Nightscout (static)
version:
type: string
description: 'The version label of the app.'
settings:
$ref: '#/definitions/Settings'
extendedSettings:
$ref: '#/definitions/ExtendedSettings'
Settings:
properties:
units:
type: string
description: Default units for glucose measurements across the server.
timeFormat:
type: string
description: Default time format
enum:
- 12
- 24
customTitle:
type: string
description: Default custom title to be displayed system wide.
nightMode:
type: boolean
description: Should Night mode be enabled by default?
theme:
type: string
description: Default theme to be displayed system wide, `default` or `colors`.
language:
type: string
description: Default language code to be used system wide
showPlugins:
type: string
description: Plugins that should be shown by default
showRawbg:
type: string
description: If Raw BG is enabled when should it be shown? `never`, `always`, `noise`
alarmTypes:
type: array
items:
type: string
enum:
- simple
- predict
description: Enabled alarm types, can be multiple
alarmUrgentHigh:
type: boolean
description: Enable/Disable client-side Urgent High alarms by default, for use with `simple` alarms.
alarmHigh:
type: boolean
description: Enable/Disable client-side High alarms by default, for use with `simple` alarms.
alarmLow:
type: boolean
description: Enable/Disable client-side Low alarms by default, for use with `simple` alarms.
alarmUrgentLow:
type: boolean
description: Enable/Disable client-side Urgent Low alarms by default, for use with `simple` alarms.
alarmTimeagoWarn:
type: boolean
description: Enable/Disable client-side stale data alarms by default.
alarmTimeagoWarnMins:
type: number
description: Number of minutes before a stale data warning is generated.
alarmTimeagoUrgent:
type: boolean
description: Enable/Disable client-side urgent stale data alarms by default.
alarmTimeagoUrgentMins:
type: number
description: Number of minutes before a stale data warning is generated.
enable:
type: array
items:
type: string
description: Enabled features
thresholds:
$ref: '#/definitions/Threshold'
Threshold:
properties:
bg_high:
type: integer
description: 'High BG range.'
bg_target_top:
type: integer
description: 'Top of target range.'
bg_target_bottom:
type: integer
description: 'Bottom of target range.'
bg_low:
type: integer
description: 'Low BG range.'
ExtendedSettings:
description: Extended settings of client side plugins
MongoQuery:
description: Mongo Query object.
Error:
properties:
code:
type: integer
format: int32
message:
type: string
fields:
type: object