tas_spp_index.json 64 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241
  1. {
  2. "meta":{
  3. "version":"2025-08-27",
  4. "source":[
  5. {
  6. "title":"Tasmanian Planning Scheme Viewer (SPPs)",
  7. "url":"https://tpso.planning.tas.gov.au/tpso/external/planning-scheme-viewer/30"
  8. }
  9. ],
  10. "notes":"Purposes are concise paraphrases for downstream AI prompts. Detailed clause mappings will be added in later passes."
  11. },
  12. "tpso":{
  13. "base":"https://tpso.planning.tas.gov.au/tpso/external/planning-scheme-viewer/30/section/",
  14. "effectiveForDate":"2025-08-27",
  15. "map":{
  16. "ADMINISTRATION_INDEX":10,
  17. "GENERAL-PROVISIONS_INDEX":45,
  18. "ZONES_INDEX":61,
  19. "CODES_INDEX":394,
  20. "1.0":5,
  21. "1.1":6,
  22. "1.2":7,
  23. "2.0":8,
  24. "2.1":9,
  25. "3.0":11,
  26. "3.1":12,
  27. "4.0":18,
  28. "5.0":25,
  29. "5.1":26,
  30. "5.2":27,
  31. "5.3":28,
  32. "5.4":29,
  33. "5.5":30,
  34. "5.6":31,
  35. "6.0":32,
  36. "6.1":33,
  37. "6.2":34,
  38. "6.3":36,
  39. "6.4":37,
  40. "6.5":38,
  41. "6.6":39,
  42. "6.7":40,
  43. "6.8":41,
  44. "6.9":42,
  45. "6.10":43,
  46. "6.11":44,
  47. "7.0":46,
  48. "7.1":47,
  49. "7.2":48,
  50. "7.3":49,
  51. "7.4":50,
  52. "7.5":51,
  53. "7.6":52,
  54. "7.7":53,
  55. "7.8":54,
  56. "7.9":55,
  57. "7.10":56,
  58. "7.11":57,
  59. "7.12":58,
  60. "7.13":59,
  61. "7.14":60,
  62. "8.0":62,
  63. "8.1":63,
  64. "8.2":64,
  65. "8.3":65,
  66. "8.3.1":66,
  67. "8.3.2":67,
  68. "8.4":68,
  69. "8.4.1":69,
  70. "8.4.2":70,
  71. "8.4.3":71,
  72. "8.4.4":72,
  73. "8.4.5":73,
  74. "8.4.6":74,
  75. "8.4.7":75,
  76. "8.4.8":76,
  77. "8.5":77,
  78. "8.5.1":78,
  79. "8.5.2":79,
  80. "8.6":80,
  81. "8.6.1":81,
  82. "8.6.2":82,
  83. "8.6.3":83,
  84. "9.0":84,
  85. "9.1":85,
  86. "9.2":86,
  87. "9.3":87,
  88. "9.3.1":88,
  89. "9.3.2":89,
  90. "9.4":90,
  91. "9.4.1":91,
  92. "9.4.2":92,
  93. "9.4.3":93,
  94. "9.4.4":94,
  95. "9.4.5":95,
  96. "9.4.6":96,
  97. "9.4.7":97,
  98. "9.4.8":98,
  99. "9.5":99,
  100. "9.5.1":100,
  101. "9.5.2":101,
  102. "9.6":102,
  103. "9.6.1":103,
  104. "9.6.2":104,
  105. "9.6.3":105,
  106. "10.0":106,
  107. "10.1":107,
  108. "10.2":108,
  109. "10.3":109,
  110. "10.3.1":110,
  111. "10.3.2":111,
  112. "10.4":112,
  113. "10.4.1":113,
  114. "10.4.2":114,
  115. "10.4.3":115,
  116. "10.4.4":116,
  117. "10.4.5":117,
  118. "10.5":118,
  119. "10.5.1":119,
  120. "10.6":120,
  121. "10.6.1":121,
  122. "10.6.2":122,
  123. "10.6.3":123,
  124. "11.0":124,
  125. "11.1":125,
  126. "11.2":126,
  127. "11.3":127,
  128. "11.3.1":128,
  129. "11.3.2":129,
  130. "11.4":130,
  131. "11.4.1":131,
  132. "11.4.2":132,
  133. "11.5":133,
  134. "11.5.1":134,
  135. "11.5.2":136,
  136. "11.5.3":137,
  137. "12.0":138,
  138. "12.1":139,
  139. "12.2":140,
  140. "12.3":141,
  141. "12.3.1":142,
  142. "12.3.2":143,
  143. "12.4":144,
  144. "12.4.1":145,
  145. "12.4.2":146,
  146. "12.4.3":147,
  147. "12.4.4":148,
  148. "12.4.5":149,
  149. "12.4.6":150,
  150. "12.5":151,
  151. "12.5.1":152,
  152. "12.5.2":153,
  153. "12.5.3":154,
  154. "13.0":155,
  155. "13.1":156,
  156. "13.2":157,
  157. "13.3":158,
  158. "13.3.1":159,
  159. "13.3.2":160,
  160. "13.3.3":161,
  161. "13.4":162,
  162. "13.4.1":163,
  163. "13.4.2":164,
  164. "13.4.3":165,
  165. "13.4.4":166,
  166. "13.4.5":167,
  167. "13.4.6":168,
  168. "13.5":169,
  169. "13.5.1":170,
  170. "13.5.2":171,
  171. "14.0":172,
  172. "14.1":173,
  173. "14.2":174,
  174. "14.3":175,
  175. "14.3.1":176,
  176. "14.3.2":177,
  177. "14.3.3":178,
  178. "14.4":179,
  179. "14.4.1":180,
  180. "14.4.2":181,
  181. "14.4.3":182,
  182. "14.4.4":183,
  183. "14.4.5":184,
  184. "14.4.6":185,
  185. "14.5":186,
  186. "14.5.1":187,
  187. "14.5.2":188,
  188. "15.0":189,
  189. "15.1":190,
  190. "15.2":191,
  191. "15.3":192,
  192. "15.3.1":193,
  193. "15.3.2":194,
  194. "15.3.3":195,
  195. "15.4":196,
  196. "15.4.1":197,
  197. "15.4.2":198,
  198. "15.4.3":199,
  199. "15.4.4":200,
  200. "15.4.5":201,
  201. "15.4.6":202,
  202. "15.5":203,
  203. "15.5.1":204,
  204. "15.5.2":205,
  205. "16.0":206,
  206. "16.1":207,
  207. "16.2":208,
  208. "16.3":209,
  209. "16.3.1":210,
  210. "16.3.2":211,
  211. "16.4":212,
  212. "16.4.1":213,
  213. "16.4.2":214,
  214. "16.4.3":215,
  215. "16.4.4":216,
  216. "16.4.5":217,
  217. "16.4.6":218,
  218. "16.5":219,
  219. "16.5.1":220,
  220. "16.5.2":221,
  221. "17.0":222,
  222. "17.1":223,
  223. "17.2":224,
  224. "17.3":225,
  225. "17.3.1":226,
  226. "17.3.2":227,
  227. "17.3.3":228,
  228. "17.4":229,
  229. "17.4.1":230,
  230. "17.4.2":231,
  231. "17.4.3":232,
  232. "17.4.4":233,
  233. "17.4.5":234,
  234. "17.4.6":235,
  235. "17.5":236,
  236. "17.5.1":237,
  237. "17.5.2":238,
  238. "18.0":239,
  239. "18.1":240,
  240. "18.2":241,
  241. "18.3":242,
  242. "18.3.1":243,
  243. "18.3.2":244,
  244. "18.4":245,
  245. "18.4.1":246,
  246. "18.4.2":247,
  247. "18.4.3":248,
  248. "18.4.4":249,
  249. "18.4.5":250,
  250. "18.5":251,
  251. "18.5.1":252,
  252. "18.5.2":253,
  253. "19.0":254,
  254. "19.1":255,
  255. "19.2":256,
  256. "19.3":257,
  257. "19.3.1":258,
  258. "19.4":259,
  259. "19.4.1":260,
  260. "19.4.2":261,
  261. "19.4.3":262,
  262. "19.5":263,
  263. "19.5.1":264,
  264. "19.5.2":265,
  265. "20.0":266,
  266. "20.1":267,
  267. "20.2":268,
  268. "20.3":269,
  269. "20.3.1":270,
  270. "20.4":271,
  271. "20.4.1":272,
  272. "20.4.2":273,
  273. "20.4.3":274,
  274. "20.5":275,
  275. "20.5.1":276,
  276. "21.0":277,
  277. "21.1":278,
  278. "21.2":279,
  279. "21.3":280,
  280. "21.3.1":281,
  281. "21.4":282,
  282. "21.4.1":283,
  283. "21.4.2":284,
  284. "21.4.3":285,
  285. "21.5":286,
  286. "21.5.1":287,
  287. "22.0":288,
  288. "22.1":289,
  289. "22.2":290,
  290. "22.3":291,
  291. "22.3.1":292,
  292. "22.3.2":293,
  293. "22.3.3":294,
  294. "22.4":295,
  295. "22.4.1":296,
  296. "22.4.2":297,
  297. "22.4.3":298,
  298. "22.4.4":299,
  299. "22.5":300,
  300. "22.5.1":301,
  301. "23.0":302,
  302. "23.1":303,
  303. "23.2":304,
  304. "23.3":305,
  305. "23.3.1":306,
  306. "23.4":307,
  307. "23.4.1":308,
  308. "23.4.2":309,
  309. "23.4.3":310,
  310. "23.4.4":311,
  311. "23.5":312,
  312. "23.5.1":313,
  313. "23.5.2":314,
  314. "24.0":315,
  315. "24.1":316,
  316. "24.2":317,
  317. "24.3":318,
  318. "24.3.1":319,
  319. "24.3.2":320,
  320. "24.4":321,
  321. "24.4.1":322,
  322. "24.4.2":323,
  323. "24.5":324,
  324. "24.5.1":325,
  325. "24.5.2":326,
  326. "25.0":327,
  327. "25.1":328,
  328. "25.2":329,
  329. "25.3":330,
  330. "25.4":331,
  331. "25.4.1":332,
  332. "25.5":333,
  333. "25.5.1":334,
  334. "25.5.2":335,
  335. "26.0":336,
  336. "26.1":337,
  337. "26.2":338,
  338. "26.3":339,
  339. "26.3.1":340,
  340. "26.3.2":341,
  341. "26.4":342,
  342. "26.4.1":343,
  343. "26.4.2":344,
  344. "26.4.3":345,
  345. "26.4.4":346,
  346. "26.5":347,
  347. "26.5.1":348,
  348. "26.5.2":349,
  349. "27.0":350,
  350. "27.1":351,
  351. "27.2":352,
  352. "27.3":353,
  353. "27.3.1":354,
  354. "27.4":355,
  355. "27.4.1":356,
  356. "27.4.2":357,
  357. "27.4.3":358,
  358. "27.4.4":359,
  359. "27.5":360,
  360. "27.5.1":361,
  361. "27.5.2":362,
  362. "28.0":363,
  363. "28.1":364,
  364. "28.2":365,
  365. "28.3":366,
  366. "28.3.1":367,
  367. "28.3.2":368,
  368. "28.4":369,
  369. "28.4.1":370,
  370. "28.4.2":371,
  371. "28.5":372,
  372. "28.5.1":373,
  373. "28.5.2":374,
  374. "29.0":375,
  375. "29.1":376,
  376. "29.2":377,
  377. "29.3":378,
  378. "29.3.1":379,
  379. "29.4":380,
  380. "29.4.1":381,
  381. "29.4.2":382,
  382. "29.5":383,
  383. "29.5.1":384,
  384. "30.0":385,
  385. "30.1":386,
  386. "30.2":387,
  387. "30.3":388,
  388. "30.4":389,
  389. "30.4.1":390,
  390. "30.4.2":391,
  391. "30.5":392,
  392. "30.5.1":393
  393. }
  394. },
  395. "codesTree":[
  396. {
  397. "id":395,
  398. "title":"C1.0 Signs Code",
  399. "children":[
  400. {
  401. "id":396,
  402. "title":"C1.1 Code Purpose"
  403. },
  404. {
  405. "id":397,
  406. "title":"C1.2 Application of this Code"
  407. },
  408. {
  409. "id":398,
  410. "title":"C1.3 Definition of Terms",
  411. "children":[
  412. {
  413. "id":399,
  414. "title":"Table C1.3 Sign Type Definitions"
  415. }
  416. ]
  417. },
  418. {
  419. "id":400,
  420. "title":"C1.4 Development Exempt from this Code",
  421. "children":[
  422. {
  423. "id":401,
  424. "title":"Table C1.4 Exempt Signs"
  425. }
  426. ]
  427. },
  428. {
  429. "id":402,
  430. "title":"C1.5 Use Standards"
  431. },
  432. {
  433. "id":403,
  434. "title":"C1.6 Development Standards for Buildings and Works",
  435. "children":[
  436. {
  437. "id":404,
  438. "title":"C1.6.1 Design and siting of signs"
  439. },
  440. {
  441. "id":405,
  442. "title":"C1.6.2 Illuminated signs"
  443. },
  444. {
  445. "id":406,
  446. "title":"C1.6.3 Third party sign"
  447. },
  448. {
  449. "id":407,
  450. "title":"C1.6.4 Signs on local heritage places and in local heritage precincts and local historic landscape precincts"
  451. }
  452. ]
  453. },
  454. {
  455. "id":408,
  456. "title":"Table C1.6 Sign Standards",
  457. "children":[
  458. {
  459. "id":409,
  460. "title":"Table C1.6 Sign Standards (A-B)"
  461. },
  462. {
  463. "id":410,
  464. "title":"Table C1.6 Sign Standards (C-L)"
  465. },
  466. {
  467. "id":411,
  468. "title":"Table C1.6 Sign Standards (M-Q)"
  469. },
  470. {
  471. "id":412,
  472. "title":"Table C1.6 Sign Standards (R-Z)"
  473. }
  474. ]
  475. }
  476. ]
  477. },
  478. {
  479. "id":413,
  480. "title":"C2.0 Parking and Sustainable Transport Code",
  481. "children":[
  482. {
  483. "id":414,
  484. "title":"C2.1 Code Purpose"
  485. },
  486. {
  487. "id":415,
  488. "title":"C2.2 Application of this Code"
  489. },
  490. {
  491. "id":416,
  492. "title":"C2.3 Definition of Terms"
  493. },
  494. {
  495. "id":417,
  496. "title":"C2.4 Use or Development Exempt from this Code"
  497. },
  498. {
  499. "id":418,
  500. "title":"C2.5 Use Standards",
  501. "children":[
  502. {
  503. "id":419,
  504. "title":"C2.5.1 Car parking numbers"
  505. },
  506. {
  507. "id":420,
  508. "title":"C2.5.2 Bicycle parking numbers"
  509. },
  510. {
  511. "id":421,
  512. "title":"C2.5.3 Motorcycle parking numbers"
  513. },
  514. {
  515. "id":422,
  516. "title":"C2.5.4 Loading bays"
  517. },
  518. {
  519. "id":423,
  520. "title":"C2.5.5 Number of car parking spaces within the General Residential Zone and Inner Residential Zone"
  521. }
  522. ]
  523. },
  524. {
  525. "id":424,
  526. "title":"C2.6 Development Standards for Buildings and Works",
  527. "children":[
  528. {
  529. "id":425,
  530. "title":"C2.6.1 Construction of parking areas"
  531. },
  532. {
  533. "id":426,
  534. "title":"C2.6.2 Design and layout of parking areas"
  535. },
  536. {
  537. "id":427,
  538. "title":"C2.6.3 Number of accesses for vehicles"
  539. },
  540. {
  541. "id":428,
  542. "title":"C2.6.4 Lighting of parking areas within the General Business Zone and Central Business Zone"
  543. },
  544. {
  545. "id":429,
  546. "title":"C2.6.5 Pedestrian access"
  547. },
  548. {
  549. "id":430,
  550. "title":"C2.6.6 Loading bays"
  551. },
  552. {
  553. "id":431,
  554. "title":"C2.6.7 Bicycle parking and storage facilities within the General Business Zone and Central Business Zone"
  555. },
  556. {
  557. "id":432,
  558. "title":"C2.6.8 Siting of parking and turning areas"
  559. }
  560. ]
  561. },
  562. {
  563. "id":433,
  564. "title":"C2.7 Parking Precinct Plan",
  565. "children":[
  566. {
  567. "id":4664,
  568. "title":"C2.7.1 Parking precinct plan"
  569. }
  570. ]
  571. },
  572. {
  573. "id":435,
  574. "title":"Table C2.1 Parking Space Requirements"
  575. },
  576. {
  577. "id":436,
  578. "title":"Table C2.2 Internal Access Way Widths for Vehicles"
  579. },
  580. {
  581. "id":437,
  582. "title":"Table C2.3 Dimensions of Car Parking Spaces and Combined Access and Manoeuvring Space Adjacent to Parking Spaces"
  583. },
  584. {
  585. "id":438,
  586. "title":"Table C2.4 Motorcycle Parking Space Requirements"
  587. }
  588. ]
  589. },
  590. {
  591. "id":439,
  592. "title":"C3.0 Road and Railway Assets Code",
  593. "children":[
  594. {
  595. "id":440,
  596. "title":"C3.1 Code Purpose"
  597. },
  598. {
  599. "id":441,
  600. "title":"C3.2 Application of this Code"
  601. },
  602. {
  603. "id":442,
  604. "title":"C3.3 Definition of Terms"
  605. },
  606. {
  607. "id":443,
  608. "title":"C3.4 Use or Development Exempt from this Code"
  609. },
  610. {
  611. "id":444,
  612. "title":"C3.5 Use Standards",
  613. "children":[
  614. {
  615. "id":445,
  616. "title":"C3.5.1 Traffic generation at a vehicle crossing, level crossing or new junction"
  617. },
  618. {
  619. "id":446,
  620. "title":"Table C3.1 Acceptable increase in annual average daily traffic to and from the site (total of ingress and egress)"
  621. }
  622. ]
  623. },
  624. {
  625. "id":447,
  626. "title":"C3.6 Development Standards for Buildings or Works",
  627. "children":[
  628. {
  629. "id":448,
  630. "title":"C3.6.1 Habitable buildings for sensitive uses within a road or railway attenuation area"
  631. },
  632. {
  633. "id":449,
  634. "title":"Table C3.2 Acceptable noise levels within a road or railway attenuation area"
  635. }
  636. ]
  637. },
  638. {
  639. "id":450,
  640. "title":"C3.7 Development Standards for Subdivision",
  641. "children":[
  642. {
  643. "id":451,
  644. "title":"C3.7.1 Subdivision for sensitive uses within a road or railway attenuation area"
  645. }
  646. ]
  647. }
  648. ]
  649. },
  650. {
  651. "id":452,
  652. "title":"C4.0 Electricity Transmission Infrastructure Protection Code",
  653. "children":[
  654. {
  655. "id":453,
  656. "title":"C4.1 Code Purpose"
  657. },
  658. {
  659. "id":454,
  660. "title":"C4.2 Application of this Code"
  661. },
  662. {
  663. "id":455,
  664. "title":"C4.3 Definition of Terms"
  665. },
  666. {
  667. "id":456,
  668. "title":"C4.4 Use or Development Exempt from this Code"
  669. },
  670. {
  671. "id":457,
  672. "title":"C4.5 Use Standards",
  673. "children":[
  674. {
  675. "id":458,
  676. "title":"C4.5.1 Sensitive use within a substation facility buffer area"
  677. },
  678. {
  679. "id":459,
  680. "title":"C4.5.2 Dust or other airborne particulates within an electricity transmission corridor"
  681. },
  682. {
  683. "id":460,
  684. "title":"C4.5.3 Dust or other airborne particulates within a substation facility buffer area"
  685. }
  686. ]
  687. },
  688. {
  689. "id":461,
  690. "title":"Table C4.1 Uses with the Potential to Create Dust or Other Airborne Particulates"
  691. },
  692. {
  693. "id":462,
  694. "title":"C4.6 Development Standards for Buildings or Works",
  695. "children":[
  696. {
  697. "id":463,
  698. "title":"C4.6.1 Buildings or works within an electricity transmission corridor"
  699. },
  700. {
  701. "id":464,
  702. "title":"C4.6.2 Buildings or works within a substation facility buffer area"
  703. },
  704. {
  705. "id":465,
  706. "title":"C4.6.3 Buildings or works within a communications station buffer area"
  707. }
  708. ]
  709. },
  710. {
  711. "id":466,
  712. "title":"C4.7 Development Standards for Subdivision",
  713. "children":[
  714. {
  715. "id":467,
  716. "title":"C4.7.1 Subdivision"
  717. }
  718. ]
  719. }
  720. ]
  721. },
  722. {
  723. "id":468,
  724. "title":"C5.0 Telecommunications Code",
  725. "children":[
  726. {
  727. "id":469,
  728. "title":"C5.1 Code Purpose"
  729. },
  730. {
  731. "id":470,
  732. "title":"C5.2 Application of this Code"
  733. },
  734. {
  735. "id":471,
  736. "title":"C5.3 Definition of Terms"
  737. },
  738. {
  739. "id":472,
  740. "title":"C5.4 Use or Development Exempt from this Code"
  741. },
  742. {
  743. "id":473,
  744. "title":"C5.5 Use Standards"
  745. },
  746. {
  747. "id":474,
  748. "title":"C5.6 Development Standards for Buildings and Works",
  749. "children":[
  750. {
  751. "id":475,
  752. "title":"C5.6.1 Visual amenity"
  753. }
  754. ]
  755. }
  756. ]
  757. },
  758. {
  759. "id":476,
  760. "title":"C6.0 Local Historic Heritage Code",
  761. "children":[
  762. {
  763. "id":477,
  764. "title":"C6.1 Code Purpose"
  765. },
  766. {
  767. "id":478,
  768. "title":"C6.2 Application of this Code"
  769. },
  770. {
  771. "id":479,
  772. "title":"C6.3 Definition of Terms"
  773. },
  774. {
  775. "id":480,
  776. "title":"C6.4 Development Exempt from this Code",
  777. "children":[
  778. {
  779. "id":481,
  780. "title":"Table C6.4.1 Exempt development"
  781. }
  782. ]
  783. },
  784. {
  785. "id":482,
  786. "title":"C6.5 Use Standards"
  787. },
  788. {
  789. "id":483,
  790. "title":"C6.6 Development Standards for Local Heritage Places",
  791. "children":[
  792. {
  793. "id":484,
  794. "title":"C6.6.1 Demolition"
  795. },
  796. {
  797. "id":485,
  798. "title":"C6.6.2 Site coverage"
  799. },
  800. {
  801. "id":486,
  802. "title":"C6.6.3 Height and bulk of buildings"
  803. },
  804. {
  805. "id":487,
  806. "title":"C6.6.4 Siting of buildings and structures"
  807. },
  808. {
  809. "id":488,
  810. "title":"C6.6.5 Fences"
  811. },
  812. {
  813. "id":489,
  814. "title":"C6.6.6 Roof form and materials"
  815. },
  816. {
  817. "id":490,
  818. "title":"C6.6.7 Building alterations, excluding roof form and materials"
  819. },
  820. {
  821. "id":491,
  822. "title":"C6.6.8 Outbuildings and structures"
  823. },
  824. {
  825. "id":492,
  826. "title":"C6.6.9 Driveways and parking for non-residential purposes"
  827. },
  828. {
  829. "id":493,
  830. "title":"C6.6.10 Removal, destruction or lopping of trees, or removal of vegetation, that is specifically part of a local heritage place"
  831. }
  832. ]
  833. },
  834. {
  835. "id":494,
  836. "title":"C6.7 Development Standards for Local Heritage Precincts and Local Historic Landscape Precincts",
  837. "children":[
  838. {
  839. "id":495,
  840. "title":"C6.7.1 Demolition within a local heritage precinct"
  841. },
  842. {
  843. "id":496,
  844. "title":"C6.7.2 Demolition within a local historic landscape precinct"
  845. },
  846. {
  847. "id":497,
  848. "title":"C6.7.3 Buildings and works, excluding demolition"
  849. }
  850. ]
  851. },
  852. {
  853. "id":498,
  854. "title":"C6.8 Development Standards for Places or Precincts of Archaeological Potential",
  855. "children":[
  856. {
  857. "id":499,
  858. "title":"C6.8.1 Building and works"
  859. }
  860. ]
  861. },
  862. {
  863. "id":500,
  864. "title":"C6.9 Significant Trees",
  865. "children":[
  866. {
  867. "id":4669,
  868. "title":"C6.9.1 Significant trees"
  869. }
  870. ]
  871. },
  872. {
  873. "id":502,
  874. "title":"C6.10 Development Standards for Subdivision",
  875. "children":[
  876. {
  877. "id":503,
  878. "title":"C6.10.1 Lot design on a Local Heritage Place"
  879. },
  880. {
  881. "id":504,
  882. "title":"C6.10.2 Lot design for a Local Heritage Precinct or a Local Historic Landscape Precinct"
  883. },
  884. {
  885. "id":505,
  886. "title":"C6.10.3 Subdivision works for places or precincts of archaeological potential"
  887. }
  888. ]
  889. }
  890. ]
  891. },
  892. {
  893. "id":506,
  894. "title":"C7.0 Natural Assets Code",
  895. "children":[
  896. {
  897. "id":507,
  898. "title":"C7.1 Code Purpose"
  899. },
  900. {
  901. "id":508,
  902. "title":"C7.2 Application of this Code"
  903. },
  904. {
  905. "id":509,
  906. "title":"C7.3 Definition of Terms",
  907. "children":[
  908. {
  909. "id":4676,
  910. "title":"Table C7.3 Spatial Extent of Waterway and Coastal Protection Areas"
  911. }
  912. ]
  913. },
  914. {
  915. "id":511,
  916. "title":"C7.4 Use or Development Exempt from this Code"
  917. },
  918. {
  919. "id":512,
  920. "title":"C7.5 Use Standards"
  921. },
  922. {
  923. "id":513,
  924. "title":"C7.6 Development Standards for Buildings and Works",
  925. "children":[
  926. {
  927. "id":514,
  928. "title":"C7.6.1 Buildings and works within a waterway and coastal protection area or a future coastal refugia area"
  929. },
  930. {
  931. "id":515,
  932. "title":"C7.6.2 Clearance within a priority vegetation area"
  933. }
  934. ]
  935. },
  936. {
  937. "id":516,
  938. "title":"C7.7 Development Standards for Subdivision",
  939. "children":[
  940. {
  941. "id":517,
  942. "title":"C7.7.1 Subdivision within a waterway and coastal protection area or a future coastal refugia area"
  943. },
  944. {
  945. "id":518,
  946. "title":"C7.7.2 Subdivision within a priority vegetation area"
  947. }
  948. ]
  949. }
  950. ]
  951. },
  952. {
  953. "id":519,
  954. "title":"C8.0 Scenic Protection Code",
  955. "children":[
  956. {
  957. "id":520,
  958. "title":"C8.1 Code Purpose"
  959. },
  960. {
  961. "id":521,
  962. "title":"C8.2 Application of this Code"
  963. },
  964. {
  965. "id":522,
  966. "title":"C8.3 Definition of Terms"
  967. },
  968. {
  969. "id":523,
  970. "title":"C8.4 Use or Development Exempt from this Code"
  971. },
  972. {
  973. "id":524,
  974. "title":"C8.5 Use Standards"
  975. },
  976. {
  977. "id":525,
  978. "title":"C8.6 Development Standards for Buildings and Works",
  979. "children":[
  980. {
  981. "id":526,
  982. "title":"C8.6.1 Development within a scenic protection area"
  983. },
  984. {
  985. "id":527,
  986. "title":"C8.6.2 Development within a scenic road corridor"
  987. }
  988. ]
  989. }
  990. ]
  991. },
  992. {
  993. "id":528,
  994. "title":"C9.0 Attenuation Code",
  995. "children":[
  996. {
  997. "id":529,
  998. "title":"C9.1 Code Purpose"
  999. },
  1000. {
  1001. "id":530,
  1002. "title":"C9.2 Application of this Code"
  1003. },
  1004. {
  1005. "id":531,
  1006. "title":"C9.3 Definition of Terms"
  1007. },
  1008. {
  1009. "id":532,
  1010. "title":"C9.4 Use or Development Exempt from this Code"
  1011. },
  1012. {
  1013. "id":533,
  1014. "title":"C9.5 Use Standards",
  1015. "children":[
  1016. {
  1017. "id":534,
  1018. "title":"C9.5.1 Activities with potential to cause emissions"
  1019. },
  1020. {
  1021. "id":535,
  1022. "title":"C9.5.2 Sensitive use within an attenuation area"
  1023. }
  1024. ]
  1025. },
  1026. {
  1027. "id":536,
  1028. "title":"C9.6 Development Standards for Subdivision",
  1029. "children":[
  1030. {
  1031. "id":537,
  1032. "title":"C9.6.1 Lot design"
  1033. }
  1034. ]
  1035. },
  1036. {
  1037. "id":538,
  1038. "title":"Table C9.1 Attenuation Distances",
  1039. "children":[
  1040. {
  1041. "id":539,
  1042. "title":"Table C9.1 Attenuation Distances (A-B)"
  1043. },
  1044. {
  1045. "id":540,
  1046. "title":"Table C9.1 Attenuation Distances (C-L)"
  1047. },
  1048. {
  1049. "id":541,
  1050. "title":"Table C9.1 Attenuation Distances (M-Q)"
  1051. },
  1052. {
  1053. "id":542,
  1054. "title":"Table C9.1 Attenuation Distances (R-Z)"
  1055. }
  1056. ]
  1057. },
  1058. {
  1059. "id":543,
  1060. "title":"Table C9.2 Attenuation Distances for Sewage Treatment Plant Processes"
  1061. }
  1062. ]
  1063. },
  1064. {
  1065. "id":544,
  1066. "title":"C10.0 Coastal Erosion Hazard Code",
  1067. "children":[
  1068. {
  1069. "id":545,
  1070. "title":"C10.1 Code Purpose"
  1071. },
  1072. {
  1073. "id":546,
  1074. "title":"C10.2 Application of this Code"
  1075. },
  1076. {
  1077. "id":547,
  1078. "title":"C10.3 Definition of Terms"
  1079. },
  1080. {
  1081. "id":548,
  1082. "title":"C10.4 Use or Development Exempt from this Code"
  1083. },
  1084. {
  1085. "id":549,
  1086. "title":"C10.5 Use Standards",
  1087. "children":[
  1088. {
  1089. "id":550,
  1090. "title":"C10.5.1 Use within a high coastal erosion hazard band"
  1091. },
  1092. {
  1093. "id":551,
  1094. "title":"C10.5.2 Uses located within a non-urban zone and within a low or medium coastal erosion hazard band"
  1095. },
  1096. {
  1097. "id":552,
  1098. "title":"C10.5.3 Critical use, hazardous use or vulnerable use"
  1099. },
  1100. {
  1101. "id":553,
  1102. "title":"C10.5.4 Uses located within a coastal erosion investigation area"
  1103. }
  1104. ]
  1105. },
  1106. {
  1107. "id":554,
  1108. "title":"C10.6 Development Standards for Buildings and Works",
  1109. "children":[
  1110. {
  1111. "id":555,
  1112. "title":"C10.6.1 Buildings and works, excluding coastal protection works, within a coastal erosion hazard area"
  1113. },
  1114. {
  1115. "id":556,
  1116. "title":"C10.6.2 Coastal protection works within a coastal erosion hazard area"
  1117. },
  1118. {
  1119. "id":557,
  1120. "title":"C10.6.3 Buildings and works located within a coastal erosion investigation area"
  1121. }
  1122. ]
  1123. },
  1124. {
  1125. "id":558,
  1126. "title":"C10.7 Development Standards for Subdivision",
  1127. "children":[
  1128. {
  1129. "id":559,
  1130. "title":"C10.7.1 Subdivision within a coastal erosion hazard area"
  1131. }
  1132. ]
  1133. }
  1134. ]
  1135. },
  1136. {
  1137. "id":560,
  1138. "title":"C11.0 Coastal Inundation Hazard Code",
  1139. "children":[
  1140. {
  1141. "id":561,
  1142. "title":"C11.1 Code Purpose"
  1143. },
  1144. {
  1145. "id":562,
  1146. "title":"C11.2 Application of this Code"
  1147. },
  1148. {
  1149. "id":563,
  1150. "title":"C11.3 Definition of Terms"
  1151. },
  1152. {
  1153. "id":564,
  1154. "title":"C11.4 Use or Development Exempt from this Code"
  1155. },
  1156. {
  1157. "id":565,
  1158. "title":"C11.5 Use Standards",
  1159. "children":[
  1160. {
  1161. "id":566,
  1162. "title":"C11.5.1 Uses within a high coastal inundation hazard band"
  1163. },
  1164. {
  1165. "id":567,
  1166. "title":"C11.5.2 Uses located within a non-urban zone and within a medium coastal inundation hazard band"
  1167. },
  1168. {
  1169. "id":568,
  1170. "title":"C11.5.3 Uses located within a non-urban zone and within a low coastal inundation hazard band"
  1171. },
  1172. {
  1173. "id":569,
  1174. "title":"C11.5.4 Critical use, hazardous use or vulnerable use"
  1175. }
  1176. ]
  1177. },
  1178. {
  1179. "id":570,
  1180. "title":"C11.6 Development Standards for Buildings and Works",
  1181. "children":[
  1182. {
  1183. "id":571,
  1184. "title":"C11.6.1 Buildings and works, excluding coastal protection works, within a coastal inundation hazard area"
  1185. },
  1186. {
  1187. "id":572,
  1188. "title":"C11.6.2 Coastal protection works within a coastal inundation hazard area"
  1189. }
  1190. ]
  1191. },
  1192. {
  1193. "id":573,
  1194. "title":"C11.7 Development Standards for Subdivision",
  1195. "children":[
  1196. {
  1197. "id":574,
  1198. "title":"C11.7.1 Subdivision within a coastal inundation hazard area"
  1199. }
  1200. ]
  1201. }
  1202. ]
  1203. },
  1204. {
  1205. "id":575,
  1206. "title":"C12.0 Flood-Prone Areas Hazard Code",
  1207. "children":[
  1208. {
  1209. "id":576,
  1210. "title":"C12.1 Code Purpose"
  1211. },
  1212. {
  1213. "id":577,
  1214. "title":"C12.2 Application of this Code"
  1215. },
  1216. {
  1217. "id":578,
  1218. "title":"C12.3 Definition of Terms"
  1219. },
  1220. {
  1221. "id":579,
  1222. "title":"C12.4 Use or Development Exempt from this Code"
  1223. },
  1224. {
  1225. "id":580,
  1226. "title":"C12.5 Use Standards",
  1227. "children":[
  1228. {
  1229. "id":581,
  1230. "title":"C12.5.1 Uses within a flood-prone hazard area"
  1231. },
  1232. {
  1233. "id":582,
  1234. "title":"C12.5.2 Critical use, hazardous use or vulnerable use"
  1235. }
  1236. ]
  1237. },
  1238. {
  1239. "id":583,
  1240. "title":"C12.6 Development Standards for Buildings and Works",
  1241. "children":[
  1242. {
  1243. "id":584,
  1244. "title":"C12.6.1 Buildings and works within a flood-prone hazard area"
  1245. }
  1246. ]
  1247. },
  1248. {
  1249. "id":585,
  1250. "title":"C12.7 Development Standards for Subdivision",
  1251. "children":[
  1252. {
  1253. "id":586,
  1254. "title":"C12.7.1 Subdivision within a flood-prone hazard area"
  1255. }
  1256. ]
  1257. }
  1258. ]
  1259. },
  1260. {
  1261. "id":587,
  1262. "title":"C13.0 Bushfire-Prone Areas Code",
  1263. "children":[
  1264. {
  1265. "id":588,
  1266. "title":"C13.1 Code Purpose"
  1267. },
  1268. {
  1269. "id":589,
  1270. "title":"C13.2 Application of this Code"
  1271. },
  1272. {
  1273. "id":590,
  1274. "title":"C13.3 Definition of terms"
  1275. },
  1276. {
  1277. "id":591,
  1278. "title":"C13.4 Use or Development Exempt from this Code"
  1279. },
  1280. {
  1281. "id":592,
  1282. "title":"C13.5 Use Standards",
  1283. "children":[
  1284. {
  1285. "id":593,
  1286. "title":"C13.5.1 Vulnerable uses"
  1287. },
  1288. {
  1289. "id":594,
  1290. "title":"C13.5.2 Hazardous uses"
  1291. }
  1292. ]
  1293. },
  1294. {
  1295. "id":595,
  1296. "title":"C13.6 Development Standards for Subdivision",
  1297. "children":[
  1298. {
  1299. "id":596,
  1300. "title":"C13.6.1 Provision of hazard management areas"
  1301. },
  1302. {
  1303. "id":597,
  1304. "title":"C13.6.2 Public and fire fighting access",
  1305. "children":[
  1306. {
  1307. "id":598,
  1308. "title":"Table C13.1: Standards for roads"
  1309. },
  1310. {
  1311. "id":599,
  1312. "title":"Table C13.2: Standards for property access"
  1313. },
  1314. {
  1315. "id":600,
  1316. "title":"Table C13.3: Standards for fire trails"
  1317. }
  1318. ]
  1319. },
  1320. {
  1321. "id":601,
  1322. "title":"C13.6.3 Provision of water supply for fire fighting purposes",
  1323. "children":[
  1324. {
  1325. "id":602,
  1326. "title":"Table C13.4: Reticulated Water Supply for Fire Fighting"
  1327. },
  1328. {
  1329. "id":603,
  1330. "title":"Table C13.5: Static Water Supply for Fire Fighting"
  1331. }
  1332. ]
  1333. }
  1334. ]
  1335. }
  1336. ]
  1337. },
  1338. {
  1339. "id":604,
  1340. "title":"C14.0 Potentially Contaminated Land Code",
  1341. "children":[
  1342. {
  1343. "id":605,
  1344. "title":"C14.1 Purpose of the Potentially Contaminated Land Code"
  1345. },
  1346. {
  1347. "id":606,
  1348. "title":"C14.2 Application of this Code"
  1349. },
  1350. {
  1351. "id":616,
  1352. "title":"Table C14.1 Specified Use"
  1353. },
  1354. {
  1355. "id":607,
  1356. "title":"C14.3 Definition of Terms"
  1357. },
  1358. {
  1359. "id":608,
  1360. "title":"C14.4 Use or Development Exempt from this Code"
  1361. },
  1362. {
  1363. "id":609,
  1364. "title":"C14.5 Use Standards",
  1365. "children":[
  1366. {
  1367. "id":610,
  1368. "title":"C14.5.1 Suitability for intended use"
  1369. }
  1370. ]
  1371. },
  1372. {
  1373. "id":611,
  1374. "title":"C14.6 Development Standards for Building and Works",
  1375. "children":[
  1376. {
  1377. "id":612,
  1378. "title":"C14.6.1 Excavation works, excluding land subject to the Macquarie Point Development Corporation Act 2012"
  1379. },
  1380. {
  1381. "id":613,
  1382. "title":"C14.6.2 Redevelopment on land subject to the Macquarie Point Development Corporation Act 2012"
  1383. }
  1384. ]
  1385. },
  1386. {
  1387. "id":614,
  1388. "title":"C14.7 Development Standards for Subdivision",
  1389. "children":[
  1390. {
  1391. "id":615,
  1392. "title":"C14.7.1 Subdivision for sensitive use"
  1393. }
  1394. ]
  1395. },
  1396. {
  1397. "id":617,
  1398. "title":"Table C14.2 Potentially Contaminating Activities"
  1399. }
  1400. ]
  1401. },
  1402. {
  1403. "id":618,
  1404. "title":"C15.0 Landslip Hazard Code",
  1405. "children":[
  1406. {
  1407. "id":619,
  1408. "title":"C15.1 Code Purpose"
  1409. },
  1410. {
  1411. "id":620,
  1412. "title":"C15.2 Application of this Code"
  1413. },
  1414. {
  1415. "id":621,
  1416. "title":"C15.3 Definition of Terms"
  1417. },
  1418. {
  1419. "id":622,
  1420. "title":"C15.4 Use or Development Exempt from this Code"
  1421. },
  1422. {
  1423. "id":623,
  1424. "title":"C15.5 Use Standards",
  1425. "children":[
  1426. {
  1427. "id":624,
  1428. "title":"C15.5.1 Use within a landslip hazard area"
  1429. }
  1430. ]
  1431. },
  1432. {
  1433. "id":625,
  1434. "title":"C15.6 Development Standards for Buildings and Works",
  1435. "children":[
  1436. {
  1437. "id":626,
  1438. "title":"C15.6.1 Building and works within a landslip hazard area"
  1439. }
  1440. ]
  1441. },
  1442. {
  1443. "id":627,
  1444. "title":"C15.7 Development Standards for Subdivision",
  1445. "children":[
  1446. {
  1447. "id":628,
  1448. "title":"C15.7.1 Subdivision within a landslip hazard area"
  1449. }
  1450. ]
  1451. }
  1452. ]
  1453. },
  1454. {
  1455. "id":629,
  1456. "title":"C16.0 Safeguarding of Airports Code",
  1457. "children":[
  1458. {
  1459. "id":630,
  1460. "title":"C16.1 Code Purpose"
  1461. },
  1462. {
  1463. "id":631,
  1464. "title":"C16.2 Application of this Code"
  1465. },
  1466. {
  1467. "id":632,
  1468. "title":"C16.3 Definition of Terms"
  1469. },
  1470. {
  1471. "id":633,
  1472. "title":"C16.4 Use or Development Exempt from this Code"
  1473. },
  1474. {
  1475. "id":634,
  1476. "title":"C16.5 Use Standards",
  1477. "children":[
  1478. {
  1479. "id":635,
  1480. "title":"C16.5.1 Sensitive use within an airport noise exposure area"
  1481. }
  1482. ]
  1483. },
  1484. {
  1485. "id":636,
  1486. "title":"C16.6 Development Standards for Buildings and Works",
  1487. "children":[
  1488. {
  1489. "id":637,
  1490. "title":"C16.6.1 Buildings and works within an airport obstacle limitation area"
  1491. }
  1492. ]
  1493. },
  1494. {
  1495. "id":638,
  1496. "title":"C16.7 Development Standards for Subdivision",
  1497. "children":[
  1498. {
  1499. "id":639,
  1500. "title":"C16.7.1 Subdivision"
  1501. }
  1502. ]
  1503. }
  1504. ]
  1505. }
  1506. ],
  1507. "zones":[
  1508. {
  1509. "name":"General Residential Zone",
  1510. "doc_section":"8.0",
  1511. "key_clauses":{
  1512. "purpose":"8.1",
  1513. "use_table":"8.2",
  1514. "use_standards":"8.3",
  1515. "dev_standards_dwellings":"8.4",
  1516. "dev_standards_non_dwellings":"8.5",
  1517. "subdivision":"8.6"
  1518. }
  1519. },
  1520. {
  1521. "name":"Inner Residential Zone",
  1522. "doc_section":"9.0",
  1523. "key_clauses":{
  1524. "purpose":"9.1",
  1525. "use_table":"9.2",
  1526. "use_standards":"9.3",
  1527. "dev_standards_dwellings":"9.4",
  1528. "dev_standards_non_dwellings":"9.5",
  1529. "subdivision":"9.6"
  1530. }
  1531. },
  1532. {
  1533. "name":"Low Density Residential Zone",
  1534. "doc_section":"10.0",
  1535. "key_clauses":{
  1536. "purpose":"10.1",
  1537. "use_table":"10.2",
  1538. "use_standards":"10.3",
  1539. "dev_standards_dwellings":"10.4",
  1540. "dev_standards_non_dwellings":"10.5",
  1541. "subdivision":"10.6"
  1542. }
  1543. },
  1544. {
  1545. "name":"Rural Living Zone",
  1546. "doc_section":"11.0",
  1547. "key_clauses":{
  1548. "purpose":"11.1",
  1549. "use_table":"11.2",
  1550. "use_standards":"11.3",
  1551. "dev_standards_buildings_works":"11.4",
  1552. "subdivision":"11.5"
  1553. }
  1554. },
  1555. {
  1556. "name":"Village Zone",
  1557. "doc_section":"12.0",
  1558. "key_clauses":{
  1559. "purpose":"12.1",
  1560. "use_table":"12.2",
  1561. "use_standards":"12.3",
  1562. "dev_standards_buildings_works":"12.4",
  1563. "subdivision":"12.5"
  1564. }
  1565. },
  1566. {
  1567. "name":"Urban Mixed Use Zone",
  1568. "doc_section":"13.0",
  1569. "key_clauses":{
  1570. "purpose":"13.1",
  1571. "use_table":"13.2",
  1572. "use_standards":"13.3",
  1573. "dev_standards_buildings_works":"13.4",
  1574. "subdivision":"13.5"
  1575. }
  1576. },
  1577. {
  1578. "name":"Local Business Zone",
  1579. "doc_section":"14.0",
  1580. "key_clauses":{
  1581. "purpose":"14.1",
  1582. "use_table":"14.2",
  1583. "use_standards":"14.3",
  1584. "dev_standards_buildings_works":"14.4",
  1585. "subdivision":"14.5"
  1586. }
  1587. },
  1588. {
  1589. "name":"General Business Zone",
  1590. "doc_section":"15.0",
  1591. "key_clauses":{
  1592. "purpose":"15.1",
  1593. "use_table":"15.2",
  1594. "use_standards":"15.3",
  1595. "dev_standards_buildings_works":"15.4",
  1596. "subdivision":"15.5"
  1597. }
  1598. },
  1599. {
  1600. "name":"Central Business Zone",
  1601. "doc_section":"16.0",
  1602. "key_clauses":{
  1603. "purpose":"16.1",
  1604. "use_table":"16.2",
  1605. "use_standards":"16.3",
  1606. "dev_standards_buildings_works":"16.4",
  1607. "subdivision":"16.5"
  1608. }
  1609. },
  1610. {
  1611. "name":"Commercial Zone",
  1612. "doc_section":"17.0",
  1613. "key_clauses":{
  1614. "purpose":"17.1",
  1615. "use_table":"17.2",
  1616. "use_standards":"17.3",
  1617. "dev_standards_buildings_works":"17.4",
  1618. "subdivision":"17.5"
  1619. }
  1620. },
  1621. {
  1622. "name":"Light Industrial Zone",
  1623. "doc_section":"18.0",
  1624. "key_clauses":{
  1625. "purpose":"18.1",
  1626. "use_table":"18.2",
  1627. "use_standards":"18.3",
  1628. "dev_standards_buildings_works":"18.4",
  1629. "subdivision":"18.5"
  1630. }
  1631. },
  1632. {
  1633. "name":"General Industrial Zone",
  1634. "doc_section":"19.0",
  1635. "key_clauses":{
  1636. "purpose":"19.1",
  1637. "use_table":"19.2",
  1638. "use_standards":"19.3",
  1639. "dev_standards_buildings_works":"19.4",
  1640. "subdivision":"19.5"
  1641. }
  1642. },
  1643. {
  1644. "name":"Rural Zone",
  1645. "doc_section":"20.0",
  1646. "key_clauses":{
  1647. "purpose":"20.1",
  1648. "use_table":"20.2",
  1649. "use_standards":"20.3",
  1650. "dev_standards_buildings_works":"20.4",
  1651. "subdivision":"20.5"
  1652. }
  1653. },
  1654. {
  1655. "name":"Agriculture Zone",
  1656. "doc_section":"21.0",
  1657. "key_clauses":{
  1658. "purpose":"21.1",
  1659. "use_table":"21.2",
  1660. "use_standards":"21.3",
  1661. "dev_standards_buildings_works":"21.4",
  1662. "subdivision":"21.5"
  1663. }
  1664. },
  1665. {
  1666. "name":"Landscape Conservation Zone",
  1667. "doc_section":"22.0",
  1668. "key_clauses":{
  1669. "purpose":"22.1",
  1670. "use_table":"22.2",
  1671. "use_standards":"22.3",
  1672. "dev_standards_buildings_works":"22.4",
  1673. "subdivision":"22.5"
  1674. }
  1675. },
  1676. {
  1677. "name":"Environmental Management Zone",
  1678. "doc_section":"23.0",
  1679. "key_clauses":{
  1680. "purpose":"23.1",
  1681. "use_table":"23.2",
  1682. "use_standards":"23.3",
  1683. "dev_standards_buildings_works":"23.4",
  1684. "subdivision":"23.5"
  1685. }
  1686. },
  1687. {
  1688. "name":"Major Tourism Zone",
  1689. "doc_section":"24.0",
  1690. "key_clauses":{
  1691. "purpose":"24.1",
  1692. "use_table":"24.2",
  1693. "use_standards":"24.3",
  1694. "dev_standards_buildings_works":"24.4",
  1695. "subdivision":"24.5"
  1696. }
  1697. },
  1698. {
  1699. "name":"Port and Marine Zone",
  1700. "doc_section":"25.0",
  1701. "key_clauses":{
  1702. "purpose":"25.1",
  1703. "use_table":"25.2",
  1704. "use_standards":"25.3",
  1705. "dev_standards_buildings_works":"25.4",
  1706. "subdivision":"25.5"
  1707. }
  1708. },
  1709. {
  1710. "name":"Utilities Zone",
  1711. "doc_section":"26.0",
  1712. "key_clauses":{
  1713. "purpose":"26.1",
  1714. "use_table":"26.2",
  1715. "use_standards":"26.3",
  1716. "dev_standards_buildings_works":"26.4",
  1717. "subdivision":"26.5"
  1718. }
  1719. },
  1720. {
  1721. "name":"Community Purpose Zone",
  1722. "doc_section":"27.0",
  1723. "key_clauses":{
  1724. "purpose":"27.1",
  1725. "use_table":"27.2",
  1726. "use_standards":"27.3",
  1727. "dev_standards_buildings_works":"27.4",
  1728. "subdivision":"27.5"
  1729. }
  1730. },
  1731. {
  1732. "name":"Recreation Zone",
  1733. "doc_section":"28.0",
  1734. "key_clauses":{
  1735. "purpose":"28.1",
  1736. "use_table":"28.2",
  1737. "use_standards":"28.3",
  1738. "dev_standards_buildings_works":"28.4",
  1739. "subdivision":"28.5"
  1740. }
  1741. },
  1742. {
  1743. "name":"Open Space Zone",
  1744. "doc_section":"29.0",
  1745. "key_clauses":{
  1746. "purpose":"29.1",
  1747. "use_table":"29.2",
  1748. "use_standards":"29.3",
  1749. "dev_standards_buildings_works":"29.4",
  1750. "subdivision":"29.5"
  1751. }
  1752. },
  1753. {
  1754. "name":"Future Urban Zone",
  1755. "doc_section":"30.0",
  1756. "key_clauses":{
  1757. "purpose":"30.1",
  1758. "use_table":"30.2",
  1759. "use_standards":"30.3",
  1760. "dev_standards_buildings_works":"30.4",
  1761. "subdivision":"30.5"
  1762. }
  1763. }
  1764. ],
  1765. "codes":{
  1766. "C1":{
  1767. "key_clauses":{
  1768. "purpose":"C1.1",
  1769. "application":"C1.2",
  1770. "definitions":"C1.3",
  1771. "exempt_development":"C1.4",
  1772. "use_standards":"C1.5",
  1773. "development_standards":"C1.6",
  1774. "development_standards_detail":[
  1775. {
  1776. "id":"C1.6.1",
  1777. "title":"Design, siting and number of signs"
  1778. },
  1779. {
  1780. "id":"C1.6.2",
  1781. "title":"Illumination"
  1782. },
  1783. {
  1784. "id":"C1.6.3",
  1785. "title":"Signage in heritage precincts"
  1786. },
  1787. {
  1788. "id":"C1.6.4",
  1789. "title":"Signage on heritage places"
  1790. },
  1791. {
  1792. "id":"C1.6.5",
  1793. "title":"Directional, temporary and public information signs"
  1794. }
  1795. ]
  1796. }
  1797. },
  1798. "C2":{
  1799. "key_clauses":{
  1800. "purpose":"C2.1",
  1801. "application":"C2.2",
  1802. "definitions":"C2.3",
  1803. "exempt_development":"C2.4",
  1804. "use_standards":"C2.5",
  1805. "use_standards_detail":[
  1806. {
  1807. "id":"C2.5.1",
  1808. "title":"Car parking numbers"
  1809. },
  1810. {
  1811. "id":"C2.5.2",
  1812. "title":"Bicycle parking numbers"
  1813. },
  1814. {
  1815. "id":"C2.5.3",
  1816. "title":"Bicycle end of trip facilities"
  1817. },
  1818. {
  1819. "id":"C2.5.4",
  1820. "title":"Public transport accessibility"
  1821. }
  1822. ],
  1823. "development_standards":"C2.6",
  1824. "development_standards_detail":[
  1825. {
  1826. "id":"C2.6.1",
  1827. "title":"Construction of parking areas"
  1828. },
  1829. {
  1830. "id":"C2.6.2",
  1831. "title":"Design and layout of parking areas"
  1832. },
  1833. {
  1834. "id":"C2.6.3",
  1835. "title":"Number of accesses for vehicles"
  1836. },
  1837. {
  1838. "id":"C2.6.4",
  1839. "title":"Lot access"
  1840. },
  1841. {
  1842. "id":"C2.6.5",
  1843. "title":"Pedestrian access"
  1844. },
  1845. {
  1846. "id":"C2.6.6",
  1847. "title":"On-site turning"
  1848. },
  1849. {
  1850. "id":"C2.6.7",
  1851. "title":"Access for commercial vehicles"
  1852. }
  1853. ]
  1854. }
  1855. },
  1856. "C3":{
  1857. "key_clauses":{
  1858. "purpose":"C3.1",
  1859. "application":"C3.2",
  1860. "definitions":"C3.3",
  1861. "exempt_use":"C3.4",
  1862. "use_standards":"C3.5",
  1863. "use_standards_detail":[
  1864. {
  1865. "id":"C3.5.1",
  1866. "title":"Sensitive uses within road or rail attenuation areas"
  1867. }
  1868. ],
  1869. "development_standards":"C3.6",
  1870. "development_standards_detail":[
  1871. {
  1872. "id":"C3.6.1",
  1873. "title":"Development adjacent to roads and railways"
  1874. },
  1875. {
  1876. "id":"C3.6.2",
  1877. "title":"Road and rail noise attenuation"
  1878. },
  1879. {
  1880. "id":"C3.6.3",
  1881. "title":"Level crossing sight distances"
  1882. },
  1883. {
  1884. "id":"C3.6.4",
  1885. "title":"Railway crossings and depots"
  1886. },
  1887. {
  1888. "id":"C3.6.5",
  1889. "title":"Road and rail access and crossings"
  1890. }
  1891. ]
  1892. }
  1893. },
  1894. "C4":{
  1895. "key_clauses":{
  1896. "purpose":"C4.1",
  1897. "application":"C4.2",
  1898. "definitions":"C4.3",
  1899. "exempt_use":"C4.4",
  1900. "use_standards":"C4.5",
  1901. "use_standards_detail":[
  1902. {
  1903. "id":"C4.5.1",
  1904. "title":"Sensitive use within electricity transmission corridor"
  1905. }
  1906. ],
  1907. "development_standards":"C4.6",
  1908. "development_standards_detail":[
  1909. {
  1910. "id":"C4.6.1",
  1911. "title":"Development within electricity transmission corridor"
  1912. },
  1913. {
  1914. "id":"C4.6.2",
  1915. "title":"Subdivision within electricity transmission corridor"
  1916. }
  1917. ]
  1918. }
  1919. },
  1920. "C5":{
  1921. "key_clauses":{
  1922. "purpose":"C5.1",
  1923. "application":"C5.2",
  1924. "definitions":"C5.3",
  1925. "exempt_use":"C5.4",
  1926. "use_standards":"C5.5",
  1927. "development_standards":"C5.6",
  1928. "development_standards_detail":[
  1929. {
  1930. "id":"C5.6.1",
  1931. "title":"Telecommunications facilities – visual amenity"
  1932. },
  1933. {
  1934. "id":"C5.6.2",
  1935. "title":"Performance of facilities"
  1936. }
  1937. ]
  1938. }
  1939. },
  1940. "C6":{
  1941. "key_clauses":{
  1942. "purpose":"C6.1",
  1943. "application":"C6.2",
  1944. "definitions":"C6.3",
  1945. "exempt_development":"C6.4",
  1946. "use_standards":"C6.5",
  1947. "development_standards":"C6.6",
  1948. "development_standards_detail":[
  1949. {
  1950. "id":"C6.6.1",
  1951. "title":"Demolition"
  1952. },
  1953. {
  1954. "id":"C6.6.2",
  1955. "title":"Building facades and details of heritage places"
  1956. },
  1957. {
  1958. "id":"C6.6.3",
  1959. "title":"Extensions"
  1960. },
  1961. {
  1962. "id":"C6.6.4",
  1963. "title":"New buildings and works"
  1964. },
  1965. {
  1966. "id":"C6.6.5",
  1967. "title":"Additions to non-significant elements"
  1968. },
  1969. {
  1970. "id":"C6.6.6",
  1971. "title":"Signage on a heritage place"
  1972. },
  1973. {
  1974. "id":"C6.6.7",
  1975. "title":"Subdivision"
  1976. }
  1977. ]
  1978. }
  1979. },
  1980. "C7":{
  1981. "key_clauses":{
  1982. "purpose":"C7.1",
  1983. "application":"C7.2",
  1984. "definitions":"C7.3",
  1985. "exempt_use":"C7.4",
  1986. "use_standards":"C7.5",
  1987. "development_standards":"C7.6",
  1988. "development_standards_detail":[
  1989. {
  1990. "id":"C7.6.1",
  1991. "title":"Biodiversity protection areas"
  1992. },
  1993. {
  1994. "id":"C7.6.2",
  1995. "title":"Waterway and coastal protection areas"
  1996. },
  1997. {
  1998. "id":"C7.6.3",
  1999. "title":"Priority vegetation areas"
  2000. },
  2001. {
  2002. "id":"C7.6.4",
  2003. "title":"Drains and wetlands"
  2004. }
  2005. ]
  2006. }
  2007. },
  2008. "C8":{
  2009. "key_clauses":{
  2010. "purpose":"C8.1",
  2011. "application":"C8.2",
  2012. "definitions":"C8.3",
  2013. "exempt_use":"C8.4",
  2014. "use_standards":"C8.5",
  2015. "development_standards":"C8.6",
  2016. "development_standards_detail":[
  2017. {
  2018. "id":"C8.6.1",
  2019. "title":"Development in scenic protection areas"
  2020. },
  2021. {
  2022. "id":"C8.6.2",
  2023. "title":"Development in scenic road corridors"
  2024. }
  2025. ]
  2026. }
  2027. },
  2028. "C9":{
  2029. "key_clauses":{
  2030. "purpose":"C9.1",
  2031. "application":"C9.2",
  2032. "definitions":"C9.3",
  2033. "exempt_use":"C9.4",
  2034. "use_standards":"C9.5",
  2035. "use_standards_detail":[
  2036. {
  2037. "id":"C9.5.1",
  2038. "title":"Sensitive use near attenuation areas"
  2039. }
  2040. ],
  2041. "development_standards":"C9.6",
  2042. "development_standards_detail":[
  2043. {
  2044. "id":"C9.6.1",
  2045. "title":"Development near attenuation areas"
  2046. }
  2047. ]
  2048. }
  2049. },
  2050. "C10":{
  2051. "key_clauses":{
  2052. "purpose":"C10.1",
  2053. "application":"C10.2",
  2054. "definitions":"C10.3",
  2055. "exempt_use":"C10.4",
  2056. "use_standards":"C10.5",
  2057. "use_standards_detail":[
  2058. {
  2059. "id":"C10.5.1",
  2060. "title":"Sensitive use in coastal erosion hazard bands"
  2061. }
  2062. ],
  2063. "development_standards":"C10.6",
  2064. "development_standards_detail":[
  2065. {
  2066. "id":"C10.6.1",
  2067. "title":"Development in coastal erosion hazard bands"
  2068. }
  2069. ]
  2070. }
  2071. },
  2072. "C11":{
  2073. "key_clauses":{
  2074. "purpose":"C11.1",
  2075. "application":"C11.2",
  2076. "definitions":"C11.3",
  2077. "exempt_use":"C11.4",
  2078. "use_standards":"C11.5",
  2079. "use_standards_detail":[
  2080. {
  2081. "id":"C11.5.1",
  2082. "title":"Sensitive use in coastal inundation hazard areas"
  2083. }
  2084. ],
  2085. "development_standards":"C11.6",
  2086. "development_standards_detail":[
  2087. {
  2088. "id":"C11.6.1",
  2089. "title":"Development in coastal inundation hazard areas"
  2090. }
  2091. ]
  2092. }
  2093. },
  2094. "C12":{
  2095. "key_clauses":{
  2096. "purpose":"C12.1",
  2097. "application":"C12.2",
  2098. "definitions":"C12.3",
  2099. "exempt_use":"C12.4",
  2100. "use_standards":"C12.5",
  2101. "use_standards_detail":[
  2102. {
  2103. "id":"C12.5.1",
  2104. "title":"Sensitive use in flood-prone hazard areas"
  2105. }
  2106. ],
  2107. "development_standards":"C12.6",
  2108. "development_standards_detail":[
  2109. {
  2110. "id":"C12.6.1",
  2111. "title":"Development in flood-prone hazard areas"
  2112. }
  2113. ]
  2114. }
  2115. },
  2116. "C13":{
  2117. "key_clauses":{
  2118. "purpose":"C13.1",
  2119. "application":"C13.2",
  2120. "definitions":"C13.3",
  2121. "exempt_use":"C13.4",
  2122. "use_standards":"C13.5",
  2123. "use_standards_detail":[
  2124. {
  2125. "id":"C13.5.1",
  2126. "title":"Sensitive use in bushfire-prone areas"
  2127. }
  2128. ],
  2129. "development_standards":"C13.6",
  2130. "development_standards_detail":[
  2131. {
  2132. "id":"C13.6.1",
  2133. "title":"Subdivision in bushfire-prone areas"
  2134. },
  2135. {
  2136. "id":"C13.6.2",
  2137. "title":"Buildings and works in bushfire-prone areas"
  2138. }
  2139. ]
  2140. }
  2141. },
  2142. "C14":{
  2143. "key_clauses":{
  2144. "purpose":"C14.1",
  2145. "application":"C14.2",
  2146. "definitions":"C14.3",
  2147. "exempt_use":"C14.4",
  2148. "use_standards":"C14.5",
  2149. "use_standards_detail":[
  2150. {
  2151. "id":"C14.5.1",
  2152. "title":"Sensitive use on potentially contaminated land"
  2153. }
  2154. ],
  2155. "development_standards":"C14.6",
  2156. "development_standards_detail":[
  2157. {
  2158. "id":"C14.6.1",
  2159. "title":"Development on potentially contaminated land"
  2160. }
  2161. ]
  2162. }
  2163. },
  2164. "C15":{
  2165. "key_clauses":{
  2166. "purpose":"C15.1",
  2167. "application":"C15.2",
  2168. "definitions":"C15.3",
  2169. "exempt_use":"C15.4",
  2170. "use_standards":"C15.5",
  2171. "use_standards_detail":[
  2172. {
  2173. "id":"C15.5.1",
  2174. "title":"Sensitive use in landslide hazard bands"
  2175. }
  2176. ],
  2177. "development_standards":"C15.6",
  2178. "development_standards_detail":[
  2179. {
  2180. "id":"C15.6.1",
  2181. "title":"Development in landslide hazard bands"
  2182. }
  2183. ]
  2184. }
  2185. },
  2186. "C16":{
  2187. "key_clauses":{
  2188. "purpose":"C16.1",
  2189. "application":"C16.2",
  2190. "definitions":"C16.3",
  2191. "exempt_use":"C16.4",
  2192. "use_standards":"C16.5",
  2193. "use_standards_detail":[
  2194. {
  2195. "id":"C16.5.1",
  2196. "title":"Sensitive use within airport obstacles limitation areas"
  2197. }
  2198. ],
  2199. "development_standards":"C16.6",
  2200. "development_standards_detail":[
  2201. {
  2202. "id":"C16.6.1",
  2203. "title":"Buildings and works within airport obstacles limitation areas"
  2204. },
  2205. {
  2206. "id":"C16.6.2",
  2207. "title":"Wind farms and turbine generators"
  2208. },
  2209. {
  2210. "id":"C16.6.3",
  2211. "title":"Lighting and reflective materials"
  2212. },
  2213. {
  2214. "id":"C16.6.4",
  2215. "title":"Wildlife hazards"
  2216. }
  2217. ]
  2218. }
  2219. }
  2220. },
  2221. "crosswalk":{
  2222. "aliases":{
  2223. "bushfire":"C13",
  2224. "heritage":"C6",
  2225. "parking":"C2",
  2226. "roads_and_rail":"C3",
  2227. "telecoms":"C5",
  2228. "flooding":"C12",
  2229. "coastal_inundation":"C11",
  2230. "coastal_erosion":"C10",
  2231. "landslide":"C15",
  2232. "contaminated_land":"C14",
  2233. "electricity_transmission":"C4",
  2234. "scenic":"C8",
  2235. "natural_assets":"C7",
  2236. "attenuation":"C9",
  2237. "signs":"C1",
  2238. "airports":"C16"
  2239. }
  2240. }
  2241. }