forked from ChelseaKR/permit-bearings
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplain-language.json
More file actions
1285 lines (1285 loc) · 66.2 KB
/
Copy pathplain-language.json
File metadata and controls
1285 lines (1285 loc) · 66.2 KB
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
{
"schema_version": 1,
"entries": [
{
"version": "1.1.0",
"source_rule_id": "adu-ministerial-review",
"source_verified_on": "2026-07-27",
"citation_fingerprint": "sha256:0604738b3a96ad57536fa14ce355ad284cf948ae363007e9f643718ce0e95a9a",
"rule_fingerprint": "sha256:4888800f455167140ea9f69d193a2b70f82d168e75d41f6daa34dcec1bf0b58f",
"display_group": "route",
"drafted_by": "ai_assisted",
"updated_on": "2026-07-28",
"review": {
"status": "prototype_review_pending",
"reviewer": null,
"reviewed_on": null,
"method": null,
"reviewed_version": null,
"content_fingerprint": null
},
"en": {
"title": "How your ADU application is reviewed",
"summary": "Your ADU application must be reviewed without a public hearing. The deadline for a final decision depends on whether a home already exists on the lot.",
"highlights": {
"title": "Deadlines in this rule",
"items": [
{
"label": "15 business days",
"text": "After receiving your application, the agency must tell you in writing whether it is complete."
},
{
"label": "60 calendar days",
"text": "After receiving a complete application, the agency must approve or deny it within 60 days when a single-family home or multifamily building already exists on the lot."
},
{
"label": "Proposed home",
"text": "If the primary home is also proposed, the agency may wait to decide the ADU until it decides the primary-home application."
}
]
},
"next_steps": [
"Gather the local ADU application, site plan, and floor plan.",
"Keep proof of the date the agency received each submission.",
"If the agency says the application is incomplete, obtain the written list of missing items and how to fix each one."
],
"confirm_with_staff": [
"What receipt date does the agency have on file?",
"Has the agency determined that the application is complete?",
"Does the 60-day decision period apply, and on what date did it begin?",
"What written appeal process applies to an incomplete or denied application?"
]
},
"es": {
"title": "Cómo se revisa su solicitud de ADU",
"summary": "La agencia debe revisar su solicitud de ADU sin audiencia pública. El plazo para una decisión final depende de si ya existe una vivienda en el lote.",
"highlights": {
"title": "Plazos de esta regla",
"items": [
{
"label": "15 días hábiles",
"text": "Después de recibir su solicitud, la agencia debe informarle por escrito si está completa."
},
{
"label": "60 días calendario",
"text": "Después de recibir una solicitud completa, la agencia debe aprobarla o denegarla dentro de 60 días cuando ya existe una vivienda unifamiliar o un edificio multifamiliar en el lote."
},
{
"label": "Vivienda propuesta",
"text": "Si también se propone la vivienda principal, la agencia puede esperar para decidir la ADU hasta decidir la solicitud de la vivienda principal."
}
]
},
"next_steps": [
"Reúna la solicitud local de ADU, el plano del sitio y el plano de planta.",
"Guarde un comprobante de la fecha en que la agencia recibió cada entrega.",
"Si la agencia dice que la solicitud está incompleta, obtenga la lista escrita de lo que falta y cómo corregir cada punto."
],
"confirm_with_staff": [
"¿Qué fecha de recepción tiene registrada la agencia?",
"¿La agencia ya determinó que la solicitud está completa?",
"¿Se aplica el plazo de decisión de 60 días y en qué fecha comenzó?",
"¿Qué proceso de apelación por escrito se aplica a una solicitud incompleta o denegada?"
],
"translation_status": "machine_draft",
"reviewer": null,
"reviewed_on": null,
"method": null,
"reviewed_version": null,
"content_fingerprint": null
}
},
{
"version": "1.1.0",
"source_rule_id": "adu-protected-minimum",
"source_verified_on": "2026-07-27",
"citation_fingerprint": "sha256:760c091de6aa71414a4b8f88e8d83cc37149f1bb3b75f02e1a1fc738b3861ccd",
"rule_fingerprint": "sha256:9b4a3a8b7a60683fcba2fd0d7c603b063006bea4f8a01b194cc59889bc87e794",
"display_group": "standard",
"drafted_by": "ai_assisted",
"updated_on": "2026-07-28",
"review": {
"status": "prototype_review_pending",
"reviewer": null,
"reviewed_on": null,
"method": null,
"reviewed_version": null,
"content_fingerprint": null
},
"en": {
"title": "An 800-square-foot option local rules cannot block",
"summary": "You do not have to build an 800-square-foot ADU. This rule protects your option to build an ADU of at least that size with 4-foot side and rear setbacks when the project meets every other applicable local development rule.",
"next_steps": [
"Choose the unit size that fits the project; 800 square feet is not a required minimum.",
"Compare the proposed side and rear setbacks with the protected 4-foot option.",
"Check the proposal against every other applicable local development rule."
],
"confirm_with_staff": [
"Which other local development rules apply to this proposal?",
"Would any local rule prevent the protected 800-square-foot option?",
"May the applicant propose a unit smaller than 800 square feet under the applicable rules?"
]
},
"es": {
"title": "Una opción de 800 pies cuadrados que las reglas locales no pueden impedir",
"summary": "No tiene que construir una ADU de 800 pies cuadrados. Esta regla protege la opción de construir una ADU de al menos ese tamaño con retiros laterales y traseros de 4 pies cuando el proyecto cumple todas las demás reglas locales de desarrollo aplicables.",
"next_steps": [
"Elija el tamaño de unidad que se adapte al proyecto; 800 pies cuadrados no es un mínimo obligatorio.",
"Compare los retiros laterales y traseros propuestos con la opción protegida de 4 pies.",
"Revise la propuesta según todas las demás reglas locales de desarrollo aplicables."
],
"confirm_with_staff": [
"¿Qué otras reglas locales de desarrollo se aplican a esta propuesta?",
"¿Alguna regla local impediría la opción protegida de 800 pies cuadrados?",
"¿Puede el solicitante proponer una unidad menor de 800 pies cuadrados según las reglas aplicables?"
],
"translation_status": "machine_draft",
"reviewer": null,
"reviewed_on": null,
"method": null,
"reviewed_version": null,
"content_fingerprint": null
}
},
{
"version": "1.1.0",
"source_rule_id": "adu-height-standards",
"source_verified_on": "2026-07-27",
"citation_fingerprint": "sha256:f72ce4ea76a177d8b1efb4add80e55822ad8fefa074533f88204d6db5995dd77",
"rule_fingerprint": "sha256:5b9fb485081ccd48cd27b5c96d2d3bc978a819b4018363fb54a5db9e8a81512b",
"display_group": "standard",
"drafted_by": "ai_assisted",
"updated_on": "2026-07-28",
"review": {
"status": "prototype_review_pending",
"reviewer": null,
"reviewed_on": null,
"method": null,
"reviewed_version": null,
"content_fingerprint": null
},
"en": {
"title": "How tall your ADU may be",
"summary": "The protected height depends on whether the ADU is attached, whether it is within a half-mile walking distance of qualifying transit, and whether the lot has a multistory multifamily building.",
"highlights": {
"title": "Height protections",
"items": [
{
"label": "16 feet",
"text": "A detached ADU must generally be allowed to reach this height."
},
{
"label": "18 feet near transit",
"text": "A detached ADU must be allowed to reach this height when it is within a half-mile walk of a qualifying major transit stop or high-quality transit corridor."
},
{
"label": "2 additional feet",
"text": "In the transit situation, a matching primary-home roof pitch may add two feet."
},
{
"label": "18 feet on a multistory multifamily lot",
"text": "This separate branch does not add the two roof-pitch feet unless the transit condition also applies."
},
{
"label": "Attached ADU",
"text": "The protected height is 25 feet or the primary home's zoning height limit, whichever is lower."
}
]
},
"next_steps": [
"Identify whether the proposed ADU is attached or detached.",
"Check qualifying transit by walking distance, not straight-line distance.",
"Record whether the lot has an existing or proposed multistory multifamily building.",
"If using the transit roof-pitch rule, compare the proposed roof pitch with the primary home's roof pitch."
],
"confirm_with_staff": [
"Which height branch applies to this ADU?",
"Does the agency have complete and current evidence for the transit determination?",
"If the ADU is attached, what zoning height limit applies to the primary home?",
"If two extra roof-pitch feet are claimed, does the transit condition also apply?"
]
},
"es": {
"title": "Qué altura puede tener su ADU",
"summary": "La altura protegida depende de si la ADU está adosada, si hay transporte público que califica cerca y si el lote tiene un edificio multifamiliar de varios pisos.",
"highlights": {
"title": "Protecciones de altura",
"items": [
{
"label": "16 pies",
"text": "Por lo general, se debe permitir que una ADU separada alcance esta altura."
},
{
"label": "18 pies cerca del transporte público",
"text": "Se debe permitir esta altura cuando una ADU separada está a media milla a pie de una parada principal o un corredor de transporte de alta calidad que califique."
},
{
"label": "2 pies adicionales",
"text": "En la situación de transporte público, una pendiente de techo que coincida con la vivienda principal puede añadir dos pies."
},
{
"label": "18 pies en un lote multifamiliar de varios pisos",
"text": "Esta rama separada no añade los dos pies de techo salvo que también se cumpla la condición de transporte público."
},
{
"label": "ADU adosada",
"text": "La altura protegida es 25 pies o el límite de zonificación de la vivienda principal, lo que sea menor."
}
]
},
"next_steps": [
"Identifique si la ADU propuesta será adosada o separada.",
"Compruebe el transporte público que califica por distancia peatonal, no por distancia en línea recta.",
"Registre si el lote tiene un edificio multifamiliar de varios pisos existente o propuesto.",
"Si usa la regla de pendiente de techo por transporte público, compare la pendiente propuesta con la de la vivienda principal."
],
"confirm_with_staff": [
"¿Qué rama de altura se aplica a esta ADU?",
"¿La agencia tiene evidencia completa y vigente para determinar el transporte público?",
"¿Qué límite de altura de zonificación se aplica a la vivienda principal si la ADU está adosada?",
"¿También se cumple la condición de transporte público si se reclaman dos pies adicionales por la pendiente del techo?"
],
"translation_status": "machine_draft",
"reviewer": null,
"reviewed_on": null,
"method": null,
"reviewed_version": null,
"content_fingerprint": null
}
},
{
"version": "1.1.0",
"source_rule_id": "jadu-standards",
"source_verified_on": "2026-07-27",
"citation_fingerprint": "sha256:b5d15e4b1ec352236db89057b53adddb3bffbcc84a20e4a126ef5909577ff3ce",
"rule_fingerprint": "sha256:759453e4b27099af7b128e66f58ff789bdc7e3dd75b90637845633dc71fd6664",
"display_group": "standard",
"drafted_by": "ai_assisted",
"updated_on": "2026-07-28",
"review": {
"status": "prototype_review_pending",
"reviewer": null,
"reviewed_on": null,
"method": null,
"reviewed_version": null,
"content_fingerprint": null
},
"en": {
"title": "What a junior ADU must include",
"summary": "A junior ADU must be no more than 500 square feet and entirely inside a proposed or existing single-family home. It needs its own entrance, an efficiency kitchen, and a recorded deed restriction.",
"next_steps": [
"Prepare a floor plan showing the junior ADU inside the single-family home.",
"Show the separate entrance, cooking appliances, food-preparation counter, and storage cabinets.",
"Obtain the jurisdiction's required deed-restriction form.",
"Record whether the junior ADU will share sanitation facilities with the main home."
],
"confirm_with_staff": [
"Does the proposed floor plan satisfy every required junior ADU feature?",
"What deed-restriction form and recording process does the jurisdiction require?",
"Will shared sanitation facilities trigger owner occupancy for this applicant?",
"What rental term longer than 30 days does the local ordinance require?"
]
},
"es": {
"title": "Qué debe incluir una ADU júnior",
"summary": "Una ADU júnior no puede superar 500 pies cuadrados y debe estar completamente dentro de una vivienda unifamiliar propuesta o existente. Necesita una entrada propia, una cocina de eficiencia y una restricción registrada en la escritura.",
"next_steps": [
"Prepare un plano de planta que muestre la ADU júnior dentro de la vivienda unifamiliar.",
"Muestre la entrada separada, los aparatos para cocinar, el mostrador para preparar alimentos y los gabinetes.",
"Obtenga el formulario de restricción de escritura exigido por la jurisdicción.",
"Registre si la ADU júnior compartirá instalaciones sanitarias con la vivienda principal."
],
"confirm_with_staff": [
"¿El plano propuesto cumple todas las características exigidas para una ADU júnior?",
"¿Qué formulario y proceso de registro de la restricción de escritura exige la jurisdicción?",
"¿Las instalaciones sanitarias compartidas exigirán que este propietario ocupe la propiedad?",
"¿Qué plazo de alquiler superior a 30 días exige la ordenanza local?"
],
"translation_status": "machine_draft",
"reviewer": null,
"reviewed_on": null,
"method": null,
"reviewed_version": null,
"content_fingerprint": null
}
},
{
"version": "1.0.0",
"source_rule_id": "jadu-ministerial-review",
"source_verified_on": "2026-07-28",
"citation_fingerprint": "sha256:9683c8b30f00d1c29653b8c3e6d6b2098bbd8e5a985feceab26931ef404cc0f1",
"rule_fingerprint": "sha256:174e40b5422b5f9bc060c03fc2979d8d576cac85d824d589204295342be6db59",
"display_group": "route",
"drafted_by": "ai_assisted",
"updated_on": "2026-07-28",
"review": {
"status": "prototype_review_pending",
"reviewer": null,
"reviewed_on": null,
"method": null,
"reviewed_version": null,
"content_fingerprint": null
},
"en": {
"title": "How your junior ADU application is reviewed",
"summary": "Your junior ADU application must be reviewed without a public hearing. The deadline for a final decision depends on whether the single-family home already exists.",
"highlights": {
"title": "Deadlines in this rule",
"items": [
{
"label": "15 business days",
"text": "After receiving the application, the agency must say in writing whether it is complete."
},
{
"label": "60 calendar days",
"text": "The agency must approve or deny a complete application within 60 days when the single-family home already exists."
},
{
"label": "Proposed home",
"text": "If the single-family home is also proposed, the agency may wait to decide the junior ADU until it decides the home application."
}
]
},
"next_steps": [
"Keep proof of the date the agency received each submission.",
"If the application is incomplete, obtain the written list of missing items and remedies.",
"Keep the full written comments if the agency denies the application."
],
"confirm_with_staff": [
"What receipt date does the agency have on file?",
"Has the agency determined that the application is complete?",
"Does the 60-day decision period apply, and on what date did it begin?",
"What written appeal process applies to an incomplete or denied application?"
]
},
"es": {
"title": "Cómo se revisa su solicitud de ADU júnior",
"summary": "La agencia debe revisar su solicitud de ADU júnior sin audiencia pública. El plazo para una decisión final depende de si ya existe la vivienda unifamiliar.",
"highlights": {
"title": "Plazos de esta regla",
"items": [
{
"label": "15 días hábiles",
"text": "Después de recibir la solicitud, la agencia debe indicar por escrito si está completa."
},
{
"label": "60 días calendario",
"text": "La agencia debe aprobar o denegar una solicitud completa dentro de 60 días cuando ya existe la vivienda unifamiliar."
},
{
"label": "Vivienda propuesta",
"text": "Si también se propone la vivienda unifamiliar, la agencia puede esperar para decidir la ADU júnior hasta decidir la solicitud de la vivienda."
}
]
},
"next_steps": [
"Guarde un comprobante de la fecha en que la agencia recibió cada entrega.",
"Si la solicitud está incompleta, obtenga la lista escrita de lo que falta y cómo corregirlo.",
"Guarde todos los comentarios por escrito si la agencia deniega la solicitud."
],
"confirm_with_staff": [
"¿Qué fecha de recepción tiene registrada la agencia?",
"¿La agencia ya determinó que la solicitud está completa?",
"¿Se aplica el plazo de decisión de 60 días y en qué fecha comenzó?",
"¿Qué proceso de apelación por escrito se aplica a una solicitud incompleta o denegada?"
],
"translation_status": "machine_draft",
"reviewer": null,
"reviewed_on": null,
"method": null,
"reviewed_version": null,
"content_fingerprint": null
}
},
{
"version": "1.2.0",
"source_rule_id": "sb9-two-unit-ministerial",
"source_verified_on": "2026-07-27",
"citation_fingerprint": "sha256:dd1f0305e60314970d374d84f7c9d84673a9866279bcbb9b92cd5d6bf0db963f",
"rule_fingerprint": "sha256:6e62fdfcf1bb96e16626944be40aaf637c310e800a0c7e8be694e0638e55401f",
"display_group": "route",
"drafted_by": "ai_assisted",
"updated_on": "2026-07-28",
"review": {
"status": "prototype_review_pending",
"reviewer": null,
"reviewed_on": null,
"method": null,
"reviewed_version": null,
"content_fingerprint": null
},
"en": {
"title": "A possible path to build up to two homes",
"summary": "Your answers are consistent with the encoded SB 9 conditions for a project with no more than two primary homes. This is still a candidate path because the agency must verify the parcel and every exclusion.",
"next_steps": [
"Prepare the site plan, proposed-home floor plans, and local SB 9 application.",
"Keep evidence for the zoning, urbanized-area, protected-site, housing, tenant, Ellis Act, and both route-specific historic-resource answers.",
"Compare the proposal with the jurisdiction's objective standards."
],
"confirm_with_staff": [
"Does the parcel satisfy every current SB 9 condition in § 65852.21?",
"Does any affordable-housing, rent-control, tenant, or Ellis Act condition block this path?",
"Is there a contributing structure in a historic district or property within a locally designated historic district?",
"Is the parcel individually listed or locally designated or listed as a historic property or landmark?",
"Which local objective standards and rental-term rules apply?"
]
},
"es": {
"title": "Una posible vía para construir hasta dos viviendas",
"summary": "Sus respuestas concuerdan con las condiciones codificadas de la SB 9 para un proyecto de no más de dos viviendas principales. Sigue siendo una vía posible porque la agencia debe verificar la parcela y cada exclusión.",
"next_steps": [
"Prepare el plano del sitio, los planos de las viviendas propuestas y la solicitud local de la SB 9.",
"Guarde evidencia de las respuestas sobre zonificación, área urbanizada, sitio protegido, vivienda, inquilinos, Ley Ellis y ambas preguntas específicas sobre recursos históricos.",
"Compare la propuesta con las normas objetivas de la jurisdicción."
],
"confirm_with_staff": [
"¿La parcela cumple todas las condiciones vigentes de la SB 9 en § 65852.21?",
"¿Alguna condición de vivienda asequible, control de alquileres, inquilinos o Ley Ellis impide esta vía?",
"¿Hay una estructura contribuyente en un distrito histórico o una propiedad dentro de un distrito histórico designado localmente?",
"¿La parcela está incluida individualmente o designada o registrada localmente como propiedad o monumento histórico?",
"¿Qué normas objetivas locales y reglas de duración del alquiler se aplican?"
],
"translation_status": "machine_draft",
"reviewer": null,
"reviewed_on": null,
"method": null,
"reviewed_version": null,
"content_fingerprint": null
}
},
{
"version": "1.2.0",
"source_rule_id": "sb9-urban-lot-split",
"source_verified_on": "2026-07-27",
"citation_fingerprint": "sha256:4ce8dd950b1b868c9214840ee0849cce4c6bac2e49238ece32079225412dcfca",
"rule_fingerprint": "sha256:10031ce9300dd62ad3ec2e0a11dd9c6b4fceb06613bb233f3cb207732317f9ff",
"display_group": "route",
"drafted_by": "ai_assisted",
"updated_on": "2026-07-28",
"review": {
"status": "prototype_review_pending",
"reviewer": null,
"reviewed_on": null,
"method": null,
"reviewed_version": null,
"content_fingerprint": null
},
"en": {
"title": "A possible path to split one lot into two",
"summary": "Your answers are consistent with the encoded SB 9 lot-split conditions. This is still a candidate path because the agency must verify the parcel, both proposed lot sizes, ownership history, and every exclusion.",
"highlights": {
"title": "Lot conditions",
"items": [
{
"label": "40 percent",
"text": "Neither proposed lot may be smaller than 40 percent of the original lot."
},
{
"label": "Applicable minimum",
"text": "Each proposed lot must be at least 1,200 square feet, unless a verified current local ordinance allows a smaller minimum that both lots meet."
},
{
"label": "No repeat or adjacent split",
"text": "The parcel cannot be a prior SB 9 split, and the same owner or someone acting with that owner cannot have previously split an adjacent parcel under SB 9."
},
{
"label": "Three-year statement",
"text": "The applicant generally must state an intent to live in one unit as a principal residence for at least three years after approval."
}
]
},
"next_steps": [
"Prepare a tentative parcel map that states the original and proposed lot areas.",
"Find the local SB 9 lot-split application.",
"If either proposed lot is under 1,200 square feet, keep the current local ordinance that allows the smaller minimum.",
"Prepare the principal residence statement unless the community land trust or qualified nonprofit exception applies.",
"Keep evidence for every parcel-history and exclusion answer."
],
"confirm_with_staff": [
"Do both proposed lot areas satisfy the 40-percent rule?",
"Are both proposed lots at least 1,200 square feet, or does a verified current local ordinance allow the proposed smaller minimum?",
"Is the parcel on a historic-landmark property or designated historic site?",
"Would the proposal demolish or alter a contributing structure or exterior structural wall in a historic district?",
"Was this parcel or an adjacent parcel previously split under SB 9 by the same owner or someone acting with that owner?",
"Does the principal-residence statement exception apply to this applicant?",
"Does the parcel satisfy every other current condition in § 66411.7?"
]
},
"es": {
"title": "Una posible vía para dividir un lote en dos",
"summary": "Sus respuestas concuerdan con las condiciones codificadas de la SB 9 para dividir el lote. Sigue siendo una vía posible porque la agencia debe verificar la parcela, el tamaño de ambos lotes propuestos, el historial de propiedad y cada exclusión.",
"highlights": {
"title": "Condiciones de los lotes",
"items": [
{
"label": "40 por ciento",
"text": "Ningún lote propuesto puede ser menor del 40 por ciento del lote original."
},
{
"label": "Mínimo aplicable",
"text": "Cada lote propuesto debe tener por lo menos 1,200 pies cuadrados, salvo que una ordenanza local vigente y verificada permita un mínimo menor que ambos lotes cumplan."
},
{
"label": "Sin división repetida ni adyacente",
"text": "La parcela no puede provenir de una división SB 9 anterior, y el mismo propietario o alguien que actúe con él no puede haber dividido antes una parcela adyacente bajo la SB 9."
},
{
"label": "Declaración de tres años",
"text": "Por lo general, el solicitante debe declarar que piensa vivir en una unidad como residencia principal durante al menos tres años después de la aprobación."
}
]
},
"next_steps": [
"Prepare un mapa parcelario tentativo que indique las áreas del lote original y de los lotes propuestos.",
"Busque la solicitud local para la división de lote bajo la SB 9.",
"Si algún lote propuesto tiene menos de 1,200 pies cuadrados, guarde la ordenanza local vigente que permite el mínimo menor.",
"Prepare la declaración de residencia principal salvo que se aplique la excepción para un fideicomiso comunitario de tierras o una organización sin fines de lucro que califique.",
"Guarde evidencia de cada respuesta sobre el historial de la parcela y las exclusiones."
],
"confirm_with_staff": [
"¿Las áreas de ambos lotes propuestos cumplen la regla del 40 por ciento?",
"¿Ambos lotes propuestos tienen por lo menos 1,200 pies cuadrados, o una ordenanza local vigente y verificada permite el mínimo menor propuesto?",
"¿La parcela está en una propiedad que es monumento histórico o en un sitio histórico designado?",
"¿La propuesta demolería o alteraría una estructura contribuyente o un muro estructural exterior en un distrito histórico?",
"¿Esta parcela o una parcela adyacente fue dividida antes bajo la SB 9 por el mismo propietario o alguien que actuó con él?",
"¿Se aplica a este solicitante la excepción a la declaración de residencia principal?",
"¿La parcela cumple todas las demás condiciones vigentes de § 66411.7?"
],
"translation_status": "machine_draft",
"reviewer": null,
"reviewed_on": null,
"method": null,
"reviewed_version": null,
"content_fingerprint": null
}
},
{
"version": "1.2.0",
"source_rule_id": "adu-size-allowances",
"source_verified_on": "2026-07-27",
"citation_fingerprint": "sha256:78e7d4b3dc5417357e403ad372ddcd4d80613eb2e0f655bdd936d4bd60f7ff02",
"rule_fingerprint": "sha256:d02f92f5445fe8a36cf49992526e86b7f55a6a8871ae8d85c6aa8638dbb46cdf",
"display_group": "standard",
"drafted_by": "ai_assisted",
"updated_on": "2026-07-28",
"review": {
"status": "prototype_review_pending",
"reviewer": null,
"reviewed_on": null,
"method": null,
"reviewed_version": null,
"content_fingerprint": null
},
"en": {
"title": "How local ADU size limits work",
"summary": "You may propose an ADU smaller than the sizes in this rule. If local rules set a maximum, they must still allow 850 square feet, or 1,000 square feet for an ADU with more than one bedroom.",
"next_steps": [
"Record whether the ADU is attached, detached, or a conversion.",
"Record the proposed interior livable area and bedroom count.",
"Check whether the jurisdiction has a state-compliant ADU ordinance.",
"If this is a conversion, ask whether the no-size-limit conversion rule applies."
],
"confirm_with_staff": [
"What local maximum size applies to this ADU type?",
"Does the local maximum preserve 850 square feet, or 1,000 square feet for more than one bedroom?",
"May the applicant propose a smaller unit?",
"If this is a conversion, is it exempt from unit-size limits?"
]
},
"es": {
"title": "Cómo funcionan los límites locales de tamaño de una ADU",
"summary": "Puede proponer una ADU menor que los tamaños de esta regla. Si las reglas locales fijan un máximo, deben permitir 850 pies cuadrados, o 1,000 pies cuadrados para una ADU con más de un dormitorio.",
"next_steps": [
"Registre si la ADU está adosada, separada o es una conversión.",
"Registre el área habitable interior propuesta y el número de dormitorios.",
"Compruebe si la jurisdicción tiene una ordenanza de ADU que cumple la ley estatal.",
"Si es una conversión, pregunte si se aplica la regla de conversión sin límite de tamaño."
],
"confirm_with_staff": [
"¿Qué tamaño máximo local se aplica a este tipo de ADU?",
"¿El máximo local permite 850 pies cuadrados, o 1,000 pies cuadrados para más de un dormitorio?",
"¿Puede el solicitante proponer una unidad menor?",
"¿Está exenta de límites de tamaño si es una conversión?"
],
"translation_status": "machine_draft",
"reviewer": null,
"reviewed_on": null,
"method": null,
"reviewed_version": null,
"content_fingerprint": null
}
},
{
"version": "1.1.0",
"source_rule_id": "adu-parking-limits",
"source_verified_on": "2026-07-27",
"citation_fingerprint": "sha256:05969381ed60eb6d14a8e5b1a372ce5e7f2da209410d038b3f24d713950d0249",
"rule_fingerprint": "sha256:592ccd4916311cb0125c03f74788769c2941894434a506bc8f61fbe1120f9abf",
"display_group": "standard",
"drafted_by": "ai_assisted",
"updated_on": "2026-07-28",
"review": {
"status": "prototype_review_pending",
"reviewer": null,
"reviewed_on": null,
"method": null,
"reviewed_version": null,
"content_fingerprint": null
},
"en": {
"title": "When ADU parking can—and cannot—be required",
"summary": "Outside an exemption, the agency may require at most one parking space per ADU or bedroom, whichever is fewer. It cannot require guest parking or replacement of parking removed for the ADU.",
"highlights": {
"title": "No ADU parking may be required when",
"items": [
{
"label": "Transit",
"text": "The ADU is within a half-mile walk of public transit."
},
{
"label": "Historic district",
"text": "The ADU is in an architecturally and historically significant historic district."
},
{
"label": "Inside existing space",
"text": "The ADU is part of the proposed or existing primary home or an accessory structure."
},
{
"label": "Permit parking",
"text": "On-street permits are required but are not offered to the ADU occupant."
},
{
"label": "Car share",
"text": "A car-share vehicle is within one block of the ADU."
},
{
"label": "Application with a new home",
"text": "The ADU application is submitted with a new primary-home application and the ADU or parcel meets another listed condition."
}
]
},
"next_steps": [
"Check every no-parking condition against the property.",
"Measure the transit condition by walking distance.",
"Record whether the project removes or converts any existing parking."
],
"confirm_with_staff": [
"Does any no-parking condition in § 66322(a) apply?",
"What evidence supports the half-mile walking-distance determination?",
"If parking is required, is the amount no more than one space per ADU or bedroom, whichever is fewer?",
"Has the agency excluded guest parking and replacement parking?"
]
},
"es": {
"title": "Cuándo se puede exigir estacionamiento para una ADU",
"summary": "Fuera de una exención, la agencia puede exigir como máximo un espacio por ADU o dormitorio, lo que sea menor. No puede exigir estacionamiento para visitantes ni reemplazar el estacionamiento eliminado por la ADU.",
"highlights": {
"title": "No se puede exigir estacionamiento para la ADU cuando",
"items": [
{
"label": "Transporte público",
"text": "La ADU está a media milla a pie del transporte público."
},
{
"label": "Distrito histórico",
"text": "La ADU está en un distrito de importancia arquitectónica e histórica."
},
{
"label": "Dentro de un espacio",
"text": "La ADU forma parte de la vivienda principal propuesta o existente o de una estructura accesoria."
},
{
"label": "Permisos de estacionamiento",
"text": "Se exigen permisos en la calle pero no se ofrecen al ocupante de la ADU."
},
{
"label": "Auto compartido",
"text": "Hay un vehículo de auto compartido a una cuadra de la ADU."
},
{
"label": "Solicitud con una vivienda nueva",
"text": "La solicitud de la ADU se presenta con la de una vivienda principal nueva y la ADU o la parcela cumple otra condición de la lista."
}
]
},
"next_steps": [
"Compruebe cada condición de exención de estacionamiento para la propiedad.",
"Mida la condición de transporte público por distancia peatonal.",
"Registre si el proyecto elimina o convierte estacionamiento existente."
],
"confirm_with_staff": [
"¿Se aplica alguna condición sin estacionamiento de § 66322(a)?",
"¿Qué evidencia respalda la distancia peatonal de media milla?",
"¿La cantidad exigida se limita a un espacio por ADU o dormitorio, lo que sea menor?",
"¿La agencia ha excluido el estacionamiento para visitantes y el estacionamiento de reemplazo?"
],
"translation_status": "machine_draft",
"reviewer": null,
"reviewed_on": null,
"method": null,
"reviewed_version": null,
"content_fingerprint": null
}
},
{
"version": "1.1.0",
"source_rule_id": "adu-no-owner-occupancy-rental",
"source_verified_on": "2026-07-27",
"citation_fingerprint": "sha256:90160870f2cc5f51c49d39ac684f50cd4b6f5be68672bf7642c2d0c38023792f",
"rule_fingerprint": "sha256:df3052e0f8933e1cbd4139e6e23cab8f0cdaa7a3fd59d3d01351df50c0af4b40",
"display_group": "standard",
"drafted_by": "ai_assisted",
"updated_on": "2026-07-28",
"review": {
"status": "prototype_review_pending",
"reviewer": null,
"reviewed_on": null,
"method": null,
"reviewed_version": null,
"content_fingerprint": null
},
"en": {
"title": "Owner occupancy and 30-day rentals on a single-family lot",
"summary": "For the ordinary ADU route covered by this rule, the agency cannot require the owner to live on the property. It may require rentals to last at least 30 days, but not necessarily longer than 30 days.",
"next_steps": [
"Record the intended rental term if the ADU will be rented.",
"Identify whether the proposal uses a separate-sale program or a special § 66323 unit instead of this ordinary route."
],
"confirm_with_staff": [
"Is the agency reviewing this ADU under §§ 66314–66315?",
"What local minimum rental term applies?",
"Is staff applying any owner-occupancy condition, and what statute supports it?",
"Does a separate-sale or § 66323 rule change this result?"
]
},
"es": {
"title": "Ocupación por el propietario y alquileres de 30 días en un lote unifamiliar",
"summary": "Para la vía ordinaria de ADU cubierta por esta regla, la agencia no puede exigir que el propietario viva en la propiedad. Puede exigir alquileres de al menos 30 días, pero no necesariamente de más de 30 días.",
"next_steps": [
"Registre la duración prevista si se alquilará la ADU.",
"Identifique si la propuesta usa un programa de venta por separado o una unidad especial de § 66323 en vez de esta vía ordinaria."
],
"confirm_with_staff": [
"¿La agencia revisa esta ADU bajo §§ 66314–66315?",
"¿Qué duración mínima local del alquiler se aplica?",
"¿El personal aplica alguna condición de ocupación por el propietario y qué ley la respalda?",
"¿Una regla de venta por separado o de § 66323 cambia este resultado?"
],
"translation_status": "machine_draft",
"reviewer": null,
"reviewed_on": null,
"method": null,
"reviewed_version": null,
"content_fingerprint": null
}
},
{
"version": "1.1.0",
"source_rule_id": "adu-conversion-exemptions",
"source_verified_on": "2026-07-27",
"citation_fingerprint": "sha256:6a9c673ae6d69096fb4e563b1f3c1fc299e8254c2ed303c798b31d1c790b80c5",
"rule_fingerprint": "sha256:cc83d4f47c5c97907eb1a1c7f43b0956b3c15753a351465e78493f36ceda5f1a",
"display_group": "standard",
"drafted_by": "ai_assisted",
"updated_on": "2026-07-28",
"review": {
"status": "prototype_review_pending",
"reviewer": null,
"reviewed_on": null,
"method": null,
"reviewed_version": null,
"content_fingerprint": null
},
"en": {
"title": "Special rules for converting or replacing existing space",
"summary": "Because you identified a conversion or a same-location, same-size replacement, the agency cannot require a new distance from the property line for the qualifying existing space. If the conversion also meets separate state-law conditions, some other local site rules may not apply.",
"next_steps": [
"Document the existing structure, space, location, and dimensions.",
"Compare the proposed footprint and dimensions with the existing structure.",
"Identify whether the project is a conversion or a same-footprint replacement."
],
"confirm_with_staff": [
"Does the proposal meet the exact conversion or same-footprint condition?",
"Which setback and § 66323 standards exemptions apply?",
"Which building, health-and-safety, and fire requirements still apply?"
]
},
"es": {
"title": "Reglas especiales para convertir o reemplazar un espacio existente",
"summary": "Como indicó una conversión o un reemplazo del mismo tamaño en el mismo lugar, la agencia no puede exigir una nueva distancia desde el límite de la propiedad para el espacio existente que cumpla las condiciones. Si la conversión también cumple otras condiciones de la ley estatal, algunas reglas locales adicionales sobre el terreno pueden no aplicarse.",
"next_steps": [
"Documente la estructura, el espacio, la ubicación y las dimensiones existentes.",
"Compare la huella y las dimensiones propuestas con la estructura existente.",
"Identifique si el proyecto es una conversión o un reemplazo con la misma huella."
],
"confirm_with_staff": [
"¿La propuesta cumple la condición exacta de conversión o de la misma huella?",
"¿Qué exenciones de retiro y de normas de § 66323 se aplican?",
"¿Qué requisitos de construcción, salud y seguridad, e incendios aún se aplican?"
],
"translation_status": "machine_draft",
"reviewer": null,
"reviewed_on": null,
"method": null,
"reviewed_version": null,
"content_fingerprint": null
}
},
{
"version": "1.1.0",
"source_rule_id": "adu-unpermitted-legalization",
"source_verified_on": "2026-07-27",
"citation_fingerprint": "sha256:decab32ef4a20aac42bdf2db1623553b319248a8bd2cbb5e9d18e534219aefe6",
"rule_fingerprint": "sha256:f77e4416a7e7b9ff0516cbfc0912061f850be052aec703b6879958b1347a3b2b",
"display_group": "route",
"drafted_by": "ai_assisted",
"updated_on": "2026-07-28",
"review": {
"status": "prototype_review_pending",
"reviewer": null,
"reviewed_on": null,
"method": null,
"reviewed_version": null,
"content_fingerprint": null
},
"en": {
"title": "A possible permit path for an older unpermitted ADU",
"summary": "An unpermitted ADU built before January 1, 2020 has added permit protections. A substandard building or a correction needed for health and safety can still change the result.",
"next_steps": [
"Find evidence showing when the unit was built.",
"Get the agency's published substandard-building checklist.",
"Consider the optional confidential inspection by a licensed contractor before applying.",
"Ask for a written explanation of every correction and fee."
],
"confirm_with_staff": [
"Does the agency agree that the unit was built before January 1, 2020?",
"Has the building been deemed substandard under HSC § 17920.3?",
"Which corrections are necessary for health and safety?",
"Is any impact, connection, or capacity fee claimed under the limited utility exception?",
"Will the agency approve the permits needed to correct identified noncompliance without penalizing the applicant for the unpermitted unit?"
]
},
"es": {
"title": "Una posible vía de permiso para una ADU antigua sin permiso",
"summary": "Una ADU sin permiso construida antes del 1 de enero de 2020 tiene protecciones adicionales. Un edificio deficiente o una corrección necesaria para la salud y seguridad aún puede cambiar el resultado.",
"next_steps": [
"Busque evidencia de cuándo se construyó la unidad.",
"Obtenga la lista publicada de la agencia sobre edificios deficientes.",
"Considere la inspección confidencial opcional por un contratista con licencia antes de solicitar.",
"Pida una explicación por escrito de cada corrección y cargo."
],
"confirm_with_staff": [
"¿La agencia coincide en que la unidad fue construida antes del 1 de enero de 2020?",
"¿El edificio fue declarado deficiente bajo HSC § 17920.3?",
"¿Qué correcciones son necesarias para la salud y seguridad?",
"¿Se reclama algún cargo de impacto, conexión o capacidad bajo la excepción limitada de servicios públicos?",
"¿La agencia aprobará los permisos necesarios para corregir el incumplimiento sin sancionar al solicitante por la unidad sin permiso?"
],
"translation_status": "machine_draft",
"reviewer": null,
"reviewed_on": null,
"method": null,
"reviewed_version": null,
"content_fingerprint": null
}
},
{
"version": "1.0.0",
"source_rule_id": "jadu-unpermitted-legalization",
"source_verified_on": "2026-07-27",
"citation_fingerprint": "sha256:decab32ef4a20aac42bdf2db1623553b319248a8bd2cbb5e9d18e534219aefe6",
"rule_fingerprint": "sha256:cd52bd42a4780f232e995cecbfa5da13527bc79f14273f03ed92c81b708a846d",
"display_group": "route",
"drafted_by": "ai_assisted",
"updated_on": "2026-07-28",
"review": {
"status": "prototype_review_pending",
"reviewer": null,
"reviewed_on": null,
"method": null,
"reviewed_version": null,
"content_fingerprint": null
},
"en": {
"title": "A possible permit path for an older unpermitted junior ADU",
"summary": "The pre-2020 permit protections also cover an unpermitted junior ADU. A substandard building or a correction needed for health and safety can still change the result.",
"next_steps": [
"Find evidence showing when the junior ADU was built.",
"Get the agency's published substandard-building checklist.",
"Consider the optional confidential inspection by a licensed contractor before applying."
],
"confirm_with_staff": [
"Does the agency agree that the junior ADU was built before January 1, 2020?",
"Has the building been deemed substandard under HSC § 17920.3?",
"Which corrections and limited fees does the agency claim are allowed?",
"Will the agency approve the permits needed to correct identified noncompliance without penalizing the applicant for the unpermitted unit?"
]
},
"es": {
"title": "Una posible vía de permiso para una ADU júnior antigua sin permiso",
"summary": "Las protecciones para permisos anteriores a 2020 también cubren una ADU júnior sin permiso. Un edificio deficiente o una corrección necesaria para la salud y seguridad aún puede cambiar el resultado.",
"next_steps": [
"Busque evidencia de cuándo se construyó la ADU júnior.",
"Obtenga la lista publicada de la agencia sobre edificios deficientes.",
"Considere la inspección confidencial opcional por un contratista con licencia antes de solicitar."
],
"confirm_with_staff": [
"¿La agencia coincide en que la ADU júnior fue construida antes del 1 de enero de 2020?",
"¿El edificio fue declarado deficiente bajo HSC § 17920.3?",
"¿Qué correcciones y cargos limitados afirma la agencia que están permitidos?",
"¿La agencia aprobará los permisos necesarios para corregir el incumplimiento sin sancionar al solicitante por la unidad sin permiso?"
],
"translation_status": "machine_draft",
"reviewer": null,
"reviewed_on": null,
"method": null,
"reviewed_version": null,
"content_fingerprint": null
}
},
{
"version": "1.1.0",
"source_rule_id": "adu-multifamily-66323",
"source_verified_on": "2026-07-27",
"citation_fingerprint": "sha256:6b0887f0d3ab807352258dd57d7456557c3f33885c48c9cd9b0ccfd06967784a",
"rule_fingerprint": "sha256:3feab0bf08a64e792edbb8cc486bd37ca3f970357e78b3bc57c2d8992caf3ca8",
"display_group": "route",
"drafted_by": "ai_assisted",
"updated_on": "2026-07-28",
"review": {
"status": "prototype_review_pending",
"reviewer": null,
"reviewed_on": null,
"method": null,
"reviewed_version": null,
"content_fingerprint": null
},
"en": {
"title": "ADU options for an existing multifamily property",
"summary": "An existing multifamily property may add detached ADUs and may convert non-living space inside the existing building.",
"highlights": {
"title": "Unit-count protections",
"items": [
{
"label": "Up to 8 detached ADUs",
"text": "The detached count can never exceed the number of existing homes on the lot."
},
{
"label": "Conversion ADUs",
"text": "At least one conversion ADU must be allowed, up to 25 percent of the existing home count."
},
{
"label": "Height",
"text": "Detached ADUs use the applicable 16-foot or 18-foot state height branch; they do not have a blanket 16-foot cap."
}
]
},
"next_steps": [
"Count the existing homes on the property.",
"Identify storage rooms, passageways, garages, or other non-living space proposed for conversion.",
"Show every proposed detached ADU on the site plan."
],
"confirm_with_staff": [
"How many detached ADUs does the existing home count support?",
"How many conversion ADUs does the 25-percent calculation support?",
"Which 16-foot or 18-foot height branch applies to each detached ADU?",
"What rental term longer than 30 days applies to these § 66323 units?"
]
},
"es": {
"title": "Opciones de ADU para una propiedad multifamiliar existente",
"summary": "Una propiedad multifamiliar existente puede añadir ADU separadas y convertir espacios no habitables dentro del edificio existente.",
"highlights": {
"title": "Protecciones sobre el número de unidades",
"items": [
{
"label": "Hasta 8 ADU separadas",
"text": "La cantidad nunca puede superar el número de viviendas existentes en el lote."
},
{
"label": "ADU por conversión",