forked from ChelseaKR/permit-bearings
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.json
More file actions
162 lines (162 loc) · 4.62 KB
/
Copy pathexample.json
File metadata and controls
162 lines (162 loc) · 4.62 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
[
{
"case_id": "adu-detached-basic",
"question": "I want to add a small backyard unit behind my house. What approval do I need?",
"intake": {
"project_type": "adu",
"has_primary_dwelling": true,
"jurisdiction": "example-city"
},
"expected_rule_ids": [
"adu-ministerial-review",
"adu-protected-minimum",
"adu-height-standards",
"adu-size-allowances",
"adu-parking-limits",
"adu-no-owner-occupancy-rental",
"adu-conversion-exemptions"
]
},
{
"case_id": "jadu-in-sfr",
"question": "Can I convert a bedroom in my house into a small separate unit?",
"intake": {
"project_type": "jadu",
"dwelling_type": "single_family",
"jurisdiction": "example-city"
},
"expected_rule_ids": [
"jadu-standards"
]
},
{
"case_id": "sb9-duplex-clean",
"question": "Can I build two units on my single-family lot?",
"intake": {
"project_type": "two_unit",
"zone_class": "single_family_residential",
"in_urbanized_area": true,
"demolishes_protected_housing": false,
"tenant_occupied_last_3_years": false,
"in_historic_district": false,
"on_protected_site": false,
"jurisdiction": "example-city"
},
"expected_rule_ids": [
"sb9-two-unit-ministerial",
"sb9-adu-interaction"
]
},
{
"case_id": "sb9-duplex-tenant-occupied",
"question": "Can I replace my rental house (tenants moved out last year) with a duplex under SB 9?",
"intake": {
"project_type": "two_unit",
"zone_class": "single_family_residential",
"in_urbanized_area": true,
"demolishes_protected_housing": false,
"tenant_occupied_last_3_years": true,
"in_historic_district": false,
"on_protected_site": false,
"jurisdiction": "example-city"
},
"expected_rule_ids": []
},
{
"case_id": "sb9-lot-split-clean",
"question": "Can I split my single-family lot into two parcels?",
"intake": {
"project_type": "lot_split",
"zone_class": "single_family_residential",
"in_urbanized_area": true,
"demolishes_protected_housing": false,
"tenant_occupied_last_3_years": false,
"in_historic_district": false,
"on_protected_site": false,
"parcel_created_by_sb9_split": false,
"jurisdiction": "example-city"
},
"expected_rule_ids": [
"sb9-urban-lot-split",
"sb9-adu-interaction"
]
},
{
"case_id": "davis-adu-local-layer",
"question": "What does Davis require for my backyard ADU?",
"intake": {
"project_type": "adu",
"has_primary_dwelling": true,
"jurisdiction": "davis"
},
"expected_rule_ids": [
"adu-ministerial-review",
"adu-protected-minimum",
"adu-height-standards",
"adu-size-allowances",
"adu-parking-limits",
"adu-no-owner-occupancy-rental",
"adu-conversion-exemptions",
"davis-local-adu-process"
]
},
{
"case_id": "woodland-adu-local-layer",
"question": "Is Woodland's ADU ordinance up to date with state law?",
"intake": {
"project_type": "adu",
"has_primary_dwelling": true,
"jurisdiction": "woodland"
},
"expected_rule_ids": [
"adu-ministerial-review",
"adu-protected-minimum",
"adu-height-standards",
"adu-size-allowances",
"adu-parking-limits",
"adu-no-owner-occupancy-rental",
"adu-conversion-exemptions",
"woodland-adu-ordinance-2026"
]
},
{
"case_id": "adu-multifamily-lot",
"question": "We own a small apartment building \u2014 can we add ADUs?",
"intake": {
"project_type": "adu",
"has_primary_dwelling": true,
"dwelling_type": "multifamily",
"jurisdiction": "example-city"
},
"expected_rule_ids": [
"adu-ministerial-review",
"adu-protected-minimum",
"adu-height-standards",
"adu-size-allowances",
"adu-parking-limits",
"adu-no-owner-occupancy-rental",
"adu-conversion-exemptions",
"adu-multifamily-66323"
]
},
{
"case_id": "adu-unpermitted-legalize",
"question": "My garage was converted to a unit years ago without permits. Can I make it legal?",
"intake": {
"project_type": "adu",
"has_primary_dwelling": true,
"unpermitted_existing": true,
"jurisdiction": "example-city"
},
"expected_rule_ids": [
"adu-ministerial-review",
"adu-protected-minimum",
"adu-height-standards",
"adu-size-allowances",
"adu-parking-limits",
"adu-no-owner-occupancy-rental",
"adu-conversion-exemptions",
"adu-unpermitted-legalization"
]
}
]