-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathncqa-test-validator-util.js
1498 lines (1463 loc) · 58.8 KB
/
ncqa-test-validator-util.js
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
const fs = require('fs');
const config = require('./config');
const measure = config.measurementType;
const { getValidPayors, isValidCommercial,
isValidExchange, isValidMedicaid, isValidMedicare,
exchange, medicarePlans, medicaidPlans, commercial } = require('./ncqa-test-payer-util');
const msInADay = 1000 * 60 * 60 * 24;
const providerInfo = JSON.parse(fs.readFileSync('ncqa-test-provider.json', 'utf8'));
const ethnicityMap = { // Race Map is 1 for 1 to answers.
11: 1, // Hispanic or Latino
12: 2, // Not Hispanic or Latino
18: 3, // Asked but No Answer
19: 4, // Unknown ethnicity
}
const raceEthnicDSMap = {
21: 1, // Direct CMS Databases RaceDS
22: 1, // Direct State Databases RaceDS
23: 2, // Indirect Surname Analysis RaceDS
24: 2, // Indirect Geo-Coding Analysis RaceDS
25: 1, // Direct Health Plan Direct RaceDS
28: 0, // Unknown Data Collection method, HPDI only should not come up, RaceDS
29: 1, // Other Direct RaceDS
91: 1, // Direct CMS Databases EthnicityDS
92: 1, // Direct State Databases EthnicityDS
93: 2, // Indirect Surname Analysis EthnicityDS
94: 2, // Indirect Geo-Coding Analysis EthnicityDS
95: 1, // Direct Health Plan Direct EthnicityDS
98: 0, // Unknown Data Collcetion method, HPDI only should not come up, EthnicityDS
99: 1, // Other Direct EthnicityDS
}
const coverageMap = (coverage) => {
return {
payor: coverage.payor[0].reference.value,
date: new Date(coverage.period.end.value).getTime(),
}
}
const getDefaultPayors = (data, age) => {
let foundPayors = data.coverage.filter((coverage) => coverage.payor).map((coverage) => coverageMap(coverage));
return getValidPayors(foundPayors, age, data.coverage);
}
const hedisData = {
aab: {
measureIds: ['AABA','AABB'],
eventsOrDiag: true,
measureCheck: (data, index, measureFunctions) => {
const eventsList = measureFunctions.getValidEvents(data);
if (eventsList === null) {
return false;
}
const currentEvent = eventsList[index];
if (currentEvent === undefined) {
return false;
}
if (getAgeInMonths(new Date(data.birthDate), new Date(currentEvent.date)) < 3
|| measureFunctions.getPayors(data, index, measureFunctions) === undefined) {
return false;
}
const currentDate = new Date(measureFunctions.getValidEvents(data)[index].date).getTime();
return data.coverage
.filter((coverage) => coverage.payor)
.find((coverage) => {
return (((new Date(coverage.period.start.value).getTime()) <= currentDate - 2592000000
&& (new Date(coverage.period.end.value).getTime()) >= currentDate - 2592000000)
|| ((new Date(coverage.period.start.value).getTime()) <= currentDate + 259200000
&& (new Date(coverage.period.end.value).getTime()) >= currentDate + 259200000))
});
},
getAge: (data, index, measureFunctions) => {
const event = measureFunctions.getValidEvents(data)[index].date;
return getAge(new Date(data.birthDate), new Date(event));
},
getEvent: () => 1,
getContinuousEnrollment: (data, index, measureFunctions) => {
return measureFunctions.getValidEvents(data)[index].ce ? 1 : 0;
},
getEligiblePopulation: () => 1,
getExclusion: () => 0,
getNumerator: (data, index, measureFunctions) => {
return measureFunctions.getValidEvents(data)[index].validNum ? 1 : 0;
},
getRequiredExclusion: () => 0,
getRequiredExclusionID: (data) => {
return data.result[`Hospice Exclusions`] ? 1 : 0;
},
getValidEvents: (data) => {
const events = data.support['Certification Info'];
if (events === null) {
return null;
}
const validEventList = [];
for (const event1 of events) {
if (event1.validNum || event1.ce) {
validEventList.push(event1);
}
}
if (validEventList.length === 0) {
return [events[0]];
}
return validEventList;
},
getPayors: (data, index, measureFunctions) => {
const event = measureFunctions.getValidEvents(data)[index];
const fullCoverageList = data.coverage.filter((coverage) => coverage.payor);
let foundPayors = [];
// If the event has continuous enrollment
if (event.ce) {
const currentDate = new Date(event.date).getTime();
//First check if the event date falls under the exact coverage period
foundPayors = fullCoverageList
.filter((coverage) => {
return (new Date(coverage.period.start.value).getTime()) <= currentDate
&& (new Date(coverage.period.end.value).getTime()) >= currentDate
});
// If no coverages exists, expand the search to to full continuous enrollment period
if (foundPayors.length === 0) {
foundPayors = fullCoverageList
.filter((coverage) => {
return (new Date(coverage.period.start.value).getTime() - 2592000000) <= currentDate
&& (new Date(coverage.period.end.value).getTime() + 259200000) >= currentDate
});
}
}
const age = measureFunctions.getAge(data, index, measureFunctions);
return getValidPayors(foundPayors.map((coverage) => coverageMap(coverage)), age, fullCoverageList);
},
},
adde: {
measureIds: ['ADD1','ADD2'],
eventsOrDiag: true,
getAge: (data) => {
const eventDate = data.result['Last Calendar Day of February'];
let eventDateCompare = {};
const birthDate = data.birthDate.split('-');
const birthDateCompare = {
year: parseInt(birthDate[0]),
month: parseInt(birthDate[1]),
day: parseInt(birthDate[2]),
}
if (typeof eventDate === 'string' || eventDate instanceof String) {
const splitDate = eventDate.split('T')[0].split('-');
eventDateCompare = {
year: parseInt(splitDate[0]),
month: parseInt(splitDate[1]),
day: parseInt(splitDate[2]),
};
} else {
eventDateCompare = {
year: eventDate.year,
month: eventDate.month,
day: eventDate.day,
};
}
// If you are born during a leap year, use the 29th as the last calendar day of February
if (birthDateCompare.year % 4 === 0) {
eventDateCompare.day = 29;
}
return getAge2(birthDateCompare, eventDateCompare);
},
getEvent: (data, index) => {
const appAgeWNHN = data.result['Member is Appropriate Age and Has IPSD with Negative Medication History'];
if (index === 0) {
return appAgeWNHN
&& data.result['Acute Inpatient Encounter for Mental Behavioral or Neurodevelopmental Disorders During Initiation Phase'].length === 0
&& data.result['Acute Inpatient Discharge for Mental Behavioral or Neurodevelopmental Disorders During Initiation Phase'].length === 0
? 1 : 0
}
return appAgeWNHN
&& data.result['Has 210 Medication Treatment Days in 301 Day Period Starting on IPSD and Continuing through End of Continuation and Maintenance Phase']
&& data.result['Acute Inpatient Encounter for Mental Behavioral or Neurodevelopmental Disorders Before End of Continuation and Maintenance Phase'].length === 0
&& data.result['Acute Inpatient Discharge for Mental Behavioral or Neurodevelopmental Disorders Before End of Continuation and Maintenance Phase'].length === 0
? 1 : 0;
},
getContinuousEnrollment: (data, index) => {
return data.result[`Enrolled During Participation Period ${index + 1}`] ? 1 : 0;
},
getEligiblePopulation: (data, index, measureFunctions) => {
const payors = measureFunctions.getPayors(data, index, measureFunctions);
if (payors === undefined) {
return false;
}
const payor = payors[0];
return (!medicarePlans.includes(payor) && !exchange.includes(payor)) ? 1 : 0;
},
getExclusion: () => 0,
getNumerator: (data, index) => {
const numerator = data.result[`Numerator ${index + 1}`];
if (!numerator) {
return 0;
}
let hasValidFollowUp = false;
const followUpEncsI = data.result['Follow Up Encounters or Assessments During Initiation Phase'];
for (const followUpEnc of followUpEncsI) {
if (followUpEnc.serviceProvider) {
const provider = providerInfo[followUpEnc.serviceProvider.reference.value];
if (provider.prescriber) {
hasValidFollowUp = true;
break;
}
} else if (followUpEnc.performer) {
const provider = providerInfo[followUpEnc.performer[0].reference.value];
if (provider.prescriber) {
hasValidFollowUp = true;
break;
}
} else {
hasValidFollowUp = true;
break;
}
}
if (index == 0) {
return hasValidFollowUp ? 1 : 0;
}
const followUpEncsCM = data.result['Follow Up Encounters or Assessments During Continuation and Maintenance Phase'];
const followUpEncsECM = data.result['Follow Up Encounter with eVisit or Virtual Check in During Continuation and Maintenance Phase'];
const twoValidFollowUps = followUpEncsCM.length >= 2
|| (followUpEncsCM.length === 1 && followUpEncsECM.length >= 1);
return (hasValidFollowUp && twoValidFollowUps) ? 1 : 0;
},
getRequiredExclusion: (data, index) => {
return data.result[`Exclusions ${index + 1}`] ? 1 : 0;
},
getRequiredExclusionID: () => 0,
measureCheck: (data, _index, measureFunctions) => {
return measureFunctions.getEvent(data, 0, measureFunctions) === 1
|| measureFunctions.getEvent(data, 1, measureFunctions) === 1;
},
getPayors: (data, index, measureFunctions) => {
const compareDate = new Date(data.result['Index Prescription Start Date']);
const memberCoverage = data.coverage;
// filter coverage objects based on dates from Enrolled During Participation Period 1 and 2
let foundPayors = memberCoverage
.filter((coverage) => coverage.payor)
.filter((coverage) => {
const coverageStart = new Date(coverage.period.start.value);
const coverageEnd = new Date(coverage.period.end.value);
if (index == 0) {
return coverageStart.getTime() <= compareDate.getTime() + (30 * msInADay)
&& coverageEnd.getTime() >= compareDate.getTime() - (120 * msInADay);
}
return coverageStart.getTime() <= compareDate.getTime() + (300 * msInADay)
&& coverageEnd.getTime() >= compareDate.getTime() + (31 * msInADay);
})
.map((coverage) => coverageMap(coverage));
// if none are found, use the latest is Member Coverage
return getValidPayors(foundPayors, measureFunctions.getAge(data), memberCoverage);
}
},
aise: {
measureIds: ['AISINFL','AISTD','AISZOS','AISPNEU'],
eventsOrDiag: false,
measureCheck: (data, index, measureFunctions) => {
const age = measureFunctions.getAge(data);
// Check if member meets age range for each measure
if ((index == 0 || index == 1) && age < 19) {
return false;
} else if (index == 2 && age < 50) {
return false
} else if (index == 3 && age < 66) {
return false;
}
// Get Payor
let payor = measureFunctions.getPayors(data, index, measureFunctions);
if (payor === undefined) {
return false;
}
payor = payor[0];
// Check if payor and age are valid
return (isValidCommercial(payor, age))
|| (isValidExchange(payor, age))
|| (isValidMedicaid(payor, age))
|| (isValidMedicare(payor, age));
},
getAge: (data) => {
let eventDate = new Date('2022-01-01');
return getAge(new Date(data.birthDate), eventDate);
},
getEvent: () => 0,
getContinuousEnrollment: (data) => {
return data.result[`Enrolled During Participation Period`] ? 1 : 0;
},
getEligiblePopulation: (data, index, measureFunctions) => {
const payors = measureFunctions.getPayors(data, index, measureFunctions);
if (payors === undefined) {
return false;
}
const payor = payors[0];
return !exchange.includes(payor) ? 1 : 0;
},
getExclusion: () => 0,
getNumerator: (data, index) => {
return data.result[`Numerator ${index + 1}`] ? 1 : 0;
},
getRequiredExclusion: (data, index) => {
return data.result[`Exclusions ${index + 1}`] ? 1 : 0;
},
getRequiredExclusionID: () => 0,
getPayors: (data, _index, measureFunctions) => getDefaultPayors(data, measureFunctions.getAge(data)),
},
apme: {
measureIds: ['APM1','APM2','APM3'],
eventsOrDiag: true,
measureCheck: (data, index, measureFunctions) => {
const payors = measureFunctions.getPayors(data, index, measureFunctions);
return payors !== undefined && payors.length > 0 && measureFunctions.getAge(data) < 18;
},
getAge: (data) => {
let eventDate = new Date('2022-12-31');
return getAge(new Date(data.birthDate), eventDate);
},
getEligiblePopulation: (data, index, measureFunctions) => {
const payors = measureFunctions.getPayors(data, index, measureFunctions);
if (payors === undefined) {
return false;
}
const payor = payors[0];
return (!medicarePlans.includes(payor) && !exchange.includes(payor)) ? 1 : 0;
},
getEvent: (data) => {
return data.result['Antipsychotics on Different Days'] ? 1 : 0;
},
getContinuousEnrollment: (data) => {
return data.result[`Enrolled During Participation Period`] ? 1 : 0;
},
getExclusion: () => 0,
getNumerator: (data, index) => {
return data.result[`Numerator ${index + 1}`] ? 1 : 0;
},
getRequiredExclusion: (data, index) => {
return data.result[`Exclusions ${index + 1}`] ? 1 : 0;
},
getRequiredExclusionID: () => 0,
getPayors: (data, _index, measureFunctions) => getDefaultPayors(data, measureFunctions.getAge(data)),
},
asfe: {
measureIds: ['ASFA','ASFB'],
eventsOrDiag: false,
measureCheck: (data, _index, measureFunctions) => {
return measureFunctions.getAge(data) >= 18 && measureFunctions.getPayors(data) !== undefined;
},
getAge: (data) => {
let eventDate = new Date('2022-01-01');
return getAge(new Date(data.birthDate), eventDate);
},
getEligiblePopulation: (data, index, measureFunctions) => {
const payors = measureFunctions.getPayors(data, index, measureFunctions);
if (payors === undefined) {
return 0;
}
const payor = payors[0];
const age = measureFunctions.getAge(data);
if (isValidExchange(payor, age)) {
return 0;
}
return data.result[`Denominator ${index + 1}`] ? 1 : 0;
},
getEvent: (data, index) => {
if (index === 0) {
return 0;
}
return data.result['Denominator 2'] ? 1 : 0;
},
getContinuousEnrollment: (data) => {
return data.result[`Enrolled During Participation Period`] ? 1 : 0;
},
getExclusion: () => 0,
getNumerator: (data, index) => {
return data.result[`Numerator ${index + 1}`] ? 1 : 0;
},
getRequiredExclusion: (data, index) => {
return data.result[`Exclusions ${index + 1}`] ? 1 : 0;
},
getRequiredExclusionID: () => 0,
getPayors: (data) => getDefaultPayors(data), //Don't send age, uses matrix
},
bcse: {
measureIds: ['BCS','BCSNON','BCSLISDE','BCSDIS','BCSCMB','BCSOT'],
eventsOrDiag: false,
measureCheck: (data, index, measureFunctions) => {
let validPayor = false;
const payors = measureFunctions.getPayors(data, index);
if (index === 0) { //BCS
validPayor = payors.length > 0;
} else if (index === 1) { //BCSNON
validPayor = data.support['Certification Medicare NON']
&& !data.support['Certification LIS'];
} else if (index === 2) { //BCSLISDE
validPayor = !data.support['Certification Medicare Other']
&& !data.support['Certification Medicare Disability']
&& data.support['Certification LIS'];
} else if (index === 3) { //BCSDIS
validPayor = !data.support['Certification LIS']
&& data.support['Certification Medicare Disability'];
} else if (index === 4) { //BCSCMB
validPayor = data.support['Certification LIS']
&& data.support['Certification Medicare Disability'];
} else if (index === 5) { //BCSOT
validPayor = data.support['Certification Medicare Other'];
}
const age = measureFunctions.getAge(data);
return validPayor && age >= 52 && age <= 74 && data.gender.startsWith('f');
},
getAge: (data) => {
let eventDate = new Date('2022-12-31');
return getAge(new Date(data.birthDate), eventDate);
},
getEligiblePopulation: (data) => {
return data.result[`Initial Population`] ? 1 : 0;
},
getEvent: () => 0,
getContinuousEnrollment: (data) => {
return data.result[`Enrolled During Participation Period`] ? 1 : 0;
},
getExclusion: () => 0,
getNumerator: (data) => {
return data.result[`Numerator`] ? 1 : 0;
},
getRequiredExclusion: (data, index, measureFunctions) => {
if (index > 0 && measureFunctions.getAge(data) > 65) {
if (data.support['Certification SNP Coverage'].length > 0
|| data.support['Certification Long Term Care'].length > 0) {
return 1;
}
}
return data.result[`Exclusions`] ? 1 : 0;
},
getRequiredExclusionID: () => 0,
getPayors: (data, index) => {
const bcsePayors = getDefaultPayors(data);
if (bcsePayors === undefined) {
return [];
}
if (index === 0) {
return bcsePayors.filter((payor) => !medicarePlans.includes(payor));
} else if (index >= 1) {
return bcsePayors.filter((payor) => medicarePlans.includes(payor));
}
return bcsePayors;
}
},
ccs: {
measureIds: ['CCS'],
measureCheck: (data, _index, measureFunctions) => {
const payors = measureFunctions.getPayors(data);
if (payors == undefined) {
return 0;
}
const age = measureFunctions.getAge(data);
return age >= 24 && age <= 64 && data.gender.startsWith('f');
},
getAge: (data) => {
let eventDate = new Date('2022-12-31');
return getAge(new Date(data.birthDate), eventDate);
},
getEligiblePopulation: (data, _index, measureFunctions) => {
const payor = measureFunctions.getPayors(data)[0];
if (medicarePlans.includes(payor)) {
return 0;
}
return data.result[`Initial Population`] ? 1 : 0;
},
getEvent: () => 0,
getContinuousEnrollment: (data) => {
return data.result[`Enrolled During Participation Period`] ? 1 : 0;
},
getExclusion: (data) => {
return data.result[`Denominator Exceptions`] ? 1 : 0;
},
getNumerator: (data) => {
return data.result[`Numerator`] ? 1 : 0;
},
getRequiredExclusion: () => 0,
getRequiredExclusionID: (data) => {
return data.result[`Exclusions`] ? 1 : 0;
},
getPayors: (data) => getDefaultPayors(data),
},
cise: {
measureIds: ['CISDTP','CISOPV','CISMMR','CISHIB','CISHEPB','CISVZV','CISPNEU','CISHEPA','CISROTA','CISINFL','CISCMB3','CISCMB7','CISCMB10'],
measureCheck: (data, index, measureFunctions) => {
const age = measureFunctions.getAge(data);
if (age !== 2) {
return false;
}
if (index === 10 || index === 11) {
const payors = measureFunctions.getPayors(data);
if (payors === undefined) {
return 0;
}
return !exchange.includes(payors[0]);
}
return true;
},
getAge: (data) => {
let eventDate = new Date('2022-12-31');
return getAge(new Date(data.birthDate), eventDate);
},
getContinuousEnrollment: (data) => {
return data.result[`Enrolled During Participation Period`] ? 1 : 0;
},
getEvent: () => 0,
getEligiblePopulation: (data, index, measureFunctions) => {
const payors = measureFunctions.getPayors(data);
if (payors === undefined || medicarePlans.includes(payors[0])) {
return 0;
}
return data.result[`Initial Population ${index + 1}`] ? 1 : 0;
},
getExclusion: () => 0,
getNumerator: (data, index) => {
return data.result[`Numerator ${index + 1}`] ? 1 : 0;
},
getRequiredExclusion: (data, index) => {
return data.result[`Exclusions ${index + 1}`] ? 1 : 0;
},
getRequiredExclusionID: () => 0,
getPayors: (data) => getDefaultPayors(data),
},
cole: {
measureIds: ['COL','COLNON','COLLISDE','COLDIS','COLCMB','COLOT'],
raceRequired: true,
measureCheck: (data, index, measureFunctions) => {
let validPayor = false;
const payors = measureFunctions.getPayors(data, index);
if (index === 0) { //BCS
validPayor = payors.length > 0;
} else if (index === 1) { //BCSNON
validPayor = data.support['Certification Medicare NON']
&& !data.support['Certification LIS'];
} else if (index === 2) { //BCSLISDE
validPayor = !data.support['Certification Medicare Other']
&& !data.support['Certification Medicare Disability']
&& data.support['Certification LIS'];
} else if (index === 3) { //BCSDIS
validPayor = !data.support['Certification LIS']
&& data.support['Certification Medicare Disability'];
} else if (index === 4) { //BCSCMB
validPayor = data.support['Certification LIS']
&& data.support['Certification Medicare Disability'];
} else if (index === 5) { //BCSOT
validPayor = data.support['Certification Medicare Other'];
}
const age = measureFunctions.getAge(data);
return validPayor && age >= 46 && age <= 75;
},
getAge: (data) => {
let eventDate = new Date('2022-12-31');
return getAge(new Date(data.birthDate), eventDate);
},
getContinuousEnrollment: (data) => {
return data.result[`Enrolled During Participation Period`] ? 1 : 0;
},
getEvent: () => 0,
getEligiblePopulation: (data, index, measureFunctions) => {
if (measureFunctions.getContinuousEnrollment(data) === 0) {
return 0;
}
return measureFunctions.getRequiredExclusion(data, index, measureFunctions) === 1 ? 0 : 1;
},
getExclusion: () => 0,
getNumerator: (data) => {
return data.result['Numerator'] ? 1 : 0;
},
getRequiredExclusion: (data, index, measureFunctions) => {
if (index > 0 && measureFunctions.getAge(data) > 65) {
if ((data.support['Certification SNP Coverage'] != undefined && data.support['Certification SNP Coverage'].length > 0)
|| (data.support['Certification Long Term Care'] != undefined && data.support['Certification Long Term Care'].length > 0)) {
return 1;
}
}
return data.result['Exclusions'] ? 1 : 0;
},
getRequiredExclusionID: () => 0,
getPayors: (data, index) => {
const payers = getDefaultPayors(data);
if (payers === undefined) {
return [];
}
if (index === 0) {
return payers.filter((payor) => !medicarePlans.includes(payor));
} else if (index >= 1) {
return payers.filter((payor) => medicarePlans.includes(payor));
}
return payers;
}
},
cou: {
measureIds: ['COUA','COUB'],
measureCheck: (data) => {
return data.result['Member is Appropriate Age and Has IPSD with Negative Medication History'];
},
getAge: (data) => {
let eventDate = new Date(data.result['November 1 of Year Prior to Measurement Period']);
return getAge(new Date(data.birthDate), eventDate);
},
getContinuousEnrollment: (data) => {
return data.result[`Enrolled During Participation Period`] ? 1 : 0;
},
getEvent: () => 1,
getEligiblePopulation: (data, index, measureFunctions) => {
const payors = measureFunctions.getPayors(data);
if (payors === undefined
|| exchange.includes(payors[0])) {
return 0;
}
return data.result[`Initial Population ${index + 1}`] ? 1 : 0;
},
getExclusion: () => 0,
getNumerator: (data, index) => {
return data.result[`Numerator ${index + 1}`] ? 1 : 0;
},
getRequiredExclusion: () => 0,
getRequiredExclusionID: (data, index) => {
return data.result[`Exclusions ${index + 1}`] ? 1 : 0;
},
getPayors: (data) => {
const memberCoverage = data.coverage;
const prescStartDate = new Date(data.result['Index Prescription Start Date']);
let foundPayors = memberCoverage
.filter((coverage) => coverage.payor)
.filter((coverage) => {
return new Date(coverage.period.start.value).getTime() <= prescStartDate.getTime()
&& new Date(coverage.period.end.value).getTime() >= prescStartDate.getTime();
})
.map((coverage) => coverageMap(coverage));
return getValidPayors(foundPayors, undefined, memberCoverage);
},
},
cwp: {
measureIds: ['CWPA','CWPB'],
eventsOrDiag: true,
measureCheck: (data, index, measureFunctions) => {
const eventsList = measureFunctions.getValidEvents(data);
if (eventsList === null) {
return false;
}
const currentEvent = eventsList[index];
if (currentEvent === undefined) {
return false;
}
if (measureFunctions.getAge(data, index, measureFunctions) < 3
|| measureFunctions.getPayors(data, index, measureFunctions) === undefined) {
return false;
}
if (currentEvent.isCovered) {
return true;
}
const currentDate = new Date(currentEvent.date).getTime();
return data.coverage
.filter((coverage) => coverage.payor)
.find((coverage) => {
return (new Date(coverage.period.start.value).getTime() <= currentDate - 2592000000
&& new Date(coverage.period.end.value).getTime() >= currentDate + 259200000)
|| ((new Date(coverage.period.start.value).getTime()) <= currentDate - 2592000000
&& (new Date(coverage.period.end.value).getTime()) >= currentDate - 2592000000)
|| ((new Date(coverage.period.start.value).getTime()) <= currentDate
&& (new Date(coverage.period.end.value).getTime()) >= currentDate)
});
},
getAge: (data, index, measureFunctions) => {
const eventDate = new Date(measureFunctions.getValidEvents(data)[index].date);
return getAge(new Date(data.birthDate), eventDate);
},
getContinuousEnrollment: (data, index, measureFunctions) => {
if (measureFunctions.getValidEvents(data)[index] === undefined) {
return 0;
}
return measureFunctions.getValidEvents(data)[index].isCovered ? 1 : 0;
},
getEvent: () => 1,
getEligiblePopulation: () => 1,
getExclusion: () => 0,
getNumerator: (data, index, measureFunctions) => {
return measureFunctions.getValidEvents(data)[index].validNum ? 1 : 0;
},
getRequiredExclusion: () => 0,
getRequiredExclusionID: (data) => {
return data.support['Certification Hospice'] ? 1 : 0;
},
getValidEvents: (data) => {
const events = data.support['Certification Continuous Enrollment'];
if (events === null) {
return null;
}
const validEventList = [];
for (const event1 of events) {
if (event1.validNum || event1.isCovered) {
validEventList.push(event1);
}
}
if (validEventList.length === 0) {
return [events[0]];
}
return validEventList;
},
getPayors: (data, index, measureFunctions) => {
const event = measureFunctions.getValidEvents(data)[index];
const fullCoverageList = data.coverage.filter((coverage) => coverage.payor);
let foundPayors = [];
// If the event has continuous enrollment
if (event.isCovered) {
const currentDate = new Date(event.date).getTime();
//First check if the event date falls under the exact coverage period
foundPayors = fullCoverageList
.filter((coverage) => {
return (new Date(coverage.period.start.value).getTime()) <= currentDate
&& (new Date(coverage.period.end.value).getTime()) >= currentDate
});
// If no coverages exists, expand the search to to full continuous enrollment period
if (foundPayors.length === 0) {
foundPayors = fullCoverageList
.filter((coverage) => {
return (new Date(coverage.period.start.value).getTime() - 2592000000) <= currentDate
&& (new Date(coverage.period.end.value).getTime() + 259200000) >= currentDate
});
}
}
const age = measureFunctions.getAge(data, index, measureFunctions);
return getValidPayors(foundPayors.map((coverage) => coverageMap(coverage)), age, fullCoverageList);
}
},
dmse: {
measureIds: ['DMS'],
measureCheck: (data, index, measureFunctions) => {
let payor = measureFunctions.getPayors(data, index, measureFunctions);
if (payor === undefined) {
return false;
}
payor = payor[0];
if (medicarePlans.includes(payor) && measureFunctions.getAge(data) < 18) {
return false;
}
return measureFunctions.getAge(data) >= 12;
},
getAge: (data) => {
let eventDate = new Date('2022-01-01');
return getAge(new Date(data.birthDate), eventDate);
},
getContinuousEnrollment: (data) => {
return data.result[`Enrolled During Participation Period`] ? 1 : 0;
},
getEvent: (data) => {
return ((data.result['Event 1'] ? 1 : 0)
+ (data.result['Event 2'] ? 1 : 0)
+ (data.result['Event 3'] ? 1 : 0));
},
getEligiblePopulation: (data, index, measureFunctions) => {
const payor = measureFunctions.getPayors(data, index, measureFunctions)[0];
if (exchange.includes(payor)) {
return 0;
}
return ((data.result['Initial Population 1'] ? 1 : 0)
+ (data.result['Initial Population 2'] ? 1 : 0)
+ (data.result['Initial Population 3'] ? 1 : 0));
},
getExclusion: () => 0,
getNumerator: (data) => {
return ((data.result['Numerator 1'] ? 1 : 0)
+ (data.result['Numerator 2'] ? 1 : 0)
+ (data.result['Numerator 3'] ? 1 : 0));
},
getRequiredExclusion: (data, index) => {
return data.result[`Exclusions ${index + 1}`] ? 1 : 0;
},
getRequiredExclusionID: () => 0,
getPayors: (data, _index, measureFunctions) => getDefaultPayors(data, measureFunctions.getAge(data)),
},
drre: {
measureIds: ['DRRA','DRRB','DRRC'],
eventsOrDiag: true,
measureCheck: (data, index, measureFunctions) => {
const age = measureFunctions.getAge(data);
if (age < 12) {
return false;
}
let validPayor = false;
const payors = measureFunctions.getPayors(data, index, measureFunctions);
if (payors === undefined) {
return false;
}
validPayor = payors.some((payor) => exchange.includes(payor) || commercial.includes(payor) || medicaidPlans.includes(payor));
if (!validPayor && age >= 18) {
validPayor = payors.some((payor) => medicarePlans.includes(payor));
}
return validPayor;
},
getAge: (data) => {
let eventDate = new Date(`${config.measurementYear-1}-05-01T00:00:00.000+00:00`);
return getAge(new Date(data.birthDate), eventDate);
},
getEligiblePopulation: (data, index, measureFunctions) => {
const payors = measureFunctions.getPayors(data, index, measureFunctions);
if (payors === undefined || exchange.includes(payors[0])) {
return 0;
}
return 1;
},
getContinuousEnrollment: (data) => data.result['Enrolled During Participation Period'] ? 1 : 0,
getEvent: (data, _index, measureFunctions) => {
const event = measureFunctions.getValidEvent(data);
if (event === undefined) {
return 0;
}
return event.validEvent ? 1 : 0;
},
getExclusion: () => 0,
getNumerator: (data, index, measureFunctions) => {
if (index === 0) {
const event = measureFunctions.getValidEvent(data);
if (event !== undefined) {
return measureFunctions.getValidEvent(data).validNum1 ? 1 : 0
}
return 0;
}
return data.result[`Numerator ${index + 1}`] || data.support[`Certification Numerator ${index + 1}`] ? 1 : 0
},
getRequiredExclusion: (data, index) => data.result[`Exclusions ${index + 1}`] ? 1 : 0,
getRequiredExclusionID: () => 0,
getPayors: (data, _index, measureFunctions) => getDefaultPayors(data, measureFunctions.getAge(data)),
getValidEvent: (data) => {
const events = data.support['Certification Info'];
if (events === null) {
return null;
}
return events[0];
}
},
dsfe: {
measureIds: ['DSFA','DSFB'],
measureCheck: (data, index, measureFunctions) => {
const age = measureFunctions.getAge(data);
if (age < 12) {
return false;
}
let validPayor = false;
const payors = measureFunctions.getPayors(data, index, measureFunctions);
if (payors === undefined) {
return false;
}
validPayor = payors.some((payor) => exchange.includes(payor) || commercial.includes(payor) || medicaidPlans.includes(payor));
if (!validPayor && age > 18) {
validPayor = payors.some((payor) => medicarePlans.includes(payor));
}
return validPayor;
},
getAge: (data) => {
let eventDate = new Date(`${config.measurementYear}-01-01`);
return getAge(new Date(data.birthDate), eventDate);
},
getEligiblePopulation: (data, index, measureFunctions) => {
const payors = measureFunctions.getPayors(data, index, measureFunctions);
if (payors === undefined || exchange.includes(payors[0])) {
return 0;
}
if (index === 0) {
return data.result['Initial Population 1'] ? 1 : 0
}
return data.result['Denominator 2'] && measureFunctions.getEvent(data, index) ? 1 : 0;
},
getContinuousEnrollment: (data) => data.result['Enrolled During Participation Period'] ? 1 : 0,
getEvent: (data, index) => {
if (index === 0) { // Minus exclusions?
return 0;
}
if (data.result['Numerator 1'] && (
data.result['Adult Depression Screening with Positive Result between January 1 and December 1'] ||
data.result['Adolescent Depression Screening with Positive Result between January 1 and December 1']
)) {
return 1;
}
return 0;
},
getExclusion: () => 0,
getNumerator: (data, index) => data.result[`Numerator ${index + 1}`] ? 1 : 0,
getRequiredExclusion: (data, index) => data.result[`Exclusions ${index + 1}`] ? 1 : 0, // Guess?
getRequiredExclusionID: () => 0,
getPayors: (data, _index, measureFunctions) => getDefaultPayors(data, measureFunctions.getAge(data)),
},
fum: {
measureIds: ['FUM30A', 'FUM7A', 'FUM30B', 'FUM7B'],
measureCheck: (data, index, measureFunctions) => {
const age = measureFunctions.getAge(data, index, measureFunctions);
if (age < 6 || isNaN(age)
|| measureFunctions.getPayors(data, index, measureFunctions) === undefined) {
return false;
}
const eventList = measureFunctions.getValidEvents(data);
if (eventList == null || eventList.length === 0) {
return false;
}
return eventList[Math.floor(index/2)] !== undefined;
},
getValidEvents: (data) => {
const events = data.support['Certification Info'];
if (events === null) {
return null;
}
const validEventList = [];
for (const event1 of events) {
if (event1.ce) {
validEventList.push(event1);
}
}
if (validEventList.length === 0) {
return [events[0]];
}
return validEventList;
},
eventsOrDiag: true,
getAge: (data, index, measureFunctions) => {
const dateIndex = Math.floor(index / 2);
let eventDate = new Date('2022-12-31');
const eventList = measureFunctions.getValidEvents(data);
if (eventList !== null && eventList[dateIndex] !== undefined) {
eventDate = new Date(eventList[dateIndex].date);
}
eventDate.setUTCHours(0,0,0,0);
return getAge(new Date(data.birthDate), eventDate);
},
getEligiblePopulation: (data, index, measureFunctions) => {
const payors = measureFunctions.getPayors(data, index, measureFunctions);
if (payors === undefined) {
return 0;
}
const payor = payors[0];
return !exchange.includes(payor) ? 1 : 0;
},
getContinuousEnrollment: (data, index, measureFunctions) => {
const eventList = measureFunctions.getValidEvents(data);
if (eventList == null || eventList.length === 0) {
return false;
}
return eventList[Math.floor(index / 2)].ce ? 1 : 0;
},
getEvent: () => 1,
getExclusion: () => 0,
getNumerator: (data, index, measureFunctions) => {
const eventList = measureFunctions.getValidEvents(data);
const realIndex = Math.floor(index / 2);
const numIndex = (index % 2) + 1;
if (eventList === null || eventList[realIndex] === undefined) {
return 0;
}
return eventList[realIndex][`validNum${numIndex}`] ? 1 : 0;
},
getRequiredExclusion: () => 0,
getRequiredExclusionID: (data) => {
return data.support['Certification Hospice'] ? 1 : 0;
},
getPayors: (data, index, measureFunctions) => {
const event = measureFunctions.getValidEvents(data, index)?.[Math.floor(index / 2)];
const fullCoverageList = data.coverage.filter((coverage) => coverage.payor);
let foundPayors = [];
if (event?.ce) { // If the event has continuous enrollment
const eventDate = new Date(event.date);
const currentDate = eventDate.setDate(eventDate.getDate() + 30);
//First check if the event date falls under the exact coverage period
foundPayors = fullCoverageList
.filter((coverage) => {
return (new Date(coverage.period.start.value).getTime()) <= currentDate
&& (new Date(coverage.period.end.value).getTime()) >= currentDate
});
// If no coverages exists, expand the search to to full continuous enrollment period
if (foundPayors.length === 0) {
foundPayors = fullCoverageList
.filter((coverage) => {
return (new Date(coverage.period.start.value).getTime() - 2592000000) <= currentDate
&& (new Date(coverage.period.end.value).getTime() + 259200000) >= currentDate
});
}
}
const age = measureFunctions.getAge(data, index, measureFunctions);
return getValidPayors(foundPayors.map((coverage) => coverageMap(coverage)), age, fullCoverageList);
}
},
imae: {
measureIds: ['IMAMEN','IMATD','IMAHPV','IMACMB1','IMACMB2'],