-
Notifications
You must be signed in to change notification settings - Fork 42
/
combined-flow.json
executable file
·1065 lines (1047 loc) · 46.3 KB
/
combined-flow.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
{
"start": "0",
"endStates": {
"comment0": "*****************START OF LEGAL AID END STATES *********************",
"acquireYourRecord": {
"eligibilityText": "You can either access your criminal record online or visit the DC court in person to acquire your complete record.",
"icon": "glyphicon glyphicon-flag",
"level": "warning",
"helperText": "In the menu above, please visit 'Acquire Your Record/Rap Sheet' for more instructions."
},
"comment100": "*****************START OF FUGITIVE JUSTICE END STATES *********************",
"ineligibleFJ": {
"eligibilityText": "Your client may be eligible, read below. ",
"icon": "glyphicon glyphicon-flag",
"level": "warning",
"helperText": "Your client may be eligible after they appear before the proper authority in state that issued the warrant under \"Fugitive from justice arrest 16-803.01\") ",
"showAttorneyInfo": "true"
},
"eligibleFJ": {
"eligibilityText": "This fugitive from justice arrest may be eligible for sealing.",
"icon": "glyphicon glyphicon-ok-circle",
"level": "success",
"helperText":
"They may be eligible for sealing under \"Fugitive from justice arrest 16-803.01\")"
,
"showAttorneyInfo": "true"
},
"eligibleFJ2": {
"eligibilityText": "Your client may be eligible once you have documentation showing you have appeared before the proper authority in the demanding state.",
"icon": "glyphicon glyphicon-ok-circle",
"level": "success",
"helperText": "",
"showAttorneyInfo": "true"
},
"comment200": "*****************START OF INCORRECT CRIMINAL RECORD END STATES *********************",
"eligibleIC": {
"eligibilityText": "Your client may be eligible to file. See directions below.",
"icon": "glyphicon glyphicon-ok-circle",
"level": "success",
"helperText": "",
"showAttorneyInfo": "true"
},
"eligibleIC2": {
"eligibilityText": "Your client may be eligible to file. ",
"icon": "glyphicon glyphicon-ok-circle",
"level": "success",
"helperText": "You may file a motion to seal if there are no fingerprints to compare and if you swear under penalty of perjury that the record you are trying to seal is not yours.",
"showAttorneyInfo": "true"
},
"eligibleIC3": {
"eligibilityText": "Your client may be eligible to file. ",
"icon": "glyphicon glyphicon-ok-circle",
"level": "success",
"helperText": "If your client is unsure whether the record is their, they can be eligible for getting a fingerprint comparison.",
"showAttorneyInfo": "true"
},
"comment300": "*****************START OF ACTUAL INNOCENCE END STATES *********************",
"ineligibleAI": {
"eligibilityText": "Your client's convictions are not eligible for sealing under actual innocence.",
"icon": "glyphicon glyphicon-remove-circle",
"level": "danger",
"helperText": "They may be eligible to seal under a different statute. Also, if they were convicted and can now prove they are innocent, they may be eligible to challenge that conviction. "
},
"ineligibleAI2": {
"eligibilityText": "Your client is likely not eligible.",
"icon": "glyphicon glyphicon-remove-circle",
"level": "danger",
"helperText": "Try another statute."
},
"eligibleAI": {
"eligibilityText": "Your client may be eligible for sealing with no waiting period.",
"icon": "glyphicon glyphicon-ok-circle",
"level": "success",
"helperText": "However, please note, that if it has been more than four years after the prosecution was terminated, then your client will have to provide more convincing evidence of their innocence. ",
"showAttorneyInfo": "true"
},
"comment400": "*****************START OF DECRIMINALIZED OFFENSE END STATES *********************",
"eligibleDOa": {
"eligibilityText": "Your client may be eligible to file to seal the records of this arrest and may be able to file at any time.",
"icon": "glyphicon glyphicon-ok-circle",
"level": "success",
"helperText": "The Next step is to figure out is whether your client's alleged conduct is now decriminalized or legalized. ",
"showAttorneyInfo": "true"
},
"eligibleDOb": {
"eligibilityText": "If in this particular arrest, your client was only arrested and charged for a marijuana-related offense, then they may be eligible to file to seal the records of this arrest.",
"icon": "glyphicon glyphicon-ok-circle",
"level": "success",
"helperText": "Your next step is to confirm whether your client's action is now decriminalized or legalized. ",
"showAttorneyInfo": "true"
},
"comment700": "*****************START OF FIRST TIME DRUG OFFENSES END STATES *********************",
"ineligiblePC1": {
"eligibilityText": "Your client is not eligible under § 48-904.01, read below. ",
"icon": "glyphicon glyphicon-flag",
"level": "warning",
"helperText": "Probation as a result of a charge of possession of a controlled substance with intent to distribute or a felony charge related to possession of a controlled sbustance are not charges that can be sealed under § 48-904.01",
"showAttorneyInfo": "true"
},
"ineligiblePC2": {
"eligibilityText": "Your client is not eligible under § 48-904.01, read below. ",
"icon": "glyphicon glyphicon-flag",
"level": "warning",
"helperText": "To seal under § 48-904.01, the charge must have been a first-time offense",
"showAttorneyInfo": "true"
},
"ineligiblePC3": {
"eligibilityText": "Your client is not eligible under § 48-904.01, read below. ",
"icon": "glyphicon glyphicon-flag",
"level": "warning",
"helperText": "To seal under § 48-904.01, your client must have been given a probation period of less than 12 months",
"showAttorneyInfo": "true"
},
"ineligiblePC4": {
"eligibilityText": "Your client may not be eligible under § 48-904.01, read below. ",
"icon": "glyphicon glyphicon-flag",
"level": "warning",
"helperText": "To seal under § 48-904.01, your client usually would have to wait till probation is over. Upon expiration of such period of probation, the court “shall” discharge and dismiss the proceedings against your client. HOWEVER, the court could have, in its discretion, dismissed the proceedings against such person and discharged him or her from probation before the expiration of the maximum period prescribed for such person's probation. IF this happened to your client, they are likely still eligible under § 48-904.01.",
"showAttorneyInfo": "true"
},
"ineligiblePC5": {
"eligibilityText": "Your client may not be eligible under § 48-904.01, read below. ",
"icon": "glyphicon glyphicon-flag",
"level": "warning",
"helperText": "To seal under § 48-904.01, your client usually would have to wait till probation is over. Upon expiration of such period of probation, the court “shall” discharge and dismiss the proceedings against your client. HOWEVER, the court could have, in its discretion, dismissed the proceedings against such person and discharged him or her from probation before the expiration of the maximum period prescribed for such person's probation. IF this happened to your client, they are likely still eligible under § 48-904.01.",
"showAttorneyInfo": "true"
},
"eligiblePC6": {
"eligibilityText": "Client's first-time drug offense charge and probation are likely eligible for sealing under § 48-904.01. Likely the court has automatically expunged this record. If not, you can argue that they should, .",
"icon": "glyphicon glyphicon-ok-circle",
"level": "success",
"helperText":
"If automatically expunged, a nonpublic record thereof shall be retained solely for the purpose of use by the courts in determining whether or not, in subsequent proceedings, such person qualifies under this subsection. "
},
"comment500": "*****************START OF Non-Convictions and Convictions END STATES *********************",
"ineligiblePC": {
"eligibilityText": "If you have a pending case, you must wait until the case is over. ",
"icon": "glyphicon glyphicon-remove-circle",
"level": "danger",
"helperText": "After your case is over, please return to check whether your records can be sealed."
},
"IneligibleFC": {
"eligibilityText": "Your felony conviction is not eligible for sealing. ",
"icon": "glyphicon glyphicon-remove-circle",
"level": "danger",
"helperText": "You have been convicted of an ineligible felony and it is not eligible for sealing.",
"showBanTheBox": "true"
},
"IneligibleFBRA": {
"eligibilityText": "This offense is not eligible for sealing.",
"icon": "glyphicon glyphicon-remove-circle",
"level": "danger",
"helperText": "You have a disqualifying conviction. Your Felony BRA (failure to appear in court) conviction is not eligible for sealing. ",
"showBanTheBox": "true"
},
"EligibleFC8": {
"eligibilityText": "This offense may be eligible for sealing.",
"icon": "glyphicon glyphicon-ok-circle",
"level": "success",
"helperText": "",
"showAttorneyInfo": "true"
},
"IneligibleFC8": {
"eligibilityText": "This offense is not eligible for sealing at this time.",
"icon": "glyphicon glyphicon-remove-circle",
"level": "danger",
"helperText": "You will have to wait at least 8 years after you go \"off papers\" before filing the motion to seal your record.",
"showBanTheBox": "true",
"showAttorneyInfo": "true"
},
"IneligibleMC": {
"eligibilityText": "This offense is not eligible for sealing.",
"icon": "glyphicon glyphicon-remove-circle",
"level": "danger",
"helperText": "You have been convicted of an ineligible misdemeanor and it is not eligible for sealing. Also, you can NEVER seal any other conviction on your DC criminal record. Even though you are not eligible for sealing your criminal record, In 2014 The District of Columbia passed a law that prohibits employers (with 11 or more employees) from having a criminal background questions on a job application form, and ALSO prohibits an employer from asking about criminal convictions, arrests or accusations until after a conditional offer of employment has been made. We encourage you to learn more about how to submit a complaint about violations of the law to the DC Office of Human Rights (OHR) at http://ohr.dc.gov/page/returningcitizens . Compensation may be available to you if it is found that an employer you applied for a job with asked about your criminal history before making a condition offer of employment OR if they have a question on their employment application that asks if you have every committed a crime or been arrested.",
"showBanTheBox": "true",
"showAttorneyInfo": "true"
},
"IneligibleEMC2": {
"eligibilityText": "This offense is not eligible for sealing.",
"icon": "glyphicon glyphicon-remove-circle",
"level": "danger",
"helperText": "You have a disqualifying conviction. Your eligible misdemeanor conviction is not eligible for sealing. Even though you are not eligible for sealing your criminal record, In 2014 The District of Columbia passed a law that prohibits employers (with 11 or more employees) from having a criminal background questions on a job application form, and ALSO prohibits an employer from asking about criminal convictions, arrests or accusations until after a conditional offer of employment has been made. We encourage you to learn more about how to submit a complaint about violations of the law to the DC Office of Human Rights (OHR) at http://ohr.dc.gov/page/returningcitizens . Compensation may be available to you if it is found that an employer you applied for a job with asked about your criminal history before making a condition offer of employment OR if they have a question on their employment application that asks if you have every committed a crime or been arrested.",
"showBanTheBox": "true"
},
"EligibleMC8": {
"eligibilityText": "This offense may be eligible for sealing.",
"icon": "glyphicon glyphicon-ok-circle",
"level": "success",
"helperText": "If you have more than one eligible misdemeanor conviction, you can only seal your most recent eligible misdemeanor conviction after the 8 year waiting period.",
"showAttorneyInfo": "true"
},
"IneligibleMC8": {
"eligibilityText": "This offense is not eligible for sealing at this time.",
"icon": "glyphicon glyphicon-remove-circle",
"level": "danger",
"helperText": "This offense is ineligible at this time. You will have to wait at least 8 years after you go \"off papers\" before filing the motion to seal your record.",
"showBanTheBox": "true"
},
"IneligiblePDNC": {
"eligibilityText": "This offense is not eligible for sealing.",
"icon": "glyphicon glyphicon-remove-circle",
"level": "danger",
"helperText": " Your misdemeanor or felony non-conviction is permanently disqualified from being sealed. Even though you are not eligible for sealing your criminal record, In 2014 The District of Columbia passed a law that prohibits employers (with 11 or more employees) from having a criminal background questions on a job application form, and ALSO prohibits an employer from asking about criminal convictions, arrests or accusations until after a conditional offer of employment has been made. We encourage you to learn more about how to submit a complaint about violations of the law to the DC Office of Human Rights (OHR) at http://ohr.dc.gov/page/returningcitizens . Compensation may be available to you if it is found that an employer you applied for a job with asked about your criminal history before making a condition offer of employment OR if they have a question on their employment application that asks if you have every committed a crime or been arrested.",
"showBanTheBox": "true"
},
"IneligibleFC10": {
"eligibilityText": "This offense is not eligible for sealing at this time.",
"icon": "glyphicon glyphicon-remove-circle",
"level": "danger",
"helperText": "Your misdemeanor or Felony BRA (failure to appear in court) non-conviction is not eligible for sealing until after the 10 year waiting period associated with your felony conviction has passed. ",
"showBanTheBox": "true",
"showAttorneyInfo": "true"
},
"IneligibleMC5": {
"eligibilityText": "This offense is not eligible for sealing at this time.",
"icon": "glyphicon glyphicon-remove-circle",
"level": "danger",
"helperText": "Your misdemeanor or Felony BRA (failure to appear in court) non-conviction is not eligible for sealing until after the 5 year waiting period associated with your misdemeanor conviction has passed.",
"showBanTheBox": "true",
"showAttorneyInfo": "true"
},
"IneligibleNC2": {
"eligibilityText": "This offense is not eligible for sealing at this time.",
"icon": "glyphicon glyphicon-remove-circle",
"level": "danger",
"helperText": "Your misdemeanor or Felony BRA (failure to appear in court) non-conviction is not eligible for sealing until after a 2 year waiting period has passed. ",
"showBanTheBox": "true",
"showAttorneyInfo": "true"
},
"EligibleNC2": {
"eligibilityText": "This offense may be eligible for sealing.",
"icon": "glyphicon glyphicon-ok-circle",
"level": "success",
"helperText": "If you have any other arrests or charges for additional offenses that resulted in non-convictions on your D.C. Criminal Record that you are trying to seal, you may have a longer waiting period before you will become eligible to file a motion to seal this arrest or charge.",
"showBanTheBox": "true",
"showAttorneyInfo": "true"
},
"IneligibleFNC10": {
"eligibilityText": "This offense is not eligible for sealing at this time.",
"icon": "glyphicon glyphicon-remove-circle",
"level": "danger",
"helperText": "Your misdemeanor or Felony BRA (failure to appear in court) non-conviction is not eligible for sealing until after the 10 year waiting period associated with your felony conviction has passed. ",
"showBanTheBox": "true",
"showAttorneyInfo": "true"
},
"IneligibleMNC5": {
"eligibilityText": "This offense is not eligible for sealing at this time.",
"icon": "glyphicon glyphicon-remove-circle",
"level": "danger",
"helperText": "Your misdemeanor or Felony BRA (failure to appear in court) non-conviction is not eligible for sealing until after the 5 year waiting period associated with your misdemeanor conviction has passed.",
"showBanTheBox": "true",
"showAttorneyInfo": "true"
},
"EligibleNCT3": {
"eligibilityText": "This offense may be eligible for sealing.",
"icon": "glyphicon glyphicon-ok-circle",
"level": "success",
"helperText": "If you have any other arrests or charges for additional offenses on your D.C. Criminal Record that resulted in non-convictions you are trying to seal, you may have a longer waiting period before you will become eligible to file a motion to seal this arrest or charge",
"showBanTheBox": "true",
"showAttorneyInfo": "true"
},
"IneligibleNCT3": {
"eligibilityText": "This offense is not eligible for sealing at this time.",
"icon": "glyphicon glyphicon-remove-circle",
"level": "danger",
"helperText": "Your non-conviction is not eligible for sealing until after the 3 year waiting period after your case was terminated.",
"showBanTheBox": "true",
"showAttorneyInfo": "true"
},
"EligibleNCT4": {
"eligibilityText": "This offense may be eligible for sealing.",
"icon": "glyphicon glyphicon-ok-circle",
"level": "success",
"helperText": "If you have any other arrests or charges for additional offenses on your D.C. Criminal Record that resulted in non-convictions you are trying to seal, you may have a longer waiting period before you will become eligible to file a motion to seal this arrest or charge",
"showBanTheBox": "true",
"showAttorneyInfo": "true"
},
"IneligibleNCT4": {
"eligibilityText": "This offense is not eligible for sealing at this time.",
"icon": "glyphicon glyphicon-remove-circle",
"level": "danger",
"helperText": "Your non-conviction is not eligible for sealing until after the 4 year waiting period after your case was terminated.",
"showBanTheBox": "true",
"showAttorneyInfo": "true"
}
},
"comment": "*****************START OF QUESTIONS *********************",
"questions": {
"0": {
"questionText": "Do you identify with any of these categories?",
"answers": [
{
"answerText": "I was previously incarcerated, charged or arrested",
"next": "25"
},
{
"answerText": "I am a lawyer or law student",
"next": "25"
}
],
"helperText": []
},
"25": {
"questionText": "Do you have access to your complete criminal record right now?",
"answers": [
{
"answerText": "Yes",
"next": "50"
},
{
"answerText": "No",
"next": "acquireYourRecord"
}
],
"helperText": [
]
},
"50": {
"questionText": "Your offense may be eligible for sealing under one of the following categories. Please select an option that applies to your D.C. Criminal Record.",
"answers": [
{
"controls":"collapseOne",
"labelledby":"headingOne",
"shortAnswerText": "Fugitive arrested; warrant in other state...",
"answerText": "I was arrested in DC because I had a warrant in another state (i.e. another state).",
"next": "101"
},
{
"controls":"collapseTwo",
"labelledby":"headingTwo",
"shortAnswerText": "Criminal record incorrect...",
"answerText": "My DC criminal record is INCORRECT. There are cases or arrests listed that are not mine. Someone may have used my name or the information was entered incorrectly.",
"next": "201"
},
{
"controls":"collapseThree",
"labelledby":"headingThree",
"shortAnswerText": "Innocent of crime on my record...",
"answerText":"I was arrested for or charged with a crime in DC, BUT I was NOT convicted of it, AND I can prove to the Court that I was actually innocent.",
"next": "300"
},
{
"controls":"collapseFour",
"labelledby":"headingFour",
"shortAnswerText": "Marijuana-related arrests/charge or conviction...",
"answerText": "I was arrested, charged or convicted of a marijuana-related offense before February 26, 2015.",
"next": "401"
},
{
"controls":"collapseFive",
"labelledby":"headingFive",
"shortAnswerText": "Expunge arrest for First-Time Drug Offense under 48-904.01(e)",
"answerText": "People charged with drug possession for the first time are eligible for treatment under Section 48-904.01(e). Specifically, for people who either plead guilty or who are found guilty after challenging the charge at trial, the court can in its discretion defer entering a judgment of guilty into the record to allow the defendant to complete a period of probation not to exceed 12 months. The charge is automatically dismissed if the defendant successfully completes the probation.",
"next": "700"
},
{
"controls":"collapseSix",
"labelledby":"headingSix",
"shortAnswerText": "Expunge an arrests because client had a deferred sentencing agreement...",
"answerText": "Unlike the other categories here, sucessful completion of a deferred sentencing agreement will allow for expungement of that record upon request from the court.",
"next": "600"
}
]
},
"50_HOLDER_FOR_LATER": {
"questionText": "___________",
"answers": [
{
"answerText": "I was arrested in DC because I had a warrant in another state (i.e. another state).",
"next": "101"
},
{
"answerText": "My DC criminal record is INCORRECT. There are cases or arrests listed that are not mine. Someone may have used my name or the information was entered incorrectly.",
"next": "201"
},
{
"answerText": "I was arrested for or charged with a crime in DC, BUT I was NOT convicted of it, AND I can prove to the Court that I was actually innocent.",
"next": "300"
},
{
"answerText": "I was arrested, charged or convicted of a marijuana-related offense before February 26, 2015.",
"next": "401"
}
],
"helperText": [
]
},
"comment100": "*****************START OF FUGITIVE JUSTICE QUESTIONS *********************",
"101": {
"questionText": "Was your client arrested in D.C. because they had a warrant in another state?",
"answers": [
{
"answerText": "Yes",
"next": "102"
},
{
"answerText": "No",
"next": "ineligibleFJ"
}
],
"helperText": [
"The proper authority is the court that issued the warrant."
]
},
"102": {
"questionText": "Did your client appear before the proper authority in the state that issued the warrant?",
"answers": [
{
"answerText": "Yes",
"next": "103"
},
{
"answerText": "No",
"next": "ineligibleFJ"
}
],
"helperText": [
"The proper authority is the court that issued the warrant."
]
},
"103": {
"questionText": "Can your client prove that they appeared before the proper authority in the state that issued the warrant and thus that the D.C. court would have grounds to seal the arrest?",
"answers": [
{
"answerText": "Yes",
"next": "eligibleFJ"
},
{
"answerText": "No",
"next": "eligibleFJ2"
}
],
"helperText": [
]
},
"comment200": "*****************START OF INCORRECT CRIMINAL RECORD END STATES *********************",
"201": {
"questionText": "Do you know if the person who was actually responsible for the offense was fingerprinted at the time of the arrest?",
"answers": [
{
"answerText": "Yes",
"next": "eligibleIC"
},
{
"answerText": "No",
"next": "202"
}
],
"helperText": [
"(You may know the answer to this if you have submitted fingerprints to the Metropolitan Police Department (MPD) to prove that you were not the person arrested and MPD has told you that they do not have fingerprints on file for that arrest to compare to your prints.)"
]
},
"202": {
"questionText": " Can you swear under oath that the record is not yours?",
"answers": [
{
"answerText": "Yes",
"next": "eligibleIC2"
},
{
"answerText": "No",
"next": "eligibleIC3"
}
],
"helperText": [
"Swearing under oath - you make a commitment to tell the truth (especially in a court of law); if you lie after swearing that you will tell the truth, you may become subject to prosecution perjury Perjury- The crime of willfully and knowingly making a false statement about a material fact after swearing to tell the truth"
]
},
"comment300": "*****************START OF ACTUAL INNOCENCE QUESTIONS *********************",
"300": {
"questionText": "Your client was arrested for or charged with crime but \"not convicted\" of that crime as defined below?",
"answers": [
{
"answerText": "Yes",
"next": "301"
},
{
"answerText": "No",
"next": "ineligibleAI"
}
],
"helperText": [
" \"Not convicted\" means (a) the prosecutor did not paper or did not charge the case; OR (b) the prosecutor dropped the charges against your client before trial; OR (c) the court dismissed the charges against your client; OR (d) yyour client was acquitted (found “not guilty”) of the crime after a trial. "
]
},
"301": {
"questionText": "Can your client prove that the offense for which they were arrested or charged did not occur OR that they did not commit the offense for which they were arrested or charged?",
"answers": [
{
"answerText": "Yes",
"next": "eligibleAI"
},
{
"answerText": "No",
"next": "ineligibleAI2"
}
],
"helperText": [
"Your client has the burden of proving to the Court that they are actually innocent through factual circumstances and/or relevant post offense occurrences that support a conclusion that they were innocent. The easiest way to prove actual innocence is by presenting facts that can be proven by reliable documents.",
"Example 1: They were found guilty of driving without a permit. They really did have a valid permit at the time but a computer glitch indicated that they did not have one when they were arrested. They can now provide information showing that they had a valid permit at the time of the offense.",
"Example 2: Your client was arrested for having a dog off leash but it is not their dog and they can show that it was not their dog.",
"Example 3: Your client was arrested for theft but they have a receipt showing they actually own the property they were accused of stealing.",
"Example 4: Your client has an assault-type charge but they acted in self-defense. They will have to show the Judge they believed they were in imminent harm and acted in self-defense. They could provide affidavits from witnesses who saw the fight and who swear that the \"victim\" was really the initial aggressor and they, the arrestee, were just defending themselves. However, affidavits saying \"the other guy started it\" will not be enough to show actual innocence. The judge is still going to have to make credibility findings based on the evidence provided.",
"Note: Being found \"not guilty\" is NOT proof of INNOCENCE."
]
},
"comment400": "*****************START OF DECRIMINALIZED OFFENSE QUESTIONS *********************",
"401": {
"questionText": "When your client was arrested for, charged with or convicted of a marijuana-related offense, were they ALSO arrested for, charged with or convicted of violating any NON-marijuana related offense or violation of the D.C. Code, the D.C. Municipal Regulations, or the U.S. Code?",
"answers": [
{
"answerText": "Yes",
"next": "eligibleDOa"
},
{
"answerText": "No",
"next": "eligibleDOb"
}
],
"helperText": [
]
},
"comment500": "*****************START OF Non-Conviction QUESTIONS *********************",
"500": {
"questionText": "Do you have a pending criminal case in ANY state (i.e. D.C. or another state)?",
"answers": [
{
"answerText": "Yes",
"next": "501"
},
{
"answerText": "No",
"next": "531"
}
],
"helperText": [
"\"Pending\" refers to any case that is pending or has not been fully resolved. For example, if a case does not have a case disposition, it is likely a case pending."
]
},
"501": {
"questionText": "Is your pending case for a \"minor offense\"",
"answers": [
{
"answerText": "Yes",
"next": "531"
},
{
"answerText": "No",
"next": "ineligiblePC"
}
],
"helperText": [
"Under DC's sealing statutes, a \"minor offense\" is a traffic offense, disorderly conduct, or an offense that is punishable by a fine only."
]
},
"531": {
"questionText": "Were you arrested or charged with a misdemeanor listed below or a felony(other than Felony BRA--failure to appear in court)?",
"answers": [
{
"answerText": "Yes",
"next": "560"
},
{
"answerText": "No",
"next": "532"
}
],
"helperText": [
"If the conviction is from somewhere other than DC, have you been convicted of a misdemeanor that is like one of the misdemeanors on the list."
],
"showIneligibleMisdemeanors": true
},
"532": {
"questionText": "Is your misdemeanor or Felony BRA (failure to appear in court) a result of a successful completion of a deferred sentencing agreement?",
"answers": [
{
"answerText": "Yes",
"next": "540"
},
{
"answerText": "No",
"next": "550"
}
],
"helperText": ""
},
"540": {
"questionText": "Does any of the following apply to your criminal record in DC and/or any other state?",
"answers": [
{
"answerText": "Yes",
"next": "IneligiblePDNC"
},
{
"answerText": "No",
"next": "554"
}
],
"helperText": [
"I have a conviction for an offense other than a \"minor offense\" in ANY state that occurred AFTER the D.C. non conviction offense I am currently trying to have sealed \n I have a felony conviction (other than a Felony BRA for failure to appear in court) in at least one state \n I have a misdemeanor conviction for one of the offenses listed below in at least one state"
]
},
"550": {
"questionText": "Does any of the following apply to your criminal record in DC and/or any other state?",
"answers": [
{
"answerText": "Yes",
"next": "551"
},
{
"answerText": "No",
"next": "554"
}
],
"helperText": [
"I have a conviction for an offense other than a \"minor offense\" in ANY state that occurred AFTER the D.C. non conviction offense I am currently trying to have sealed \n I have a felony conviction (other than a Felony BRA for failure to appear in court) in at least one state \n I have a misdemeanor conviction for one of the offenses listed below in at least one state"
]
},
"551": {
"questionText": "Based on your previous answer, you have a conviction on your record in addition to the misdemeanor non-conviction you are trying to seal. Is your MOST RECENT conviction a felony or a misdemeanor?",
"answers": [
{
"answerText": "Felony",
"next": "552"
},
{
"answerText": "Misdemeanor",
"next": "553"
}
],
"helperText": [
]
},
"552": {
"questionText": "Has it been at least 10 years since you were off papers for the felony conviction?",
"answers": [
{
"answerText": "Yes",
"next": "554"
},
{
"answerText": "No",
"next": "IneligibleFC10"
}
],
"helperText": [
"\"Off papers\" means when a person has been unconditionally discharged from incarceration, commitment, probation, parole or supervised release – whichever is the latest."
]
},
"553": {
"questionText": "Has it been 5 years since you were off papers for the misdemeanor conviction?",
"answers": [
{
"answerText": "Yes",
"next": "554"
},
{
"answerText": "No",
"next": "IneligibleMC5"
}
],
"helperText": [
"\"Off papers\" means when a person has been unconditionally discharged from incarceration, commitment, probation, parole or supervised release – whichever is the latest."
]
},
"554": {
"questionText": "Has it been 2 years since you were off papers for the misdemeanor or Felony BRA (failure to appear in court) non-conviction you are trying to seal?",
"answers": [
{
"answerText": "Yes",
"next": "EligibleNC2"
},
{
"answerText": "No",
"next": "IneligibleNC2"
}
],
"helperText": [
"\"Off papers\" means when a person has been unconditionally discharged from incarceration, commitment, probation, parole or supervised release – whichever is the latest."
]
},
"560": {
"questionText": "Is your misdemeanor or felony non-conviction a result of a successful completion of a deferred sentencing agreement?",
"answers": [
{
"answerText": "Yes",
"next": "570"
},
{
"answerText": "No",
"next": "580"
}
],
"helperText": ""
},
"570": {
"questionText": "Does any of the following apply to your criminal record in DC and/or any other state?",
"answers": [
{
"answerText": "Yes",
"next": "IneligiblePDNC"
},
{
"answerText": "No",
"next": "584"
}
],
"helperText": [
"I have a conviction for an offense other than a \"minor offense\" in ANY state that occurred AFTER the D.C. non conviction offense I am currently trying to have sealed \n I have a felony conviction (other than a Felony BRA for failure to appear in court) in at least one state \n I have a misdemeanor conviction for one of the offenses listed below in at least one state"
]
},
"580": {
"questionText": "Does any of the following apply to your criminal record in DC and/or any other state?",
"answers": [
{
"answerText": "Yes",
"next": "581"
},
{
"answerText": "No",
"next": "584"
}
],
"helperText": [
"I have a conviction for an offense other than a \"minor offense\" in ANY state that occurred AFTER the D.C. non conviction offense I am currently trying to have sealed \n I have a felony conviction (other than a Felony BRA for failure to appear in court) in at least one state \n I have a misdemeanor conviction for one of the offenses listed below in at least one state"
]
},
"581": {
"questionText": "Based on your previous answer, you have a conviction on your record in addition to the misdemeanor non-conviction you are trying to seal. Is your MOST RECENT conviction a felony or a misdemeanor?",
"answers": [
{
"answerText": "Felony",
"next": "582"
},
{
"answerText": "Misdemeanor",
"next": "583"
}
],
"helperText": [
]
},
"582": {
"questionText": "Has it been at least 10 years since you were off papers for the felony conviction?",
"answers": [
{
"answerText": "Yes",
"next": "584"
},
{
"answerText": "No",
"next": "IneligibleFNC10"
}
],
"helperText": [
"\"Off papers\" means when a person has been unconditionally discharged from incarceration, commitment, probation, parole or supervised release – whichever is the latest."
]
},
"583": {
"questionText": "Has it been 5 years since you were off papers for the misdemeanor conviction?",
"answers": [
{
"answerText": "Yes",
"next": "584"
},
{
"answerText": "No",
"next": "IneligibleMNC5"
}
],
"helperText": [
"\"Off papers\" means when a person has been unconditionally discharged from incarceration, commitment, probation, parole or supervised release – whichever is the latest."
]
},
"584": {
"questionText": "Was your misdemeanor or felony non-conviction case that you are trying to seal terminated before you were charged by the prosecutor (otherwise known as \"not papered\") ? ",
"answers": [
{
"answerText": "Yes",
"next": "585"
},
{
"answerText": "No",
"next": "586"
}
],
"helperText": []
},
"585": {
"questionText": "Has it been at least 3 years since the day the case was terminated?",
"answers": [
{
"answerText": "Yes",
"next": "EligibleNCT3"
},
{
"answerText": "No",
"next": "IneligibleNCT3"
}
],
"helperText": []
},
"586": {
"questionText": "Has it been at least 4 years since the day the case was terminated?",
"answers": [
{
"answerText": "Yes",
"next": "EligibleNCT4"
},
{
"answerText": "No",
"next": "IneligibleNCT4"
}
],
"helperText": []
},
"comment 700": "*****************START OF FIRST TIME DRUG OFFENSE QUESTIONS *********************",
"700": {
"questionText": "Was the client charged with knowingly or intentionally possessing a controlled substance?",
"answers": [
{
"answerText": "Yes, the client was charged with a misdemeanor-simple possesion of a controlled substance charge",
"next": "701"
},
{
"answerText": "No",
"next": "ineligiblePC1"
}
],
"helperText": [
"Important: a charge of possession coupled with intent to distribute is not an example of a simple charge of possession. "
]
},
"701": {
"questionText": "Does the client have any prior convictions of a simple possession in D.C., any other state or jurisdiction?",
"answers": [
{
"answerText": "No, this charge was the client's first time being charged with simple possession",
"next": "702"
},
{
"answerText": "Yes, it was not their first time. They have previously been charged and convicted in D.C. or in another jurisidiction",
"next": "ineligiblePC2"
}
],
"helperText": [
"Reminder:Simple possession of a controlled substance in D.C. is a misdemeanor, with a maximum penalty for a first conviction of 180 days of incarceration and a $1000 fine. ."
]
},
"702": {
"questionText": "Did a judge give the client a period of probation of 12 months or less",
"answers": [
{
"answerText": "Yes, client was sentenced to probation and it was 12 months or less",
"next": "703"
},
{
"answerText": "No,",
"next": "ineligiblePC3"
}
],
"helperText": []
},
"703": {
"questionText": "Has the client successfully complete the entire period of probation?",
"answers": [
{
"answerText": "Yes",
"next": "704"
},
{
"answerText": "No, client has not yet completed probation term provided by the judge",
"next": "ineligiblePC4"
}
],
"helperText": []
},
"704": {
"questionText": "Did the client complete probation without violating any conditions of the probation they received due to the charge of simple possession",
"answers": [
{
"answerText": "Yes",
"next": "eligiblePC6"
},
{
"answerText": "No",
"next": "ineligiblePC5"
}
],
"helperText": [
]
},
"comment600": "*****************START OF Conviction QUESTIONS *********************",
"600": {
"questionText": "Do you have a pending criminal case in ANY state (i.e. D.C. or another state)?",
"answers": [
{
"answerText": "Yes",
"next": "601"
},
{
"answerText": "No",
"next": "602"
}
],
"helperText": [
"\"Pending\" refers to any case that is pending or has not been fully resolved. For example, if a case does not have a case disposition, it is likely a case pending."
]
},
"601": {
"questionText": "Is your pending case for a \"minor offense\"",
"answers": [
{
"answerText": "Yes",
"next": "602"
},
{
"answerText": "No",
"next": "ineligiblePC"
}
],
"helperText": [
"Under DC's sealing statutes, a \"minor offense\" is a traffic offense, disorderly conduct, or an offense that is punishable by a fine only."
]
},
"602": {
"questionText": "Select the type of conviction your client would like to seal on their D.C. record.",
"answers": [
{
"answerText": "Felony conviction",
"next": "612"
},
{
"answerText": "Misdemeanor conviction",
"next": "621"
}
],
"helperText": ["Please answer questions for only one arrest at a time."]
},
"612": {
"questionText": "Is your DC felony conviction for Felony BRA (failure to appear in court)?",
"answers": [
{
"answerText": "Yes",
"next": "613"
},
{
"answerText": "No",
"next": "IneligibleFC"
}
],
"helperText": []
},
"613": {
"questionText": "Have your client subsequently been convicted of another crime in ANY state?",
"answers": [
{
"answerText": "Yes",
"next": "IneligibleFBRA"
},
{
"answerText": "No",
"next": "614"
}
],
"helperText": [
]
},
"614": {
"questionText": "You can also look at your client's criminal record and search for the charge disposition date. If it has been 8 years since the charge disposition date, then choose Yes.",
"answers": [
{
"answerText": "Yes",
"next": "EligibleFC8"
},
{
"answerText": "No",
"next": "IneligibleFC8"
}
],
"helperText": [
"\"Off papers\" means when a person has been unconditionally discharged from incarceration, commitment, probation, parole or supervised release – whichever is the latest. You can also look at their criminal record and search for the \"charge disp date\". If it has been 8 years since your client's \"charge disp date\", then choose yes."
]
},
"621": {