| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241 |
- {
- "meta":{
- "version":"2025-08-27",
- "source":[
- {
- "title":"Tasmanian Planning Scheme Viewer (SPPs)",
- "url":"https://tpso.planning.tas.gov.au/tpso/external/planning-scheme-viewer/30"
- }
- ],
- "notes":"Purposes are concise paraphrases for downstream AI prompts. Detailed clause mappings will be added in later passes."
- },
- "tpso":{
- "base":"https://tpso.planning.tas.gov.au/tpso/external/planning-scheme-viewer/30/section/",
- "effectiveForDate":"2025-08-27",
- "map":{
- "ADMINISTRATION_INDEX":10,
- "GENERAL-PROVISIONS_INDEX":45,
- "ZONES_INDEX":61,
- "CODES_INDEX":394,
- "1.0":5,
- "1.1":6,
- "1.2":7,
- "2.0":8,
- "2.1":9,
- "3.0":11,
- "3.1":12,
- "4.0":18,
- "5.0":25,
- "5.1":26,
- "5.2":27,
- "5.3":28,
- "5.4":29,
- "5.5":30,
- "5.6":31,
- "6.0":32,
- "6.1":33,
- "6.2":34,
- "6.3":36,
- "6.4":37,
- "6.5":38,
- "6.6":39,
- "6.7":40,
- "6.8":41,
- "6.9":42,
- "6.10":43,
- "6.11":44,
- "7.0":46,
- "7.1":47,
- "7.2":48,
- "7.3":49,
- "7.4":50,
- "7.5":51,
- "7.6":52,
- "7.7":53,
- "7.8":54,
- "7.9":55,
- "7.10":56,
- "7.11":57,
- "7.12":58,
- "7.13":59,
- "7.14":60,
- "8.0":62,
- "8.1":63,
- "8.2":64,
- "8.3":65,
- "8.3.1":66,
- "8.3.2":67,
- "8.4":68,
- "8.4.1":69,
- "8.4.2":70,
- "8.4.3":71,
- "8.4.4":72,
- "8.4.5":73,
- "8.4.6":74,
- "8.4.7":75,
- "8.4.8":76,
- "8.5":77,
- "8.5.1":78,
- "8.5.2":79,
- "8.6":80,
- "8.6.1":81,
- "8.6.2":82,
- "8.6.3":83,
- "9.0":84,
- "9.1":85,
- "9.2":86,
- "9.3":87,
- "9.3.1":88,
- "9.3.2":89,
- "9.4":90,
- "9.4.1":91,
- "9.4.2":92,
- "9.4.3":93,
- "9.4.4":94,
- "9.4.5":95,
- "9.4.6":96,
- "9.4.7":97,
- "9.4.8":98,
- "9.5":99,
- "9.5.1":100,
- "9.5.2":101,
- "9.6":102,
- "9.6.1":103,
- "9.6.2":104,
- "9.6.3":105,
- "10.0":106,
- "10.1":107,
- "10.2":108,
- "10.3":109,
- "10.3.1":110,
- "10.3.2":111,
- "10.4":112,
- "10.4.1":113,
- "10.4.2":114,
- "10.4.3":115,
- "10.4.4":116,
- "10.4.5":117,
- "10.5":118,
- "10.5.1":119,
- "10.6":120,
- "10.6.1":121,
- "10.6.2":122,
- "10.6.3":123,
- "11.0":124,
- "11.1":125,
- "11.2":126,
- "11.3":127,
- "11.3.1":128,
- "11.3.2":129,
- "11.4":130,
- "11.4.1":131,
- "11.4.2":132,
- "11.5":133,
- "11.5.1":134,
- "11.5.2":136,
- "11.5.3":137,
- "12.0":138,
- "12.1":139,
- "12.2":140,
- "12.3":141,
- "12.3.1":142,
- "12.3.2":143,
- "12.4":144,
- "12.4.1":145,
- "12.4.2":146,
- "12.4.3":147,
- "12.4.4":148,
- "12.4.5":149,
- "12.4.6":150,
- "12.5":151,
- "12.5.1":152,
- "12.5.2":153,
- "12.5.3":154,
- "13.0":155,
- "13.1":156,
- "13.2":157,
- "13.3":158,
- "13.3.1":159,
- "13.3.2":160,
- "13.3.3":161,
- "13.4":162,
- "13.4.1":163,
- "13.4.2":164,
- "13.4.3":165,
- "13.4.4":166,
- "13.4.5":167,
- "13.4.6":168,
- "13.5":169,
- "13.5.1":170,
- "13.5.2":171,
- "14.0":172,
- "14.1":173,
- "14.2":174,
- "14.3":175,
- "14.3.1":176,
- "14.3.2":177,
- "14.3.3":178,
- "14.4":179,
- "14.4.1":180,
- "14.4.2":181,
- "14.4.3":182,
- "14.4.4":183,
- "14.4.5":184,
- "14.4.6":185,
- "14.5":186,
- "14.5.1":187,
- "14.5.2":188,
- "15.0":189,
- "15.1":190,
- "15.2":191,
- "15.3":192,
- "15.3.1":193,
- "15.3.2":194,
- "15.3.3":195,
- "15.4":196,
- "15.4.1":197,
- "15.4.2":198,
- "15.4.3":199,
- "15.4.4":200,
- "15.4.5":201,
- "15.4.6":202,
- "15.5":203,
- "15.5.1":204,
- "15.5.2":205,
- "16.0":206,
- "16.1":207,
- "16.2":208,
- "16.3":209,
- "16.3.1":210,
- "16.3.2":211,
- "16.4":212,
- "16.4.1":213,
- "16.4.2":214,
- "16.4.3":215,
- "16.4.4":216,
- "16.4.5":217,
- "16.4.6":218,
- "16.5":219,
- "16.5.1":220,
- "16.5.2":221,
- "17.0":222,
- "17.1":223,
- "17.2":224,
- "17.3":225,
- "17.3.1":226,
- "17.3.2":227,
- "17.3.3":228,
- "17.4":229,
- "17.4.1":230,
- "17.4.2":231,
- "17.4.3":232,
- "17.4.4":233,
- "17.4.5":234,
- "17.4.6":235,
- "17.5":236,
- "17.5.1":237,
- "17.5.2":238,
- "18.0":239,
- "18.1":240,
- "18.2":241,
- "18.3":242,
- "18.3.1":243,
- "18.3.2":244,
- "18.4":245,
- "18.4.1":246,
- "18.4.2":247,
- "18.4.3":248,
- "18.4.4":249,
- "18.4.5":250,
- "18.5":251,
- "18.5.1":252,
- "18.5.2":253,
- "19.0":254,
- "19.1":255,
- "19.2":256,
- "19.3":257,
- "19.3.1":258,
- "19.4":259,
- "19.4.1":260,
- "19.4.2":261,
- "19.4.3":262,
- "19.5":263,
- "19.5.1":264,
- "19.5.2":265,
- "20.0":266,
- "20.1":267,
- "20.2":268,
- "20.3":269,
- "20.3.1":270,
- "20.4":271,
- "20.4.1":272,
- "20.4.2":273,
- "20.4.3":274,
- "20.5":275,
- "20.5.1":276,
- "21.0":277,
- "21.1":278,
- "21.2":279,
- "21.3":280,
- "21.3.1":281,
- "21.4":282,
- "21.4.1":283,
- "21.4.2":284,
- "21.4.3":285,
- "21.5":286,
- "21.5.1":287,
- "22.0":288,
- "22.1":289,
- "22.2":290,
- "22.3":291,
- "22.3.1":292,
- "22.3.2":293,
- "22.3.3":294,
- "22.4":295,
- "22.4.1":296,
- "22.4.2":297,
- "22.4.3":298,
- "22.4.4":299,
- "22.5":300,
- "22.5.1":301,
- "23.0":302,
- "23.1":303,
- "23.2":304,
- "23.3":305,
- "23.3.1":306,
- "23.4":307,
- "23.4.1":308,
- "23.4.2":309,
- "23.4.3":310,
- "23.4.4":311,
- "23.5":312,
- "23.5.1":313,
- "23.5.2":314,
- "24.0":315,
- "24.1":316,
- "24.2":317,
- "24.3":318,
- "24.3.1":319,
- "24.3.2":320,
- "24.4":321,
- "24.4.1":322,
- "24.4.2":323,
- "24.5":324,
- "24.5.1":325,
- "24.5.2":326,
- "25.0":327,
- "25.1":328,
- "25.2":329,
- "25.3":330,
- "25.4":331,
- "25.4.1":332,
- "25.5":333,
- "25.5.1":334,
- "25.5.2":335,
- "26.0":336,
- "26.1":337,
- "26.2":338,
- "26.3":339,
- "26.3.1":340,
- "26.3.2":341,
- "26.4":342,
- "26.4.1":343,
- "26.4.2":344,
- "26.4.3":345,
- "26.4.4":346,
- "26.5":347,
- "26.5.1":348,
- "26.5.2":349,
- "27.0":350,
- "27.1":351,
- "27.2":352,
- "27.3":353,
- "27.3.1":354,
- "27.4":355,
- "27.4.1":356,
- "27.4.2":357,
- "27.4.3":358,
- "27.4.4":359,
- "27.5":360,
- "27.5.1":361,
- "27.5.2":362,
- "28.0":363,
- "28.1":364,
- "28.2":365,
- "28.3":366,
- "28.3.1":367,
- "28.3.2":368,
- "28.4":369,
- "28.4.1":370,
- "28.4.2":371,
- "28.5":372,
- "28.5.1":373,
- "28.5.2":374,
- "29.0":375,
- "29.1":376,
- "29.2":377,
- "29.3":378,
- "29.3.1":379,
- "29.4":380,
- "29.4.1":381,
- "29.4.2":382,
- "29.5":383,
- "29.5.1":384,
- "30.0":385,
- "30.1":386,
- "30.2":387,
- "30.3":388,
- "30.4":389,
- "30.4.1":390,
- "30.4.2":391,
- "30.5":392,
- "30.5.1":393
- }
- },
- "codesTree":[
- {
- "id":395,
- "title":"C1.0 Signs Code",
- "children":[
- {
- "id":396,
- "title":"C1.1 Code Purpose"
- },
- {
- "id":397,
- "title":"C1.2 Application of this Code"
- },
- {
- "id":398,
- "title":"C1.3 Definition of Terms",
- "children":[
- {
- "id":399,
- "title":"Table C1.3 Sign Type Definitions"
- }
- ]
- },
- {
- "id":400,
- "title":"C1.4 Development Exempt from this Code",
- "children":[
- {
- "id":401,
- "title":"Table C1.4 Exempt Signs"
- }
- ]
- },
- {
- "id":402,
- "title":"C1.5 Use Standards"
- },
- {
- "id":403,
- "title":"C1.6 Development Standards for Buildings and Works",
- "children":[
- {
- "id":404,
- "title":"C1.6.1 Design and siting of signs"
- },
- {
- "id":405,
- "title":"C1.6.2 Illuminated signs"
- },
- {
- "id":406,
- "title":"C1.6.3 Third party sign"
- },
- {
- "id":407,
- "title":"C1.6.4 Signs on local heritage places and in local heritage precincts and local historic landscape precincts"
- }
- ]
- },
- {
- "id":408,
- "title":"Table C1.6 Sign Standards",
- "children":[
- {
- "id":409,
- "title":"Table C1.6 Sign Standards (A-B)"
- },
- {
- "id":410,
- "title":"Table C1.6 Sign Standards (C-L)"
- },
- {
- "id":411,
- "title":"Table C1.6 Sign Standards (M-Q)"
- },
- {
- "id":412,
- "title":"Table C1.6 Sign Standards (R-Z)"
- }
- ]
- }
- ]
- },
- {
- "id":413,
- "title":"C2.0 Parking and Sustainable Transport Code",
- "children":[
- {
- "id":414,
- "title":"C2.1 Code Purpose"
- },
- {
- "id":415,
- "title":"C2.2 Application of this Code"
- },
- {
- "id":416,
- "title":"C2.3 Definition of Terms"
- },
- {
- "id":417,
- "title":"C2.4 Use or Development Exempt from this Code"
- },
- {
- "id":418,
- "title":"C2.5 Use Standards",
- "children":[
- {
- "id":419,
- "title":"C2.5.1 Car parking numbers"
- },
- {
- "id":420,
- "title":"C2.5.2 Bicycle parking numbers"
- },
- {
- "id":421,
- "title":"C2.5.3 Motorcycle parking numbers"
- },
- {
- "id":422,
- "title":"C2.5.4 Loading bays"
- },
- {
- "id":423,
- "title":"C2.5.5 Number of car parking spaces within the General Residential Zone and Inner Residential Zone"
- }
- ]
- },
- {
- "id":424,
- "title":"C2.6 Development Standards for Buildings and Works",
- "children":[
- {
- "id":425,
- "title":"C2.6.1 Construction of parking areas"
- },
- {
- "id":426,
- "title":"C2.6.2 Design and layout of parking areas"
- },
- {
- "id":427,
- "title":"C2.6.3 Number of accesses for vehicles"
- },
- {
- "id":428,
- "title":"C2.6.4 Lighting of parking areas within the General Business Zone and Central Business Zone"
- },
- {
- "id":429,
- "title":"C2.6.5 Pedestrian access"
- },
- {
- "id":430,
- "title":"C2.6.6 Loading bays"
- },
- {
- "id":431,
- "title":"C2.6.7 Bicycle parking and storage facilities within the General Business Zone and Central Business Zone"
- },
- {
- "id":432,
- "title":"C2.6.8 Siting of parking and turning areas"
- }
- ]
- },
- {
- "id":433,
- "title":"C2.7 Parking Precinct Plan",
- "children":[
- {
- "id":4664,
- "title":"C2.7.1 Parking precinct plan"
- }
- ]
- },
- {
- "id":435,
- "title":"Table C2.1 Parking Space Requirements"
- },
- {
- "id":436,
- "title":"Table C2.2 Internal Access Way Widths for Vehicles"
- },
- {
- "id":437,
- "title":"Table C2.3 Dimensions of Car Parking Spaces and Combined Access and Manoeuvring Space Adjacent to Parking Spaces"
- },
- {
- "id":438,
- "title":"Table C2.4 Motorcycle Parking Space Requirements"
- }
- ]
- },
- {
- "id":439,
- "title":"C3.0 Road and Railway Assets Code",
- "children":[
- {
- "id":440,
- "title":"C3.1 Code Purpose"
- },
- {
- "id":441,
- "title":"C3.2 Application of this Code"
- },
- {
- "id":442,
- "title":"C3.3 Definition of Terms"
- },
- {
- "id":443,
- "title":"C3.4 Use or Development Exempt from this Code"
- },
- {
- "id":444,
- "title":"C3.5 Use Standards",
- "children":[
- {
- "id":445,
- "title":"C3.5.1 Traffic generation at a vehicle crossing, level crossing or new junction"
- },
- {
- "id":446,
- "title":"Table C3.1 Acceptable increase in annual average daily traffic to and from the site (total of ingress and egress)"
- }
- ]
- },
- {
- "id":447,
- "title":"C3.6 Development Standards for Buildings or Works",
- "children":[
- {
- "id":448,
- "title":"C3.6.1 Habitable buildings for sensitive uses within a road or railway attenuation area"
- },
- {
- "id":449,
- "title":"Table C3.2 Acceptable noise levels within a road or railway attenuation area"
- }
- ]
- },
- {
- "id":450,
- "title":"C3.7 Development Standards for Subdivision",
- "children":[
- {
- "id":451,
- "title":"C3.7.1 Subdivision for sensitive uses within a road or railway attenuation area"
- }
- ]
- }
- ]
- },
- {
- "id":452,
- "title":"C4.0 Electricity Transmission Infrastructure Protection Code",
- "children":[
- {
- "id":453,
- "title":"C4.1 Code Purpose"
- },
- {
- "id":454,
- "title":"C4.2 Application of this Code"
- },
- {
- "id":455,
- "title":"C4.3 Definition of Terms"
- },
- {
- "id":456,
- "title":"C4.4 Use or Development Exempt from this Code"
- },
- {
- "id":457,
- "title":"C4.5 Use Standards",
- "children":[
- {
- "id":458,
- "title":"C4.5.1 Sensitive use within a substation facility buffer area"
- },
- {
- "id":459,
- "title":"C4.5.2 Dust or other airborne particulates within an electricity transmission corridor"
- },
- {
- "id":460,
- "title":"C4.5.3 Dust or other airborne particulates within a substation facility buffer area"
- }
- ]
- },
- {
- "id":461,
- "title":"Table C4.1 Uses with the Potential to Create Dust or Other Airborne Particulates"
- },
- {
- "id":462,
- "title":"C4.6 Development Standards for Buildings or Works",
- "children":[
- {
- "id":463,
- "title":"C4.6.1 Buildings or works within an electricity transmission corridor"
- },
- {
- "id":464,
- "title":"C4.6.2 Buildings or works within a substation facility buffer area"
- },
- {
- "id":465,
- "title":"C4.6.3 Buildings or works within a communications station buffer area"
- }
- ]
- },
- {
- "id":466,
- "title":"C4.7 Development Standards for Subdivision",
- "children":[
- {
- "id":467,
- "title":"C4.7.1 Subdivision"
- }
- ]
- }
- ]
- },
- {
- "id":468,
- "title":"C5.0 Telecommunications Code",
- "children":[
- {
- "id":469,
- "title":"C5.1 Code Purpose"
- },
- {
- "id":470,
- "title":"C5.2 Application of this Code"
- },
- {
- "id":471,
- "title":"C5.3 Definition of Terms"
- },
- {
- "id":472,
- "title":"C5.4 Use or Development Exempt from this Code"
- },
- {
- "id":473,
- "title":"C5.5 Use Standards"
- },
- {
- "id":474,
- "title":"C5.6 Development Standards for Buildings and Works",
- "children":[
- {
- "id":475,
- "title":"C5.6.1 Visual amenity"
- }
- ]
- }
- ]
- },
- {
- "id":476,
- "title":"C6.0 Local Historic Heritage Code",
- "children":[
- {
- "id":477,
- "title":"C6.1 Code Purpose"
- },
- {
- "id":478,
- "title":"C6.2 Application of this Code"
- },
- {
- "id":479,
- "title":"C6.3 Definition of Terms"
- },
- {
- "id":480,
- "title":"C6.4 Development Exempt from this Code",
- "children":[
- {
- "id":481,
- "title":"Table C6.4.1 Exempt development"
- }
- ]
- },
- {
- "id":482,
- "title":"C6.5 Use Standards"
- },
- {
- "id":483,
- "title":"C6.6 Development Standards for Local Heritage Places",
- "children":[
- {
- "id":484,
- "title":"C6.6.1 Demolition"
- },
- {
- "id":485,
- "title":"C6.6.2 Site coverage"
- },
- {
- "id":486,
- "title":"C6.6.3 Height and bulk of buildings"
- },
- {
- "id":487,
- "title":"C6.6.4 Siting of buildings and structures"
- },
- {
- "id":488,
- "title":"C6.6.5 Fences"
- },
- {
- "id":489,
- "title":"C6.6.6 Roof form and materials"
- },
- {
- "id":490,
- "title":"C6.6.7 Building alterations, excluding roof form and materials"
- },
- {
- "id":491,
- "title":"C6.6.8 Outbuildings and structures"
- },
- {
- "id":492,
- "title":"C6.6.9 Driveways and parking for non-residential purposes"
- },
- {
- "id":493,
- "title":"C6.6.10 Removal, destruction or lopping of trees, or removal of vegetation, that is specifically part of a local heritage place"
- }
- ]
- },
- {
- "id":494,
- "title":"C6.7 Development Standards for Local Heritage Precincts and Local Historic Landscape Precincts",
- "children":[
- {
- "id":495,
- "title":"C6.7.1 Demolition within a local heritage precinct"
- },
- {
- "id":496,
- "title":"C6.7.2 Demolition within a local historic landscape precinct"
- },
- {
- "id":497,
- "title":"C6.7.3 Buildings and works, excluding demolition"
- }
- ]
- },
- {
- "id":498,
- "title":"C6.8 Development Standards for Places or Precincts of Archaeological Potential",
- "children":[
- {
- "id":499,
- "title":"C6.8.1 Building and works"
- }
- ]
- },
- {
- "id":500,
- "title":"C6.9 Significant Trees",
- "children":[
- {
- "id":4669,
- "title":"C6.9.1 Significant trees"
- }
- ]
- },
- {
- "id":502,
- "title":"C6.10 Development Standards for Subdivision",
- "children":[
- {
- "id":503,
- "title":"C6.10.1 Lot design on a Local Heritage Place"
- },
- {
- "id":504,
- "title":"C6.10.2 Lot design for a Local Heritage Precinct or a Local Historic Landscape Precinct"
- },
- {
- "id":505,
- "title":"C6.10.3 Subdivision works for places or precincts of archaeological potential"
- }
- ]
- }
- ]
- },
- {
- "id":506,
- "title":"C7.0 Natural Assets Code",
- "children":[
- {
- "id":507,
- "title":"C7.1 Code Purpose"
- },
- {
- "id":508,
- "title":"C7.2 Application of this Code"
- },
- {
- "id":509,
- "title":"C7.3 Definition of Terms",
- "children":[
- {
- "id":4676,
- "title":"Table C7.3 Spatial Extent of Waterway and Coastal Protection Areas"
- }
- ]
- },
- {
- "id":511,
- "title":"C7.4 Use or Development Exempt from this Code"
- },
- {
- "id":512,
- "title":"C7.5 Use Standards"
- },
- {
- "id":513,
- "title":"C7.6 Development Standards for Buildings and Works",
- "children":[
- {
- "id":514,
- "title":"C7.6.1 Buildings and works within a waterway and coastal protection area or a future coastal refugia area"
- },
- {
- "id":515,
- "title":"C7.6.2 Clearance within a priority vegetation area"
- }
- ]
- },
- {
- "id":516,
- "title":"C7.7 Development Standards for Subdivision",
- "children":[
- {
- "id":517,
- "title":"C7.7.1 Subdivision within a waterway and coastal protection area or a future coastal refugia area"
- },
- {
- "id":518,
- "title":"C7.7.2 Subdivision within a priority vegetation area"
- }
- ]
- }
- ]
- },
- {
- "id":519,
- "title":"C8.0 Scenic Protection Code",
- "children":[
- {
- "id":520,
- "title":"C8.1 Code Purpose"
- },
- {
- "id":521,
- "title":"C8.2 Application of this Code"
- },
- {
- "id":522,
- "title":"C8.3 Definition of Terms"
- },
- {
- "id":523,
- "title":"C8.4 Use or Development Exempt from this Code"
- },
- {
- "id":524,
- "title":"C8.5 Use Standards"
- },
- {
- "id":525,
- "title":"C8.6 Development Standards for Buildings and Works",
- "children":[
- {
- "id":526,
- "title":"C8.6.1 Development within a scenic protection area"
- },
- {
- "id":527,
- "title":"C8.6.2 Development within a scenic road corridor"
- }
- ]
- }
- ]
- },
- {
- "id":528,
- "title":"C9.0 Attenuation Code",
- "children":[
- {
- "id":529,
- "title":"C9.1 Code Purpose"
- },
- {
- "id":530,
- "title":"C9.2 Application of this Code"
- },
- {
- "id":531,
- "title":"C9.3 Definition of Terms"
- },
- {
- "id":532,
- "title":"C9.4 Use or Development Exempt from this Code"
- },
- {
- "id":533,
- "title":"C9.5 Use Standards",
- "children":[
- {
- "id":534,
- "title":"C9.5.1 Activities with potential to cause emissions"
- },
- {
- "id":535,
- "title":"C9.5.2 Sensitive use within an attenuation area"
- }
- ]
- },
- {
- "id":536,
- "title":"C9.6 Development Standards for Subdivision",
- "children":[
- {
- "id":537,
- "title":"C9.6.1 Lot design"
- }
- ]
- },
- {
- "id":538,
- "title":"Table C9.1 Attenuation Distances",
- "children":[
- {
- "id":539,
- "title":"Table C9.1 Attenuation Distances (A-B)"
- },
- {
- "id":540,
- "title":"Table C9.1 Attenuation Distances (C-L)"
- },
- {
- "id":541,
- "title":"Table C9.1 Attenuation Distances (M-Q)"
- },
- {
- "id":542,
- "title":"Table C9.1 Attenuation Distances (R-Z)"
- }
- ]
- },
- {
- "id":543,
- "title":"Table C9.2 Attenuation Distances for Sewage Treatment Plant Processes"
- }
- ]
- },
- {
- "id":544,
- "title":"C10.0 Coastal Erosion Hazard Code",
- "children":[
- {
- "id":545,
- "title":"C10.1 Code Purpose"
- },
- {
- "id":546,
- "title":"C10.2 Application of this Code"
- },
- {
- "id":547,
- "title":"C10.3 Definition of Terms"
- },
- {
- "id":548,
- "title":"C10.4 Use or Development Exempt from this Code"
- },
- {
- "id":549,
- "title":"C10.5 Use Standards",
- "children":[
- {
- "id":550,
- "title":"C10.5.1 Use within a high coastal erosion hazard band"
- },
- {
- "id":551,
- "title":"C10.5.2 Uses located within a non-urban zone and within a low or medium coastal erosion hazard band"
- },
- {
- "id":552,
- "title":"C10.5.3 Critical use, hazardous use or vulnerable use"
- },
- {
- "id":553,
- "title":"C10.5.4 Uses located within a coastal erosion investigation area"
- }
- ]
- },
- {
- "id":554,
- "title":"C10.6 Development Standards for Buildings and Works",
- "children":[
- {
- "id":555,
- "title":"C10.6.1 Buildings and works, excluding coastal protection works, within a coastal erosion hazard area"
- },
- {
- "id":556,
- "title":"C10.6.2 Coastal protection works within a coastal erosion hazard area"
- },
- {
- "id":557,
- "title":"C10.6.3 Buildings and works located within a coastal erosion investigation area"
- }
- ]
- },
- {
- "id":558,
- "title":"C10.7 Development Standards for Subdivision",
- "children":[
- {
- "id":559,
- "title":"C10.7.1 Subdivision within a coastal erosion hazard area"
- }
- ]
- }
- ]
- },
- {
- "id":560,
- "title":"C11.0 Coastal Inundation Hazard Code",
- "children":[
- {
- "id":561,
- "title":"C11.1 Code Purpose"
- },
- {
- "id":562,
- "title":"C11.2 Application of this Code"
- },
- {
- "id":563,
- "title":"C11.3 Definition of Terms"
- },
- {
- "id":564,
- "title":"C11.4 Use or Development Exempt from this Code"
- },
- {
- "id":565,
- "title":"C11.5 Use Standards",
- "children":[
- {
- "id":566,
- "title":"C11.5.1 Uses within a high coastal inundation hazard band"
- },
- {
- "id":567,
- "title":"C11.5.2 Uses located within a non-urban zone and within a medium coastal inundation hazard band"
- },
- {
- "id":568,
- "title":"C11.5.3 Uses located within a non-urban zone and within a low coastal inundation hazard band"
- },
- {
- "id":569,
- "title":"C11.5.4 Critical use, hazardous use or vulnerable use"
- }
- ]
- },
- {
- "id":570,
- "title":"C11.6 Development Standards for Buildings and Works",
- "children":[
- {
- "id":571,
- "title":"C11.6.1 Buildings and works, excluding coastal protection works, within a coastal inundation hazard area"
- },
- {
- "id":572,
- "title":"C11.6.2 Coastal protection works within a coastal inundation hazard area"
- }
- ]
- },
- {
- "id":573,
- "title":"C11.7 Development Standards for Subdivision",
- "children":[
- {
- "id":574,
- "title":"C11.7.1 Subdivision within a coastal inundation hazard area"
- }
- ]
- }
- ]
- },
- {
- "id":575,
- "title":"C12.0 Flood-Prone Areas Hazard Code",
- "children":[
- {
- "id":576,
- "title":"C12.1 Code Purpose"
- },
- {
- "id":577,
- "title":"C12.2 Application of this Code"
- },
- {
- "id":578,
- "title":"C12.3 Definition of Terms"
- },
- {
- "id":579,
- "title":"C12.4 Use or Development Exempt from this Code"
- },
- {
- "id":580,
- "title":"C12.5 Use Standards",
- "children":[
- {
- "id":581,
- "title":"C12.5.1 Uses within a flood-prone hazard area"
- },
- {
- "id":582,
- "title":"C12.5.2 Critical use, hazardous use or vulnerable use"
- }
- ]
- },
- {
- "id":583,
- "title":"C12.6 Development Standards for Buildings and Works",
- "children":[
- {
- "id":584,
- "title":"C12.6.1 Buildings and works within a flood-prone hazard area"
- }
- ]
- },
- {
- "id":585,
- "title":"C12.7 Development Standards for Subdivision",
- "children":[
- {
- "id":586,
- "title":"C12.7.1 Subdivision within a flood-prone hazard area"
- }
- ]
- }
- ]
- },
- {
- "id":587,
- "title":"C13.0 Bushfire-Prone Areas Code",
- "children":[
- {
- "id":588,
- "title":"C13.1 Code Purpose"
- },
- {
- "id":589,
- "title":"C13.2 Application of this Code"
- },
- {
- "id":590,
- "title":"C13.3 Definition of terms"
- },
- {
- "id":591,
- "title":"C13.4 Use or Development Exempt from this Code"
- },
- {
- "id":592,
- "title":"C13.5 Use Standards",
- "children":[
- {
- "id":593,
- "title":"C13.5.1 Vulnerable uses"
- },
- {
- "id":594,
- "title":"C13.5.2 Hazardous uses"
- }
- ]
- },
- {
- "id":595,
- "title":"C13.6 Development Standards for Subdivision",
- "children":[
- {
- "id":596,
- "title":"C13.6.1 Provision of hazard management areas"
- },
- {
- "id":597,
- "title":"C13.6.2 Public and fire fighting access",
- "children":[
- {
- "id":598,
- "title":"Table C13.1: Standards for roads"
- },
- {
- "id":599,
- "title":"Table C13.2: Standards for property access"
- },
- {
- "id":600,
- "title":"Table C13.3: Standards for fire trails"
- }
- ]
- },
- {
- "id":601,
- "title":"C13.6.3 Provision of water supply for fire fighting purposes",
- "children":[
- {
- "id":602,
- "title":"Table C13.4: Reticulated Water Supply for Fire Fighting"
- },
- {
- "id":603,
- "title":"Table C13.5: Static Water Supply for Fire Fighting"
- }
- ]
- }
- ]
- }
- ]
- },
- {
- "id":604,
- "title":"C14.0 Potentially Contaminated Land Code",
- "children":[
- {
- "id":605,
- "title":"C14.1 Purpose of the Potentially Contaminated Land Code"
- },
- {
- "id":606,
- "title":"C14.2 Application of this Code"
- },
- {
- "id":616,
- "title":"Table C14.1 Specified Use"
- },
- {
- "id":607,
- "title":"C14.3 Definition of Terms"
- },
- {
- "id":608,
- "title":"C14.4 Use or Development Exempt from this Code"
- },
- {
- "id":609,
- "title":"C14.5 Use Standards",
- "children":[
- {
- "id":610,
- "title":"C14.5.1 Suitability for intended use"
- }
- ]
- },
- {
- "id":611,
- "title":"C14.6 Development Standards for Building and Works",
- "children":[
- {
- "id":612,
- "title":"C14.6.1 Excavation works, excluding land subject to the Macquarie Point Development Corporation Act 2012"
- },
- {
- "id":613,
- "title":"C14.6.2 Redevelopment on land subject to the Macquarie Point Development Corporation Act 2012"
- }
- ]
- },
- {
- "id":614,
- "title":"C14.7 Development Standards for Subdivision",
- "children":[
- {
- "id":615,
- "title":"C14.7.1 Subdivision for sensitive use"
- }
- ]
- },
- {
- "id":617,
- "title":"Table C14.2 Potentially Contaminating Activities"
- }
- ]
- },
- {
- "id":618,
- "title":"C15.0 Landslip Hazard Code",
- "children":[
- {
- "id":619,
- "title":"C15.1 Code Purpose"
- },
- {
- "id":620,
- "title":"C15.2 Application of this Code"
- },
- {
- "id":621,
- "title":"C15.3 Definition of Terms"
- },
- {
- "id":622,
- "title":"C15.4 Use or Development Exempt from this Code"
- },
- {
- "id":623,
- "title":"C15.5 Use Standards",
- "children":[
- {
- "id":624,
- "title":"C15.5.1 Use within a landslip hazard area"
- }
- ]
- },
- {
- "id":625,
- "title":"C15.6 Development Standards for Buildings and Works",
- "children":[
- {
- "id":626,
- "title":"C15.6.1 Building and works within a landslip hazard area"
- }
- ]
- },
- {
- "id":627,
- "title":"C15.7 Development Standards for Subdivision",
- "children":[
- {
- "id":628,
- "title":"C15.7.1 Subdivision within a landslip hazard area"
- }
- ]
- }
- ]
- },
- {
- "id":629,
- "title":"C16.0 Safeguarding of Airports Code",
- "children":[
- {
- "id":630,
- "title":"C16.1 Code Purpose"
- },
- {
- "id":631,
- "title":"C16.2 Application of this Code"
- },
- {
- "id":632,
- "title":"C16.3 Definition of Terms"
- },
- {
- "id":633,
- "title":"C16.4 Use or Development Exempt from this Code"
- },
- {
- "id":634,
- "title":"C16.5 Use Standards",
- "children":[
- {
- "id":635,
- "title":"C16.5.1 Sensitive use within an airport noise exposure area"
- }
- ]
- },
- {
- "id":636,
- "title":"C16.6 Development Standards for Buildings and Works",
- "children":[
- {
- "id":637,
- "title":"C16.6.1 Buildings and works within an airport obstacle limitation area"
- }
- ]
- },
- {
- "id":638,
- "title":"C16.7 Development Standards for Subdivision",
- "children":[
- {
- "id":639,
- "title":"C16.7.1 Subdivision"
- }
- ]
- }
- ]
- }
- ],
- "zones":[
- {
- "name":"General Residential Zone",
- "doc_section":"8.0",
- "key_clauses":{
- "purpose":"8.1",
- "use_table":"8.2",
- "use_standards":"8.3",
- "dev_standards_dwellings":"8.4",
- "dev_standards_non_dwellings":"8.5",
- "subdivision":"8.6"
- }
- },
- {
- "name":"Inner Residential Zone",
- "doc_section":"9.0",
- "key_clauses":{
- "purpose":"9.1",
- "use_table":"9.2",
- "use_standards":"9.3",
- "dev_standards_dwellings":"9.4",
- "dev_standards_non_dwellings":"9.5",
- "subdivision":"9.6"
- }
- },
- {
- "name":"Low Density Residential Zone",
- "doc_section":"10.0",
- "key_clauses":{
- "purpose":"10.1",
- "use_table":"10.2",
- "use_standards":"10.3",
- "dev_standards_dwellings":"10.4",
- "dev_standards_non_dwellings":"10.5",
- "subdivision":"10.6"
- }
- },
- {
- "name":"Rural Living Zone",
- "doc_section":"11.0",
- "key_clauses":{
- "purpose":"11.1",
- "use_table":"11.2",
- "use_standards":"11.3",
- "dev_standards_buildings_works":"11.4",
- "subdivision":"11.5"
- }
- },
- {
- "name":"Village Zone",
- "doc_section":"12.0",
- "key_clauses":{
- "purpose":"12.1",
- "use_table":"12.2",
- "use_standards":"12.3",
- "dev_standards_buildings_works":"12.4",
- "subdivision":"12.5"
- }
- },
- {
- "name":"Urban Mixed Use Zone",
- "doc_section":"13.0",
- "key_clauses":{
- "purpose":"13.1",
- "use_table":"13.2",
- "use_standards":"13.3",
- "dev_standards_buildings_works":"13.4",
- "subdivision":"13.5"
- }
- },
- {
- "name":"Local Business Zone",
- "doc_section":"14.0",
- "key_clauses":{
- "purpose":"14.1",
- "use_table":"14.2",
- "use_standards":"14.3",
- "dev_standards_buildings_works":"14.4",
- "subdivision":"14.5"
- }
- },
- {
- "name":"General Business Zone",
- "doc_section":"15.0",
- "key_clauses":{
- "purpose":"15.1",
- "use_table":"15.2",
- "use_standards":"15.3",
- "dev_standards_buildings_works":"15.4",
- "subdivision":"15.5"
- }
- },
- {
- "name":"Central Business Zone",
- "doc_section":"16.0",
- "key_clauses":{
- "purpose":"16.1",
- "use_table":"16.2",
- "use_standards":"16.3",
- "dev_standards_buildings_works":"16.4",
- "subdivision":"16.5"
- }
- },
- {
- "name":"Commercial Zone",
- "doc_section":"17.0",
- "key_clauses":{
- "purpose":"17.1",
- "use_table":"17.2",
- "use_standards":"17.3",
- "dev_standards_buildings_works":"17.4",
- "subdivision":"17.5"
- }
- },
- {
- "name":"Light Industrial Zone",
- "doc_section":"18.0",
- "key_clauses":{
- "purpose":"18.1",
- "use_table":"18.2",
- "use_standards":"18.3",
- "dev_standards_buildings_works":"18.4",
- "subdivision":"18.5"
- }
- },
- {
- "name":"General Industrial Zone",
- "doc_section":"19.0",
- "key_clauses":{
- "purpose":"19.1",
- "use_table":"19.2",
- "use_standards":"19.3",
- "dev_standards_buildings_works":"19.4",
- "subdivision":"19.5"
- }
- },
- {
- "name":"Rural Zone",
- "doc_section":"20.0",
- "key_clauses":{
- "purpose":"20.1",
- "use_table":"20.2",
- "use_standards":"20.3",
- "dev_standards_buildings_works":"20.4",
- "subdivision":"20.5"
- }
- },
- {
- "name":"Agriculture Zone",
- "doc_section":"21.0",
- "key_clauses":{
- "purpose":"21.1",
- "use_table":"21.2",
- "use_standards":"21.3",
- "dev_standards_buildings_works":"21.4",
- "subdivision":"21.5"
- }
- },
- {
- "name":"Landscape Conservation Zone",
- "doc_section":"22.0",
- "key_clauses":{
- "purpose":"22.1",
- "use_table":"22.2",
- "use_standards":"22.3",
- "dev_standards_buildings_works":"22.4",
- "subdivision":"22.5"
- }
- },
- {
- "name":"Environmental Management Zone",
- "doc_section":"23.0",
- "key_clauses":{
- "purpose":"23.1",
- "use_table":"23.2",
- "use_standards":"23.3",
- "dev_standards_buildings_works":"23.4",
- "subdivision":"23.5"
- }
- },
- {
- "name":"Major Tourism Zone",
- "doc_section":"24.0",
- "key_clauses":{
- "purpose":"24.1",
- "use_table":"24.2",
- "use_standards":"24.3",
- "dev_standards_buildings_works":"24.4",
- "subdivision":"24.5"
- }
- },
- {
- "name":"Port and Marine Zone",
- "doc_section":"25.0",
- "key_clauses":{
- "purpose":"25.1",
- "use_table":"25.2",
- "use_standards":"25.3",
- "dev_standards_buildings_works":"25.4",
- "subdivision":"25.5"
- }
- },
- {
- "name":"Utilities Zone",
- "doc_section":"26.0",
- "key_clauses":{
- "purpose":"26.1",
- "use_table":"26.2",
- "use_standards":"26.3",
- "dev_standards_buildings_works":"26.4",
- "subdivision":"26.5"
- }
- },
- {
- "name":"Community Purpose Zone",
- "doc_section":"27.0",
- "key_clauses":{
- "purpose":"27.1",
- "use_table":"27.2",
- "use_standards":"27.3",
- "dev_standards_buildings_works":"27.4",
- "subdivision":"27.5"
- }
- },
- {
- "name":"Recreation Zone",
- "doc_section":"28.0",
- "key_clauses":{
- "purpose":"28.1",
- "use_table":"28.2",
- "use_standards":"28.3",
- "dev_standards_buildings_works":"28.4",
- "subdivision":"28.5"
- }
- },
- {
- "name":"Open Space Zone",
- "doc_section":"29.0",
- "key_clauses":{
- "purpose":"29.1",
- "use_table":"29.2",
- "use_standards":"29.3",
- "dev_standards_buildings_works":"29.4",
- "subdivision":"29.5"
- }
- },
- {
- "name":"Future Urban Zone",
- "doc_section":"30.0",
- "key_clauses":{
- "purpose":"30.1",
- "use_table":"30.2",
- "use_standards":"30.3",
- "dev_standards_buildings_works":"30.4",
- "subdivision":"30.5"
- }
- }
- ],
- "codes":{
- "C1":{
- "key_clauses":{
- "purpose":"C1.1",
- "application":"C1.2",
- "definitions":"C1.3",
- "exempt_development":"C1.4",
- "use_standards":"C1.5",
- "development_standards":"C1.6",
- "development_standards_detail":[
- {
- "id":"C1.6.1",
- "title":"Design, siting and number of signs"
- },
- {
- "id":"C1.6.2",
- "title":"Illumination"
- },
- {
- "id":"C1.6.3",
- "title":"Signage in heritage precincts"
- },
- {
- "id":"C1.6.4",
- "title":"Signage on heritage places"
- },
- {
- "id":"C1.6.5",
- "title":"Directional, temporary and public information signs"
- }
- ]
- }
- },
- "C2":{
- "key_clauses":{
- "purpose":"C2.1",
- "application":"C2.2",
- "definitions":"C2.3",
- "exempt_development":"C2.4",
- "use_standards":"C2.5",
- "use_standards_detail":[
- {
- "id":"C2.5.1",
- "title":"Car parking numbers"
- },
- {
- "id":"C2.5.2",
- "title":"Bicycle parking numbers"
- },
- {
- "id":"C2.5.3",
- "title":"Bicycle end of trip facilities"
- },
- {
- "id":"C2.5.4",
- "title":"Public transport accessibility"
- }
- ],
- "development_standards":"C2.6",
- "development_standards_detail":[
- {
- "id":"C2.6.1",
- "title":"Construction of parking areas"
- },
- {
- "id":"C2.6.2",
- "title":"Design and layout of parking areas"
- },
- {
- "id":"C2.6.3",
- "title":"Number of accesses for vehicles"
- },
- {
- "id":"C2.6.4",
- "title":"Lot access"
- },
- {
- "id":"C2.6.5",
- "title":"Pedestrian access"
- },
- {
- "id":"C2.6.6",
- "title":"On-site turning"
- },
- {
- "id":"C2.6.7",
- "title":"Access for commercial vehicles"
- }
- ]
- }
- },
- "C3":{
- "key_clauses":{
- "purpose":"C3.1",
- "application":"C3.2",
- "definitions":"C3.3",
- "exempt_use":"C3.4",
- "use_standards":"C3.5",
- "use_standards_detail":[
- {
- "id":"C3.5.1",
- "title":"Sensitive uses within road or rail attenuation areas"
- }
- ],
- "development_standards":"C3.6",
- "development_standards_detail":[
- {
- "id":"C3.6.1",
- "title":"Development adjacent to roads and railways"
- },
- {
- "id":"C3.6.2",
- "title":"Road and rail noise attenuation"
- },
- {
- "id":"C3.6.3",
- "title":"Level crossing sight distances"
- },
- {
- "id":"C3.6.4",
- "title":"Railway crossings and depots"
- },
- {
- "id":"C3.6.5",
- "title":"Road and rail access and crossings"
- }
- ]
- }
- },
- "C4":{
- "key_clauses":{
- "purpose":"C4.1",
- "application":"C4.2",
- "definitions":"C4.3",
- "exempt_use":"C4.4",
- "use_standards":"C4.5",
- "use_standards_detail":[
- {
- "id":"C4.5.1",
- "title":"Sensitive use within electricity transmission corridor"
- }
- ],
- "development_standards":"C4.6",
- "development_standards_detail":[
- {
- "id":"C4.6.1",
- "title":"Development within electricity transmission corridor"
- },
- {
- "id":"C4.6.2",
- "title":"Subdivision within electricity transmission corridor"
- }
- ]
- }
- },
- "C5":{
- "key_clauses":{
- "purpose":"C5.1",
- "application":"C5.2",
- "definitions":"C5.3",
- "exempt_use":"C5.4",
- "use_standards":"C5.5",
- "development_standards":"C5.6",
- "development_standards_detail":[
- {
- "id":"C5.6.1",
- "title":"Telecommunications facilities – visual amenity"
- },
- {
- "id":"C5.6.2",
- "title":"Performance of facilities"
- }
- ]
- }
- },
- "C6":{
- "key_clauses":{
- "purpose":"C6.1",
- "application":"C6.2",
- "definitions":"C6.3",
- "exempt_development":"C6.4",
- "use_standards":"C6.5",
- "development_standards":"C6.6",
- "development_standards_detail":[
- {
- "id":"C6.6.1",
- "title":"Demolition"
- },
- {
- "id":"C6.6.2",
- "title":"Building facades and details of heritage places"
- },
- {
- "id":"C6.6.3",
- "title":"Extensions"
- },
- {
- "id":"C6.6.4",
- "title":"New buildings and works"
- },
- {
- "id":"C6.6.5",
- "title":"Additions to non-significant elements"
- },
- {
- "id":"C6.6.6",
- "title":"Signage on a heritage place"
- },
- {
- "id":"C6.6.7",
- "title":"Subdivision"
- }
- ]
- }
- },
- "C7":{
- "key_clauses":{
- "purpose":"C7.1",
- "application":"C7.2",
- "definitions":"C7.3",
- "exempt_use":"C7.4",
- "use_standards":"C7.5",
- "development_standards":"C7.6",
- "development_standards_detail":[
- {
- "id":"C7.6.1",
- "title":"Biodiversity protection areas"
- },
- {
- "id":"C7.6.2",
- "title":"Waterway and coastal protection areas"
- },
- {
- "id":"C7.6.3",
- "title":"Priority vegetation areas"
- },
- {
- "id":"C7.6.4",
- "title":"Drains and wetlands"
- }
- ]
- }
- },
- "C8":{
- "key_clauses":{
- "purpose":"C8.1",
- "application":"C8.2",
- "definitions":"C8.3",
- "exempt_use":"C8.4",
- "use_standards":"C8.5",
- "development_standards":"C8.6",
- "development_standards_detail":[
- {
- "id":"C8.6.1",
- "title":"Development in scenic protection areas"
- },
- {
- "id":"C8.6.2",
- "title":"Development in scenic road corridors"
- }
- ]
- }
- },
- "C9":{
- "key_clauses":{
- "purpose":"C9.1",
- "application":"C9.2",
- "definitions":"C9.3",
- "exempt_use":"C9.4",
- "use_standards":"C9.5",
- "use_standards_detail":[
- {
- "id":"C9.5.1",
- "title":"Sensitive use near attenuation areas"
- }
- ],
- "development_standards":"C9.6",
- "development_standards_detail":[
- {
- "id":"C9.6.1",
- "title":"Development near attenuation areas"
- }
- ]
- }
- },
- "C10":{
- "key_clauses":{
- "purpose":"C10.1",
- "application":"C10.2",
- "definitions":"C10.3",
- "exempt_use":"C10.4",
- "use_standards":"C10.5",
- "use_standards_detail":[
- {
- "id":"C10.5.1",
- "title":"Sensitive use in coastal erosion hazard bands"
- }
- ],
- "development_standards":"C10.6",
- "development_standards_detail":[
- {
- "id":"C10.6.1",
- "title":"Development in coastal erosion hazard bands"
- }
- ]
- }
- },
- "C11":{
- "key_clauses":{
- "purpose":"C11.1",
- "application":"C11.2",
- "definitions":"C11.3",
- "exempt_use":"C11.4",
- "use_standards":"C11.5",
- "use_standards_detail":[
- {
- "id":"C11.5.1",
- "title":"Sensitive use in coastal inundation hazard areas"
- }
- ],
- "development_standards":"C11.6",
- "development_standards_detail":[
- {
- "id":"C11.6.1",
- "title":"Development in coastal inundation hazard areas"
- }
- ]
- }
- },
- "C12":{
- "key_clauses":{
- "purpose":"C12.1",
- "application":"C12.2",
- "definitions":"C12.3",
- "exempt_use":"C12.4",
- "use_standards":"C12.5",
- "use_standards_detail":[
- {
- "id":"C12.5.1",
- "title":"Sensitive use in flood-prone hazard areas"
- }
- ],
- "development_standards":"C12.6",
- "development_standards_detail":[
- {
- "id":"C12.6.1",
- "title":"Development in flood-prone hazard areas"
- }
- ]
- }
- },
- "C13":{
- "key_clauses":{
- "purpose":"C13.1",
- "application":"C13.2",
- "definitions":"C13.3",
- "exempt_use":"C13.4",
- "use_standards":"C13.5",
- "use_standards_detail":[
- {
- "id":"C13.5.1",
- "title":"Sensitive use in bushfire-prone areas"
- }
- ],
- "development_standards":"C13.6",
- "development_standards_detail":[
- {
- "id":"C13.6.1",
- "title":"Subdivision in bushfire-prone areas"
- },
- {
- "id":"C13.6.2",
- "title":"Buildings and works in bushfire-prone areas"
- }
- ]
- }
- },
- "C14":{
- "key_clauses":{
- "purpose":"C14.1",
- "application":"C14.2",
- "definitions":"C14.3",
- "exempt_use":"C14.4",
- "use_standards":"C14.5",
- "use_standards_detail":[
- {
- "id":"C14.5.1",
- "title":"Sensitive use on potentially contaminated land"
- }
- ],
- "development_standards":"C14.6",
- "development_standards_detail":[
- {
- "id":"C14.6.1",
- "title":"Development on potentially contaminated land"
- }
- ]
- }
- },
- "C15":{
- "key_clauses":{
- "purpose":"C15.1",
- "application":"C15.2",
- "definitions":"C15.3",
- "exempt_use":"C15.4",
- "use_standards":"C15.5",
- "use_standards_detail":[
- {
- "id":"C15.5.1",
- "title":"Sensitive use in landslide hazard bands"
- }
- ],
- "development_standards":"C15.6",
- "development_standards_detail":[
- {
- "id":"C15.6.1",
- "title":"Development in landslide hazard bands"
- }
- ]
- }
- },
- "C16":{
- "key_clauses":{
- "purpose":"C16.1",
- "application":"C16.2",
- "definitions":"C16.3",
- "exempt_use":"C16.4",
- "use_standards":"C16.5",
- "use_standards_detail":[
- {
- "id":"C16.5.1",
- "title":"Sensitive use within airport obstacles limitation areas"
- }
- ],
- "development_standards":"C16.6",
- "development_standards_detail":[
- {
- "id":"C16.6.1",
- "title":"Buildings and works within airport obstacles limitation areas"
- },
- {
- "id":"C16.6.2",
- "title":"Wind farms and turbine generators"
- },
- {
- "id":"C16.6.3",
- "title":"Lighting and reflective materials"
- },
- {
- "id":"C16.6.4",
- "title":"Wildlife hazards"
- }
- ]
- }
- }
- },
- "crosswalk":{
- "aliases":{
- "bushfire":"C13",
- "heritage":"C6",
- "parking":"C2",
- "roads_and_rail":"C3",
- "telecoms":"C5",
- "flooding":"C12",
- "coastal_inundation":"C11",
- "coastal_erosion":"C10",
- "landslide":"C15",
- "contaminated_land":"C14",
- "electricity_transmission":"C4",
- "scenic":"C8",
- "natural_assets":"C7",
- "attenuation":"C9",
- "signs":"C1",
- "airports":"C16"
- }
- }
- }
|