org.sql-on-fhir.ig 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,1032 @@
1
+ {
2
+ "title": "constant_types",
3
+ "description": "tests for all types of constants",
4
+ "resources": [
5
+ {
6
+ "resourceType": "Organization",
7
+ "name": "o1",
8
+ "id": "o1"
9
+ },
10
+ {
11
+ "resourceType": "Device",
12
+ "id": "d1",
13
+ "udiCarrier": [
14
+ {
15
+ "carrierAIDC": "aGVsbG8K"
16
+ }
17
+ ]
18
+ },
19
+ {
20
+ "resourceType": "Device",
21
+ "id": "d2",
22
+ "udiCarrier": [
23
+ {
24
+ "carrierAIDC": "YnllCg=="
25
+ }
26
+ ]
27
+ },
28
+ {
29
+ "resourceType": "Device",
30
+ "id": "d3"
31
+ },
32
+ {
33
+ "resourceType": "Patient",
34
+ "id": "pt1",
35
+ "gender": "female",
36
+ "birthDate": "1978-03-12"
37
+ },
38
+ {
39
+ "resourceType": "Patient",
40
+ "id": "pt2",
41
+ "gender": "male",
42
+ "birthDate": "1941-09-09"
43
+ },
44
+ {
45
+ "resourceType": "Patient",
46
+ "id": "pt3"
47
+ },
48
+ {
49
+ "resourceType": "ClaimResponse",
50
+ "id": "cr1",
51
+ "use": "claim",
52
+ "patient": { "reference": "Patient/p1" },
53
+ "created": "2021-09-02",
54
+ "insurer": { "reference": "Organization/o1" },
55
+ "type": { "text": "type" },
56
+ "outcome": "complete",
57
+ "status": "active",
58
+ "item": [
59
+ {
60
+ "itemSequence": 1,
61
+ "adjudication": [
62
+ {
63
+ "category": { "text": "category" }
64
+ }
65
+ ]
66
+ }
67
+ ]
68
+ },
69
+ {
70
+ "resourceType": "ClaimResponse",
71
+ "id": "cr2",
72
+ "use": "claim",
73
+ "patient": { "reference": "Patient/p1" },
74
+ "created": "2021-09-02",
75
+ "insurer": { "reference": "Organization/o1" },
76
+ "type": { "text": "type" },
77
+ "outcome": "complete",
78
+ "status": "active",
79
+ "item": [
80
+ {
81
+ "itemSequence": 2,
82
+ "adjudication": [
83
+ {
84
+ "category": { "text": "category" }
85
+ }
86
+ ]
87
+ }
88
+ ]
89
+ },
90
+ {
91
+ "resourceType": "ClaimResponse",
92
+ "id": "cr3",
93
+ "use": "claim",
94
+ "patient": { "reference": "Patient/p1" },
95
+ "created": "2021-09-02",
96
+ "insurer": { "reference": "Organization/o1" },
97
+ "type": { "text": "type" },
98
+ "outcome": "complete",
99
+ "status": "active"
100
+ },
101
+ {
102
+ "resourceType": "DetectedIssue",
103
+ "id": "di1",
104
+ "status": "final",
105
+ "identifiedDateTime": "2023-02-08"
106
+ },
107
+ {
108
+ "resourceType": "DetectedIssue",
109
+ "id": "di2",
110
+ "status": "final",
111
+ "identifiedDateTime": "2016-11-12"
112
+ },
113
+ {
114
+ "resourceType": "DetectedIssue",
115
+ "id": "di3",
116
+ "status": "final"
117
+ },
118
+ {
119
+ "resourceType": "Observation",
120
+ "id": "o1",
121
+ "status": "final",
122
+ "code": { "text": "code" },
123
+ "valueQuantity": { "value": 1.0 },
124
+ "effectiveInstant": "2015-02-07T13:28:17.239+02:00"
125
+ },
126
+ {
127
+ "resourceType": "Observation",
128
+ "id": "o2",
129
+ "status": "final",
130
+ "code": { "text": "code" },
131
+ "valueQuantity": { "value": 1.8 },
132
+ "effectiveInstant": "2022-02-07T13:28:17.239+02:00"
133
+ },
134
+ {
135
+ "resourceType": "Observation",
136
+ "id": "o3",
137
+ "status": "final",
138
+ "code": { "text": "code" }
139
+ },
140
+ {
141
+ "resourceType": "Observation",
142
+ "id": "o4",
143
+ "status": "final",
144
+ "code": { "text": "code" },
145
+ "valueTime": "18:12:00"
146
+ },
147
+ {
148
+ "resourceType": "Observation",
149
+ "id": "o5",
150
+ "status": "final",
151
+ "code": { "text": "code" },
152
+ "valueTime": "18:32:00"
153
+ },
154
+ {
155
+ "resourceType": "ImagingStudy",
156
+ "id": "is1",
157
+ "status": "available",
158
+ "subject": { "reference": "Patient/p1" },
159
+ "numberOfSeries": 9
160
+ },
161
+ {
162
+ "resourceType": "ImagingStudy",
163
+ "id": "is2",
164
+ "status": "available",
165
+ "subject": { "reference": "Patient/p1" },
166
+ "numberOfSeries": 12
167
+ },
168
+ {
169
+ "resourceType": "ImagingStudy",
170
+ "id": "is3",
171
+ "status": "available",
172
+ "subject": { "reference": "Patient/p1" }
173
+ },
174
+ {
175
+ "resourceType": "Measure",
176
+ "id": "m1",
177
+ "url": "urn:uuid:53fefa32-fcbb-4ff8-8a92-55ee120877b7",
178
+ "status": "active"
179
+ },
180
+ {
181
+ "resourceType": "Measure",
182
+ "id": "m2",
183
+ "url": "urn:uuid:c4669fc3-0d14-4e54-a77f-525f6d4e8385",
184
+ "status": "active"
185
+ },
186
+ {
187
+ "resourceType": "Measure",
188
+ "id": "m3",
189
+ "status": "active"
190
+ },
191
+ {
192
+ "resourceType": "Task",
193
+ "id": "t1",
194
+ "intent": "order",
195
+ "status": "requested",
196
+ "output": [
197
+ {
198
+ "type": { "text": "type" },
199
+ "valueUrl": "http://example.org"
200
+ }
201
+ ]
202
+ },
203
+ {
204
+ "resourceType": "Task",
205
+ "id": "t2",
206
+ "intent": "order",
207
+ "status": "requested",
208
+ "output": [
209
+ {
210
+ "type": { "text": "type" },
211
+ "valueUrl": "http://another.example.org"
212
+ }
213
+ ]
214
+ },
215
+ {
216
+ "resourceType": "Task",
217
+ "id": "t3",
218
+ "intent": "order",
219
+ "status": "requested"
220
+ },
221
+ {
222
+ "resourceType": "Task",
223
+ "id": "t4",
224
+ "intent": "order",
225
+ "status": "requested",
226
+ "output": [
227
+ {
228
+ "type": { "text": "type" },
229
+ "valueOid": "urn:oid:1.0"
230
+ }
231
+ ]
232
+ },
233
+ {
234
+ "resourceType": "Task",
235
+ "id": "t5",
236
+ "intent": "order",
237
+ "status": "requested",
238
+ "output": [
239
+ {
240
+ "type": { "text": "type" },
241
+ "valueOid": "urn:oid:1.2.3"
242
+ }
243
+ ]
244
+ },
245
+ {
246
+ "resourceType": "Task",
247
+ "id": "t6",
248
+ "intent": "order",
249
+ "status": "requested",
250
+ "output": [
251
+ {
252
+ "type": { "text": "type" },
253
+ "valueUuid": "urn:uuid:53fefa32-fcbb-4ff8-8a92-55ee120877b7"
254
+ }
255
+ ]
256
+ },
257
+ {
258
+ "resourceType": "Task",
259
+ "id": "t7",
260
+ "intent": "order",
261
+ "status": "requested",
262
+ "output": [
263
+ {
264
+ "type": { "text": "type" },
265
+ "valueUuid": "urn:uuid:c4669fc3-0d14-4e54-a77f-525f6d4e8385"
266
+ }
267
+ ]
268
+ },
269
+ {
270
+ "resourceType": "Task",
271
+ "id": "t8",
272
+ "intent": "order",
273
+ "status": "requested",
274
+ "output": [
275
+ {
276
+ "type": { "text": "type" },
277
+ "valueId": "id1"
278
+ }
279
+ ]
280
+ },
281
+ {
282
+ "resourceType": "Task",
283
+ "id": "t9",
284
+ "intent": "order",
285
+ "status": "requested",
286
+ "output": [
287
+ {
288
+ "type": { "text": "type" },
289
+ "valueId": "id2"
290
+ }
291
+ ]
292
+ }
293
+ ],
294
+ "tests": [
295
+ {
296
+ "title": "base64Binary",
297
+ "tags": ["shareable"],
298
+ "view": {
299
+ "resource": "Device",
300
+ "status": "active",
301
+ "constant": [
302
+ {
303
+ "name": "aidc",
304
+ "valueBase64Binary": "aGVsbG8K"
305
+ }
306
+ ],
307
+ "select": [
308
+ {
309
+ "column": [
310
+ {
311
+ "name": "id",
312
+ "path": "id",
313
+ "type": "id"
314
+ },
315
+ {
316
+ "name": "aidc",
317
+ "path": "udiCarrier.first().carrierAIDC = %aidc",
318
+ "type": "boolean"
319
+ }
320
+ ]
321
+ }
322
+ ]
323
+ },
324
+ "expect": [
325
+ {
326
+ "id": "d1",
327
+ "aidc": true
328
+ },
329
+ {
330
+ "id": "d2",
331
+ "aidc": false
332
+ },
333
+ {
334
+ "id": "d3",
335
+ "aidc": null
336
+ }
337
+ ]
338
+ },
339
+ {
340
+ "title": "code",
341
+ "tags": ["shareable"],
342
+ "view": {
343
+ "resource": "Patient",
344
+ "status": "active",
345
+ "constant": [
346
+ {
347
+ "name": "gender",
348
+ "valueCode": "female"
349
+ }
350
+ ],
351
+ "select": [
352
+ {
353
+ "column": [
354
+ {
355
+ "name": "id",
356
+ "path": "id",
357
+ "type": "id"
358
+ },
359
+ {
360
+ "name": "bool",
361
+ "path": "gender = %gender",
362
+ "type": "boolean"
363
+ }
364
+ ]
365
+ }
366
+ ]
367
+ },
368
+ "expect": [
369
+ {
370
+ "id": "pt1",
371
+ "bool": true
372
+ },
373
+ {
374
+ "id": "pt2",
375
+ "bool": false
376
+ },
377
+ {
378
+ "id": "pt3",
379
+ "bool": null
380
+ }
381
+ ]
382
+ },
383
+ {
384
+ "title": "date",
385
+ "tags": ["shareable"],
386
+ "view": {
387
+ "resource": "Patient",
388
+ "status": "active",
389
+ "constant": [
390
+ {
391
+ "name": "bd",
392
+ "valueDate": "1978-03-12"
393
+ }
394
+ ],
395
+ "select": [
396
+ {
397
+ "column": [
398
+ {
399
+ "name": "id",
400
+ "path": "id",
401
+ "type": "id"
402
+ },
403
+ {
404
+ "name": "bool",
405
+ "path": "birthDate = %bd",
406
+ "type": "boolean"
407
+ }
408
+ ]
409
+ }
410
+ ]
411
+ },
412
+ "expect": [
413
+ {
414
+ "id": "pt1",
415
+ "bool": true
416
+ },
417
+ {
418
+ "id": "pt2",
419
+ "bool": false
420
+ },
421
+ {
422
+ "id": "pt3",
423
+ "bool": null
424
+ }
425
+ ]
426
+ },
427
+ {
428
+ "title": "dateTime",
429
+ "tags": ["shareable"],
430
+ "view": {
431
+ "resource": "DetectedIssue",
432
+ "status": "active",
433
+ "constant": [
434
+ {
435
+ "name": "id_time",
436
+ "valueDateTime": "2016-11-12"
437
+ }
438
+ ],
439
+ "select": [
440
+ {
441
+ "column": [
442
+ {
443
+ "name": "id",
444
+ "path": "id",
445
+ "type": "id"
446
+ },
447
+ {
448
+ "name": "bool",
449
+ "path": "identified.ofType(dateTime) = %id_time",
450
+ "type": "boolean"
451
+ }
452
+ ]
453
+ }
454
+ ]
455
+ },
456
+ "expect": [
457
+ {
458
+ "id": "di1",
459
+ "bool": false
460
+ },
461
+ {
462
+ "id": "di2",
463
+ "bool": true
464
+ },
465
+ {
466
+ "id": "di3",
467
+ "bool": null
468
+ }
469
+ ]
470
+ },
471
+ {
472
+ "title": "decimal",
473
+ "tags": ["shareable"],
474
+ "view": {
475
+ "resource": "Observation",
476
+ "status": "active",
477
+ "constant": [
478
+ {
479
+ "name": "v",
480
+ "valueDecimal": 1.2
481
+ }
482
+ ],
483
+ "select": [
484
+ {
485
+ "column": [
486
+ {
487
+ "name": "id",
488
+ "path": "id",
489
+ "type": "id"
490
+ },
491
+ {
492
+ "name": "bool",
493
+ "path": "value.ofType(Quantity).value < %v",
494
+ "type": "boolean"
495
+ }
496
+ ]
497
+ }
498
+ ]
499
+ },
500
+ "expect": [
501
+ {
502
+ "id": "o1",
503
+ "bool": true
504
+ },
505
+ {
506
+ "id": "o2",
507
+ "bool": false
508
+ },
509
+ {
510
+ "id": "o3",
511
+ "bool": null
512
+ },
513
+ {
514
+ "id": "o4",
515
+ "bool": null
516
+ },
517
+ {
518
+ "id": "o5",
519
+ "bool": null
520
+ }
521
+ ]
522
+ },
523
+ {
524
+ "title": "id",
525
+ "tags": ["shareable"],
526
+ "view": {
527
+ "resource": "Task",
528
+ "status": "active",
529
+ "constant": [
530
+ {
531
+ "name": "id",
532
+ "valueId": "id1"
533
+ }
534
+ ],
535
+ "select": [
536
+ {
537
+ "column": [
538
+ {
539
+ "name": "id",
540
+ "path": "id",
541
+ "type": "id"
542
+ },
543
+ {
544
+ "name": "bool",
545
+ "path": "output.first().value.ofType(id) = %id",
546
+ "type": "boolean"
547
+ }
548
+ ]
549
+ }
550
+ ]
551
+ },
552
+ "expect": [
553
+ {
554
+ "id": "t1",
555
+ "bool": null
556
+ },
557
+ {
558
+ "id": "t2",
559
+ "bool": null
560
+ },
561
+ {
562
+ "id": "t3",
563
+ "bool": null
564
+ },
565
+ {
566
+ "id": "t4",
567
+ "bool": null
568
+ },
569
+ {
570
+ "id": "t5",
571
+ "bool": null
572
+ },
573
+ {
574
+ "id": "t6",
575
+ "bool": null
576
+ },
577
+ {
578
+ "id": "t7",
579
+ "bool": null
580
+ },
581
+ {
582
+ "id": "t8",
583
+ "bool": true
584
+ },
585
+ {
586
+ "id": "t9",
587
+ "bool": false
588
+ }
589
+ ]
590
+ },
591
+ {
592
+ "title": "instant",
593
+ "tags": ["shareable"],
594
+ "view": {
595
+ "resource": "Observation",
596
+ "status": "active",
597
+ "constant": [
598
+ {
599
+ "name": "eff",
600
+ "valueInstant": "2015-02-07T13:28:17.239+02:00"
601
+ }
602
+ ],
603
+ "select": [
604
+ {
605
+ "column": [
606
+ {
607
+ "name": "id",
608
+ "path": "id",
609
+ "type": "id"
610
+ },
611
+ {
612
+ "name": "bool",
613
+ "path": "effective.ofType(instant) = %eff",
614
+ "type": "boolean"
615
+ }
616
+ ]
617
+ }
618
+ ]
619
+ },
620
+ "expect": [
621
+ {
622
+ "id": "o1",
623
+ "bool": true
624
+ },
625
+ {
626
+ "id": "o2",
627
+ "bool": false
628
+ },
629
+ {
630
+ "id": "o3",
631
+ "bool": null
632
+ },
633
+ {
634
+ "id": "o4",
635
+ "bool": null
636
+ },
637
+ {
638
+ "id": "o5",
639
+ "bool": null
640
+ }
641
+ ]
642
+ },
643
+ {
644
+ "title": "oid",
645
+ "tags": ["shareable"],
646
+ "view": {
647
+ "resource": "Task",
648
+ "status": "active",
649
+ "constant": [
650
+ {
651
+ "name": "oid",
652
+ "valueOid": "urn:oid:1.0"
653
+ }
654
+ ],
655
+ "select": [
656
+ {
657
+ "column": [
658
+ {
659
+ "name": "id",
660
+ "path": "id",
661
+ "type": "id"
662
+ },
663
+ {
664
+ "name": "bool",
665
+ "path": "output.first().value.ofType(oid) = %oid",
666
+ "type": "boolean"
667
+ }
668
+ ]
669
+ }
670
+ ]
671
+ },
672
+ "expect": [
673
+ {
674
+ "id": "t1",
675
+ "bool": null
676
+ },
677
+ {
678
+ "id": "t2",
679
+ "bool": null
680
+ },
681
+ {
682
+ "id": "t3",
683
+ "bool": null
684
+ },
685
+ {
686
+ "id": "t4",
687
+ "bool": true
688
+ },
689
+ {
690
+ "id": "t5",
691
+ "bool": false
692
+ },
693
+ {
694
+ "id": "t6",
695
+ "bool": null
696
+ },
697
+ {
698
+ "id": "t7",
699
+ "bool": null
700
+ },
701
+ {
702
+ "id": "t8",
703
+ "bool": null
704
+ },
705
+ {
706
+ "id": "t9",
707
+ "bool": null
708
+ }
709
+ ]
710
+ },
711
+ {
712
+ "title": "positiveInt",
713
+ "tags": ["shareable"],
714
+ "view": {
715
+ "resource": "ClaimResponse",
716
+ "status": "active",
717
+ "constant": [
718
+ {
719
+ "name": "seq",
720
+ "valuePositiveInt": 1
721
+ }
722
+ ],
723
+ "select": [
724
+ {
725
+ "column": [
726
+ {
727
+ "name": "id",
728
+ "path": "id",
729
+ "type": "id"
730
+ },
731
+ {
732
+ "name": "bool",
733
+ "path": "item.first().itemSequence = %seq",
734
+ "type": "boolean"
735
+ }
736
+ ]
737
+ }
738
+ ]
739
+ },
740
+ "expect": [
741
+ {
742
+ "id": "cr1",
743
+ "bool": true
744
+ },
745
+ {
746
+ "id": "cr2",
747
+ "bool": false
748
+ },
749
+ {
750
+ "id": "cr3",
751
+ "bool": null
752
+ }
753
+ ]
754
+ },
755
+ {
756
+ "title": "time",
757
+ "tags": ["shareable"],
758
+ "view": {
759
+ "resource": "Observation",
760
+ "status": "active",
761
+ "constant": [
762
+ {
763
+ "name": "t",
764
+ "valueTime": "18:12:00"
765
+ }
766
+ ],
767
+ "select": [
768
+ {
769
+ "column": [
770
+ {
771
+ "name": "id",
772
+ "path": "id",
773
+ "type": "id"
774
+ },
775
+ {
776
+ "name": "bool",
777
+ "path": "value.ofType(time) = %t",
778
+ "type": "boolean"
779
+ }
780
+ ]
781
+ }
782
+ ]
783
+ },
784
+ "expect": [
785
+ {
786
+ "id": "o1",
787
+ "bool": null
788
+ },
789
+ {
790
+ "id": "o2",
791
+ "bool": null
792
+ },
793
+ {
794
+ "id": "o3",
795
+ "bool": null
796
+ },
797
+ {
798
+ "id": "o4",
799
+ "bool": true
800
+ },
801
+ {
802
+ "id": "o5",
803
+ "bool": false
804
+ }
805
+ ]
806
+ },
807
+ {
808
+ "title": "unsignedInt",
809
+ "tags": ["shareable"],
810
+ "view": {
811
+ "resource": "ImagingStudy",
812
+ "status": "active",
813
+ "constant": [
814
+ {
815
+ "name": "series",
816
+ "valueUnsignedInt": 9
817
+ }
818
+ ],
819
+ "select": [
820
+ {
821
+ "column": [
822
+ {
823
+ "name": "id",
824
+ "path": "id",
825
+ "type": "id"
826
+ },
827
+ {
828
+ "name": "bool",
829
+ "path": "numberOfSeries = %series",
830
+ "type": "boolean"
831
+ }
832
+ ]
833
+ }
834
+ ]
835
+ },
836
+ "expect": [
837
+ {
838
+ "id": "is1",
839
+ "bool": true
840
+ },
841
+ {
842
+ "id": "is2",
843
+ "bool": false
844
+ },
845
+ {
846
+ "id": "is3",
847
+ "bool": null
848
+ }
849
+ ]
850
+ },
851
+ {
852
+ "title": "uri",
853
+ "tags": ["shareable"],
854
+ "view": {
855
+ "resource": "Measure",
856
+ "status": "active",
857
+ "constant": [
858
+ {
859
+ "name": "uri",
860
+ "valueUri": "urn:uuid:53fefa32-fcbb-4ff8-8a92-55ee120877b7"
861
+ }
862
+ ],
863
+ "select": [
864
+ {
865
+ "column": [
866
+ {
867
+ "name": "id",
868
+ "path": "id",
869
+ "type": "id"
870
+ },
871
+ {
872
+ "name": "bool",
873
+ "path": "url = %uri",
874
+ "type": "boolean"
875
+ }
876
+ ]
877
+ }
878
+ ]
879
+ },
880
+ "expect": [
881
+ {
882
+ "id": "m1",
883
+ "bool": true
884
+ },
885
+ {
886
+ "id": "m2",
887
+ "bool": false
888
+ },
889
+ {
890
+ "id": "m3",
891
+ "bool": null
892
+ }
893
+ ]
894
+ },
895
+ {
896
+ "title": "url",
897
+ "tags": ["shareable"],
898
+ "view": {
899
+ "resource": "Task",
900
+ "status": "active",
901
+ "constant": [
902
+ {
903
+ "name": "url",
904
+ "valueUrl": "http://example.org"
905
+ }
906
+ ],
907
+ "select": [
908
+ {
909
+ "column": [
910
+ {
911
+ "name": "id",
912
+ "path": "id",
913
+ "type": "id"
914
+ },
915
+ {
916
+ "name": "bool",
917
+ "path": "output.first().value.ofType(url) = %url",
918
+ "type": "boolean"
919
+ }
920
+ ]
921
+ }
922
+ ]
923
+ },
924
+ "expect": [
925
+ {
926
+ "id": "t1",
927
+ "bool": true
928
+ },
929
+ {
930
+ "id": "t2",
931
+ "bool": false
932
+ },
933
+ {
934
+ "id": "t3",
935
+ "bool": null
936
+ },
937
+ {
938
+ "id": "t4",
939
+ "bool": null
940
+ },
941
+ {
942
+ "id": "t5",
943
+ "bool": null
944
+ },
945
+ {
946
+ "id": "t6",
947
+ "bool": null
948
+ },
949
+ {
950
+ "id": "t7",
951
+ "bool": null
952
+ },
953
+ {
954
+ "id": "t8",
955
+ "bool": null
956
+ },
957
+ {
958
+ "id": "t9",
959
+ "bool": null
960
+ }
961
+ ]
962
+ },
963
+ {
964
+ "title": "uuid",
965
+ "tags": ["shareable"],
966
+ "view": {
967
+ "resource": "Task",
968
+ "status": "active",
969
+ "constant": [
970
+ {
971
+ "name": "uuid",
972
+ "valueUuid": "urn:uuid:53fefa32-fcbb-4ff8-8a92-55ee120877b7"
973
+ }
974
+ ],
975
+ "select": [
976
+ {
977
+ "column": [
978
+ {
979
+ "name": "id",
980
+ "path": "id",
981
+ "type": "id"
982
+ },
983
+ {
984
+ "name": "bool",
985
+ "path": "output.first().value.ofType(uuid) = %uuid",
986
+ "type": "boolean"
987
+ }
988
+ ]
989
+ }
990
+ ]
991
+ },
992
+ "expect": [
993
+ {
994
+ "id": "t1",
995
+ "bool": null
996
+ },
997
+ {
998
+ "id": "t2",
999
+ "bool": null
1000
+ },
1001
+ {
1002
+ "id": "t3",
1003
+ "bool": null
1004
+ },
1005
+ {
1006
+ "id": "t4",
1007
+ "bool": null
1008
+ },
1009
+ {
1010
+ "id": "t5",
1011
+ "bool": null
1012
+ },
1013
+ {
1014
+ "id": "t6",
1015
+ "bool": true
1016
+ },
1017
+ {
1018
+ "id": "t7",
1019
+ "bool": false
1020
+ },
1021
+ {
1022
+ "id": "t8",
1023
+ "bool": null
1024
+ },
1025
+ {
1026
+ "id": "t9",
1027
+ "bool": null
1028
+ }
1029
+ ]
1030
+ }
1031
+ ]
1032
+ }