forked from KRMAssociatesInc/JDS-GTM
-
Notifications
You must be signed in to change notification settings - Fork 2
/
VPRJDOCSINDEX.m
768 lines (768 loc) · 21.5 KB
/
VPRJDOCSINDEX.m
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
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
VPRJDOCSINDEX ;KRM/CJE -- JDS documentation - index
;
INDEX
;;# Group Patient
;;
;;Contains all endpoints (Resources) that relate to the patient data section of JDS
;;
;;# Patient Data [/vpr]
;;
;;## Add/Update object [POST]
;;
;;Add/Update a VPR object for a patient. The patient has to be known to JDS (has a JPID) before objects can be added or an error message will occur. A PID, UID, and stampTime are the minimum required fields in the VPR object. Note: The patient data section of JDS is insert only, so updates are full objects.
;;
;;+ Response 201 (application/json)
;;
;; VPR object successfuly added to patient
;;
;;+ Response 400 (application/json)
;;
;; Unable to decode JSON, JPID Collision Detected, Missing UID, Unknown UID format, Missing PID, Missing Metastamp
;;
;;+ Response 404 (application/json)
;;
;; JPID Not Found, Missing patient identifiers
;;
;;+ Response 502 (application/json)
;;
;; Unable to lock record
;;
;;## Delete store [DELETE /vpr{?confirm}]
;;
;;Delete the entire patient data store. This irrecoverably removes all patients from the data store.
;;
;;+ Parameters
;; * confirm: `true` (string,required) - Confirms the deletion of the patient data store
;;
;;+ Response 200 (application/json)
;;
;; VPR data store deleted
;;
;;+ Response 400 (application/json)
;;
;; Method Not Allowed
;;
;;# Cross Patient [/vpr/all]
;;
;;## Cross Patient List [GET /vpr/all/patientlist{?filter}]
;;
;;Lists all patients stored and all identifiers associated with the patient as well as the lastAccessTime for a patient
;;
;;+ Parameters
;; :[filter](parameters/filter.md)
;;
;;+ Response 200 (application/json)
;;
;;## Cross Patient Count [GET /vpr/all/count{?count}]
;;
;;Count of objects across all patients
;;
;;+ Parameters
;; :[crossPatientCount](parameters/crossPatientCount.md)
;;
;;+ Response 200 (application/json)
;;
;;## Cross Patient PID listing [GET /vpr/all/index/pid/pid]
;;
;;Lists all synced patient identifiers in JDS
;;
;;+ Response 200 (application/json)
;;
;;## Cross Patient Index [GET /vpr/all/index/{index}{?order}{?filter}{?range}]
;;
;;+ Parameters
;; :[crossPatientIndex](parameters/crossPatientIndex.md)
;; :[order](parameters/order.md)
;; :[filter](parameters/filter.md)
;; :[range](parameters/range.md)
;;
;;+ Response 200 (application/json)
;;
;;## Cross Patient Index with Template [GET /vpr/all/index/{index}/{template}{?order}{?filter}{?range}]
;;
;;+ Parameters
;; :[patientIndex](parameters/patientIndex.md)
;; :[patientTemplate](parameters/patientTemplate.md)
;; :[order](parameters/order.md)
;; :[filter](parameters/filter.md)
;; :[range](parameters/range.md)
;;
;;+ Response 200 (application/json)
;;
;;## Cross Patient Find [GET /vpr/all/find/{collection}{?order}{?filter}]
;;
;;+ Parameters
;; :[patientCollection](parameters/patientCollection.md)
;; :[order](parameters/order.md)
;; :[filter](parameters/filter.md)
;;
;;+ Response 200 (application/json)
;;
;;## Cross Patient Find with Template [GET /vpr/all/find/{collection}/{template}{?order}{?filter}]
;;
;;+ Parameters
;; :[patientCollection](parameters/patientCollection.md)
;; :[patientTemplate](parameters/patientTemplate.md)
;; :[order](parameters/order.md)
;; :[filter](parameters/filter.md)
;;
;;+ Response 200 (application/json)
;;
;;## Delete Collection for all patients [DELETE /vpr/all/collection/{collection}]
;;
;;+ Parameters
;; :[patientCollection](parameters/patientCollection.md)
;;
;;+ Response 200 (application/json)
;;
;;# Individual objects [/vpr/uid]
;;
;;## Get object by UID [GET /vpr/uid/{uid}]
;;
;;+ Parameters
;; :[uid](parameters/uid.md)
;;+ Response 200 (application/json)
;;
;;## Delete object by UID [DELETE /vpr/uid/{uid}]
;;
;;+ Parameters
;; :[uid](parameters/uid.md)
;;
;;+ Response 200 (application/json)
;;
;;## Get object by UID with template[GET /vpr/uid/{uid}/{template}]
;;
;;+ Parameters
;; :[uid](parameters/uid.md)
;; :[patientTemplate](parameters/patientTemplate.md)
;;
;;+ Response 200 (application/json)
;;
;;# Patient Demographics [/vpr/pid]
;;
;;## Get patient demographics [GET /vpr/pid/{icnpidjpid}]
;;
;;This will return demographics for the given patient. If queried by a PID you will receive the demographics only for the site contained in the PID. If queried by ICN all demographics objects will be returned.
;;
;;+ Parameters
;; :[icnpidjpid](parameters/icnpidjpid.md)
;;
;;+ Response 200 (application/json)
;;
;;## Get patient demographics [GET /vpr/mpid/{icnpidjpid}]
;;
;;+ Parameters
;; :[icnpidjpid](parameters/icnpidjpid.md)
;;
;;+ Response 200 (application/json)
;;
;;## Save Patient objects [POST /vpr/{icnpidjpid}]
;;
;;+ Parameters
;; :[icnpidjpid](parameters/icnpidjpid.md)
;;
;;+ Response 200 (application/json)
;;
;;## Retrieve patient objects via an index [GET /vpr/{icnpidjpid}/index/{index}{?order}{?filter}{?range}]
;;
;;+ Parameters
;; :[icnpidjpid](parameters/icnpidjpid.md)
;; :[patientIndex](parameters/patientIndex.md)
;; :[order](parameters/order.md)
;; :[filter](parameters/filter.md)
;; :[range](parameters/range.md)
;;
;;+ Response 200 (application/json)
;;
;;## Retrieve patient objects via an index with a template [GET /vpr/{icnpidjpid}/index/{index}/{template}{?order}{?filter}{?range}]
;;
;;+ Parameters
;; :[icnpidjpid](parameters/icnpidjpid.md)
;; :[patientIndex](parameters/patientIndex.md)
;; :[patientTemplate](parameters/patientTemplate.md)
;; :[order](parameters/order.md)
;; :[filter](parameters/filter.md)
;; :[range](parameters/range.md)
;;
;;+ Response 200 (application/json)
;;
;;## Get the last stored patient object in an index [GET /vpr/{icnpidjpid}/last/{index}{?order}{?filter}{?range}]
;;
;;+ Parameters
;; :[icnpidjpid](parameters/icnpidjpid.md)
;; :[patientIndex](parameters/patientIndex.md)
;; :[order](parameters/order.md)
;; :[filter](parameters/filter.md)
;; :[range](parameters/range.md)
;;
;;+ Response 200 (application/json)
;;
;;## Retrieve the last stored patient object in an index with a template [GET /vpr/{icnpidjpid}/last/{index}/{template}{?order}{?filter}{?range}]
;;
;;+ Parameters
;; :[icnpidjpid](parameters/icnpidjpid.md)
;; :[patientIndex](parameters/patientIndex.md)
;; :[patientTemplate](parameters/patientTemplate.md)
;; :[order](parameters/order.md)
;; :[filter](parameters/filter.md)
;; :[range](parameters/range.md)
;;
;;+ Response 200 (application/json)
;;
;;## Retrieve patient data without an index [GET /vpr/{icnpidjpid}/find/{collection}{?order}{?filter}]
;;
;;+ Parameters
;; :[icnpidjpid](parameters/icnpidjpid.md)
;; :[patientCollection](parameters/patientCollection.md)
;; :[order](parameters/order.md)
;; :[filter](parameters/filter.md)
;;
;;+ Response 200 (application/json)
;;
;;## Retrieve patient data without an index and with a template [GET /vpr/{icnpidjpid}/find/{collection}/{template}{?order}{?filter}]
;;
;;+ Parameters
;; :[icnpidjpid](parameters/icnpidjpid.md)
;; :[patientCollection](parameters/patientCollection.md)
;; :[patientTemplate](parameters/patientTemplate.md)
;; :[order](parameters/order.md)
;; :[filter](parameters/filter.md)
;;
;;+ Response 200 (application/json)
;;
;;## Retrieve a single patient data object via patient identifier and uid [GET /vpr/{icnpidjpid}/{uid}]
;;
;;+ Parameters
;; :[icnpidjpid](parameters/icnpidjpid.md)
;; :[uid](parameters/uid.md)
;;
;;+ Response 200 (application/json)
;;## Delete a single patient data object via patient identifier and uid [DELETE /vpr/{icnpidjpid}/{uid}]
;;
;;+ Parameters
;; :[icnpidjpid](parameters/icnpidjpid.md)
;; :[uid](parameters/uid.md)
;;
;;+ Response 200 (application/json)
;;
;;## Retrieve a single patient data object via patient identifier and uid with a template [GET /vpr/{icnpidjpid}/{uid}/{template}]
;;
;;+ Parameters
;; :[icnpidjpid](parameters/icnpidjpid.md)
;; :[uid](parameters/uid.md)
;; :[patientTemplate](parameters/patientTemplate.md)
;;
;;+ Response 200 (application/json)
;;
;;## Retrieve the count of objects for a patient [GET /vpr/{icnpidjpid}/count/{count}]
;;
;;+ Parameters
;; :[icnpidjpid](parameters/icnpidjpid.md)
;; :[patientCount](parameters/patientCount.md)
;;
;;+ Response 200 (application/json)
;;
;;## Get patient demographics [GET /vpr/{icnpidjpid}]
;;
;;This will return demographics for the given patient. If queried by a PID you will receive the demographics only for the site contained in the PID. If queried by ICN all demographics objects will be returned.
;;
;;+ Parameters
;; :[icnpidjpid](parameters/icnpidjpid.md)
;;
;;+ Response 200 (application/json)
;;
;;## Delete patient from data store [DELETE /vpr/{icnpidjpid}]
;;
;;+ Parameters
;; :[icnpidjpid](parameters/icnpidjpid.md)
;;
;;+ Response 200 (application/json)
;;
;;## Retrieve the checksum for a system [GET /vpr/{icnpidjpid}/checksum/{system}]
;;
;;+ Parameters
;; :[icnpidjpid](parameters/icnpidjpid.md)
;; :[system](parameters/system.md)
;;
;;+ Response 200 (application/json)
;;
;;## Delete a collection of objects for a patient [DELETE /vpr/{icnpidjpid}/collection/{collection}{?order}{?filter}]
;;
;;+ Parameters
;; :[icnpidjpid](parameters/icnpidjpid.md)
;; :[patientCollection](parameters/patientCollection.md)
;; :[order](parameters/order.md)
;; :[filter](parameters/filter.md)
;;
;;+ Response 200 (application/json)
;;
;;## Delete all patients at a site [DELETE /vpr/site/{site}]
;;
;;+ Parameters
;; :[site](parameters/site.md)
;;
;;+ Response 200 (application/json)
;;
;;# Patient Identifiers [/vpr/jpid]
;;
;;## Get patient identifiers associated for a patient [GET /vpr/jpid/{icnpidjpid}]
;;
;;+ Parameters
;; :[icnpidjpid](parameters/icnpidjpid.md)
;;
;;+ Response 200 (application/json)
;;
;;## Associate patient identifiers for an existing patient [POST /vpr/jpid/{icnpidjpid}]
;;
;;+ Parameters
;; :[icnpidjpid](parameters/icnpidjpid.md)
;;
;;+ Response 200 (application/json)
;;
;;## Delete all associated patient identifiers for a patient [DELETE /vpr/jpid/{icnpidjpid}]
;;
;;+ Parameters
;; :[icnpidjpid](parameters/icnpidjpid.md)
;;
;;+ Response 200 (application/json)
;;
;;## Associate patient identifiers for a new patient [POST /vpr/jpid]
;;
;;+ Response 200 (application/json)
;;
;;## Delete all associated patient identifiers [DELETE /vpr/jpid/clear]
;;
;;+ Response 200 (application/json)
;;
;;# Group Operational
;;
;;Contains all endpoints (Resources) that relate to the Operational data section of JDS
;;
;;# Operational Data [/data]
;;
;;## Add new operational data item [POST /data]
;; summary: Add operational data object to data store
;; description: Adds VPR formatted operational data object to data store
;;
;;+ Response 200 (application/json)
;;
;;## Remove all operational data items [DELETE /data]
;;
;;+ Response 200 (application/json)
;;
;;## Retrieve an individual operational data item [GET /data/{uid}]
;;
;;+ Parameters
;; :[uid](parameters/uid.md)
;;
;;+ Response 200 (application/json)
;;
;;## Remove an individual operational data item [DELETE /data/{uid}]
;;
;;+ Parameters
;; :[uid](parameters/uid.md)
;;
;;+ Response 200 (application/json)
;;
;;## Retrieve an individual operational data item with a template [GET /data/{uid}/{template}]
;;
;;+ Parameters
;; :[uid](parameters/uid.md)
;; :[operationalTemplate](parameters/operationalTemplate.md)
;;
;;+ Response 200 (application/json)
;;
;;## Retrieve operational data items via an index [GET /data/index/{index}{?order}{?filter}{?range}]
;;
;;+ Parameters
;; :[operationalIndex](parameters/operationalIndex.md)
;; :[order](parameters/order.md)
;; :[filter](parameters/filter.md)
;; :[range](parameters/range.md)
;;
;;+ Response 200 (application/json)
;;
;;## Retrieve operational data items via an index with a template [GET /data/index/{index}/{template}{?order}{?filter}{?range}]
;;
;;+ Parameters
;; :[operationalIndex](parameters/operationalIndex.md)
;; :[operationalTemplate](parameters/operationalTemplate.md)
;; :[order](parameters/order.md)
;; :[filter](parameters/filter.md)
;; :[range](parameters/range.md)
;;
;;+ Response 200 (application/json)
;;
;;## Retrieve the last operational data item stored in an index [GET /data/last/{index}{?order}{?filter}{?range}]
;;
;;+ Parameters
;; :[operationalIndex](parameters/operationalIndex.md)
;; :[order](parameters/order.md)
;; :[filter](parameters/filter.md)
;; :[range](parameters/range.md)
;;
;;+ Response 200 (application/json)
;;
;;## Get a count of operational data items [GET /data/count/{count}]
;;
;;+ Parameters
;; :[operationalCount](parameters/operationalCount.md)
;;
;;+ Response 200 (application/json)
;;
;;## Get operational data items without an index [GET /data/find/{collection}{?order}{?filter}]
;;
;;+ Parameters
;; :[operationalCollection](parameters/operationalCollection.md)
;; :[order](parameters/order.md)
;; :[filter](parameters/filter.md)
;;
;;+ Response 200 (application/json)
;;
;;## Get operational data items without an index with a template [GET /data/find/{collection}/{template}{?order}{?filter}]
;;
;;+ Parameters
;; :[operationalCollection](parameters/operationalCollection.md)
;; :[operationalTemplate](parameters/operationalTemplate.md)
;; :[order](parameters/order.md)
;; :[filter](parameters/filter.md)
;;
;;+ Response 200 (application/json)
;;
;;## Get the number of operational data objects accross all sites and collections [GET /data/all/count/{count}]
;;
;;+ Parameters
;; :[operationalCount](parameters/operationalCount.md)
;;
;;+ Response 200 (application/json)
;;
;;## Delete an operational data collection across all sites [DELETE /data/collection/{collection}{?order}{?filter}]
;;
;;+ Parameters
;; :[operationalCollection](parameters/operationalCollection.md)
;; :[order](parameters/order.md)
;; :[filter](parameters/filter.md)
;;
;;+ Response 200 (application/json)
;;
;;## Delete all operational data for a site [DELETE /data/site/{site}]
;;
;;+ Parameters
;; :[site](parameters/site.md)
;;
;;+ Response 200 (application/json)
;;
;;# Group Adminstration
;;
;;Contains all endpoints (Resources) that relate to the administering JDS
;;
;;## Ping [GET /ping]
;;
;;+ Response 200 (application/json)
;;
;;## Version [GET /version]
;;
;;+ Response 200 (application/json)
;;
;;## JDS logging level [/jds/logger/this]
;;
;;### Retrieve jds logging level [GET]
;;
;;+ Response 200 (application/json)
;;
;;### Set JDS logging level [POST]
;;
;;+ Response 200 (application/json)
;;
;;## Set JDS logging level [PUT]
;;
;;+ Response 200 (application/json)
;;
;;# Group Session Store
;;
;;Contains all endpoints (Resources) that relate to the session store
;;
;;## Create Session [/session/set/this]
;;
;;### Create Session [POST]
;;
;;+ Response 200 (application/json)
;;
;;### Create Session [PUT]
;;
;;+ Response 200 (application/json)
;;
;;## Retrieve a session by id [GET /session/get/{id}]
;;
;;+ Parameters
;; :[id](parameters/id.md)
;;
;;+ Response 200 (application/json)
;;
;;## Count of all sessions stored [GET /session/length/this]
;;
;;+ Response 200 (application/json)
;;
;;## Delete a session by id [/session/destroy/{id}]
;;
;;+ Parameters
;; :[id](parameters/id.md)
;;
;;### Delete a session by id [DELETE]
;;
;;+ Response 200 (application/json)
;;
;;### Delete a session by id [GET]
;;
;;+ Response 200 (application/json)
;;
;;## Delete session by id [GET /session/destroy/_id/{id}]
;;
;;+ Parameters
;; :[id](parameters/id.md)
;;
;;+ Response 200 (application/json)
;;
;;## Delete all sessions stored [/session/clear/this]
;;
;;### Delete all sessions stored [DELETE]
;;
;;+ Response 200 (application/json)
;;
;;### Delete all sessions stored [GET]
;;
;;+ Response 200 (application/json)
;;
;;# Group Mutable operational data
;;
;;Contains all endpoints (Resources) that relate to the mutable operational data
;;
;;## Store a mutable operational data item [/odmutable/set/this]
;;
;;### Store a mutable operational data item [POST]
;;
;;+ Response 200 (application/json)
;;
;;### Store a mutable operational data item [PUT]
;;
;;+ Response 200 (application/json)
;;
;;## Retrieve a mutable operational data item [GET /odmutable/get/{id}]
;;
;;+ Parameters
;; :[id](parameters/id.md)
;;
;;+ Response 200 (application/json)
;;
;;## Count of mutable operational data items [GET /odmutable/length/this]
;;
;;+ Response 200 (application/json)
;;
;;## Remove mutable operational data item [/odmutable/destroy/{id}]
;;
;;+ Parameters
;; :[id](parameters/id.md)
;;
;;### Remove mutable operational data item [DELETE]
;;
;;+ Response 200 (application/json)
;;
;;### Remove mutable operational data item [GET]
;;
;;+ Response 200 (application/json)
;;
;;## Remove all mutable operational data items [/odmutable/clear/this]
;;
;;### Remove all mutable operational data items [DELETE]
;;
;;+ Response 200 (application/json)
;;
;;### Remove all mutable operational data items [GET]
;;
;;+ Response 200 (application/json)
;;
;;# Group User pJDS data store
;;
;;Contains all endpoints (Resources) that relate to the User store
;;
;;## Store a user data item [/user/set/this]
;;
;;### Store a user data item [POST]
;;
;;+ Response 200 (application/json)
;;
;;### Store a user data item [PUT]
;;
;;+ Response 200 (application/json)
;;
;;## Retrieve a user data item [GET /user/get/{id}]
;;
;;+ Parameters
;; :[id](parameters/id.md)
;;
;;+ Response 200 (application/json)
;;
;;## Count of user data items [GET /user/length/this]
;;
;;+ Response 200 (application/json)
;;
;;## Remove user data item [/user/destroy/{id}]
;;
;;+ Parameters
;; :[id](parameters/id.md)
;;
;;### Remove user data item [DELETE]
;;
;;+ Response 200 (application/json)
;;
;;## Remove user data item [GET]
;;
;;+ Response 200 (application/json)
;;
;;## Remove user data item [GET /user/destroy/_id/{id}]
;;
;;+ Parameters
;; :[id](parameters/id.md)
;;
;;+ Response 200 (application/json)
;;
;;## Remove all user data items [/user/clear/this]
;;
;;### Remove all user data items [DELETE]
;;
;;+ Response 200 (application/json)
;;
;;### Remove all user data items [GET]
;;
;;+ Response 200 (application/json)
;;
;;# Group Error
;;
;;Contains all endpoints (Resources) that relate to the VX-Sync Error Store
;;
;;## Store a user data item [/error/set/this]
;;
;;### Store a user data item [POST]
;;
;;+ Response 200 (application/json)
;;
;;### Store a user data item [PUT]
;;
;;+ Response 200 (application/json)
;;
;;## Retrieve a user data item [GET /error/get/{id}]
;;
;;+ Parameters
;; :[id](parameters/id.md)
;;
;;+ Response 200 (application/json)
;;
;;## Count of error data items [GET /error/length/this]
;;
;;+ Response 200 (application/json)
;;
;;## Remove error data item [DELETE /error/destroy/{id}]
;;
;;+ Parameters
;; :[id](parameters/id.md)
;;
;;+ Response 200 (application/json)
;;
;;## Remove error data item [GET /error/destroy/{id}]
;;
;;+ Parameters
;; :[id](parameters/id.md)
;;
;;+ Response 200 (application/json)
;;
;;## Remove error data item [GET /error/destroy/_id/{id}]
;;
;;+ Parameters
;; :[id](parameters/id.md)
;;
;;+ Response 200 (application/json)
;;
;;## Remove all error data items [DELETE /error/clear/this]
;;
;;+ Response 200 (application/json)
;;
;;## Remove all error data items [GET /error/clear/this]
;;
;;+ Response 200 (application/json)
;;
;;# Group Garbage Collection
;;
;;Contains all endpoints (Resources) that relate to garbage collection
;;
;;## Collect garbage patient data objects for a specific patient [GET /tasks/gc/patient/{icnpidjpid}]
;;
;;+ Parameters
;; :[icnpidjpid](parameters/icnpidjpid.md)
;;
;;+ Response 200 (application/json)
;;
;;## Collect garbage patient data objects for all patients [GET /tasks/gc/patient]
;;
;;+ Response 200 (application/json)
;;
;;## Collect garbage operational data objects for a site [GET /tasks/gc/data/{site}]
;;
;;+ Parameters
;; :[site](parameters/site.md)
;;
;;+ Response 200 (application/json)
;;
;;## Collect garbage operational data objects for all sites [GET /tasks/gc/data/]
;;
;;+ Response 200 (application/json)
;;
;;# Group Generic Data Store
;;
;;Contains all endpoints (Resources) that relate to the Generic Data Store (pJDS)
;;
;;## Store Operations [/{store}]
;;
;;+ Parameters
;; :[store](parameters/store.md)
;;
;;### Create Generic Data Store [PUT]
;;
;;+ Response 200 (application/json)
;;
;;### Return basic store information [GET]
;;
;;+ Response 200 (application/json)
;;
;;## Item CRUD operations [/{store}/{uid}]
;;
;;+ Parameters
;; :[store](parameters/store.md)
;; :[uid](parameters/uid.md)
;;
;;### Store an object [PUT]
;;
;;+ Response 200 (application/json)
;;
;;## Retrieve an object [GET]
;;
;;+ Response 200 (application/json)
;;
;;## Delete an object [DELETE]
;;
;;+ Response 200 (application/json)
;;
;;## Create an Index [POST /{store}/index]
;;
;;+ Parameters
;; :[store](parameters/store.md)
;;
;;+ Response 200 (application/json)
;;
;;## Retrieve objects via index [GET /{store}/index/{gdsIndex}]
;;
;;+ Parameters
;; :[store](parameters/store.md)
;; :[gdsIndex](parameters/gdsIndex.md)
;;
;;+ Response 200 (application/json)
;;zzzzz