-
Notifications
You must be signed in to change notification settings - Fork 2
/
benefit_rules_90.json
6252 lines (6252 loc) · 307 KB
/
benefit_rules_90.json
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
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[{
"_id": {
"$oid": "5d0b8bbdb2411b000624ad3b"
},
"displayName": "IA-1 A [L]",
"conditions": [
{
"values": [
{
"_id": "http://claims-audit.ibm.com/procedure_code_d0150",
"label": "d0150 - comprehensive oral evaluation - new or established patient",
"claimValue": "D0150",
"type": "SINGLE"
}
],
"conditionTemplateId": "http://claims-audit.ibm.com/hasApplicableService",
"conditionTemplateType": "MULTIPLE_SELECTION",
"displayName": "applicable service",
"_class": "MultipleSelectionConditionTemplateValue"
},
{
"value": "3",
"conditionTemplateId": "http://claims-audit.ibm.com/hasAmountOfTime",
"conditionTemplateType": "FREE_TEXT",
"displayName": "reference period - amount of time",
"_class": "FreeTextConditionTemplateValue"
},
{
"value": {
"_id": "http://claims-audit.ibm.com/year",
"label": "year(s)",
"type": "SINGLE"
},
"conditionTemplateId": "http://claims-audit.ibm.com/hasUnitOfTime",
"conditionTemplateType": "SINGLE_SELECTION",
"displayName": "reference period - unit of time",
"_class": "SingleSelectionConditionTemplateValue"
},
{
"values": [
{
"_id": "http://claims-audit.ibm.com/same_provider",
"label": "same provider",
"type": "SINGLE"
}
],
"conditionTemplateId": "http://claims-audit.ibm.com/hasBillingCommonality",
"conditionTemplateType": "MULTIPLE_SELECTION",
"displayName": "billing commonality",
"_class": "MultipleSelectionConditionTemplateValue"
},
{
"value": "1",
"conditionTemplateId": "http://claims-audit.ibm.com/hasMaxUnits",
"conditionTemplateType": "FREE_TEXT",
"displayName": "unit limitation - max",
"_class": "FreeTextConditionTemplateValue"
}
],
"highlights": [
{
"text": "A comprehensive oral evaluation is payable once per member, per dental practice in a three-year period when the member has not been seen by a dentist in the dental practice during the three-year period.",
"html": "<fragment-part sequence-number=\"135\" fragment-sequence-number=\"124\" complete-sentence=\"A comprehensive oral evaluation is payable once per member, per dental practice in a three-year period when the member has not been seen by a dentist in the dental practice during the three-year period.\"><span class=\"mark\">A</span> </fragment-part><fragment-part sequence-number=\"136\" fragment-sequence-number=\"124\" complete-sentence=\"A comprehensive oral evaluation is payable once per member, per dental practice in a three-year period when the member has not been seen by a dentist in the dental practice during the three-year period.\">comprehensive oral evaluation </fragment-part><fragment-part sequence-number=\"137\" fragment-sequence-number=\"124\" complete-sentence=\"A comprehensive oral evaluation is payable once per member, per dental practice in a three-year period when the member has not been seen by a dentist in the dental practice during the three-year period.\">is payable once per member, per dental practice in a three-year period when the member has not been seen by a dentist in the dental practice during the three-year period.</fragment-part>",
"serialization": "type:textContent|6938$7298$$mark$fragments",
"beginFragmentSequenceNumber": 124,
"endFragmentSequenceNumber": 124
}
],
"policyId": "5c8a6c8f3a25490006d6a146",
"status": "VERIFIED",
"complianceTag": "compliance",
"subtype": "Service Limitation",
"_class": "BenefitRule"
},{
"_id": {
"$oid": "5d10d4d2863fb100070150c0"
},
"displayName": "IA-1 B [L]",
"conditions": [
{
"values": [
{
"_id": "http://claims-audit.ibm.com/custom_procedure_codes_group_denture_repair",
"label": "denture repair",
"type": "GROUP"
},
{
"_id": "http://claims-audit.ibm.com/custom_procedure_codes_group_emergency_treatment_visits",
"label": "emergency treatment visits",
"type": "GROUP"
},
{
"_id": "http://claims-audit.ibm.com/custom_procedure_codes_group_evaluation_services",
"label": "evaluation services",
"type": "GROUP"
}
],
"conditionTemplateId": "http://claims-audit.ibm.com/hasMutuallyExclusiveReimbursableService",
"conditionTemplateType": "MULTIPLE_SELECTION",
"displayName": "mutual exclusive reimbursable service",
"_class": "MultipleSelectionConditionTemplateValue"
},
{
"value": {
"_id": "http://claims-audit.ibm.com/day",
"label": "day(s)",
"type": "SINGLE"
},
"conditionTemplateId": "http://claims-audit.ibm.com/hasUnitOfTime",
"conditionTemplateType": "SINGLE_SELECTION",
"displayName": "reference period - unit of time",
"_class": "SingleSelectionConditionTemplateValue"
},
{
"value": "1",
"conditionTemplateId": "http://claims-audit.ibm.com/hasAmountOfTime",
"conditionTemplateType": "FREE_TEXT",
"displayName": "reference period - amount of time",
"_class": "FreeTextConditionTemplateValue"
},
{
"values": [
{
"_id": "http://claims-audit.ibm.com/procedure_code_d0150",
"label": "d0150 - comprehensive oral evaluation - new or established patient",
"claimValue": "D0150",
"type": "SINGLE"
}
],
"conditionTemplateId": "http://claims-audit.ibm.com/hasMutuallyExclusiveNotReimbursableService",
"conditionTemplateType": "MULTIPLE_SELECTION",
"displayName": "mutual exclusive non-reimbursable service",
"_class": "MultipleSelectionConditionTemplateValue"
}
],
"highlights": [
{
"text": "1. Diagnostic Services a. Oral Evaluations A comprehensive oral evaluation is payable once per member, per dental practice in a three-year period when the member has not been seen by a dentist in the dental practice during the three-year period. It is not payable in conjunction with emergency treatment visits, denture repairs, or similar appointments.",
"html": "<div class=\"BenefitRuleTextHighlighter-fragment-1068\"><fragment-part sequence-number=\"133\" fragment-sequence-number=\"122\" complete-sentence=\"1. Diagnostic Services\">1. Diagnostic Services </fragment-part></div><div class=\"BenefitRuleTextHighlighter-fragment-1068\"><fragment-part sequence-number=\"134\" fragment-sequence-number=\"123\" complete-sentence=\"a. Oral Evaluations\"> a. Oral Evaluations </fragment-part></div><div class=\"BenefitRuleTextHighlighter-fragment-1068\"><fragment-part sequence-number=\"135\" fragment-sequence-number=\"124\" complete-sentence=\"A comprehensive oral evaluation is payable once per member, per dental practice in a three-year period when the member has not been seen by a dentist in the dental practice during the three-year period.\">A </fragment-part><fragment-part sequence-number=\"136\" fragment-sequence-number=\"124\" complete-sentence=\"A comprehensive oral evaluation is payable once per member, per dental practice in a three-year period when the member has not been seen by a dentist in the dental practice during the three-year period.\">comprehensive oral evaluation </fragment-part><fragment-part sequence-number=\"137\" fragment-sequence-number=\"124\" complete-sentence=\"A comprehensive oral evaluation is payable once per member, per dental practice in a three-year period when the member has not been seen by a dentist in the dental practice during the three-year period.\">is payable once per member, per dental practice in a three-year period when the member has not been seen by a dentist in the dental practice during the three-year period. </fragment-part></div><div class=\"BenefitRuleTextHighlighter-fragment-1068\"><fragment-part sequence-number=\"138\" fragment-sequence-number=\"125\" complete-sentence=\"It is not payable in conjunction with emergency treatment visits, denture repairs, or similar appointments.\">It is not payable in conjunction with emergency treatment visits, denture repairs, or similar appointments.</fragment-part></div>",
"serialization": "type:textContent|7052$7406$$mark$fragments",
"beginFragmentSequenceNumber": 122,
"endFragmentSequenceNumber": 125
}
],
"policyId": "5c8a6c8f3a25490006d6a146",
"status": "VERIFIED",
"complianceTag": "non compliance",
"subtype": "Mutually Exclusive",
"_class": "BenefitRule"
},{
"_id": {
"$oid": "5d10d768863fb100070150c6"
},
"displayName": "IA-2 [H]",
"conditions": [
{
"value": {
"_id": "http://claims-audit.ibm.com/month",
"label": "month(s)",
"type": "SINGLE"
},
"conditionTemplateId": "http://claims-audit.ibm.com/hasUnitOfTime",
"conditionTemplateType": "SINGLE_SELECTION",
"_class": "SingleSelectionConditionTemplateValue",
"displayName": "reference period - unit of time"
},
{
"values": [
{
"_id": "http://claims-audit.ibm.com/procedure_code_d0120",
"label": "d0120 - periodic oral evaluation - established patient",
"claimValue": "D0120",
"type": "SINGLE"
}
],
"conditionTemplateId": "http://claims-audit.ibm.com/hasApplicableService",
"conditionTemplateType": "MULTIPLE_SELECTION",
"_class": "MultipleSelectionConditionTemplateValue",
"displayName": "applicable service"
},
{
"value": "1",
"conditionTemplateId": "http://claims-audit.ibm.com/hasMaxUnits",
"conditionTemplateType": "FREE_TEXT",
"_class": "FreeTextConditionTemplateValue",
"displayName": "unit limitation - max"
},
{
"value": "6",
"conditionTemplateId": "http://claims-audit.ibm.com/hasAmountOfTime",
"conditionTemplateType": "FREE_TEXT",
"_class": "FreeTextConditionTemplateValue",
"displayName": "reference period - amount of time"
}
],
"highlights": [
{
"text": "A periodic oral evaluation is a payable benefit once in a six-month period. The six-month period starts from the date of the examination.",
"html": "<div class=\"BenefitRuleTextHighlighter-fragment-800\"><fragment-part sequence-number=\"139\" fragment-sequence-number=\"126\" complete-sentence=\"A periodic oral evaluation is a payable benefit once in a six-month period.\">A </fragment-part><fragment-part sequence-number=\"140\" fragment-sequence-number=\"126\" complete-sentence=\"A periodic oral evaluation is a payable benefit once in a six-month period.\">periodic oral evaluation </fragment-part><fragment-part sequence-number=\"141\" fragment-sequence-number=\"126\" complete-sentence=\"A periodic oral evaluation is a payable benefit once in a six-month period.\">is a payable benefit once in a six-month period. </fragment-part></div><div class=\"BenefitRuleTextHighlighter-fragment-800\"><fragment-part sequence-number=\"142\" fragment-sequence-number=\"127\" complete-sentence=\"The six-month period starts from the date of the examination.\">The six-month period starts from the date of the examination.</fragment-part></div>",
"serialization": "type:textContent|7407$7544$$mark$fragments",
"beginFragmentSequenceNumber": 126,
"endFragmentSequenceNumber": 127
}
],
"policyId": "5c8a6c8f3a25490006d6a146",
"status": "VERIFIED",
"_class": "BenefitRule",
"subtype": "Service Limitation",
"complianceTag": "compliance"
},{
"_id": {
"$oid": "5d10d9b8863fb100070150c9"
},
"displayName": "IA-3 [L]",
"conditions": [
{
"values": [
{
"_id": "http://claims-audit.ibm.com/procedure_code_d0140",
"label": "d0140 - limited oral evaluation - problem focused",
"claimValue": "D0140",
"type": "SINGLE"
}
],
"conditionTemplateId": "http://claims-audit.ibm.com/hasApplicableService",
"conditionTemplateType": "MULTIPLE_SELECTION",
"_class": "MultipleSelectionConditionTemplateValue",
"displayName": "applicable service"
},
{
"values": [
{
"_id": "http://claims-audit.ibm.com/medical_necessity",
"label": "medical necessity",
"type": "SINGLE"
}
],
"conditionTemplateId": "http://claims-audit.ibm.com/hasRequirement",
"conditionTemplateType": "MULTIPLE_SELECTION",
"_class": "MultipleSelectionConditionTemplateValue",
"displayName": "requirement - needed"
}
],
"highlights": [
{
"text": "A limited oral evaluation for an evaluation limited to a specific oral health problem is payable.",
"html": "<fragment-part sequence-number=\"143\" fragment-sequence-number=\"128\" complete-sentence=\"A limited oral evaluation for an evaluation limited to a specific oral health problem is payable.\">A </fragment-part><fragment-part sequence-number=\"144\" fragment-sequence-number=\"128\" complete-sentence=\"A limited oral evaluation for an evaluation limited to a specific oral health problem is payable.\">limited oral evaluation </fragment-part><fragment-part sequence-number=\"145\" fragment-sequence-number=\"128\" complete-sentence=\"A limited oral evaluation for an evaluation limited to a specific oral health problem is payable.\">for an evaluation limited to a specific oral health problem is payable.</fragment-part>",
"serialization": "type:textContent|7545$7642$$mark$fragments",
"beginFragmentSequenceNumber": 128,
"endFragmentSequenceNumber": 128
},
{
"text": "These services require documentation on the claim form or attached to the claim form which specifies the medical and dental necessity of the visit.",
"html": "These services require documentation on the claim form or attached to the claim form which specifies the medical and dental necessity of the visit.",
"serialization": "type:textContent|7739$7886$$mark$fragments",
"beginFragmentSequenceNumber": 130,
"endFragmentSequenceNumber": 130
}
],
"policyId": "5c8a6c8f3a25490006d6a146",
"status": "VERIFIED",
"_class": "BenefitRule",
"subtype": "Service Limitation",
"complianceTag": "compliance"
},{
"_id": {
"$oid": "5d10dc59863fb100070150d2"
},
"displayName": "IA-4 [L]",
"conditions": [
{
"values": [
{
"_id": "http://claims-audit.ibm.com/procedure_code_d0170",
"label": "d0170 - re-evaluation - limited, problem focused (established patient; not post-operative visit)",
"claimValue": "D0170",
"type": "SINGLE"
}
],
"conditionTemplateId": "http://claims-audit.ibm.com/hasApplicableService",
"conditionTemplateType": "MULTIPLE_SELECTION",
"_class": "MultipleSelectionConditionTemplateValue",
"displayName": "applicable service"
},
{
"values": [
{
"_id": "http://claims-audit.ibm.com/medical_necessity",
"label": "medical necessity",
"type": "SINGLE"
}
],
"conditionTemplateId": "http://claims-audit.ibm.com/hasRequirement",
"conditionTemplateType": "MULTIPLE_SELECTION",
"_class": "MultipleSelectionConditionTemplateValue",
"displayName": "requirement - needed"
}
],
"highlights": [
{
"text": "A limited re-evaluation is payable when necessary to assess the status of a previously existing condition that is not postoperative.",
"html": "<fragment-part sequence-number=\"150\" fragment-sequence-number=\"133\" complete-sentence=\"A limited re-evaluation is payable when necessary to assess the status of a previously existing condition that is not postoperative.\">A </fragment-part><fragment-part sequence-number=\"151\" fragment-sequence-number=\"133\" complete-sentence=\"A limited re-evaluation is payable when necessary to assess the status of a previously existing condition that is not postoperative.\">limited re-evaluation </fragment-part><fragment-part sequence-number=\"152\" fragment-sequence-number=\"133\" complete-sentence=\"A limited re-evaluation is payable when necessary to assess the status of a previously existing condition that is not postoperative.\">is payable when necessary to <span class=\"mark\">assess the status of a previously existing condition that is</span> not postoperative.</fragment-part>",
"serialization": "type:textContent|8080$8212$$mark$fragments",
"beginFragmentSequenceNumber": 133,
"endFragmentSequenceNumber": 133
}
],
"policyId": "5c8a6c8f3a25490006d6a146",
"status": "VERIFIED",
"_class": "BenefitRule",
"subtype": "Service Limitation",
"complianceTag": "compliance"
},{
"_id": {
"$oid": "5d10de0a863fb100070150d5"
},
"displayName": "IA-5 A [H]",
"conditions": [
{
"value": "6",
"conditionTemplateId": "http://claims-audit.ibm.com/hasAmountOfTime",
"conditionTemplateType": "FREE_TEXT",
"_class": "FreeTextConditionTemplateValue",
"displayName": "reference period - amount of time"
},
{
"values": [
{
"_id": "http://claims-audit.ibm.com/procedure_code_d0145",
"label": "d0145 - oral evaluation for a patient under three years of age and counseling with primary caregiver",
"claimValue": "D0145",
"type": "SINGLE"
}
],
"conditionTemplateId": "http://claims-audit.ibm.com/hasApplicableService",
"conditionTemplateType": "MULTIPLE_SELECTION",
"_class": "MultipleSelectionConditionTemplateValue",
"displayName": "applicable service"
},
{
"value": "2",
"conditionTemplateId": "http://claims-audit.ibm.com/hasMaxAge",
"conditionTemplateType": "FREE_TEXT",
"_class": "FreeTextConditionTemplateValue",
"displayName": "member - max age"
},
{
"value": "1",
"conditionTemplateId": "http://claims-audit.ibm.com/hasMaxUnits",
"conditionTemplateType": "FREE_TEXT",
"_class": "FreeTextConditionTemplateValue",
"displayName": "unit limitation - max"
},
{
"value": {
"_id": "http://claims-audit.ibm.com/month",
"label": "month(s)",
"type": "SINGLE"
},
"conditionTemplateId": "http://claims-audit.ibm.com/hasUnitOfTime",
"conditionTemplateType": "SINGLE_SELECTION",
"_class": "SingleSelectionConditionTemplateValue",
"displayName": "reference period - unit of time"
}
],
"highlights": [
{
"text": "An oral evaluation for children under three years of age and counseling with the primary caregiver (D0145) is payable once every six months. ",
"html": "<fragment-part sequence-number=\"160\" fragment-sequence-number=\"141\" complete-sentence=\"An oral evaluation for children under three years of age and counseling with the primary caregiver (D0145) is payable once every six months.\">An </fragment-part><fragment-part sequence-number=\"161\" fragment-sequence-number=\"141\" complete-sentence=\"An oral evaluation for children under three years of age and counseling with the primary caregiver (D0145) is payable once every six months.\">oral evaluation for children under three years of age and counseling with the primary caregiver </fragment-part><fragment-part sequence-number=\"162\" fragment-sequence-number=\"141\" complete-sentence=\"An oral evaluation for children under three years of age and counseling with the primary caregiver (D0145) is payable once every six months.\">(<span class=\"mark\">D0145</span>) is payable once every six months. </fragment-part>",
"serialization": "type:textContent|8427$8568$$mark$fragments",
"beginFragmentSequenceNumber": 141,
"endFragmentSequenceNumber": 141
}
],
"policyId": "5c8a6c8f3a25490006d6a146",
"status": "VERIFIED",
"_class": "BenefitRule",
"subtype": "Service Limitation",
"complianceTag": "compliance"
},{
"_id": {
"$oid": "5d10df6d863fb100070150d9"
},
"displayName": "IA-6 A [H]",
"conditions": [
{
"values": [
{
"_id": "http://claims-audit.ibm.com/custom_procedure_codes_group_comprehensive_periodontal_evaluation",
"label": "comprehensive periodontal evaluation",
"type": "GROUP"
}
],
"conditionTemplateId": "http://claims-audit.ibm.com/hasApplicableService",
"conditionTemplateType": "MULTIPLE_SELECTION",
"_class": "MultipleSelectionConditionTemplateValue",
"displayName": "applicable service"
},
{
"value": "3",
"conditionTemplateId": "http://claims-audit.ibm.com/hasAmountOfTime",
"conditionTemplateType": "FREE_TEXT",
"_class": "FreeTextConditionTemplateValue",
"displayName": "reference period - amount of time"
},
{
"values": [
{
"_id": "http://claims-audit.ibm.com/same_provider",
"label": "same provider",
"type": "SINGLE"
}
],
"conditionTemplateId": "http://claims-audit.ibm.com/hasBillingCommonality",
"conditionTemplateType": "MULTIPLE_SELECTION",
"_class": "MultipleSelectionConditionTemplateValue",
"displayName": "billing commonality"
},
{
"value": {
"_id": "http://claims-audit.ibm.com/year",
"label": "year(s)",
"type": "SINGLE"
},
"conditionTemplateId": "http://claims-audit.ibm.com/hasUnitOfTime",
"conditionTemplateType": "SINGLE_SELECTION",
"_class": "SingleSelectionConditionTemplateValue",
"displayName": "reference period - unit of time"
},
{
"value": "1",
"conditionTemplateId": "http://claims-audit.ibm.com/hasMaxUnits",
"conditionTemplateType": "FREE_TEXT",
"_class": "FreeTextConditionTemplateValue",
"displayName": "unit limitation - max"
}
],
"highlights": [
{
"text": "A comprehensive periodontal evaluation is payable once per member per dental practice in a three-year period when the member has not been seen by a dentist in the practice during the three years.",
"html": "<fragment-part sequence-number=\"184\" fragment-sequence-number=\"162\" complete-sentence=\"A comprehensive periodontal evaluation is payable once per member per dental practice in a three-year period when the member has not been seen by a dentist in the practice during the three years.\">A </fragment-part><fragment-part sequence-number=\"185\" fragment-sequence-number=\"162\" complete-sentence=\"A comprehensive periodontal evaluation is payable once per member per dental practice in a three-year period when the member has not been seen by a dentist in the practice during the three years.\">comprehensive periodontal evaluation </fragment-part><fragment-part sequence-number=\"186\" fragment-sequence-number=\"162\" complete-sentence=\"A comprehensive periodontal evaluation is payable once per member per dental practice in a three-year period when the member has not been seen by a dentist in the practice during the three years.\">is payable once per member per dental practice in a three-year period when the member has not been seen by a dentist in the practice during the three years.</fragment-part>",
"serialization": "type:textContent|8945$9140$$mark$fragments",
"beginFragmentSequenceNumber": 162,
"endFragmentSequenceNumber": 162
}
],
"policyId": "5c8a6c8f3a25490006d6a146",
"status": "VERIFIED",
"_class": "BenefitRule",
"subtype": "Service Limitation",
"complianceTag": "compliance"
},{
"_id": {
"$oid": "5d10e027863fb100070150dd"
},
"displayName": "IA-6 B [H]",
"conditions": [
{
"values": [
{
"_id": "http://claims-audit.ibm.com/procedure_code_d0150",
"label": "d0150 - comprehensive oral evaluation - new or established patient",
"claimValue": "D0150",
"type": "SINGLE"
},
{
"_id": "http://claims-audit.ibm.com/procedure_code_d0120",
"label": "d0120 - periodic oral evaluation - established patient",
"claimValue": "D0120",
"type": "SINGLE"
}
],
"conditionTemplateId": "http://claims-audit.ibm.com/hasMutuallyExclusiveReimbursableService",
"conditionTemplateType": "MULTIPLE_SELECTION",
"_class": "MultipleSelectionConditionTemplateValue",
"displayName": "mutual exclusive reimbursable service"
},
{
"values": [
{
"_id": "http://claims-audit.ibm.com/same_provider",
"label": "same provider",
"type": "SINGLE"
}
],
"conditionTemplateId": "http://claims-audit.ibm.com/hasBillingCommonality",
"conditionTemplateType": "MULTIPLE_SELECTION",
"_class": "MultipleSelectionConditionTemplateValue",
"displayName": "billing commonality"
},
{
"value": "1",
"conditionTemplateId": "http://claims-audit.ibm.com/hasAmountOfTime",
"conditionTemplateType": "FREE_TEXT",
"_class": "FreeTextConditionTemplateValue",
"displayName": "reference period - amount of time"
},
{
"value": {
"_id": "http://claims-audit.ibm.com/day",
"label": "day(s)",
"type": "SINGLE"
},
"conditionTemplateId": "http://claims-audit.ibm.com/hasUnitOfTime",
"conditionTemplateType": "SINGLE_SELECTION",
"_class": "SingleSelectionConditionTemplateValue",
"displayName": "reference period - unit of time"
},
{
"values": [
{
"_id": "http://claims-audit.ibm.com/custom_procedure_codes_group_comprehensive_periodontal_evaluation",
"label": "comprehensive periodontal evaluation",
"type": "GROUP"
}
],
"conditionTemplateId": "http://claims-audit.ibm.com/hasMutuallyExclusiveNotReimbursableService",
"conditionTemplateType": "MULTIPLE_SELECTION",
"_class": "MultipleSelectionConditionTemplateValue",
"displayName": "mutual exclusive non-reimbursable service"
}
],
"highlights": [
{
"text": "A comprehensive periodontal evaluation is payable once per member per dental practice in a three-year period when the member has not been seen by a dentist in the practice during the three years. It is not payable when provided with, or subsequent to, a comprehensive or periodic evaluation.",
"html": "<div class=\"BenefitRuleTextHighlighter-fragment-1206\"><fragment-part sequence-number=\"184\" fragment-sequence-number=\"162\" complete-sentence=\"A comprehensive periodontal evaluation is payable once per member per dental practice in a three-year period when the member has not been seen by a dentist in the practice during the three years.\">A </fragment-part><fragment-part sequence-number=\"185\" fragment-sequence-number=\"162\" complete-sentence=\"A comprehensive periodontal evaluation is payable once per member per dental practice in a three-year period when the member has not been seen by a dentist in the practice during the three years.\">comprehensive periodontal evaluation </fragment-part><fragment-part sequence-number=\"186\" fragment-sequence-number=\"162\" complete-sentence=\"A comprehensive periodontal evaluation is payable once per member per dental practice in a three-year period when the member has not been seen by a dentist in the practice during the three years.\">is payable once per member per dental practice in a three-year period when the member has not been seen by a dentist in the practice during the three years. </fragment-part></div><div class=\"BenefitRuleTextHighlighter-fragment-1206\"><fragment-part sequence-number=\"187\" fragment-sequence-number=\"163\" complete-sentence=\"It is not payable when provided with, or subsequent to, a comprehensive or periodic evaluation.\">It is not payable when provided with, or subsequent to, a comprehensive or periodic evaluation.</fragment-part></div>",
"serialization": "type:textContent|8945$9236$$mark$fragments",
"beginFragmentSequenceNumber": 162,
"endFragmentSequenceNumber": 163
}
],
"policyId": "5c8a6c8f3a25490006d6a146",
"status": "VERIFIED",
"_class": "BenefitRule",
"subtype": "Mutually Exclusive",
"complianceTag": "non compliance"
},{
"_id": {
"$oid": "5d10e252863fb100070150e5"
},
"displayName": "IA-7 A [M]",
"conditions": [
{
"values": [
{
"_id": "http://claims-audit.ibm.com/procedure_code_d0210",
"label": "d0210 - intraoral - complete series (including bitewings)",
"type": "SINGLE",
"claimValue": "D0210"
}
],
"conditionTemplateId": "http://claims-audit.ibm.com/hasApplicableService",
"conditionTemplateType": "MULTIPLE_SELECTION",
"_class": "MultipleSelectionConditionTemplateValue",
"displayName": "applicable service"
},
{
"value": "1",
"conditionTemplateId": "http://claims-audit.ibm.com/hasMaxUnits",
"conditionTemplateType": "FREE_TEXT",
"_class": "FreeTextConditionTemplateValue",
"displayName": "unit limitation - max"
},
{
"value": {
"_id": "http://claims-audit.ibm.com/year",
"label": "year(s)",
"type": "SINGLE"
},
"conditionTemplateId": "http://claims-audit.ibm.com/hasUnitOfTime",
"conditionTemplateType": "SINGLE_SELECTION",
"_class": "SingleSelectionConditionTemplateValue",
"displayName": "reference period - unit of time"
},
{
"value": "5",
"conditionTemplateId": "http://claims-audit.ibm.com/hasAmountOfTime",
"conditionTemplateType": "FREE_TEXT",
"_class": "FreeTextConditionTemplateValue",
"displayName": "reference period - amount of time"
},
{
"value": "6",
"conditionTemplateId": "http://claims-audit.ibm.com/hasMinAge",
"conditionTemplateType": "FREE_TEXT",
"_class": "FreeTextConditionTemplateValue",
"displayName": "member - min age"
}
],
"highlights": [
{
"text": "A complete series of radiographic images, consisting of a minimum of 14 periapical films and posterior bitewing images, or a panographic radiograph with bitewings, is a covered benefit once in a five-year period, except when medically necessary to evaluate development and to detect anomalies, injuries, and diseases.",
"html": "A complete series of radiographic images, consisting of a minimum of 14 periapical films and posterior bitewing images, or a panographic radiograph with bitewings, is a covered benefit once in a five-year period, except when medically necessary to evaluate development and to detect anomalies, injuries, and diseases.",
"serialization": "type:textContent|9260$9577$$mark$fragments",
"beginFragmentSequenceNumber": 165,
"endFragmentSequenceNumber": 165
}
],
"policyId": "5c8a6c8f3a25490006d6a146",
"status": "VERIFIED",
"_class": "BenefitRule",
"subtype": "Service Limitation",
"complianceTag": "compliance"
},{
"_id": {
"$oid": "5d10e4a3863fb100070150ea"
},
"displayName": "IA-7 B [M]",
"conditions": [
{
"values": [
{
"_id": "http://claims-audit.ibm.com/procedure_code_d0210",
"label": "d0210 - intraoral - complete series (including bitewings)",
"claimValue": "D0210",
"type": "SINGLE"
}
],
"conditionTemplateId": "http://claims-audit.ibm.com/hasApplicableService",
"conditionTemplateType": "MULTIPLE_SELECTION",
"_class": "MultipleSelectionConditionTemplateValue",
"displayName": "applicable service"
},
{
"value": "0",
"conditionTemplateId": "http://claims-audit.ibm.com/hasMinAge",
"conditionTemplateType": "FREE_TEXT",
"_class": "FreeTextConditionTemplateValue",
"displayName": "member - min age"
},
{
"value": "5",
"conditionTemplateId": "http://claims-audit.ibm.com/hasAmountOfTime",
"conditionTemplateType": "FREE_TEXT",
"_class": "FreeTextConditionTemplateValue",
"displayName": "reference period - amount of time"
},
{
"value": {
"_id": "http://claims-audit.ibm.com/year",
"label": "year(s)",
"type": "SINGLE"
},
"conditionTemplateId": "http://claims-audit.ibm.com/hasUnitOfTime",
"conditionTemplateType": "SINGLE_SELECTION",
"_class": "SingleSelectionConditionTemplateValue",
"displayName": "reference period - unit of time"
},
{
"values": [
{
"_id": "http://claims-audit.ibm.com/medical_necessity",
"label": "medical necessity",
"type": "SINGLE"
}
],
"conditionTemplateId": "http://claims-audit.ibm.com/hasRequirement",
"conditionTemplateType": "MULTIPLE_SELECTION",
"_class": "MultipleSelectionConditionTemplateValue",
"displayName": "requirement - needed"
},
{
"value": "5",
"conditionTemplateId": "http://claims-audit.ibm.com/hasMaxAge",
"conditionTemplateType": "FREE_TEXT",
"_class": "FreeTextConditionTemplateValue",
"displayName": "member - max age"
},
{
"value": "1",
"conditionTemplateId": "http://claims-audit.ibm.com/hasMaxUnits",
"conditionTemplateType": "FREE_TEXT",
"_class": "FreeTextConditionTemplateValue",
"displayName": "unit limitation - max"
}
],
"highlights": [
{
"text": "A complete series of radiographic images, consisting of a minimum of 14 periapical films and posterior bitewing images, or a panographic radiograph with bitewings, is a covered benefit once in a five-year period, except when medically necessary to evaluate development and to detect anomalies, injuries, and diseases. It is not payable for children under six years of age, unless medically necessary. Procedure code D0210 should be billed for a complete series of intraoral radiographs.",
"html": "<div class=\"BenefitRuleTextHighlighter-fragment-1494\"><fragment-part sequence-number=\"189\" fragment-sequence-number=\"165\" complete-sentence=\"A complete series of radiographic images, consisting of a minimum of 14 periapical films and posterior bitewing images, or a panographic radiograph with bitewings, is a covered benefit once in a five-year period, except when medically necessary to evaluate development and to detect anomalies, injuries, and diseases.\">A complete series of radiographic images, consisting of a minimum of 14 periapical films and posterior bitewing images, or a panographic radiograph with bitewings, is a covered benefit once in a five-year period, except when medically necessary to evaluate development and to detect anomalies, injuries, and diseases. </fragment-part></div><div class=\"BenefitRuleTextHighlighter-fragment-1494\"><fragment-part sequence-number=\"190\" fragment-sequence-number=\"166\" complete-sentence=\"It is not payable for children under six years of age, unless medically necessary.\">It is not payable for children under six years of age, unless medically necessary. </fragment-part></div><div class=\"BenefitRuleTextHighlighter-fragment-1494\"><fragment-part sequence-number=\"191\" fragment-sequence-number=\"167\" complete-sentence=\"Procedure code D0210 should be billed for a complete series of intraoral radiographs.\">Procedure code D0210 should be billed for a complete series of intraoral radiographs.</fragment-part></div>",
"serialization": "type:textContent|9260$9746$$mark$fragments",
"beginFragmentSequenceNumber": 165,
"endFragmentSequenceNumber": 167
}
],
"policyId": "5c8a6c8f3a25490006d6a146",
"status": "VERIFIED",
"_class": "BenefitRule",
"subtype": "Service Limitation",
"complianceTag": "compliance"
},{
"_id": {
"$oid": "5d1366e8863fb10007015106"
},
"displayName": "IA-9 [H]",
"conditions": [
{
"value": {
"_id": "http://claims-audit.ibm.com/month",
"label": "month(s)",
"type": "SINGLE"
},
"conditionTemplateId": "http://claims-audit.ibm.com/hasUnitOfTime",
"conditionTemplateType": "SINGLE_SELECTION",
"_class": "SingleSelectionConditionTemplateValue",
"displayName": "reference period - unit of time"
},
{
"values": [
{
"_id": "http://claims-audit.ibm.com/custom_procedure_codes_group_bitewing_films",
"label": "bitewing films",
"type": "GROUP"
}
],
"conditionTemplateId": "http://claims-audit.ibm.com/hasApplicableService",
"conditionTemplateType": "MULTIPLE_SELECTION",
"_class": "MultipleSelectionConditionTemplateValue",
"displayName": "applicable service"
},
{
"value": "1",
"conditionTemplateId": "http://claims-audit.ibm.com/hasMaxUnits",
"conditionTemplateType": "FREE_TEXT",
"_class": "FreeTextConditionTemplateValue",
"displayName": "unit limitation - max"
},
{
"value": "12",
"conditionTemplateId": "http://claims-audit.ibm.com/hasAmountOfTime",
"conditionTemplateType": "FREE_TEXT",
"_class": "FreeTextConditionTemplateValue",
"displayName": "reference period - amount of time"
}
],
"highlights": [
{
"text": "Supplemental bitewing films are a covered benefit not more than once every 12 months. ",
"html": "Supplemental bitewing films are a covered benefit not more than once every 12 months. ",
"serialization": "type:textContent|10410$10496$$mark$fragments",
"beginFragmentSequenceNumber": 172,
"endFragmentSequenceNumber": 172
}
],
"policyId": "5c8a6c8f3a25490006d6a146",
"status": "VERIFIED",
"_class": "BenefitRule",
"subtype": "Service Limitation",
"complianceTag": "compliance"
},{
"_id": {
"$oid": "5d13676c863fb10007015109"
},
"displayName": "IA-10 [L]",
"conditions": [
{
"values": [
{
"_id": "http://claims-audit.ibm.com/custom_procedure_codes_group_periapical_films",
"label": "periapical films",
"type": "GROUP"
}
],
"conditionTemplateId": "http://claims-audit.ibm.com/hasApplicableService",
"conditionTemplateType": "MULTIPLE_SELECTION",
"_class": "MultipleSelectionConditionTemplateValue",
"displayName": "applicable service"
},
{
"values": [
{
"_id": "http://claims-audit.ibm.com/medical_necessity",
"label": "medical necessity",
"type": "SINGLE"
}
],
"conditionTemplateId": "http://claims-audit.ibm.com/hasRequirement",
"conditionTemplateType": "MULTIPLE_SELECTION",
"_class": "MultipleSelectionConditionTemplateValue",
"displayName": "requirement - needed"
}
],
"highlights": [
{
"text": "Single periapical films are a covered benefit when necessary.",
"html": "Single periapical films are a covered benefit when necessary.",
"serialization": "type:textContent|10496$10557$$mark$fragments",
"beginFragmentSequenceNumber": 173,
"endFragmentSequenceNumber": 173
}
],
"policyId": "5c8a6c8f3a25490006d6a146",
"status": "VERIFIED",
"_class": "BenefitRule",
"subtype": "Service Limitation",
"complianceTag": "compliance"
},{
"_id": {
"$oid": "5d136826863fb1000701510c"
},
"displayName": "IA-11 [L]",
"conditions": [
{
"values": [
{
"_id": "http://claims-audit.ibm.com/medical_necessity",
"label": "medical necessity",
"type": "SINGLE"
}
],
"conditionTemplateId": "http://claims-audit.ibm.com/hasRequirement",
"conditionTemplateType": "MULTIPLE_SELECTION",
"_class": "MultipleSelectionConditionTemplateValue",
"displayName": "requirement - needed"
},
{
"values": [
{
"_id": "http://claims-audit.ibm.com/custom_procedure_codes_group_extraoral_films",
"label": "extraoral films",
"type": "GROUP"
},
{
"_id": "http://claims-audit.ibm.com/custom_procedure_codes_group_intraoral_films",
"label": "intraoral films",
"type": "GROUP"
}
],
"conditionTemplateId": "http://claims-audit.ibm.com/hasApplicableService",
"conditionTemplateType": "MULTIPLE_SELECTION",
"_class": "MultipleSelectionConditionTemplateValue",
"displayName": "applicable service"
}
],
"highlights": [
{
"text": "Intraoral and extraoral films are payable when necessary to diagnosis a condition. ",
"html": "Intraoral and extraoral films are payable when necessary to diagnosis a condition. ",
"serialization": "type:textContent|10558$10641$$mark$fragments",
"beginFragmentSequenceNumber": 174,
"endFragmentSequenceNumber": 174
}
],
"policyId": "5c8a6c8f3a25490006d6a146",
"status": "VERIFIED",
"_class": "BenefitRule",
"subtype": "Service Limitation",
"complianceTag": "compliance"
},{
"_id": {
"$oid": "5d13691f863fb10007015110"
},
"displayName": "IA-12 [L]",
"conditions": [
{
"values": [
{
"_id": "http://claims-audit.ibm.com/procedure_code_d0290",
"label": "d0290 - posterior-anterior or lateral skull and facial bone survey film",
"claimValue": "D0290",
"type": "SINGLE"
}
],
"conditionTemplateId": "http://claims-audit.ibm.com/hasApplicableService",
"conditionTemplateType": "MULTIPLE_SELECTION",
"_class": "MultipleSelectionConditionTemplateValue",
"displayName": "applicable service"
},
{
"values": [
{
"_id": "http://claims-audit.ibm.com/medical_necessity",
"label": "medical necessity",
"type": "SINGLE"
}
],
"conditionTemplateId": "http://claims-audit.ibm.com/hasRequirement",
"conditionTemplateType": "MULTIPLE_SELECTION",
"_class": "MultipleSelectionConditionTemplateValue",
"displayName": "requirement - needed"
}
],
"highlights": [
{
"text": "A posterior-anterior or lateral skull and facial bone film is payable when necessary to diagnosis a condition.",
"html": "A posterior-anterior or lateral skull and facial bone film is payable when necessary to diagnosis a condition.",
"serialization": "type:textContent|10641$10751$$mark$fragments",
"beginFragmentSequenceNumber": 175,
"endFragmentSequenceNumber": 175
}
],
"policyId": "5c8a6c8f3a25490006d6a146",
"status": "VERIFIED",
"_class": "BenefitRule",
"subtype": "Service Limitation",
"complianceTag": "compliance"
},{
"_id": {
"$oid": "5d1369a7863fb10007015112"
},
"displayName": "IA-13 [L]",
"conditions": [
{
"values": [
{
"_id": "http://claims-audit.ibm.com/procedure_code_d0340",
"label": "d0340 - cephalometric film",
"claimValue": "D0340",
"type": "SINGLE"
},
{
"_id": "http://claims-audit.ibm.com/procedure_code_d0321",
"label": "d0321 - other temporomandibular joint films, by report",
"claimValue": "D0321",
"type": "SINGLE"
}
],
"conditionTemplateId": "http://claims-audit.ibm.com/hasApplicableService",
"conditionTemplateType": "MULTIPLE_SELECTION",
"_class": "MultipleSelectionConditionTemplateValue",
"displayName": "applicable service"
},
{
"values": [
{
"_id": "http://claims-audit.ibm.com/medical_necessity",
"label": "medical necessity",
"type": "SINGLE"
}
],
"conditionTemplateId": "http://claims-audit.ibm.com/hasRequirement",
"conditionTemplateType": "MULTIPLE_SELECTION",
"_class": "MultipleSelectionConditionTemplateValue",
"displayName": "requirement - needed"
}
],
"highlights": [
{
"text": "Temporomandibular joint and cephalometric films are payable when necessary to diagnosis a condition.",
"html": "Temporomandibular joint and <span class=\"mark\">cephalometric</span> films are payable when necessary to diagnosis a condition.",
"serialization": "type:textContent|10892$10992$$mark$fragments",
"beginFragmentSequenceNumber": 188,
"endFragmentSequenceNumber": 188
}
],
"policyId": "5c8a6c8f3a25490006d6a146",
"status": "VERIFIED",
"_class": "BenefitRule",
"subtype": "Service Limitation",
"complianceTag": "compliance"
},{
"_id": {
"$oid": "5d136c77863fb10007015119"
},
"displayName": "IA-14 [L]",
"conditions": [
{
"values": [
{
"_id": "http://claims-audit.ibm.com/custom_procedure_codes_group_cone_beam_images",
"label": "cone beam images",
"type": "GROUP"
}
],
"conditionTemplateId": "http://claims-audit.ibm.com/hasApplicableService",
"conditionTemplateType": "MULTIPLE_SELECTION",
"_class": "MultipleSelectionConditionTemplateValue",
"displayName": "applicable service"
},
{
"values": [
{
"_id": "http://claims-audit.ibm.com/medical_necessity",
"label": "medical necessity",
"type": "SINGLE"
}
],
"conditionTemplateId": "http://claims-audit.ibm.com/hasRequirement",
"conditionTemplateType": "MULTIPLE_SELECTION",
"_class": "MultipleSelectionConditionTemplateValue",
"displayName": "requirement - needed"
}
],
"highlights": [
{
"text": "Cone beam images are payable when medically necessary. Documentation of the medical necessity must be submitted with the claim. ",
"html": "<div class=\"BenefitRuleTextHighlighter-fragment-1782\"><fragment-part sequence-number=\"213\" fragment-sequence-number=\"189\" complete-sentence=\"Cone beam images are payable when medically necessary.\">Cone beam images are payable when medically necessary. </fragment-part></div><div class=\"BenefitRuleTextHighlighter-fragment-1782\"><fragment-part sequence-number=\"214\" fragment-sequence-number=\"190\" complete-sentence=\"Documentation of the medical necessity must be submitted with the claim.\">Documentation of the medical necessity must be submitted with the claim. </fragment-part></div>",
"serialization": "type:textContent|10993$11121$$mark$fragments",
"beginFragmentSequenceNumber": 189,
"endFragmentSequenceNumber": 190
}
],
"policyId": "5c8a6c8f3a25490006d6a146",
"status": "VERIFIED",
"_class": "BenefitRule",
"subtype": "Service Limitation",
"complianceTag": "compliance"
},{
"_id": {
"$oid": "5d161bf8863fb1000701511f"